/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Physiocare - Physiotherapy HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Home Contact Us css 
06. About Us css
07. Gallery Carousel css
08. Our Services css
09. Solution Your Plan css
10. Why Choose Us css
11. Need Attension css
12. Our Theraphist css
13. Our Testiminial css
14. Our Blog css
15. Scrolling Ticker css
16. Footer css
17. About us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Theraphist Page css
23. Theraphist Single css
24. Testimonials Page css
25.	FAQs Page css
26. Contact us Page css
27. Make Appointment Page css
28. 404 Page css
29. Responsive css
-------------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #001D48;
	--secondary-color		: #E6EFED;
	--text-color			: #565555;
	--accent-color			: #009696;
	--white-color			: #FFFFFF;
	--divider-color			: #FFFFFF26;
	--dark-divider-color	: #153C331A;
	--error-color			: rgb(230, 87, 87);
	--accent-font			: "Tenor Sans", sans-serif;
	--default-font			: "Tenor Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: "Tenor Sans", sans-serif !important;
	font-size: 16px;
	font-weight: 300;
	line-height: 137%;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
    font-size: 17px !important;
    line-height: 26px !important;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--default-font);
	font-weight: 300;
	line-height: 1em;
	color: var(--primary-color);
}

h3 {
    font-size: 20px !important;
    line-height: 137%;
    font-weight: 400 !important;
    text-transform: none;
    color: var(--accent-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
	
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1400px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	/* overflow: hidden; */
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.font-thin{
	font-weight: 100 !important;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	display: inline-block;
	font-family: var(--default-font);
	font-size: 18px;
    font-weight: 100;
    line-height: normal;
	color: var(--white-color);
	background: var(--accent-color);
	text-transform: capitalize;
	padding: 12px 55px 12px 16px;
	border-radius: 4px;
	border: none;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}


.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #fff;
	background-image: url('../images/icon/icon-right.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover:before{
	/* background-color: #fff; */
}

.btn-default::after{ 
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 102%;
	border-radius: 4px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after{
	width: 106%;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted::before{
	background-color: var(--accent-color);
}

.btn-default.btn-highlighted::after{
	background-color: var(--primary-color);
}
.btn-highlighted::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-image: url('../images/icon/icon-right-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-small{
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 100;
	line-height: 1.1em;
	color: var(--white-color);
	padding: 6px 30px 6px 10px;
	background: transparent;
	border: .5px solid #fff;
	text-transform: capitalize;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-small::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 14px;
	height: 23px;
	background-image: url('../images/icon/chevron-right.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}

.is-physio-right .btn-default {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 100;
    line-height: normal;
    color: var(--white-color);
    background: var(--accent-color);
    text-transform: capitalize;
    padding: 12px 100px 12px 16px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.appointment-btn .btn-faq{
	font-family: var(--default-font);
    font-size: 16px;
    font-weight: 100;
	line-height: 1.1em;
	color: var(--white-color);
	padding: 12px 50px 12px 50px;
	background: var(--accent-color);
	border: .5px solid #fff;
	text-transform: capitalize;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.appointment-btn .btn-faq::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 19px;
	bottom: 0;
	width: 20px;
	height: 23px;
	background-image: url('../images/icon/download.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}
.appointment-btn .btn-faq:hover{
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
}
.appointment-btn .btn-faq:hover:before{
	/* background-color: #fff; */
}
.appointment-btn .btn-faq::after{ 
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    bottom: 0;
	width: 0;
	height: 102%;
	border-radius: 4px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.appointment-btn .btn-faq:hover::after{
	width: 100%;
}

.book-btn{
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 100;
	line-height: 1.1em;
	color: var(--white-color);
	padding: 16px;
	background: var(--accent-color);
	border: .5px solid #fff;
	text-transform: capitalize;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}



#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 25px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 30px;
}

.section-title h3{
	display: block;
    font-size: 18px;
    font-weight: 100;
    line-height: 137%;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 10px 0;
}

.section-title h1{
	font-size: 55px;
	font-weight: 100;
    line-height: 137%;
	margin-bottom: 0;
}

.section-title h2{
	font-size: 35px;
    font-weight: 200;
    line-height: 137%;
    margin-bottom: 0;
    color: #001D48;
}
.section-title h2 a{
	font-size: 48px;
    font-weight: 200;
    line-height: 137%;
    margin-bottom: 0;
    color: #001D48;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 25px;
    color: var(--text-color);
	font-weight: 200;
	text-align: justify;
}
.section-title p a{
	margin-top: 15px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 25px;
    color: var(--text-color);
	font-weight: 200;
	transition: all 0.3s ease-in-out;
}
.about-us .section-title p a{
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--accent-color);
}
.section-title p a:hover{
	color: var(--accent-color);
}
.section-title p span{
	color: var(--accent-color);
	font-weight: 200;
}

.section-btn{
	text-align: end;
}

.section-title-content p{
	text-align: right;
	margin: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar{
	padding: 12px 0;
	background-color: var(--accent-color);
	position: relative;
    z-index: 1;
    top: 0;
	border-top-left-radius: 16px;
    border-top-right-radius: 16px;
	transition: opacity 0.5s ease, visibility 0.5s ease, height 0.5s ease;
}

.topbar-contact-info{	
	text-align: left;
}

.topbar-contact-info ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
	gap: 30px;
}

.topbar-contact-info ul li a{
	color: var(--white-color);
	display: flex;
	align-items: center;
	font-weight: 200;
}

.topbar-contact-info ul li a img{
	max-width: 20px;
	margin-right: 10px;
}

.topbar-social-links{
	text-align: right;
}

.topbar-social-links ul{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li{
	display: inline-block;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child{
	margin-right: 0;
}

.topbar-social-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover{
	color: var(--accent-color);
}

.topbar-social-links ul li a i{
	font-size: 20px;
	color: inherit
}
.topbar.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.topbar-close {
    position: absolute;
    top: 16px;
    right: 27px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.topbar-close img {
    width: 100%;
    height: auto;
    display: block;
}
.social-links {
    position: relative;
    z-index: 1;
	text-align: left;
	bottom: 50px;
    left: 30px;
}
.social-links ul{
	display: flex;
	flex-direction: column;
    gap: 16px;
}

header.main-header{
	background-color: var(--white-color);
	position: relative;
	z-index: 100;
}
/* Default non-sticky state */
header.main-header .header-sticky {
  position: relative;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  background-color: #fff;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
  box-shadow: 2px 2px 19px #0000003b;
  background-color: #fff;
  border-bottom: 1px solid var(--divider-color, #e0e0e0);
  backdrop-filter: blur(30px);
}
@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.header-sticky {
  transition: all 0.10s ease;
}

.submenu > a.submenu-open + ul {
  visibility: visible !important;
  opacity: 1 !important;
  transform: scaleY(1) !important;
  padding: 5px 0;
  display: block !important;
}


.navbar{
	padding: 12px 48px;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 15px;
    font-weight: 300;
    padding: 14px 8px !important;
    color: #555555;
	cursor: pointer;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: "";
  display: inline-block;
  width: 12px;  /* Adjust as needed */
  height: 12px;
  background-image: url('../images/icon/chevron-down-1.svg'); /* Your image path */
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
  vertical-align: middle;
}


.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 22px;
    margin: 0;
    list-style: none;
    width: max-content;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    border-top: 6px solid var(--accent-color);
	box-shadow: -7px 25px 43px 0px #0000001f;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--text-color);
  padding: 8px 20px !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 10px 20px;
}

.main-menu ul ul li a::after {
	content: '';
	position: absolute;
	left: 17px;
		bottom: 7px;
		height: 1px;
	width: 0;
	background-color: var(--accent-color);
	transition: width 0.3s ease-in-out;
}

.main-menu ul ul li a:hover::after,
.main-menu ul ul li a:focus::after {
  	width: 100%;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-color);
	background-color: transparent;
	/* padding-left: 23px !important; */
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--accent-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
	transition: all 0.3s ease-in-out;
}

.header-btn .btn-default::before{
    background-image: url(../images/icon/icon-right.svg);
}

.main-menu ul li.highlighted-menu{
    display: none;
}

/* .responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--primary-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 200;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0 10px;
    border-bottom: 1px solid #343a404d;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav li:first-child > a,
.slicknav_nav li:last-child > a {
  border-bottom: none;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--accent-color);
	padding: 10px 20px 10px 23px;
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 60px;
}

.slicknav_menu ul ul li a:hover{
	padding: 10px 20px 10px 63px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--accent-color);
} */

/* === Hidden by default for larger screens === */
.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

/* === Hamburger Button === */
.slicknav_btn {
	background: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	z-index: 10000; 
	position: relative;
}

.slicknav_icon .slicknav_icon-bar {
  	display: block;
  	height: 2px;
	width: 25px;
	background-color: #001d48;
	border-radius: 6px;
	margin: 5px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

/* === Toggle Animation (hamburger to X) === */
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* === Sidebar Menu Styles === */
.slicknav_menu {
  position: fixed;
  top: 0;
  right: -400px;
  height: 100vh;
  width: 400px;
  max-width: 80%;
  background: var(--white-color);
  padding: 20px 0;
  z-index: 9999;
  transition: right 0.50s ease-in-out;
  box-shadow: none; /* <- remove shadow here */
}


/* === Slide in when open === */
body.sidebar-open .slicknav_menu {
  right: 0;
  box-shadow: -10px 1px 60px 10px #001d4847;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* === Menu List Styling === */
.slicknav_menu ul {
    margin: 5px 0;
    margin-top: 12%;
}
.slicknav_menu ul ul {
  margin: 0;
}

/* === Link Styles === */
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  padding: 13px 20px;
  color: #555555;
  line-height: normal;
  margin: 0 10px;
  border-bottom: 1px solid #0096962b;
  border-radius: 0 !important;
  transition: all 0.50s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .slicknav_nav li:first-child > a,
.slicknav_nav li:last-child > a {
  border-bottom: none;
} */

.slicknav_nav li:last-child > a {
  border-bottom: none;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--accent-color);
  padding-left: 23px;
}

/* === Submenu Indentation === */
.slicknav_menu ul ul li a {
  padding: 10px 10px 10px 60px;
  text-transform: capitalize;
  border-bottom: 0;
}
.slicknav_menu ul ul li a:hover {
  padding-left: 63px;
}

/* .slicknav_nav li:not(.slicknav_parent) > a::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
} */

/* === Arrow Icon for Submenu Toggle === */
.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: auto;
  color: var(--accent-color);
  position: absolute;
  right: 15px;
  top: 16px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--accent-color);
}


/* .slicknav_nav li a::before {
  content: '';
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}




.slicknav_nav li:nth-child(1) > a::before {
  background-image: url('images/icon/home.svg');
}
.slicknav_nav li:nth-child(2) > a::before {
  background-image: url('images/icon/physiotherapy.svg');
}
.slicknav_nav li:nth-child(3) > a::before {
  background-image: url('images/icon/services.svg');
}
.slicknav_nav li:nth-child(4) > a::before {
  background-image: url('images/icon/injection.svg');
}
.slicknav_nav li:nth-child(5) > a::before {
  background-image: url('images/icon/about.svg');
}
.slicknav_nav li:nth-child(6) > a::before {
  background-image: url('images/icon/contact.svg');
} */




/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	background-color: var(--secondary-color);
	padding: 0px 0 0;
}

.hero-content{
	padding-right: 100px;
}

.hero-content .section-title p{
	font-size: 18px;
	color: var(--primary-color);
}

.hero-content-body{
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.hero-content-body .btn-default.btn-highlighted{
	margin-left: 40px;
}

.hero-counter-box h3{
	font-size: 32px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.hero-counter-box p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.hero-image{
	position: relative;
}

.export-doctor-box{
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-100px);
	background-color: var(--white-color);
	box-shadow: 0px 0px 24px 0px #00000012;
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	animation: exportmoveobject 3s infinite linear alternate;
}

@keyframes exportmoveobject{
	50%{
		left: 50px;
	}
}

.export-doctor-box .icon-box{
	margin-right: 10px;
}

.export-doctor-box .icon-box img{
	max-width: 48px;
	border-radius: 50%;
}

.export-doctor-content{
	width: calc(100% - 58px);
}

.export-doctor-content h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.export-doctor-content p{
	color: var(--primary-color);
	opacity: 50%;
	text-transform: capitalize;
	margin: 0;
}

.hero.bg-image{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	/* padding: 130px 0 180px; */
}

.hero.bg-image::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
}

.hero.bg-image .hero-content{
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding-right: 0;
	display: flex;
	flex-direction: column;
	gap: 35px;
	padding: 155px 0;
	z-index: 1;
}
.hero-content .section-title h1 span{
	color: var(--accent-color);
}

.hero.bg-image .hero-content .section-title p,
.hero.bg-image .hero-content .section-title h1,
.hero.bg-image .hero-content .section-title h1{
	color: var(--white-color);
}

/* .hero.bg-image .hero-content .section-title h1{
	font-size: 80px;
} */

.hero.bg-image .hero-content .hero-content-body{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.hero.hero-slider{
	text-align: center;
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide{
	position: relative;
    padding: 130px 0 180px;
}

.hero.bg-image.hero-slider:before{
	display: none;
}

.hero.hero-slider .hero-slider-layout{
	position: relative;
	z-index: 2;
}

.hero-slider-layout .hero-slide::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius:16px;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 848px;
	margin: 0 auto;
}

.hero-slider-layout .swiper-pagination{
    bottom: 100px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet{
    width: 11px;
    height: 11px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero.bg-image.hero-video{
	position: relative;
	width: calc(100% - 30px);
    margin: 0 auto;
    border-radius: 16px;
}

.hero.bg-image.hero-video::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #020B0C;
	opacity: 50%;
	width: 100%;
	height: auto;
	z-index: 1;
	border-radius: 16px;
}

.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	/* height: 720px; */
	border-radius: 16px;
}

.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.hero.hero-book-appointment{
	padding: 100px 0;
}

.hero-book-appointment .appointment-form{
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: center;
	padding: 40px;
	margin-left: 100px;
}

.hero-appointment-form-title{
	margin-bottom: 30px;
}

.hero-appointment-form-title h2{
	font-size: 36px;
	margin-bottom: 10px;
}

.hero-appointment-form-title h2 span{
	color: var(--accent-color);
}

.hero-appointment-form-title p{
	margin: 0;
}

/************************************/
/***  05. Home Contact Us css     ***/
/************************************/
.contact-us{
	padding: 70px 0 !important;
}

.home-contact-us{
	padding: 50px 0;
	background: var(--primary-color);
}

.home-contact-us .home-contact-item{
	display: flex;
	position: relative;
	padding: 10px 15px 10px 0;
	border-right: 1px solid var(--divider-color);
}

.home-contact-us .col-lg-4:last-child .home-contact-item{
	padding-right: 0;
	border-right: none;
}

.home-contact-item .icon-box{
	position: relative;
	width: 64px;
	height: 64px;
	background: var(--divider-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-right: 20px;
	overflow: hidden;
}

.home-contact-item .icon-box::before{
	content: '';
	display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
    border-radius: 10px;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.home-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.home-contact-item .icon-box img{
	position: relative;
	z-index: 1;
}

.home-contact-us .col-lg-4:nth-last-child(1) .home-contact-item:before{
	display: none;
}

.home-contact-item .icon-box img{
	max-width: 34px;
}

.home-contact-item .home-contact-content{
	width: calc(100% - 84px);
}

.home-contact-item .home-contact-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.home-contact-item .home-contact-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***       06. About Us css       ***/
/************************************/

.about-us{
	padding: 20px 70px;
	background: url('../images/about-us-bg.svg') no-repeat;
	background-position: right -100px center;
	background-size: auto;
}

.about-us-image{
	position: relative;
}

.arthrosamid-section .quality-treatment-body ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #ffffff;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.about-img img{
	border-radius: 30px;
}

.company-experience{
	position: absolute;
    left: -21%;
    bottom: 4%;
    color: #fff;
	width: fit-content;
    background-color: #001D48;
    border-top-left-radius: 24px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 24px;
    padding: 15px 20px;
    border: 7px solid #fff;
    /* box-shadow: -10px 10px 0 0 #EDEDED; 
    animation: expmoveobject 3s infinite linear alternate;*/
}

@keyframes expmoveobject{
	50%{
		right: 80px;
	}
}

.company-experience .icon-box{
	margin-right: 10px;
}

.company-experience .icon-box img{
	max-width: 52px;
}

.company-experience-content{
	width: 100%;
	text-align: center;
}

.company-experience-content h3{
	font-size: 45px;
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
    color: #ffffff;
}

.company-experience-content p{
	color: #ffffff;
    font-family: var(--default-font);
    font-size: 22px;
    max-width: 156px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 100;
    line-height: 25px;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
    gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 0;
}

.about-list-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.about-list-item .icon-box{
	margin-right: 10px;
}

.about-list-item .icon-box img{
	max-width: 34px;
}

.about-list-content{
	width: calc(100% - 44px);
}

.about-list-content h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
}

/* .doctor-info,
.appointment-btn{
	width: 50%;
} */

.appointment-btn{
	text-align: right;
}

.doctor-info-item{
	display: flex;
	align-items: center;
}

.doctor-info-item .image-box{
	margin-right: 10px;
}

.doctor-info-item .image-box img{
	max-width: 48px;
	border-radius: 100%;
}

.doctor-info-item .doctor-info-content{
	width: calc(100% - 58px);
}

.doctor-info-item .doctor-info-content h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.doctor-info-item .doctor-info-content p{
	color: var(--primary-color);
	opacity: 50%;
	margin: 0;
}

/************************************/
/***   07. Gallery Carousel css   ***/
/************************************/

.gallery-carousel{
	padding: 50px 0;
}

.gallery-carousel .container-fluid{
	padding: 0;
}

.gallery-carousel-box{
	--gap: 10px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.gallery-scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: galleryscroll 15s linear infinite;
}

@keyframes galleryscroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.gallery-scrolling-content .gallery-image img{
	border-radius: 30px;
}

.gallery-carousel-box .gallery-scrolling-content .gallery-image:nth-child(even){
	padding-top: 75px;
}

/************************************/
/***     08. Our Services css     ***/
/************************************/
.item-border{
	border: 1px solid #B0D8D8;
}
.item-border .service-body {
	background-color: #f4f4f4db !important;
}
.item-border:hover .service-body {
	background-color: var(--accent-color) !important;
	transition: all 0.5s ease-in-out;
}
.item-border .service-body h3{
    color: var(--accent-color) !important;
	transition: all 0.5s ease-in-out;
}
.item-border:hover .service-body h3{
    color: var(--white-color) !important;
	transition: all 0.5s ease-in-out;
}
.item-border .service-body p{
	margin: 0;
	color: var(--accent-color);
	transition: all 0.5s ease-in-out;
    font-weight: 200;
}
.item-border:hover .service-body p{
	color: var(--white-color) !important;
    font-size: 16px;
    font-weight: 200;
}

.our-service{
	padding: 20px 0 20px;
}

.service-item{
	border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.service-item:hover{
	box-shadow: 0 4px 20px rgb(0 0 0 / 30%);
}
/* .item-border:hover{
	border: 1px solid #009494;
} */
.service-item .last{
	padding: 28px 22px !important;
}
.service-item .service-body {
    position: absolute;
    bottom: 0;
    padding: 18px 22px;
    color: #fff;
    width: 100%;
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px); 
    background: rgba(0, 150, 150, 0.9); 
    overflow: hidden;
	gap: 10px;
}
.service-item:hover .service-body {
    position: absolute;
    bottom: 0;
    padding: 18px 22px;
    color: #fff;
    width: 100%;
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px); 
    background: rgba(255, 255, 255, 0.9); 
    overflow: hidden;
	gap: 10px;
	transition: all 0.5s ease-in-out;
}

.service-item .service-body::before {
    content: "";
    position: absolute;
	padding: 18px 22px;
    inset: 0;
    background-image: url("../images/noise.png");
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Optional: Bring text above noise layer */
.service-item .service-body > * {
    position: relative;
    z-index: 1;
}


.service-item .service-body h3{
	font-size: 18px !important;
    font-weight: 200;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #fff;
	transition: all 0.5s ease-in-out;
}


.service-item:hover .service-body h3{
	color: var(--accent-color);
	font-size: 20px;
    font-weight: 200;
}

.service-item .service-body p{
	margin: 0;
	transition: all 0.5s ease-in-out;
    font-weight: 200;
}

.service-item:hover .service-body p{
	color: var(--accent-color);
    font-size: 16px;
    font-weight: 200;
}

.service-item .service-footer a {
    background-color:#fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.service-item .img-box img{
	width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
	height: 290px;
}

.service-item-new .img-box img{
	width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
	height: 300px;
}

.service-item .img-box {
  position: relative;
}
.service-footer.static-btn {
  position: static; /* stays in normal layout */
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: auto; /* pushes it to the right inside flex */
}

.service-footer {
  pointer-events: auto;
}

.service-body a,
.service-body {
  pointer-events: auto;
}


.service-footer {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.arrow-add .service-footer .service-btn {
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease-in-out;
}

.arrow-add .img-box .service-footer img{
	width: 100%;
    aspect-ratio:unset;
    object-fit: none;
	transform: rotate(320deg);
}

.service-item:hover .service-footer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-footer .service-btn {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
  transition: background-color 0.3s ease-in-out;
}

.service-footer .service-btn:hover {
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  transform: rotate(40deg);
}

.service-footer-static {
  position: relative;
  margin-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    right: 0 !important;
    top: 10px !important;
}

.service-footer-static .service-btn {
  width: 100%;
  height: auto !important;
  background-color: var(--accent-color);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: none !important;
}

.service-footer-static .service-btn i {
  margin-left: 8px;
  transition: none !important;
}
.service-footer-static .service-btn:hover {
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
    transform: none !important;
}

.service-cta-item{
	padding: 40px 100px;
	text-align: center;
}

.service-cta-item .icon-box{
	margin: 0 auto;
	margin-bottom: 20px;
}

.service-cta-item:hover .service-cta-btn .btn-default:after{
	width: 100%;
}

.service-cta-item:hover .service-cta-btn .btn-default:before{
	background-color: var(--accent-color);
}

/************************************/
/***  09. Solution Your Plan css  ***/
/************************************/

.solution-your-plan{
	padding: 100px 0;
	background: var(--secondary-color);
}

.solution-plan-image{
	display: flex;
	align-items: start;
	justify-content: end;
	position: relative;
}

.solution-plan-img-1{
	margin-right: 16px;
}

.solution-plan-img-1 figure,
.solution-plan-img-2 figure{
	display: block;
}

.solution-plan-img-1 figure:after,
.solution-plan-img-2 figure:after{
	width: 250%;
}

.solution-plan-img-1 img,
.solution-plan-img-2 img{
	border-radius: 30px;
}

.solution-plan-content{
	margin-left: 20px;
}

.solution-plan-content .section-title h3{
	background: var(--white-color);
}

.solution-plan-body{
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.solution-plan-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.solution-plan-body ul li{
	position: relative;
    color: var(--primary-color);
    padding-left: 30px;
	margin-bottom: 10px;
}

.solution-plan-body ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--primary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.solution-plan-body ul li:last-child{
	margin-bottom: 0;
}

.solution-counter-item{
	display: flex;
	align-items: center;
}

.solution-counter-item .icon-box{
	margin-right: 10px;
}

.solution-counter-item .icon-box img{
	max-width: 48px;
}

.solution-counter-item .solution-counter-content{
	width: calc(100% - 58px);
}

.solution-counter-item .solution-counter-content h3{
	font-size: 22px;
	margin-bottom: 5px;
}

.solution-counter-item .solution-counter-content p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***    10. Why Choose Us css 	  ***/
/************************************/

.hero-title{
	padding: 40px 50px;
	/* padding-top: 100px; */
}
.hero-title .section-title{
	text-align: center;
	width: 100%;
	margin: 0 auto;
}
.hero-title .section-title h4{
	font-size: 32px;
    font-family: var(--default-font);
    font-weight: 400;
    color: #565555;
    line-height: 137%;
}
.hero-title .section-title h4 span{
    color: var(--accent-color);
}
.about-body{
	display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
}
.about-us-content{
    width: calc(100% - 211px);
    position: relative;
    z-index: 1;
}
.about-img figure img{
  	border-top-left-radius: 48px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 48px;
    box-shadow: 10px -10px 0 0 #EDEDED;
}
.about-us-item{
    display: flex;
    align-items: center;
    padding: 0;
    gap: 35px;
}
.about-us-item .icon-box{
	background-color: #E8F6F7;
	height: 99px;
    width: 100px;
    border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.about-us-item .icon-box::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 10px;
    background-color: var(--primary-color);
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.about-us-item:hover .icon-box::before{
	transform: scale(1);
}

.about-us-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 60px;
	transition: all 0.3s ease-in-out;
}

.about-us-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.about-content .about-body .about-us-content h3{
	font-size: 22px;
    font-weight: 100;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 20px;
	line-height: 127%;
	transition: all 0.3s ease-in-out;
}

.about-content .about-body .about-us-content p{
	font-size: 17px;
    font-family: var(--accent-font);
    margin: 0;
	font-weight: 200;
    color: var(--text-color);
    line-height: 25px;
    transition: all 0.3s ease-in-out;
}

.about-content .about-us-footer .appointment-btn {
	text-align: left;
}

.about-content .section-title .quote{
	margin-top: 20px;
}

.about-content .section-title .quote p{
	font-weight: 200;
	font-size: 17px;
	color: var(--accent-color);
}
.about-content .quality-treatment-body ul li {
    position: relative;
    color: #3E3E3E;
    text-transform: none;
    padding-left: 30px;
    text-align: justify;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 200;
    line-height: 25px;
}
.point-item {
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    background-color: #fff;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
	border: 1px solid #B0D8D8 ;
}
.point-item .img-box img {
    width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}
.point-item .service-body {
    position: relative !important;
    bottom: 0;
    padding: 18px 22px;
    color: var(--text-color);
    width: 100%;
    background: #FFF;
    overflow: hidden;
	text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.point-item .service-body::before {
    content: "";
    position: absolute;
    padding: 18px 22px;
    inset: 0;
    background-image: none;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.point-item .service-body h3 {
    font-size: 18px !important;
    font-weight: 200;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--accent-color);
    transition: all 0.5s ease-in-out;
}
.service-item .service-footer a {
    background-color: #fff;
    font-size: 18px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    color: var(--accent-color);
    align-items: center;
    gap: 0;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    flex-direction: row;
}
.point-item:hover{
	box-shadow: 4px 4px #1BA4B3;
}
.point-item:hover .service-body p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 200;
}
.point-item:hover .service-body h3 {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 200;
}
.why-choose-us{
	padding: 100px 0;
}

.why-choose-us .section-title{
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.why-choose-us .why-choose-us-box{
	position: relative;
	margin-top: 30px;
}

.why-choose-box-1{
	background-color: var(--secondary-color);
	border-radius: 30px 0 0 30px;
}

.why-choose-box-2{
	background-color: var(--primary-color);
	border-radius: 0 30px 30px 0;
}

.why-choose-image{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.why-choose-item{
	border-bottom: 2px solid var(--dark-divider-color);
	display: flex;
	align-items: center;
	padding: 40px;
}

.why-choose-item:last-child{
	border-bottom: none;
}

.why-choose-item .icon-box{
	background-color: var(--white-color);
	height: 52px;
	width: 52px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.why-choose-item .icon-box::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 10px;
    background-color: var(--primary-color);
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-content{
	width: calc(100% - 72px);
	position: relative;
	z-index: 1;
	max-width: 300px;
}

.why-choose-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.why-choose-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.why-choose-box-2 .why-choose-item{
	border-color: var(--divider-color);
	flex-direction: row-reverse;
	text-align: right;
}

.why-choose-box-2 .why-choose-item .icon-box{
	margin-right: 0;
	margin-left: 20px;
}

.why-choose-box-2 .why-choose-item .icon-box::before{
	background-color: var(--secondary-color);
}

.why-choose-box-2 .why-choose-item:hover .icon-box img{
    filter: brightness(1) invert(0);
}

.why-choose-box-2 .why-choose-content h3{
	color: var(--white-color);
}

.why-choose-box-2 .why-choose-content p{
	color: var(--white-color);
	opacity: 70%;
}

/************************************/
/***   11. Need Attension css     ***/
/************************************/

.need-attention{
	padding: 20px 0;
	background: url('../images/Clinic.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	padding-bottom: 20px;
}

.need-attention-shockwave{
	padding: 20px 0;
	background: url('../images/shockwave-info.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	padding-bottom: 40px;
}
.need-attention-shockwave:before {
    position: absolute;
    content: '';
    background: #009696;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.need-attention-shockwave .section-title h3 {
    display: block;
    font-size: 23px;
    font-weight: normal;
    line-height: 137%;
    text-transform: none;
    color: var(--white-color) !important;
    padding: 10px 0;
    position: relative;
    font-family: var(--default-font);
}
.need-attention-shockwave .section-title p{
    display: block;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
	text-align: center;
    text-transform: none;
    color: var(--white-color) !important;
    padding: 0;
    position: relative;
    font-family: var(--accent-font);
}

.need-attention-one{
	padding: 20px 0;
	background: #fff;
	background-size: cover;
	position: relative;
}

.need-attention-orthotics{
	padding: 30px 0;
	background: url('../images/orthotics1.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}

.need-attention-orthotics-bg{
	padding: 20px 0;
	background: url('../images/orthotics-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}

.need-attention-orthotics2{
	padding: 20px 0;
	background: url('../images/Clinic.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}
.need-attention-orthotics2:before{
	position: absolute;
	content: '';
	background: var(--accent-color) !important;
	opacity: 80%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.need-attention-arthritis{
	padding: 40px 0;
	background: url('../images/arthritis6.png') no-repeat center center;
	background-size: cover;
	position: relative;
}

.need-attention-infla{
	padding: 40px 0;
	background: url('../images/infla3.png') no-repeat center center;
	background-size: cover;
	position: relative;
}

/* .need-attention-pilates {
    padding: 65px 0;
    background: url('../images/pilates-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
} */

.need-attention-backpain{
	padding: 20px 0;
	background: url('../images/info-backpain.png') no-repeat center center;
	background-size: cover;
	position: relative;
}
.need-attention-stimpod{
	padding: 20px 0;
	background: url('../images/stimpod-1.JPG') no-repeat center center;
	background-size: cover;
	position: relative;
}
.need-attention-h-injection{
	padding: 20px 0;
	background: url('../images/h-injection4.png') no-repeat center center;
	background-size: cover;
	position: relative;
}
.need-attention-kneepain{
	padding: 20px 0;
	background: url('../images/knee-pain.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}
.need-attention-hippain{
	padding: 20px 0;
	background: url('../images/hippain.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}

.need-attention-hip{
	padding: 20px 0;
	background: url('../images/Hip-Physiotherapy.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	background-attachment: none;
}
.need-attention-hip:before {
    position: absolute;
    content: '';
    background: #009696;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.need-attention-physio{
	padding: 20px 0;
	background: url('../images/physio-1.png') no-repeat center center;
	background-size: cover;
	position: relative;
	background-attachment: unset !important;
}

.need-attention-work{
	padding: 20px 0;
	background: url('../images/work.png') no-repeat center center;
	background-size: cover;
	position: relative;
	background-attachment: unset !important;
}

.need-attention-work1{
	padding: 20px 0;
	background: url('../images/work3.png') no-repeat center center;
	background-size: cover;
	position: relative;
	background-attachment: unset !important;
}

.need-attention-backpain:before {
    position: absolute;
    content: '';
    background: #009696;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.need-attention-backpain .section-title h3 {
    display: block;
    font-size: 23px;
    font-weight: normal;
    line-height: 137%;
    text-transform: none;
    color: var(--white-color) !important;
    padding: 10px 0;
    position: relative;
    font-family: var(--default-font);
}
.need-attention-backpain .section-title p{
    display: block;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
	text-align: center;
    text-transform: none;
    color: var(--white-color) !important;
    padding: 10px 0;
    position: relative;
    font-family: var(--accent-font);
}

.need-attention:before{
	position: absolute;
	content: '';
	background: var(--primary-color);
	opacity: 80%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.need-attention-one:before {
    position: absolute;
    content: '';
    background: #fff;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.need-attention-one .section-title h3 {
    display: block;
    font-size: 24px;
    font-weight: normal;
    line-height: 137%;
    text-transform: none;
    color: var(--text-color) !important;
    padding: 10px 0;
    font-family: var(--default-font) ;
}
.need-attention-one .section-title h2,
.need-attention-one .section-title p{
	color: var(--text-color) !important;
}

.need-attention .container{
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1347px;
	margin: 0 auto;
}

.need-attention .section-title h3 {
    display: block;
    font-size: 24px;
    font-weight: normal;
    line-height: 137%;
    text-align: justify;
    text-transform: none;
    color: var(--white-color);
    padding: 10px 0;
    font-family: var(--default-font);
}
.need-attention .section-title p{
	/*max-width: 1079px;*/
}
.need-attention .section-title p a{
	color: var(--white-color);
	text-decoration: underline;
	font-weight: 400
}

.need-attention .section-title{
	text-align: justify;
}

.need-attention .section-title h2,
.need-attention .section-title p{
	color: var(--white-color);
}

.need-attention-list{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 0 10px 5px 10px;
}

.quality-treatment-body{
    padding-top: 15px;
}

.need-attention .col-lg-4:nth-last-child(-n + 3) .need-attention-list{
	margin-bottom: 0px;
	padding: 0px 10px 0px 10px;
	border-bottom: none;
}

.need-attention-list .icon-box{
	margin-right: 20px;
}

.need-attention-list .icon-box img{
	max-width: 32px;
}
.backpain-need-attention {
    padding: 30px 0;
    background: #fff;
    background-size: cover;
    position: relative;
}
.backpain-need-attention:before {
    position: absolute;
    content: '';
    background: #fff;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.backpain-need-attention .need-attention-content .quality-treatment-body ul li {
    position: relative;
    font-size: 18px;
    font-weight: 200;
    color: var(--text-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
    transition: all 0.3s ease-in-out;
}
.backpain-need-attention .need-attention-content .quality-treatment-body ul li a {
    position: relative;
    font-size: 18px;
    font-weight: 200;
    color: var(--text-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
    transition: all 0.3s ease-in-out;
}
.backpain-need-attention .need-attention-content .quality-treatment-body ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #1BA4B3;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}
.backpain-need-attention .section-title h2 {
    color: var(--primary-color);
}
.need-attention-gray{
	background: #F6F6F6;
}
.need-attention-gray:before {
    position: absolute;
    content: '';
    background: #F6F6F6;
    opacity: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.need-attention-gray .section-title h2 {
    color: var(--primary-color);
}
.need-attention-gray .section-title h3 {
    display: block;
    font-size: 24px;
    font-weight: normal;
    line-height: 137%;
    text-transform: none;
    color: var(--text-color);
    padding: 10px 0;
    font-family: var(--default-font);
}
.suffering .icon-box img{
	width: 105px;
    height: 85px;
	max-width: 85px;
}

.need-attention-list .need-attention-content{
	width: calc(100% - 52px);
}

.need-attention-list .need-attention-content p{
	font-size: 18px;
    font-weight: 200;
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
}

.need-attention-list .need-attention-content p a{
	font-size: 18px;
    font-weight: 200;
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
	transition: all 0.3s ease-in-out;
}

.need-attention-content .quality-treatment-body ul li a {
    position: relative;
    font-size: 18px;
    font-weight: 200;
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
	transition: all 0.3s ease-in-out;
}

.need-attention-content .quality-treatment-body ul li a:hover{
	font-size: 18px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: capitalize;
    line-height: 25px;
    margin: 0;
    font-family: var(--accent-font);
}

.need-attention-content .quality-treatment-body ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

/************************************/
/***   	12. Our Theraphist css    ***/
/************************************/

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
    position: relative;
    overflow: hidden;
	border-radius: 30px;
	margin-bottom: 20px;
}

.team-image img{
	width: 100%;
	height: 300px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	margin: 0 auto; 
	transform: translateY(100%);
	text-align: center;
	z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
	bottom: 20px;
	transform: translateY(0);
}

.team-social-icon ul{
	display: inline-block;
	list-style: none;
	line-height: normal;
	margin: 0;
	padding: 14px 28px;
	background: var(--white-color);
	border-radius: 20px;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 20px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
}

.team-social-icon ul li a i{
    color: var(--accent-color);
    font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--primary-color);
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 23px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

/*.team-content p{*/
/*	text-transform: capitalize;*/
/*	margin: 0;*/
/*}*/


/************************************/
/***  	13. Our Testimonial css   ***/
/************************************/

.our-testimonial{
	padding: 40px 0 40px;
	background: #F6F6F6; 
	background-size: auto;
}

.our-testimonial .section-title{
	text-align: center;
}

.our-testimonial .section-title h3{
	background: #F6F6F6;
}

.our-testimonial .swiper-wrapper{
	cursor: none;
}

/*.testimonial-item{*/
/*	background: var(--white-color);*/
/*	border: 2px solid var(--dark-divider-color);*/
/*	border-radius: 10px;*/
/*	padding: 40px;*/
/*}*/

.testimonial-item {
    background: var(--white-color);
    border: 2px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 40px;  
    height: 530px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial-content {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar */
.testimonial-content::-webkit-scrollbar {
    width: 8px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.testimonial-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Firefox */
.testimonial-content {
    scrollbar-width: thin;
    scrollbar-color: #999 #f1f1f1;
}


.testimonial-item .testimonial-header{
	margin-bottom: 40px;
}

.testimonial-header .testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-header .testimonial-rating i{
	font-size: 16px;
	color: #F5A200;
	margin-right: 5px;
}

.testimonial-header .testimonial-content p{
	color: var(--primary-color);
	opacity: 70%;
	margin: 0;
	font-size: 14px !important;
    line-height: 23px !important;
    text-align: justify;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	width: 56px;
	height: auto;
	margin-right: 10px;
}

.testimonial-body .author-image img{
	width: 45px;
	height: 45px;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-body .author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.testimonial-body .author-content{
	width: calc(100% - 66px);
}

.testimonial-body .author-content p{
	color: var(--primary-color);
	opacity: 70%;
	text-transform: capitalize;
	margin: 0;
}

.testimonial-slider .swiper-pagination{
	position: relative;
	text-align: center;
	bottom: 0px;
	margin-top: 60px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	height: 7px;
    width: 44px;
    border-radius: 10px;
    background-color: #E2E2E2;
	opacity: 1;
	margin: 0px 6px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--accent-color);
	opacity: 1;
}

.google-review-badge {
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
  color: #1c1c1c;
  line-height: 1.4;
}

.google-label {
  font-size: 16px;
  margin-bottom: 4px;
}

.google-logo {
  font-size: 25px;
  font-weight: 400;
  font-family: var(--accent-font);
  color: #4285F4;
}

.google-logo::after {
  content: '';
  display: inline-block;
  margin-left: 1px;
  vertical-align: middle;
  width: 0;
  height: 0;
  border: none;
}

.google-logo span:nth-child(1) { color: #4285F4; } /* G */
.google-logo span:nth-child(2) { color: #EA4335; } /* o */
.google-logo span:nth-child(3) { color: #FBBC05; } /* o */
.google-logo span:nth-child(4) { color: #4285F4; } /* g */
.google-logo span:nth-child(5) { color: #34A853; } /* l */
.google-logo span:nth-child(6) { color: #EA4335; } /* e */

.rating-text {
  color: #1c1c1c;
  font-weight: 500;
}

.google-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.google-stars i{
	color: #fbbc04;
}

.star {
  color: #fbbc04;
  font-size: 20px;
}

.review-count {
  margin-left: 8px;
  color: #1c1c1c;
  font-weight: 500;
}


/************************************/
/***   		14. Our Blog css      ***/
/************************************/

.our-blog{
	padding: 20px 0 20px;
}

.blog-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: 30px;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image img{
	aspect-ratio: 1/0.65;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	margin-bottom: 20px;
}

.post-item-body p{
	margin-bottom: 0;
}

.post-item-body h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 10px;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-item-body .blog-detail{
    height: 67px;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-footer .readmore-btn{
	position: relative;
	font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
    /* padding-right: 30px; */
    transition: 0.3s ease-in-out;
}

.our-blog .post-item-footer .readmore-btn{
	padding-right: o;
	border-bottom: 2px solid var(--accent-color);
}

.post-item-footer .readmore-btn::after{
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    background-image: url("../images/readmore-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    transition: 0.3s ease-in-out;
}

/************************************/
/***  15. Scrolling Ticker css    ***/
/************************************/

.our-scrolling-ticker{
	background-color: #d0ebeb;
	padding: 25px 0;
}

.scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 64s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-size: 20px;
    font-weight: 100;
    color: var(--primary-color);
    font-family: var(--default-font);
	vertical-align: middle;
	line-height: 35px;
}

.scrolling-content span a{
	display: inline-block;
	font-size: 30px;
    font-weight: 100;
    color: var(--primary-color);
    font-family: var(--default-font);
	vertical-align: middle;
	line-height: 25px;
}

.scrolling-content span img{
	width: 100%;
	max-width: 43px;
	margin-right: 40px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***   		16. Footer css        ***/
/************************************/

.main-footer{
	padding: 306px 0 0;
	background: url('../images/footer-img.png');
	background-size: cover;
}

.footer-logo{
	margin-bottom: 30px;
}

.about-footer-content{
	margin-bottom: 30px;
}

.about-footer-content p{
	color: var(--text-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 20px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a i{
	color: var(--text-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--accent-color);
}

.about-working-hour h3,
.about-service-list h3,
.footer-contact h3{
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 200;
	text-transform: capitalize;
	margin-bottom: 12px;
}

.about-working-hour{
	margin-left: 55px;
}

.about-working-hour ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-working-hour ul li{
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.about-working-hour ul li:last-child{
	margin-bottom: 0;
}

.about-service-list{
	margin-left: 55px;
}

.about-service-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-service-list ul li{
	text-transform: capitalize;
	margin-bottom: 12px;
}

.about-service-list ul li:last-child{
	margin-bottom: 0;
}

.about-service-list ul li a{
	color: var(--text-color);
	font-size: 15px;
	transition: all 0.3s ease-in-out;
}

.about-service-list ul li:hover a{
	color: var(--accent-color);
}

.footer-contact-details .footer-info-box {
	position: relative;
	padding-left: 30px;
    margin-bottom: 30px;
}

/* 
.footer-contact-details .footer-info-box:last-child{
	margin-bottom: 0;
} */

.footer-info-box .icon-box{
	position: absolute;
	top: 0;
	left: 0;
}

.footer-info-box .icon-box img{
	max-width: 20px;
}

.footer-info-box-content p a{
	color: var(--text-color);
	margin-bottom: 0;
	font-size: 18px;
    line-height: 25px;
}

.footer-copyright{
	border-top: 1px solid #C3C3C3;
	padding: 24px 0;
	margin-top: 40px;
	display: flex;
    justify-content: center;
}

.footer-copyright-text p{
	color: var(--text-color);
	margin: 0;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-links ul li{
	display: inline-block;
	margin-right: 8px;
}

.footer-links ul li:last-child{
	margin-right: 0;
}

.footer-links ul li a{
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

/************************************/
/***   17. About us Page css      ***/
/************************************/

.page-header{
	padding: 100px 0;
	/* background: var(--secondary-color); */
	background: url('../images/page-header.png') center center;
	background-size: cover;
}

.page-header-accu{
	padding: 100px 0;
	background: url('../images/page-header-acupuncher.png') center center;
	background-size: cover;
}

.page-header-body-mot{
	padding: 100px 0;
	background: url('../images/page-header-body-mot.png') center center;
	background-size: cover;
}

.page-header-backpain{
	padding: 100px 0;
	background: url('../images/page-header-backpain.png') center center;
	background-size: cover;
}

.page-header-hand{
	padding: 100px 0;
	background: url('../images/page-header-hand.png') center center;
	background-size: cover;
}

.page-header-knee{
	padding: 100px 0;
	background: url('../images/page-header-knee.png') center center;
	background-size: cover;
}

.page-header-elbow{
	padding: 100px 0;
	background: url('../images/page-header-elbow.png') center center;
	background-size: cover;
}


.page-header-shoulder{
	padding: 100px 0;
	background: url('../images/page-header-shoulder.png') center center;
	background-size: cover;
}

.page-header-neck{
	padding: 100px 0;
	background: url('../images/page-header-neck.png') center center;
	background-size: cover;
}

.page-header-hip{
	padding: 100px 0;
	background: url('../images/page-header-hip.png') center center;
	background-size: cover;
}

.page-header-shockwave{
	padding: 100px 0;
	background: url('../images/page-header-shockwave.png') center center;
	background-size: cover;
}

.page-header-pilates{
	padding: 100px 0;
	background: url('../images/page-header-pilates.png') center center;
	background-size: cover;
}

.page-header-work{
	padding: 100px 0;
	background: url('../images/page-header-work.png') center center;
	background-size: cover;
}

.page-header-sport{
	padding: 100px 0;
	background: url('../images/page-header-sport.png') center center;
	background-size: cover;
}

.page-header-orthotics{
	padding: 100px 0;
	background: url('../images/page-header-orthotics.png') center center;
	background-size: cover;
}

.page-header-aboutus{
	padding: 100px 0;
	background: url('../images/page-header-aboutus.png') center center;
	background-size: cover;
}


.page-header-arthritis{
	padding: 100px 0;
	background: url('../images/page-header-arthritis.png') center center;
	background-size: cover;
}

.page-header-inflametory{
	padding: 100px 0;
	background: url('../images/page-header-inflametory.png') center center;
	background-size: cover;
}

.page-header-injection{
	padding: 100px 0;
	background: url('../images/page-header-injection.png') center center;
	background-size: cover;
}

.page-header-vertigo {
    padding: 100px 0;
    background: url(../images/page-header-vertigo.png) center center;
    background-size: cover;
}

.page-header-arthrosamid {
    padding: 100px 0;
    background: url(../images/page-header-arthrosamid.png) center center;
    background-size: cover;
}

.page-header-foot-ankle{
	padding: 100px 0;
	background: url('../images/page-header-foot-ankle.png') center center;
	background-size: cover;
}

.page-header-team{
	padding: 100px 0;
	background: url('../images/page-header-team.png') center center;
	background-size: cover;
}

.page-header-Injuries{
	padding: 100px 0;
	background: url('../images/page-header-Injuries.png') center center;
	background-size: cover;
}

.page-header-stimpod{
	padding: 100px 0;
	background: url('../images/page-header-stimpod.png') center center;
	background-size: cover;
}

.page-header-box h1{ 
	color: var(--white-color);
	font-size: 57px;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 20px;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-family: var(--default-font);
	color: #04e7e7;
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
    color: var(--white-color);
}

.page-about-us{
	padding: 100px 0;
}

.company-counter{
	padding: 40px 0;
	background: var(--primary-color);
}

.company-counter-item{
	display: flex;
	align-items: center;
}

.company-counter-item .icon-box{
	margin-right: 10px;
}

.company-counter-item .icon-box img{
	max-width: 64px;
}

.company-counter-item .company-counter-content{
	width: calc(100% - 74px);
}

.company-counter-item .company-counter-content h3{
	color: var(--white-color);
	font-size: 32px;
	margin-bottom: 5px;
}

.company-counter-item .company-counter-content p{
	color: var(--white-color);
	opacity: 70%;
	text-transform: capitalize;
	margin: 0;
}

.mission-vision{
	position: relative;
	padding: 20px 0;
}

.mission-vision::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--white-color);
	opacity: 85%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mission-vision .section-title{
	position: relative;
	z-index: 1;
	text-align: center;
}

.mission-vision .section-title p{
	font-size: 20px;
	font-weight: 200;
	font-family: var(--default-font);
	line-height: 25px;
	color: var(--text-color);
}

/* .our-mva-item{
	position: relative;
	background: #33ABAB;
	color: #fff;
	border: 1px solid #bcbdbd;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.our-mva-item:before{
	content: '';
    position: absolute;
	top: 100%;
	right: 0;
    left: 0;
	background-color: var(--white-color);
    border-radius: 0px;
    transition: all 0.4s ease-in-out;
    height: 100%;
	width: 100%;
    z-index: 0;
}

.our-mva-item:hover:before{
	top: 0;
} */

.our-mva-item {
    position: relative;
    background: #33ABAB;
    color: #fff;
    border: 1px solid #bcbdbd;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
    z-index: 1;
	cursor: pointer;
}

.our-mva-item-ortho{
	position: relative;
    background: #fff;
    color: var(--text-color);
    border: 1px solid #bcbdbd;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
    z-index: 1;
}
.add-height{
    height: 386px;
}
.add-height .mva-item-image img {
    width: 100%;
    border-radius: 20px;
    margin-top: 42px !important;
}
.our-mva-item-ortho .mva-item-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color) !important;
    text-transform: capitalize;
    font-family: var(--accent-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.our-mva-item-ortho .mva-item-content h5{
	font-size: 16px;
    font-weight: 200;
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--accent-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.our-mva-item-ortho:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color) !important;
    opacity: 80%;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}
.our-mva-item-ortho:hover{
	transition: all 0.4s ease-in-out;
	box-shadow: 0 5px 12px #a4a4a42b;
}
.our-mva-item-ortho:hover .mva-item-content h3,
.our-mva-item-ortho:hover .mva-item-content h5,
.our-mva-item-ortho:hover .mva-item-content p{
	color: #fff !important;
}
.our-mva-item-ortho:hover .mva-item-content h3,
.our-mva-item-ortho:hover .mva-item-content p {
    font-weight: 200;
}

.our-mva-item:hover{
	transition: all 0.4s ease-in-out;
	box-shadow: 0 5px 12px #a4a4a42b;
}
.our-mva-item:hover .mva-item-content h3{
    font-weight: 400;
}
.our-mva-item:hover .mva-item-content p {
    font-weight: 200;
}

.our-mva-item-ortho .mva-item-image img{
	width: 100%;
    border-radius: 20px;
    margin-top: 15px;
}

.our-mva-item-ortho1{
	position: relative;
    background: var(--accent-color);
    color: var(--white-color);
    border: 1px solid #bcbdbd;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
    z-index: 1;
}
.our-mva-item-ortho1 .mva-item-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color) !important;
    text-transform: capitalize;
    font-family: var(--accent-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.our-mva-item-ortho1 .mva-item-content h5{
    font-weight: 200;
    font-size: 20px;
    line-height: 25px;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--accent-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.our-mva-item-ortho1:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #fff !important;
    opacity: 80%;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}
.our-mva-item-ortho1:hover{
	transition: all 0.4s ease-in-out;
	box-shadow: 0 5px 12px #a4a4a42b;
}
.our-mva-item-ortho1:hover .mva-item-content h3,
.our-mva-item-ortho1:hover .mva-item-content h5,
.our-mva-item-ortho1:hover .mva-item-content p{
	color: var(--text-color) !important;
}
.our-mva-item-ortho1:hover .mva-item-content h3,
.our-mva-item-ortho1:hover .mva-item-content p {
    font-weight: 200;
}
.our-mva-item-ortho1 .mva-item-image img{
	width: 100%;
    border-radius: 20px;
    margin-top: 15px;
}

.our-mva-item-sports {
    position: relative;
    background: #ffffff36;
    color: var(--text-color);
    border: 1px solid #bdbcbc38;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    z-index: 1;
    box-shadow: inset 3px 3px 16px #ffffff30;
}
.our-mva-item-sports:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color) !important;
    opacity: 80%;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}
.our-mva-item-sports .mva-item-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff !important;
    text-transform: capitalize;
    font-family: var(--accent-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.our-mva-item-sports .mva-item-content p{
	margin: 0;
	color: #fff !important;
	font-weight: 200;
	text-transform: none;
	font-family: var(--accent-font);
    line-height: 25px;
    font-weight: 200;
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.our-mva-item-sports:hover .mva-item-content h3,
.our-mva-item-sports:hover .mva-item-content p{
	color: var(--white-color) !important;
	font-weight: 200;
}

/* White semi-transparent overlay on hover */
.our-mva-item:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 80%;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.our-mva-item:hover:before {
    top: 0;
}

/* Image wrapper */
.mva-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    overflow: hidden;
}

.mva-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Show image on hover */
.our-mva-item:hover .mva-bg-image {
    opacity: 1;
}


.our-mva-item .icon-box{
	position: relative;
	background: var(--secondary-color);
	border-radius: 10px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
	z-index: 1;
}

.our-mva-item .icon-box:before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background-color: var(--white-color);
    transition: all 0.5s ease-in-out;
    height: 100%;
}

.our-mva-item:hover .icon-box:before{
	top: 0;
}

.our-mva-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 30px;
}

.our-mva-item .mva-item-content{
	position: relative;
	z-index: 3;
}

.our-mva-item .mva-item-content h3{
	font-size: 18px;
    font-weight: 400;
	color: #fff;
    text-transform: capitalize;
    font-family: var(--accent-font);
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.physio-point .our-mva-item .mva-item-content h3 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    font-family: var(--default-font);
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.physio-point1 {
    padding: 20px 0;
    background: url(../images/physio-2.png) no-repeat center center;
    background-size: cover;
    position: relative;
}

.our-mva-item:hover .mva-item-content h3{
	color: #3E3E3E;
}

.our-mva-item .mva-item-content p{
	margin: 0;
	font-family: var(--accent-font);
    line-height: 25px;
    font-weight: 200;
	font-size: 16px;
	text-align: justify;
	transition: all 0.3s ease-in-out;
}

.our-mva-item:hover .mva-item-content p{
	color: #3E3E3E;
}

.cta-infobar{
	position: relative;
	background: var(--white-color);
	padding: 40px;
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	z-index: 1;
}

.cta-info-content{
	display: flex;
}

.cta-info-content .icon-box{
	background: var(--secondary-color);
	border-radius: 10px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.cta-info-content .icon-box img{
	max-width: 30px;
}

.cta-info-content .cta-content{
	width: calc(100% - 68px);
}

.cta-info-content .cta-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.cta-info-content .cta-content p{
	color: var(--primary-color);
	opacity: 70%;
	margin: 0;
}

.cta-appointment-btn{
	text-align: right;
}

.quality-treatment{
	background: var(--accent-color);
	padding: 40px 0;
}

.quality-treatment-video{
    position: relative;
	z-index: 1;
    overflow: hidden;
	cursor: none;
	border-radius: 30px;
}

.quality-treatment-video .video-image img{
	width: 100%;
	aspect-ratio: 1/0.88;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.5s ease-in-out;
}

.quality-treatment-video:hover .video-image img{
    transform: scale(1.1);
}

.quality-treatment-video .video-image a{
	cursor: none;
	position: relative;
	z-index: 1;
}

.video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.video-play-button a{
	position: relative;
	background-color: var(--white-color);
	border-radius: 100%;
	width: 86px;
	height: 86px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 36px;
	color: var(--accent-color);
}

.quality-treatment-content .section-title h3{
	background: var(--white-color);
}

.quality-treatment-content{
	padding-left: 20px;
}

.quality-treatment-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.quality-treatment .section-title h2 span {
    color: #3E3E3E;
}
.quality-treatment .section-title p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 25px;
    color: var(--white-color);
    font-weight: 200;
}
.sciatica2-content .section-title p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 25px;
    color: var(--white-color);
    font-weight: 200;
}
.sciatica2-content .section-title p a:hover {
    color: var(--white-color);
}
.quality-treatment-body ul li a{
	color: var(--white-color);
	text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.quality-treatment-body ul li{
	position: relative;
    color: var(--white-color);
    text-transform: none;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 200;
    line-height: 25px;
}

.quality-treatment-body ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #3E3E3E;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 4px;
    left: 0;
}

.quality-treatment-body ul li:last-child{
	margin-bottom: 0;
}

.therapy-process{
	padding: 100px 0 70px;
}

.therapy-process .section-title{
	text-align: center;
}

.therapy-process-item{
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.therapy-process-item .icon-box{
	position: relative;
	height: 100px;
	width: 100px;
	border-radius: 100%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.therapy-process .col-lg-3:nth-child(even) .therapy-process-item .icon-box:before{
	position: absolute;
	display: block;
	content: '';
	background: url('../images/icon-right-down-arrow.svg') no-repeat right center;
    top: 50%;
    right: 0;
    width: 135px;
    height: 23px;
    background-size: 100% auto;
    transform: translate(175px, -50%);
	z-index: 2;
}

.therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box::before{
	position: absolute;
	display: block;
	content: '';
	background: url('../images/icon-right-up-arrow.svg') no-repeat right center;
    top: 50%;
    right: 0;
    width: 135px;
    height: 23px;
    background-size: 100% auto;
    transform: translate(175px, -50%);
	z-index: 2;
}

.therapy-process .col-lg-3:nth-last-child(1) .therapy-process-item .icon-box:before{
	display: none;
}

.therapy-process-item .icon-box img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 100%;
}

.therapy-process-item .therapy-process-content h3{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	max-width: 220px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.therapy-process-item .therapy-process-content p{
	color: var(--primary-color);
	opacity: 70%;
	margin: 0;
}

/************************************/
/***	18. Service Page css      ***/
/************************************/

.page-services{
	padding: 100px 0;
}

.page-services .cta-infobar{
	margin-top: 70px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-featured-img{
	margin-bottom: 30px;
}

.service-featured-img img{
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry h2{
	font-size: 54px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-entry h3{
	font-size: 32px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-entry p{
	margin-bottom: 30px;
}

.service-entry ul{
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 30px;
}

.service-entry ul li{
    position: relative;
    width: calc(50% - 10px);
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 35px;
}

.service-entry ul li:before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}

.service-entry-image figure{
	display: block;
}

.service-entry-image img{
	border-radius: 30px;
	aspect-ratio: 1/0.68;
	object-fit: cover;
}

.service-sidebar{
	position: sticky;
	top: 20px;
	margin-left: 10px;
}

.service-catagery-list,
.opening-hour-section{
	margin-bottom: 40px;
}

.service-catagery-list,
.opening-hour-section,
.sidebar-cta-box{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 30px;
}

.service-catagery-list h3,
.opening-hour-section h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
	position: relative;
	margin-bottom: 20px;
	padding-left: 35px;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li:before{
	position: absolute;
	content: '';
	background: url('../images/arrow-white.svg') no-repeat center center;
	background-color: var(--primary-color);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover:before{
	background-color: var(--accent-color);
}

.service-catagery-list ul li a{
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.opening-hour-section ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hour-section ul li{
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.opening-hour-section ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-box{
	text-align: center;
}

.sidebar-cta-box .icon-box{
	background: var(--secondary-color);
	border-radius: 10px;
	height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 30px;
}

.sidebar-cta-box .cta-content{
	margin-bottom: 40px;
	text-align: center;
}

.sidebar-cta-box .cta-content h3{
	font-size: 28px;
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content p{
	margin: 0;
}

.sidebar-cta-box .cta-appointment-btn{
	text-align: center;
}

/************************************/
/***	 20. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 40px 0;
}

.page-blog .blog-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.post-pagination{
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a, 
.post-pagination ul li a:hover{
    background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***	 21. Blog Single css      ***/
/************************************/

.blog-recent{
	background: var(--accent-color);
    border-radius: 30px;
    padding: 20px;
}
.blog-recent h4{
	margin: 10px 0;
	font-size: 40px;
    font-weight: 300;
    line-height: 137%;
}
ul.cat.recent_blogs_list {
    padding: 0;
    list-style: none;
	margin-top: 30px;
}
ul.cat.recent_blogs_list li {
    margin-top: 15px;
    display: block;
    color: #fff;
    border-bottom: solid 1px #ffffff29;
    padding-bottom: 15px;
}
p.det-inner {
    margin-bottom: 10px;
}
p.det-inner a {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-family: var(--accent-font);
}
.b-name-fit {
    font-size: 17px;
	font-family: var(--default-font);
}

.page-single-post{
	padding: 20px 0;
}

.post-single-meta ol li.breadcrumb-item{
	font-size: 18px;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	border-radius: 30px;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
}

.post-entry{
	border-bottom: 0;
	padding-bottom: 0;
    margin-bottom: 0;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 40px;
}

.post-entry h2{
	font-size: 36px;
}

.post-entry h3{
	font-size: 19px;
	color: var(--accent-color);
}

.post-entry h4{
	font-size: 26px;
}

.post-entry h5 {
    font-size: 18px;
    font-family: var(--accent-font);
	font-weight: 400;
	line-height: 137%;
}

.post-entry h6{
	font-size: 16px;
}

.post-entry p{
	margin-bottom: 20px;
	text-align: justify;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--text-color);
    font-size: 17px;
	font-weight: 600;
	text-align: justify;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    text-align: justify;
    line-height: 25px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 17px;
    font-weight: 200;
    color: var(--text-color);
    position: relative;
    margin-bottom: 14px;
    text-align: justify;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote {
    position: relative;
    border-radius: 30px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden; 
    z-index: 0;
    text-align: justify;
}

.blockquote-section{
	display: flex;
	justify-content: center;
}

.post-entry blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/Shockwave-3.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-arthrosamid blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/arthrosamid-1.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-physio blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/physio-2.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-stimpod blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/stimpod-2.JPG) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-arthritis blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/arthritis1.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-infla blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/infla.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-injury blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/sports-injury2.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-backpain blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/back-pain.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}
.post-entry-kneepain blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/knee-pain.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}
.post-entry-hand blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/hand1.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-shoulder blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/page-header-shoulder.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-pilates blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/pilates5.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-home blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/waiting-room.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-work blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/work4.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-h-injection blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/h-injection.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry-sport blockquote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/sport1.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.post-entry blockquote::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(28, 54, 100, 0.9); 
    z-index: 2;
}

.post-entry blockquote > * {
    position: relative;
    z-index: 3;
    padding: 40px 30px; 
    color: #fff; 
}
.post-entry blockquote .quote-img {
	width: 91px;
    height: 71px;
}

.post-entry-backpain .quote-content img{
    position: relative;
    top: 4px;
}
.post-entry-infla .quote-content img{
    position: relative;
    top: 4px;
}
.post-entry .quote-content img{
    position: relative;
    top: 4px;
}


.post-entry blockquote .quote-content p {
    color: var(--white-color);
    font-size: 20px ! important;
    font-weight: 200;
    font-family: var(--accent-font);
    line-height: 25px;
    margin-bottom: 15px;
    text-align: justify;
    
}

.post-entry blockquote .quote-content p a {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--accent-font);
    line-height: 25px;
    margin-bottom: 10px;
    text-align: justify;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
	transition: all 0.3s ease-in-out;
}
.post-entry blockquote .quote-content p a:hover {
	color: var(--accent-color);
}

.post-entry blockquote p{
	color: var(--white-color);
	font-size: 17px;
    font-weight: 200;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 8px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}


.tips-img.orthotics-img1 {
    display: flex;
    align-items: center;
}

.policy h5{
	text-transform: capitalize;
    margin: 20px 0;
}

/************************************/
/***   22. Theraphist Page css    ***/
/************************************/

.page-team{
	padding: 100px 0 60px;
}

.page-team .team-member-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

/************************************/
/***   23. Theraphist Single css  ***/
/************************************/

.page-team-single{
	padding: 20px 0 20px;
}

.page-team-single .row{
	background-color:#1C3664 ;
	border-radius: 35px 30px 30px 35px;
}

.team-member-image{
	height: 100%;
}

.team-member-image figure{
	height: 100%;
}

.team-member-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
	width: 100%;
	height: 503px;
    border-top-left-radius: 34px;
    border-bottom-left-radius: 34px;
}
.team-member-image-mohana img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
	width: 100%;
	height: 503px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}

.team-member-details{
	margin-left: 30px;
	height: 100%;
	padding: 50px 30px;
	padding-bottom: 0;
}
.team-member-details-mohana {
    margin-left: 30px;
    height: 100%;
    padding: 50px 30px;
    padding-bottom: 0;
}

.member-detail-header{
	margin-bottom: 40px;
}

.member-detail-header h2 {
    color: var(--white-color);
    font-size: 48px;
    font-weight: 200;
    line-height: 137%;
    margin-bottom: 0;
}

.member-detail-header p{
	font-size: 17px;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.member-detail-content{
	margin-bottom: 40px;
}

.member-detail-content p {
    font-size: 17px;
    text-transform: none;
    color: var(--white-color);
    font-weight: 100;
    line-height: 25px;
    text-align: justify;
}

.member-detail-content p:last-child{
	margin-bottom: 0;
}

.member-detail-body{
	margin-bottom: 40px;
}

.member-detail-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-detail-body ul li{
	font-size: 17px;
	color: var(--white-color);
	display: flex;
	margin-bottom: 15px;
}

.member-detail-body ul li:last-child{
	margin-bottom: 0;
}

.member-detail-body ul li span{
	width: 30%;
	font-weight: 500;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 20px;
}

.member-social-list ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
    color: var(--accent-color);
}

.member-social-list ul li a i{
    font-size: 20px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.about-member-details{
	padding: 25px 0 100px;
}

.about-member-info{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
}

.member-info-title{
	margin-bottom: 30px;
}

.member-info-title h2{
	font-size: 32px;
	text-transform: capitalize;
}

.member-info-content p:last-child{
	margin-bottom: 0;
}

.member-winning-awards{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
}

.winning-awards-content{
	margin-bottom: 30px;
}

.winning-awards-content h2{
	font-size: 32px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.winning-awards-content p:last-child{
	margin-bottom: 0;
}

.winning-awards-box .row .col-6{
	padding: 0;
}

.winning-awards-box{
	text-align: center;
}

.winning-award-img img{
	max-height: 129px;
}

.winning-award-img.img-box-1{
	border-right: 2px solid var(--dark-divider-color);
	border-bottom: 2px solid var(--dark-divider-color);
	padding-bottom: 35px;
}

.winning-award-img.img-box-2{
	border-bottom: 2px solid var(--dark-divider-color);
	padding-bottom: 35px;
}

.winning-award-img.img-box-3{
	padding-top: 35px;
	border-right: 2px solid var(--dark-divider-color);
}

.winning-award-img.img-box-4{
	padding-top: 35px;
}

.team-member-skills{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
}

.member-skills-title{
	margin-bottom: 30px;
}

.member-skills-title h2{
	font-size: 32px;
	text-transform: capitalize;
}

.team-member-skills .skills-progress-bar{
	margin-bottom: 35px;
}

.team-member-skills .skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skillbar .skill-data .skill-title{	
	font-size: 20px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
}

.skillbar .skill-data .skill-no{
	font-size: 22px;
	font-weight: 500;
	color: var(--primary-color);
	margin-left: 20px;
}

.skillbar .skill-progress{
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 99px;
	position: relative;
}

.skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.cta-infobar.team-sidebar-cta .cta-info-content p{
	margin-bottom: 20px;
}

.cta-infobar.team-sidebar-cta .cta-appointment-btn{
	text-align: left;
}

/************************************/
/***  24. Testimonials Page css   ***/
/************************************/

.page-video-gallery{
	padding:40px 0 40px;
}

.photo-gallery{
	margin-bottom: 30px;
}

.photo-gallery a{
	cursor: none;
}

.photo-gallery figure{
	position: relative;
}

.photo-gallery figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.photo-gallery:hover figure::before{
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
	border-radius: 10px;
}
.photo-gallery figure::after{
	position: absolute;
	content: '\f144';
	background: var(--white-color);
	border-radius: 50%;
	color: var(--accent-color);
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 30px;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 111;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s ease-in-out;
}

.photo-gallery:hover figure::after{
	opacity: 1;
	visibility: visible;
}

.photo-gallery img{
	position: relative;
	aspect-ratio: 1 / 0.85;
    object-fit: cover;
	border-radius: 10px;
}

/************************************/
/*** 	  25. FAQs Page css	 	  ***/
/************************************/

.page-faqs{
	padding: 40px 0;
	width: fit-content;
	margin: auto;
	border: 2px solid #009696;
	background-image: url('../images/faq-bg.png');
	background-size: cover;
	border-radius: 16px;
	box-shadow: 0 0 46px #0000001c;
	margin-bottom: 20px;
}
.page-faqs .row{
	padding: 40px 70px;
}
.page-faqs .quality-treatment-body ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}
/* .gradient-border {
  background: linear-gradient(#FFFFFF, #5D5D5D);
  padding: 2px;
  border-radius: 30px;
  width: fit-content;
  margin: auto;
  box-shadow: 4px 4px 4px #A6A6A6;
} */

.contact-us {
  background: url(../images/contact-bg.png);
  background-size: cover;
  padding: 40px;
  border-radius: 30px;
  width: 1300px;
  margin: auto;
  box-shadow: 4px 4px 7px #A6A6A6;
  padding-bottom: 0 !important;
}
.contact-us-new .contact-us-image .contact-img figure img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.faq-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 30px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
	position: relative;
	margin-bottom: 20px;
	padding-left: 35px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li:before{
	position: absolute;
	content: '';
	background: url('../images/arrow-white.svg') no-repeat center center;
	background-color: var(--primary-color);
	top: 1px;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover:before{
	background-color: var(--accent-color);
}

.faq-catagery-list ul li a{
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.page-faqs .faqs-section{
	margin-bottom: 60px;
}

.page-faqs .faqs-section:last-child{
	margin-bottom: 0;
}

.faqs-section-title{
	margin-bottom: 40px;
}

.faqs-section-title h2{
	font-size: 32px;
}

.faq-accordion .accordion-item{
	border: 1px solid #009696;
	border-radius: 20px;
	margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(360deg);
	background-image: url("../images/icon/chevron-up.svg");
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translate(0px, -50%) rotate(180deg);
}

.accordion-header .accordion-button{
	font-size: 18px;
    font-weight: 200;
    line-height: 29px;
    text-transform: capitalize;
    padding: 20px 45px 20px 20px;
    font-family: var(--default-font);
	color: var(--accent-color);
}

.accordion-body{
	padding: 0 20px 20px 20px;
}

.accordion-body p{
	margin: 0;
	margin-bottom: 10px;
	text-align: justify;
}
.accordion-body p a{
    font-weight: 400;
    color: var(--accent-color);
}
.faq-accordion .accordion-item .accordion-collapse.show {
    box-shadow: 0 5px #1BA4B3;
    border-radius: 20px;
}

/* Optional (if shadow should be on entire item, not just collapse) */
.faq-accordion .accordion-item.active-shadow {
    box-shadow: 0 5px #1BA4B3;
}
/************************************/
/***	26. Contact Us Page css	  ***/
/************************************/

.page-contact{
	padding: 30px 0;
}

.contact-info-item{
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.contact-info-item .icon-box{
	background: var(--secondary-color);
	border-radius: 10px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-info-item .icon-box img{
	max-width: 30px;
}

.contact-info-item .contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-info-item .contact-info-content p{
	margin: 0;
}

.contact-info-item .contact-info-content p a{
	margin: 0;
	color: var(--text-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.contact-info-item .contact-info-content p a:hover{
	color: var(--accent-color);
}

.contact-us-form{
	padding: 20px 0;
}

.contact-us-img img{
	border-radius: 30px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.contact-form{
	margin-left: 0;
}

.contact-form .form-control{
    padding: 15px 20px;
    background-color: transparent;
	border: 2px solid var(--dark-divider-color);
    border-radius: 10px;
    color: var(--primary-color);
    box-shadow: none;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 301px;
    border-radius: 10px;
}

/* Basic styles */
.callback-form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-size: 16px;
  transition: 0.3s;
}

.callback-form .form-control:focus {
  border-color: #009696;
  box-shadow: 0 0 0 2px rgba(0, 150, 150, 0.1);
}

.callback-options {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.callback-option {
	flex: 1;
	padding: 10px 14px;
	text-align: center;
	cursor: pointer;
	font-weight: 500;
	color: #555;
	border-right: 1px solid #ccc;
	transition: 0.2s;
	position: relative;
	background-color: white; 
	display: flex;
	gap: 10px;
	align-items: center;
}

.callback-option input[type="radio"]:checked + span {
  color: #009696;
  font-weight: 600;
}

.callback-option:has(input[type="radio"]:checked) {
  background-color: #e6f7f7;
}


.callback-option:last-child {
  border-right: none;
}

.callback-option input[type="radio"] {
  display: block;
  width: 20px;
}

.iti__flag {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background-size: cover !important;
  background-position: center center;
}

/* Optional: Adjust spacing/padding around the flag */
.iti__selected-flag {
  padding: 0 8px !important;
}

/* Optional: vertically center the flag */
.iti__flag-container {
  display: flex;
  align-items: center;
}


.input-group > .intl-tel-input.allow-dropdown {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}

.input-group > .intl-tel-input.allow-dropdown > .flag-container {
	z-index: 4;
}

.iti-flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
    }
}



.callback-option span {
  pointer-events: none;
}

/* Submit button */
.btn-primary {
  background-color: #009696;
  border: none;
  padding: 12px;
  font-size: 16px;
  color: white;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #007d7d;
}

/* aim-section */

.aim-section{
	padding: 40px 0;
	width: fit-content;
	margin: auto;
	background-color: #001D48;
	border-radius: 16px;
}
.aim-section .row{
	padding: 10px 50px;
}
.aim-section .service-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #03286A;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.aim-section .service-item .service-body {
    position: relative;
    bottom: 0;
    padding: 18px 22px;
    color: #fff;
    width: 100%;
    background: #03286A;
    overflow: hidden;
	text-align: center;
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.aim-section .service-item .service-body::before {
    content: "";
    position: absolute;
    padding: 18px 22px;
    inset: 0;
    background-image: none;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.aim-section .section-title h4{
	font-size: 32px;
    font-weight: lighter;
    font-family: var(--default-font);
    line-height: 137%;
}

/* aim-section */

.client-section{
	padding: 40px 0;
	width: 100%;
	margin: auto;
	background: url(../images/client-bg.png);
    background-size: cover;
	padding-bottom: 50px;
}
.client-section .row{
	padding: 10px 50px;
}
.client-section .service-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #03286A;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.client-section .service-item .service-body {
    position: relative;
    bottom: 0;
    padding: 18px 22px;
    color: #fff;
    width: 100%;
    background: #03286A;
    overflow: hidden;
	text-align: center;
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.client-section .service-item .service-body::before {
    content: "";
    position: absolute;
    padding: 18px 22px;
    inset: 0;
    background-image: none;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.client-section .section-title h4{
	font-size: 20px;
    font-weight: lighter;
    font-family: var(--default-font);
    line-height: 137%;
	color: #001D48;
}
.client-section .about-content {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 0 34px #00000029;
	padding: 40px;
}

.client-section .about-client-img{
	display: flex;
    align-items: center;
    gap: 30px;
	justify-content: center;
}
.client-section .about-client-img .aim-img img{
	width: 100px;
}
.client-section .about-us-image .aim-img .main-client img {
	padding: 20px;
	width: 230px;
}
.client-section .about-content .second-row{
	padding-top: 60px;
}
.client-section .about-us-image{
	display: flex;
    justify-content: center;
	flex-direction: column;
}
/* book section */

.book-section{
	padding: 0;
	width: fit-content;
	margin: auto;
	background-color: #001D48;
	border-radius: 16px;
	margin-bottom: -13%;
    position: relative;
    z-index: 1;
	/* margin-top: -159px; */
	margin-top: 20px !important;
}
.book-section .row{
	padding: 0;
}
.book-section-first{
	padding: 45px 0 16px 45px;
}
.book-section .service-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #03286A;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.book-section .service-item .service-body {
    position: relative;
    bottom: 0;
    padding: 18px 22px;
    color: #fff;
    width: 100%;
    background: #03286A;
    overflow: hidden;
	text-align: center;
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.book-section .service-item .service-body::before {
    content: "";
    position: absolute;
    padding: 18px 22px;
    inset: 0;
    background-image: none;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.book-section .section-title h4{
	font-size: 35px;
    font-weight: lighter;
    font-family: var(--default-font);
    line-height: 137%;
}
.book-section .section-title p {
    font-weight: 400 !important;
    font-size: 20px !important;
}
.book-section .book-info{
	display: flex;
	padding: 0;
    flex-direction: column;
}
.book-section .need-attention-list .need-attention-content {
    width: 100%;
}

.book-section .need-attention-list {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
	border: 0;
}

.book-section .need-attention-list .need-attention-content p a {
    font-size: 22px;
    font-weight: 100;
    color: var(--white-color);
    text-transform: none;
    margin: 0;
    line-height: 132%;
    font-family: var(--accent-font);
}

.book-section .need-attention-list .need-attention-content p a:hover {
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

/***************************************/
/***  27. Make Appointment Page css  ***/
/***************************************/

.page-book-appointment{
	padding: 20px 0;
}

.page-book-appointment .book-appointment-form{
	max-width: 1050px;
	margin: 0 auto;
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
}

.book-appointment-form .section-title{
	text-align: center;
}

.book-appointment-form .appointment-form{
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.appointment-form .form-control{
    padding: 15px 20px;
    background-color: transparent;
    border: 2px solid var(--dark-divider-color);
    border-radius: 10px;
    color: var(--primary-color);
    box-shadow: none;
}

/************************************/
/*** 	28. Error 404 Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 56px;
}

.error-page-content-heading h2 span{
	color: var(--accent-color);
}

.error-page-content-body p{
	font-size: 18px;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 10px 20px;
}

.about-img .dots {
    position: absolute;
    /* top: 62px;
    left: 174px; */
    z-index: 99;
}
.about-img .dots img {
    height: 25px;
    width: 25px;
    animation: animName 2s linear infinite;
}
@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}

.dots1{
	left: 74%;
    top: 57px;
}

.dots2 {
    right: 22%;
    top: 43%;
}

.dots6 {
    left: 25%;
    bottom: 7%;
}

.dots7 {
    left: 34%;
    top: 13%;
}

.dots8 {
    left: 26%;
    bottom: 25%;
}

.dots16 {
    left: 20%;
    bottom: 24%;
}

.dots10 {
    left: 27%;
    top: 16%;
}

.dots11 {
    left: 12%;
    top: 30%;
}

.dots14 {
        right: 79%;
        top: 51%;
    }

.dots15 {
    left: 71%;
    bottom: 36%;
}

.about-img .dots img{
	box-shadow: none;
}

/* Tooltip custom style */
.custom-tooltip .tooltip-inner {
  background: #009696;   /* background */
  color: #fff;           /* text color */
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

/* Arrow color */
.custom-tooltip .tooltip-arrow::before {
  border-top-color: #009696 !important;
}
.bs-tooltip-bottom.custom-tooltip .tooltip-arrow::before {
  border-bottom-color: #009696 !important;
}
.bs-tooltip-start.custom-tooltip .tooltip-arrow::before {
  border-left-color: #009696 !important;
}
.bs-tooltip-end.custom-tooltip .tooltip-arrow::before {
  border-right-color: #009696 !important;
}







.gallery-items .testimonial-content{
	position: absolute;
	display: flex;
	gap: 10px;
	bottom: 25px;
	margin: 20px;
	padding: 15px 10px;
	background-color: #fff;
	border-radius: 10px;
}




.about-content .ul-content p{
	margin-top: 0;
}
.about-content .ul-content b {
    font-weight: 500;
    font-size: 17px;
}
.ortho3-content .about-content .ul-content b {
    font-weight: 500;
    font-size: 17px;
    color: #009696;
}

.physio-about-us .about-content .ul-content p a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: #1ba4b3;
    transition: all 0.3s ease-in-out;
}

.about-content .ul-content{
	display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.about-content .ul-content img{
    width: 18px;
    position: relative;
    top: 4px;
}

.infla3-content .about-content .ul-content a b {
    font-weight: 600;
    font-size: 17px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.need-attention-infla 

.need-attention-infla .section-title p b {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    
}
.ul-content-text b a{
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
}
.ul-content-text b a:hover{
	color: var(--accent-color);
}
.about-content .ul-content p a{
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
}
.quality-treatment .about-content .ul-content p a{
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
	text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: #e8f6f78f;
}
.quality-treatment-content .ul-content-text b a {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: #e8f6f7a3;
    transition: all 0.3s ease-in-out;
}
.about-content .ul-content p a:hover{
	color: var(--accent-color);
}
.injection-content .ul-content-text p{
	margin-top: 5px;
}
.about-us-physio{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}
.merge-three-mva{
	display: flex;
	justify-content: space-between;
}
.merge-all-mva {
    display: flex;
    flex-direction: column;
}

.merge-mva{
	display: flex;
	flex-direction: column;
}
.img-box-mva img{
	border-radius: 10px;
}

.mva-injection-div{
	width: 415px;
    height: calc(100% - 30px);
}

.need-attention-steroid .section-row p{
	text-align: justify;
}



/* team */

.team-member-item:hover{
	cursor: pointer;
}
.team-content a {
	font-size: 16px;
    font-weight: 400;
    margin-top: 0;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #009696;
    cursor: pointer;
    color: var(--accent-color);
}


.team-modal {
    display: flex;
    /* position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center; */
    padding: 40px 20px;

	
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px 20px;
    box-sizing: border-box;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Optional: fade animation for content too */
.team-modal-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-modal.active .team-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.team-modal-content {
	background: #fff;
    padding: 0 20px;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    text-align: center;
    max-height: 800px;
    overflow-y: auto;
    border-top: 20px solid #fff;
    border-bottom: 30px solid #fff;
}

/* Custom scrollbar (WebKit browsers only) */
.team-modal-content::-webkit-scrollbar {
    width: 8px;
}

.team-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.team-modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Optional: Firefox scrollbar support */
@supports (scrollbar-width: thin) {
    .team-modal-content {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }
}


.team-modal-content img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-close {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    background: #ecf3f3;
    padding: 10px;
    border-radius: 7px;
}

.fav-list {
    /* grid-gap: 20px; */
    /* border-bottom: solid 1px rgb(131 193 197 / 61%); */
    padding: 15px 0 15px;
    min-height: 55px;
    /* display: flex; */
    align-items: flex-start;
}

.fav-label {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 300;
	text-align: start;
}
.fav-content {
    color: var(--text-color);
    font-size: 17px;
    font-weight: 200;
	text-align: start;
}
.team-modal-content h3{
	background: #ECF3F3;
    padding: 10px;
	border-radius: 10px;
	line-height: 137%;
}
.team-modal-content h2{
    padding: 15px 0;
}
.team-modal-content h2, p{
	text-align: start;
}
.team-modal-content p span{
	color: var(--accent-color);
	font-weight: 400;
	font-size: 17px;
}

 #_builder-form .fields-container {
    padding: 0 !important;
}

.back-btn {
    color: var(--accent-color);
    text-align: center;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 6px 20px;
    font-size: 14px;
    transition: all .2s;
    border: 1px dashed var(--primary-color);
	transition: all 0.3s ease ;
}
.back-btn:hover{
	background-color: var(--accent-color);
	color: var(--white-color);
	border: var(--accent-color);
}

.navbar-brand img {
    width: 300px;
}

.testimonial-content .text-author{
    background : #009696;
    width: 76px;
    height: 40px;
    border-radius: 50px;
}
.testimonial-content .text-author p{
    color:white;
    padding: 7px 8px;
    font-family: var(--default-font);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrolling-ticker{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.scrolling-content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrolling-content span {
  position: absolute;
  opacity: 0;
  transform: translateY(20px); /* start slightly lower */
  text-align: center;
  width: 100%;
}

/* Animation: fade in, stay, fade out */
.scrolling-content span.animate {
  animation: fadeUp 5s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}


.physio-about-us .about-content .ul-content p {
    margin-top: 0;
    text-align: left;
}
.body-mot .need-attention-list {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 0 10px 5px 10px;
}

.faq-accordion .accordion-item .accordion-button::after, .faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -50%) rotate(360deg);
    background-image: url(../images/icon/chevron-up.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    transition: all 0.3s ease-in-out;
}


/************************************/
/***     28. responsive css       ***/
/************************************/

@media only screen and (max-width: 2560px) {
	.main-footer {
		padding: 306px 0 0;
		background: url(../images/footer-img.png);
		background-size: cover;
	}
	/* .container{
		max-width: 1500px;
	} */
	.dots2 {
		right: 22%;
        top: 43%;
	}
	.dots14 {
        right: 79%;
        top: 51%;
    }
}

@media only screen and (max-width: 1440px) {
	.main-footer {
		padding: 270px 0 0;
	}
	.client-section {
		padding-bottom: 0;
	}
	.book-section {
		/* margin-top: -219px; */
		margin-top: 0;
	}
	.hero-title {
		padding: 40px 50px;
	}
	.dots1{
		left: 74%;
        top: 57px;
	}

	.dots2 {
        right: 22%;
        top: 43%;
    }

	.dots6 {
		left: 25%;
        bottom: 6%;
	}

	.dots7 {
		left: 35%;
        top: 13%;
	}

	.dots8 {
		left: 26%;
		bottom: 23%;
	}

	.dots10 {
		left: 28%;
		top: 16%;
	}

	.dots11 {
		left: 11%;
		top: 30%;
	}

	.dots14 {
        right: 79%;
        top: 51%;
    }

	.dots15 {
		left: 71%;
        bottom: 33%;
	}
	
	.add-height {
        height: 396px;
    }
}


@media only screen and (max-width: 1199.98px) {
	.dots1{
		left: 74%;
        top: 56px;
	}

	.dots2 {
		right: 22%;
        top: 43%;
	}

	.dots6 {
		left: 25%;
        bottom: 6%;
	}

	.dots7 {
		left: 36%;
        top: 13%;
	}

	.dots8 {
		left: 26%;
		bottom: 23%;
	}

	.dots10 {
		left: 28%;
		top: 16%;
	}

	.dots11 {
		left: 9%;
		top: 30%;
	}

	.dots14 {
		right: 79%;
        top: 51%;
	}

	.dots15 {
		left: 70%;
        bottom: 32%;
	}

	.merge-three-mva {
		display: flex;
		justify-content: center;
		gap: 1rem;
	}
	
	.navbar-brand img {
        width: 272px;
    }
}

@media only screen and (max-width: 1024px){

	.hero-title {
		padding: 40px 50px;
	}

	.navbar{
        padding: 20px 0px !important;
    }
    
    .navbar-brand img {
        width: 210px;
    }
	
	.main-menu ul li{
		margin-left: 0;
	}
	.book-section {
		border-radius: 0;
	}
	.aim-section {
		border-radius: 0;
	}
		.topbar-contact-info ul {
		gap: 14px;
		justify-content: flex-start;
	}
	.contact-us {
		width: auto;
	}
	.hero.bg-image .hero-content {
		position: relative;
		text-align: center;
		width: 100%;
		margin: 0 auto;
		padding-right: 0;
		display: flex;
		flex-direction: column;
		gap: 35px;
		padding: 90px 0;
		z-index: 1;
	}
	.social-links {
		position: relative;
		z-index: 1;
		text-align: left;
		bottom: 150px;
		left: 30px;
	}
	.hero.bg-image.hero-video::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #020B0C;
		opacity: 50%;
		width: 100%;
		height: auto;
		z-index: 1;
		border-radius: 16px;
	}
	.hero-video .hero-bg-video {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		border-radius: 16px;
	}
	.dots1{
		left: 74%;
        top: 43px;
	}

	.dots2 {
		right: 21%;
        top: 43%;
	}

	.dots6 {
		left: 25%;
        bottom: 6%;
	}

	.dots7 {
		left: 36%;
        top: 13%;
	}

	.dots8 {
		left: 26%;
		bottom: 23%;
	}

	.dots10 {
		left: 28%;
		top: 16%;
	}

	.dots11 {
		left: 8%;
        top: 29%;
	}

	.dots14 {
		right: 79%;
        top: 51%;
	}

	.dots15 {
		left: 70%;
        bottom: 32%;
	}
	.dots16 {
        left: 18%;
        bottom: 24%;
    }
	.img-box-mva{
		display: none;
	}
	.main-footer {
        padding: 200px 0 0;
    }
}



@media only screen and (max-width: 991px){
	.navbar{
        padding: 20px 0px;
    }

	.hero-title {
		padding: 40px 50px;
	}
	.main-menu ul ul {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: none; /* Hidden by default, shown by JS */
		box-shadow: none;
		padding: 0;
		background: none;
		border: none;
	}
	.main-menu ul li.submenu > a:after {
		transition: transform 0.10s ease;
	}

	.main-menu ul li:hover > ul {
		display: none; /* Disable hover effect on mobile */
	}
	.aim-img {
		padding: 20px 0;
	}

	.aim-section {
		border-radius: 0;
	}

	.about-us-item {
		gap: 5px;
	}

	#magic-cursor{
        display: none !important;
    }

    .slicknav_nav li, .slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 20px;
	}

	.section-title h1,
	.section-title h2{
		font-size: 44px;
	}

	.section-title p{
		margin-top: 20px;
	}

	.section-btn{
        text-align: left;
        margin-top: 20px;
    }

	.section-title-content{
		text-align: left;
      	margin-top: 20px;
    }

	.topbar-contact-info ul{
		justify-content: start;
        gap: 10px;
	}

	.topbar-contact-info ul li a img{
		max-width: 18px;
		margin-right: 5px;
	}

	.topbar-social-links{
		/*display: none;*/
	}
	
	.social-links {
        position: relative;
        z-index: 1;
        text-align: left;
        bottom: 0;
        left: 30px;
    }

	.hero-content{
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content-body{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.hero-content-body .btn-default.btn-highlighted{
		margin-left: 0;
	}

	.hero-counter-box h3{
		font-size: 28px;
	}

	.hero-img{
		text-align: center;
	}

	.hero-img img{
		max-width: 70%;
	}

	.export-doctor-box{
		padding: 15px;
	}

	.export-doctor-content h3{
		font-size: 18px;
	}

	.hero.bg-image{
		padding: 0px 0 20px;
	}

	.hero.bg-image .hero-content .section-title h1{
		font-size: 50px;
	}

	.hero.bg-image.hero-slider{
        padding: 0;
    }

	.hero-slider-layout .hero-slide{
		padding: 80px 0 100px;
	}

	.hero-slider-layout .swiper-pagination{
		bottom: 40px;
	}

	.hero.hero-book-appointment{
		padding: 50px 0;
	}

	.hero-book-appointment .appointment-form{
		padding: 30px;
		margin-left: 0px;
	}

	.hero-appointment-form-title h2{
		font-size: 32px;
	}

	.home-contact-us{
		padding: 40px 0 10px;
	}

	.home-contact-us .home-contact-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.home-contact-us .col-lg-4:nth-child(even) .home-contact-item{
		border: none;
	}

    .about-us{
		padding: 50px 0 25px;
	}

	.about-img{
		text-align: center;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.company-experience{
		right: 80px;
		padding: 10px 15px;
	}

	@keyframes expmoveobject{
		50%{
			right: 120px;
		}
	}

	.company-experience-content h3{
		font-size: 28px;
	}

	.about-us-body{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.gallery-carousel{
		padding: 25px 0;
	}

	.gallery-scrolling-content .gallery-image img{
		width: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

    .our-service{
		padding: 25px 0 20px;
	}

	.service-item{
		padding: 0;
	}

	.solution-your-plan{
		padding: 50px 0;
	}
	
	.solution-plan-image{
		justify-content: center;
		margin-bottom: 30px;
	}

	.solution-plan-content{
		margin-left: 0;
	}

	.solution-plan-body{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.solution-counter-item .solution-counter-content h3{
		font-size: 20px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-box-1{
		border-radius: 30px 30px 0 0px;
	}

	.why-choose-box-2{
		border-radius: 0 0 30px 30px;
	}

	.why-choose-item{
		padding: 30px;
	}

	.why-choose-content{
		max-width: 100%;
	}

	.why-choose-box-2 .why-choose-item{
		flex-direction: row;
		text-align: left;
	}

	.why-choose-box-2 .why-choose-item .icon-box{
		margin-right: 20px;
		margin-left: 0px;
	}

	.why-choose-image{
		display: none;
	}

	.why-choose-image img{
		max-width: 70%;
	}

    .need-attention{
		padding: 35px 0;
	}

	.need-attention-list .need-attention-content p{
		font-size: 16px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-social-icon ul li a i{
		font-size: 20px;
	}

	.our-testimonial{
		padding: 50px 0 25px;
	}

	.testimonial-item{
		padding: 30px;
	}

	.testimonial-item .testimonial-header{
		margin-bottom: 30px;
	}

	.testimonial-slider .swiper-pagination{
		margin-top: 40px;
	}

	.our-blog{
		padding: 20px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.our-scrolling-ticker{
		padding: 20px 0;
	}
	
	.scrolling-content span{
		font-size: 20px;
		line-height: 25px;
	}

	.main-footer{
		padding: 170px 0 0;
	}

	.footer-logo{
		margin-bottom: 20px;
	}
	
	.about-footer-content{
		margin-bottom: 20px;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.about-working-hour,
	.about-service-list{
		margin-left: 0;
	}

	.about-working-hour h3,
	.about-service-list h3,
	.footer-contact h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-contact-details .footer-info-box{
		margin-bottom: 20px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 50px 0;
	}
	
	.page-header-box h1{
		font-size: 44px;
		margin-bottom: 15px;
	}

	.page-about-us{
		padding: 50px 0;
	}

	.company-counter{
		padding: 30px 0 0;
	}

    .company-counter-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.company-counter-item .company-counter-content h3{
		font-size: 28px;
	}

    .mission-vision{
		padding: 20px 0;
	}

	.our-mva-item{
		padding: 20px;
	}

	.cta-infobar{
		padding: 30px;
	}

	.cta-info-content{
		display: block;
		margin-bottom: 20px;
	}

	.cta-info-content .icon-box{
		margin-right: 0;
		margin-bottom: 20px;
	}

	.cta-info-content .cta-content{
		width: 100%;
	}

	.cta-appointment-btn{
		text-align: left;
	}

	.quality-treatment{
		padding: 10px 0;
	}

	.quality-treatment-video{
		margin-bottom: 20px;
	}

	.quality-treatment-content{
		padding-left: 0;
		margin-top: 20px;
	}

	.video-play-button a i{
		font-size: 30px;
	}

	.quality-treatment-body ul li{
		margin-bottom: 15px;
	}

	.therapy-process{
		padding: 50px 0 20px;
	}

	.therapy-process-item .icon-box{
		margin-bottom: 20px;
	}

	.therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box:before{
		transform: translate(210px, -50%);
	}

	.therapy-process .col-lg-3:nth-last-child(odd) .therapy-process-item .icon-box:before{
		display: none;
	}

    .page-services{
		padding: 50px 0;
	}

	.page-services .cta-infobar{
		margin-top: 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-single-content{
		margin-bottom: 30px;
	}

	.service-featured-img{
		margin-bottom: 20px;
	}

	.service-entry h3{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.service-entry p{
		margin-bottom: 20px;
	}

	.service-entry ul{
		margin-bottom: 20px;
		gap: 15px;
	}

	.service-entry ul li{
		width: calc(50% - 7.5px);
		padding-left: 30px;
	}

	.service-sidebar{
		margin-left: 0px;
	}

	.service-catagery-list,
	.opening-hour-section,
	.sidebar-cta-box{
		padding: 20px;
	}

	.service-catagery-list,
	.opening-hour-section{
		margin-bottom: 30px;
	}

	.service-catagery-list h3,
	.opening-hour-section h3{
		margin-bottom: 20px;
	}

	.service-catagery-list ul li{
		padding-left: 30px;
	}

	.service-catagery-list ul li:before{
		height: 20px;
		width: 20px;
		top: 4px;
	}

	.service-catagery-list ul li a{
		font-size: 16px;
	}

	.sidebar-cta-box .icon-box{
		margin-bottom: 20px;
	}

	.sidebar-cta-box .cta-content{
		margin-bottom: 20px;
	}

	.sidebar-cta-box .cta-content h3{
		font-size: 24px;
	}

    .page-blog{
		padding: 50px 0;
	}

	.page-blog .blog-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.post-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 20px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 30px 35px;
		background-size: 45px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 0;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h2{
		font-size: 30px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}
	
	.page-team .team-member-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-team-single{
		padding: 50px 0 25px;
	}

	.page-team-single .row{
		border-radius: 40px 40px 30px 30px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.85;
		border-radius: 30px 30px 0 0px;
	}

	/* .team-member-image-mohana img {
		aspect-ratio: 1 / 0.85;
		object-fit: cover;
		border-radius: 0 0 20px 20px;
	} */

	.team-member-details{
		margin-left: 0px;
		padding: 30px;
	}

	.member-detail-header{
		margin-bottom: 30px;
	}

	.member-detail-header h2{
		font-size: 28px;
	}

	.member-detail-content{
		margin-bottom: 30px;
	}

	.member-detail-body{
		margin-bottom: 30px;
	}

	.about-member-details{
		padding: 25px 0 50px;
	}

	.about-member-info{
		padding: 30px;
	}

	.member-info-title{
		margin-bottom: 20px;
	}

	.member-info-title h2{
		font-size: 28px;
	}

	.member-winning-awards{
		padding: 30px;
		margin-bottom: 30px;
	}

	.winning-awards-content h2{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.team-member-skills{
		padding: 30px;
	}

	.member-skills-title{
		margin-bottom: 20px;
	}

	.member-skills-title h2{
		font-size: 28px;
	}

	.skillbar .skill-data{
		margin-bottom: 10px;
	}

	.skillbar .skill-data .skill-title{
		font-size: 18px;
	}

	.skillbar .skill-data .skill-no{
		font-size: 20px;
	}

	.cta-infobar.team-sidebar-cta .cta-info-content{
		margin-bottom: 0;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 30px 10px;
        margin: 11px;
	}

	.faq-sidebar{
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.faq-catagery-list{
		padding: 20px;
	}

	.faq-catagery-list ul li{
		padding-left: 30px;
	}

	.faq-catagery-list ul li:before{
		height: 20px;
		width: 20px;
		top: 4px;
	}

	.page-faqs .faqs-section{
		margin-bottom: 40px;
	}

	.faqs-section-title{
		margin-bottom: 20px;
	}
	
	.faqs-section-title h2{
		font-size: 28px;
	}

	.accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.accordion-body{
		padding: 0 15px 15px 15px;
	}

	.page-contact{
		padding: 20px 0 0;
	}

	.contact-info-item{
		padding: 20px;
	}

	.contact-us-form{
		padding: 25px 0 50px;
	}

	.contact-us-img{
		text-align: center;
		margin-bottom: 20px;
	}

	.contact-form{
		margin-top: 20px;
	}

	.contact-form .form-control{
		padding: 12px 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 530px;
	}

	.page-book-appointment{
		padding: 50px 0;
	}

	.page-book-appointment .book-appointment-form{
		padding: 30px;
	}

	.appointment-form .form-control{
		padding: 12px 20px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 44px;
	}
	.client-section .about-us-image{
		display: flex;
		justify-content: center;
		flex-direction: row;
	}	
	.book-section {
		border-radius: 0;
	}
	.contact-us {
		width: auto;
	}
	.dots1{
		left: 466px;
        top: 554px;
	}
	.dots2 {
        right: 49%;
        top: 67%;
    }
	.dots6 {
        left: 51%;
        bottom: 53%;
    }
	.dots7 {
        left: 61%;
        top: 6%;
    }
	.dots8 {
        left: 52%;
        bottom: 62%;
    }
	.dots10 {
        left: 54%;
        top: 8%;
    }
	.dots11 {
        left: 38%;
        top: 15%;
    }
	.dots14 {
        right: 45%;
        top: 71%;
    }
	.dots15 {
        left: 46%;
        bottom: 16%;
    }
    .dots16 {
        left: 46%;
        bottom: 62%;
    }
}

@media only screen and (max-width: 991.98px){
    .dots2 {
        right: 47%;
        top: 71%;
    }
    .dots14 {
        right: 52%;
        top: 26%;
    }
}

@media only screen and (max-width: 912px) {
    .dots1 {
        left: 429px;
        top: 554px;
    }
}

@media only screen and (max-width: 900px) {
    .dots1 {
        left: 421px;
        top: 554px;
    }
}

@media only screen and (max-width: 853px) {
    .dots1 {
        left: 391px;
        top: 554px;
    }
    .dots11 {
        left: 37%;
        top: 15%;
    }
}

@media only screen and (max-width: 820px) {
    .dots1 {
        left: 380px;
        top: 554px;
    }
    .dots11 {
        left: 37%;
        top: 15%;
    }
}

@media only screen and (max-width: 800px) {
	.merge-three-mva {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
	.img-box-mva{
		display: block;
	}
	.dots1 {
        left: 371px;
        top: 554px;
    }
	.dots11 {
        left: 36%;
        top: 15%;
    }

}

@media only screen and (max-width: 768px) {
    .dots7 {
        left: 62%;
        top: 6%;
    }
    .dots1 {
        left: 356px;
        top: 554px;
    }
}

@media only screen and (max-width: 767.98px) {
    .dots1 {
        left: 371px;
        top: 554px;
    }
    .dots2 {
        right: 48%;
        top: 66%;
    }
    .dots14 {
        right: 43%;
        top: 78%;
    }
}

@media only screen and (max-width: 767px){
    
    
    
    .about-us .about-content{
        padding-top: 0;
    }
    .body-mot-about .about-content {
        padding-top: 0;
    }
    .is-physio-right .about-content {
        padding-top: 0 ;
    }
    
    .shockwave-content .about-content{
        padding-top: 30px;
    }
    
    .about-content .ul-content {
        margin-top: 15px;
        margin-bottom: 20px;
    }

	.about-us-image .accu-img img{
		margin-bottom: 20px;
	}

	.need-attention-list {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		padding: 0;
	}

	.service-item .service-footer {
		opacity: 1 !important;
		visibility: visible !important;
	}

	.page-faqs .row {
		padding: 0;
	}

	.hero-title {
		padding: 40px 0;
	}

	.hero-title .section-title h4 {
		font-size: 24px;
	}

	.about-us-item {
		display: flex;
		align-items: flex-start;
		gap: 15px;
	}
	.about-us-content {
		width: calc(100%);
	}
	
	.company-experience {
		position: absolute;
		left: 0;
		bottom: 9%;
		width: fit-content;
	}
	.hero.bg-image.hero-video::before {
		height: auto;
		border-radius: 16px;
	}

	.hero-video .hero-bg-video {
		height: auto;
		border-radius: 16px;
	}

	.btn-default{
		padding: 15px 100px 15px 15px;
	}

	.btn-default::before{
		width: 32px;
		height: 32px;
	}

	.section-row{
        margin-bottom: 15px;
    }

	.section-title{
		text-align: left;
		margin-bottom: 20px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 30px;
		margin-top: 0;
	}

	.section-title p{
		margin-top: 10px;
		text-align: start;
	}

	.section-btn{
		text-align: center;
        margin-top: 20px;
    }

	.section-title-content{
      	margin-top: 20px;
    }

	.topbar-contact-info ul li.hide-mobile{
		display: none;
    }

	.topbar-contact-info ul li a img{
        max-width: 16px;
    }

	.topbar-contact-info ul li:last-child{
		margin-bottom: 0;
	}

	.hero-content{
		margin-bottom: 0;
		padding: 30px 0 !important;
		gap: 20px !important;
	}

	.hero-content .section-title{
		text-align: left;
	}

	.hero-content .section-title p{
		font-size: 16px;
	}

	.hero-content-body{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

	.hero-content-body .btn-default.btn-highlighted{
		margin: 15px 0 0 0;
	}

	.export-doctor-box{
		transform: translateY(-60px);
		padding: 12px;
	}

	.hero-counter-box{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}
	
	.hero-counter-box h3{
		font-size: 24px;
	}

	.hero.bg-image{
		padding: 0px 0 20px;
	}

	.hero.bg-image .hero-content .section-title{
        text-align: center;
    }

	.hero.bg-image .hero-content .section-title h1{
        font-size: 40px;
    }

	.hero-slider-layout .hero-slide{
		padding: 50px 0 80px;
	}

	.hero-slider-layout .swiper-pagination{
		bottom: 20px;
	}

	.hero-book-appointment .appointment-form{
        padding: 30px 20px;
    }

	.hero-appointment-form-title h2{
        font-size: 28px;
    }
	
	.home-contact-us{
		padding: 30px 0 0px;
	}

	.home-contact-us .home-contact-item{
		padding-right: 0;
		border: none;
	}

	.home-contact-item .home-contact-content h3{
		font-size: 18px;
	}

	.company-experience .icon-box img{
		max-width: 42px;
	}

	.company-experience-content{
		width: 100%;
		text-align: left;
	}

	.company-experience-content h3{
        font-size: 24px;
    }

    .about-content .section-title{
		text-align: left;
	}

	.about-us-body{
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-list-item{
		width: 100%;
	}

	.about-list-content h3{
		font-size: 16px;
	}

	.doctor-info,
	.appointment-btn{
		width: 100%;
	}

	.appointment-btn{
		margin-top: 20px;
		text-align: center !important;
	}
	
	.is-physio-right .about-content .about-us-footer .appointment-btn {
        text-align: center;
    }

	.service-item .service-body h3{
		font-size: 18px;
	}

	.solution-plan-image{
		margin-bottom: 20px;
	}

	.solution-plan-content .section-title{
		text-align: left;
	}

	.solution-plan-body{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.solution-counter-item{
		margin-bottom: 20px;
	}

	.solution-plan-counter .col-lg-4:last-child .solution-counter-item{
		margin-bottom: 0;
	}

	.solution-counter-item .solution-counter-content h3{
		font-size: 18px;
	}

	.why-choose-item{
        padding: 20px 15px;
    }

	.why-choose-item .icon-box{
		background-color: var(--white-color);
		height: 52px;
		width: 52px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 10px;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}

	.why-choose-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-content{
		width: calc(100% - 62px);
	}

	.need-attention{
        padding: 35px 0 30px;
    }

	.need-attention-list .icon-box{
		margin-right: 10px;
	}

	.need-attention-list .need-attention-content{
		width: calc(100% - 42px);
	}

	.need-attention .col-lg-4:nth-last-child(-n + 3) .need-attention-list,
	.need-attention .col-lg-4 .need-attention-list{
		margin-bottom: 3px;
        padding: 0px 0px 10px 0px;
		border-bottom: 0;
	}

	.team-social-icon ul{
		padding: 12px 24px;
	}
	
	.team-social-icon ul li a i{
		font-size: 20px;
	}

	.team-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-item .testimonial-header{
		margin-bottom: 20px;
	}

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-slider .swiper-pagination{
		margin-top: 20px;
	}

	.post-item-body h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.4em;
        margin-bottom: 10px;
        height: fit-content;
    }
    
    .post-item-body .blog-detail {
        height: fit-content;
    }
	
	.scrolling-content span{
		font-size: 18px;
	}

	.about-working-hour,
	.about-service-list{
		margin-bottom: 30px;
	}

	.about-working-hour ul li{
		margin-bottom: 15px;
	}

	.about-service-list ul li{
		margin-bottom: 15px;
	}

	.footer-contact-details .footer-info-box{
		margin-bottom: 15px;
	}

	.footer-copyright{
		text-align: center;
		padding: 20px 0;
		margin-top: 10px;
	}

	.footer-copyright-text{
		margin-bottom: 10px;
	}

	.footer-copyright-text p{
		font-size: 14px;
	}

	.footer-links ul{
		text-align: center;
	}
	
	.page-header-box h1{
		font-size: 30px;
	}

    .company-counter-item .icon-box img{
		max-width: 55px;
	}

	.company-counter-item .company-counter-content h3{
		font-size: 24px;
	}

	.our-mva-item .mva-item-content h3{
		font-size: 18px;
	}

	.cta-infobar{
        padding: 20px;
    }

	.cta-info-content .cta-content h3{
		font-size: 18px;
	}

	.therapy-process-item .icon-box{
		width: 80px;
		height: 80px;
	}
	
	.therapy-process .col-lg-3:nth-child(odd) .therapy-process-item .icon-box:before{
		display: none;
	}

	.therapy-process-item .therapy-process-content h3{
		font-size: 18px;
	}

	.page-services .cta-infobar{
		margin-top: 0px;
	}

	.service-entry h3{
		font-size: 24px;
	}

	.service-entry ul li{
		width: 100%;
	}

	.service-entry-img-1{
		margin-bottom: 20px;
	}

	.service-catagery-list, .opening-hour-section{
		margin-bottom: 20px;
	}

	.sidebar-cta-box .cta-content h3{
		font-size: 20px;
	}

	.post-single-meta ol li i{
        font-size: 18px;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		padding: 20px;
	}

	.post-entry blockquote > * {
		padding: 0;
	}
	
	.blockquote-section{
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.post-entry h2{
		font-size: 24px;
		line-height: 34px;
	}

	.tag-links{
		font-size: 20px;
	}

	.team-member-details{
        padding: 20px;
    }

	.member-detail-header{
        margin-bottom: 20px;
    }

	.member-detail-header h2{
        font-size: 24px;
    }

	.member-detail-content p{
		font-size: 16px;
	}

	.member-detail-body{
        margin-bottom: 20px;
    }

	.member-detail-body ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }

	.member-detail-body ul li span{
		width: 45%;
		font-weight: 500;
	}

	.about-member-info{
        padding: 20px;
    }

	.member-info-title h2{
		font-size: 24px;
	}

	.member-winning-awards{
		padding: 20px;
	}

	.winning-awards-content h2{
		font-size: 24px;
	}

	.winning-award-img.img-box-2,
	.winning-award-img.img-box-1{
		padding-bottom: 20px;
	}

	.winning-award-img.img-box-4,
	.winning-award-img.img-box-3{
		padding-top: 20px;
	}

	.team-member-skills{
        padding: 20px;
    }

	.member-skills-title h2{
        font-size: 24px;
    }

	.team-member-skills .skills-progress-bar{
		margin-bottom: 25px;
	}

	.skillbar .skill-data .skill-title{
        font-size: 16px;
    }

	.skillbar .skill-data .skill-no{
        font-size: 18px;
    }

	.page-faqs .faqs-section{
		margin-bottom: 20px;
	}
	
	.faqs-section-title h2{
		font-size: 24px;
	}

	.contact-info-item .contact-info-content h3{
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 330px;
	}

	.page-book-appointment .book-appointment-form{
		padding: 20px;
	}

	.error-page-content-heading h2{
		font-size: 26px;
	}
	.aim-section .row {
		padding: 10px 10px;
	}
	.aim-img {
		padding: 20px 0;
	}
	.book-section .aim-img {
		padding: 0;
	}
	.book-section .need-attention-list .need-attention-content p a {
		font-size: 17px;
	}
	.need-attention-list .icon-box img {
		max-width: 26px;
	}
	.aim-section,.book-section {
		border-radius: 0;
	}
	.service-item .service-footer a {
		width: 60px;
		height: 60px;
	}
	.client-section .row {
		padding: 10px 10px;
	}
	.client-section .about-us-image{
		display: flex;
		justify-content: center;
		flex-direction: row;
	}
	.aim-section {
		border-radius: 0;
	}
	.contact-us {
		width: auto;
	}
	.service-item .img-box img {
		width: 100%;
		aspect-ratio: 1 / 1.26;
		object-fit: cover;
		height: 246px;
	}
	.about-us {
        padding: 20px 0 10px;
    }
	.our-service {
        padding: 20px 0 20px;
    }
	.hero-content-body {
        padding-bottom: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
	
	.book-section-first {
		padding: 30px 30px 15px 30px;
	}
	.shockwave-content .section-title h2{
		margin-top: 15px;
	}
	.gap-xs-0{
		gap: 0 !important;
	}

	.dots1 {
        left: 354px;
        top: 554px;
    }
    .dots2 {
        right: 47%;
        top: 71%;
    }
    

	.dots6 {
		left: 51%;
        bottom: 53%;
	}

	.dots7 {
		left: 62%;
        top: 6%;
	}

	.dots8 {
		left: 52%;
        bottom: 62%;
	}

	.dots10 {
		left: 55%;
        top: 8%;
	}

	.dots11 {
		left: 36%;
        top: 15%;
	}

	.dots14 {
        right: 53%;
        top: 26%;
    }

	.dots15 {
		left: 44%;
        bottom: 16%;
	}
	.dots16 {
        left: 45%;
        bottom: 62%;
    }

	.merge-three-mva {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		gap: 2rem;
		align-items: center;
	}

	.mva-injection-div .our-mva-item-sports{
		margin-bottom: 10px;
	}
	.injection-content .about-content{
		margin-top: 15px;
	}
	.main-footer {
        padding: 140px 0 0;
    }
	.book-section .about-us-image .aim-img figure img{
	    width: 100%;
	}
	.add-height {
        height: fit-content;
    }
    
    .social-links ul {
        display: flex;
        flex-direction: row;
        gap: 0;
    }
    
    .our-blog .section-title h2 {
        text-align: center;
    }
    .our-testimonial .section-title h2 {
        text-align: center;
    }
    .post-entry blockquote .quote-content p {
        text-align: start;
    }
    .accordion-body p {
        text-align: left;
    }
    .member-detail-content p {
        text-align: left;
    }
    .our-mva-item .mva-item-content p {
        text-align: left;
    }
}

@media only screen and (max-width: 735px) {
    .dots1 {
        left: 339px;
        top: 554px;
    }
}

@media only screen and (max-width: 694px) {
    .dots1 {
        left: 320px;
        top: 554px;
    }
}

@media only screen and (max-width: 668px) {
    .dots1 {
        left: 306px;
        top: 554px;
    }
}

@media only screen and (max-width: 632px) {
    .dots1 {
        left: 288px;
        top: 554px;
    }
}
@media only screen and (max-width: 600px) {
    .dots1 {
        left: 273px;
        top: 554px;
    }
}

@media only screen and (max-width: 575.98px){
	.dots1 {
        left: 259px;
        top: 554px;
    }

	.dots2 {
        right: 46%;
        top: 72%;
    }

	.dots6 {
		left: 52%;
        bottom: 53%;
	}

	.dots7 {
        left: 66%;
        top: 6%;
    }

	.dots8 {
		left: 54%;
        bottom: 62%;
	}

	.dots10 {
		left: 56%;
        top: 8%;
	}

	.dots11 {
	   left: 30%;
        top: 15%;
	}

	.dots14 {
		right: 54%;
        top: 26%;
	}

	.dots15 {
		left: 42%;
        bottom: 16%;
	}
	.dots16 {
        left: 44%;
        bottom: 62%;
    }
	.team-modal {
		display: none;
		position: fixed;
		z-index: 999;
		left: 0; top: 0;
		width: 100%; height: 100%;
		background: rgba(0,0,0,0.6);
		justify-content: center;
		align-items: center;
		padding: 15px;
	}

	.team-modal-content {
		background: white;
		padding: 40px 15px;
		border-radius: 12px;
		max-width: 900px;
		width: 100%;
		position: relative;
		text-align: center;
	}
}

@media only screen and (max-width: 575px) {
	.hero-content-body {
        padding-bottom: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
	.need-attention-list {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		padding: 0;
	}
	.contact-us {
		width: auto;
	}
	.hero.bg-image.hero-video::before {
		height: auto;
		border-radius: 16px;
	}

	.hero-video .hero-bg-video {
		height: auto;
		border-radius: 16px;
	}
	.topbar-close {
		position: absolute;
		top: 56px;
	}
	.topbar-contact-info ul li a {
		color: var(--white-color);
		display: flex;
		align-items: center;
		font-size: 14px;
	}
	.about-us-item {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		flex-direction: column;
	}
	.book-section-first {
		padding: 30px 30px 15px 30px;
	}
	.gap-xs-0{
		gap: 0 !important;
	}
	.about-physio{
		margin-top: 20px;
	}
	.about-physio .ul-content p a{
		color: var(--text-color);
	}
	.about-us-physio{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0;
	}
}

@media only screen and (max-width: 550px) {
    .dots1 {
        left: 246px;
        top: 554px;
    }
}
@media only screen and (max-width: 540px) {
    .dots11 {
        left: 29%;
        top: 15%;
    }
    .dots1 {
        left: 241px;
        top: 554px;
    }
}
@media only screen and (max-width: 512px) {
    .dots1 {
        left: 227px;
        top: 554px;
    }
}

@media only screen and (max-width: 511px) {
    .dots1 {
        left: 227px;
        top: 554px;
    }
}

@media only screen and (max-width: 500px){
	.dots1 {
        left: 215px;
        top: 554px;
    }

	.dots2 {
        right: 46%;
        top: 72%;
    }

	.dots6 {
		left: 52%;
        bottom: 53%;
	}

	.dots7 {
		left: 69%;
        top: 6%;
	}

	.dots8 {
		left: 54%;
        bottom: 62%;
	}

	.dots10 {
		left: 58%;
        top: 8%;
	}

	.dots11 {
		left: 28%;
        top: 15%;
	}

	.dots14 {
		right: 55%;
        top: 26%;
	}

	.dots15 {
		left: 41%;
        bottom: 16%;
	}
	.dots16 {
        left: 42%;
        bottom: 62%;
    }
	.mva-injection-div {
		width: 100%;
		height: calc(100% - 30px);
	}
}

@media only screen and (max-width: 456px) {
    .dots1 {
        left: 200px;
        top: 554px;
    }
}

@media only screen and (max-width: 454px) {
    .dots1 {
        left: 196px;
        top: 554px;
    }
    .dots11 {
        left: 25%;
        top: 15%;
    }
    .dots7 {
        left: 71%;
        top: 6%;
    }
}

@media only screen and (max-width: 449px) {
    .dots1 {
        left: 196px;
        top: 554px;
    }
}

@media only screen and (max-width: 430px) {
    .dots1 {
        left: 185px;
        top: 554px;
    }
    .dots11 {
        left: 23%;
        top: 15%;
    }
    .dots7 {
        left: 73%;
        top: 6%;
    }
}

@media only screen and (max-width: 425px) {
    .dots11 {
        left: 23%;
        top: 15%;
    }
    .dots7 {
        left: 73%;
        top: 6%;
    }
    .dots1 {
        left: 183px;
        top: 554px;
    }
    .dots16 {
        left: 41%;
        bottom: 62%;
    }
    .about-content .quality-treatment-body ul li {
        text-align: start;
    }
}

@media only screen and (max-width: 414px) {
    .dots1 {
        left: 178px;
        top: 554px;
    }
}

@media only screen and (max-width: 377px) {
    .dots1 {
        left: 160px;
        top: 554px;
    }
}



@media only screen and (max-width: 390px) {
    .dots1 {
        left: 166px;
        top: 554px;
    }
    .dots11 {
        left: 20%;
        top: 15%;
    }
}

@media only screen and (max-width: 375px) {
    .btn-default {
        padding: 15px 57px 15px 15px;
    }
	.dots1 {
        left: 158px;
        top: 554px;
    }

	.dots2 {
		right: 44%;
        top: 71%;
	}

	.dots6 {
		left: 52%;
        bottom: 53%;
	}

	.dots7 {
        left: 76%;
        top: 6%;
    }

	.dots8 {
		left: 54%;
        bottom: 62%;
	}

	.dots10 {
		left: 60%;
        top: 8%;
	}

	.dots11 {
		left: 19%;
        top: 15%;
	}

	.dots14 {
		right: 56%;
        top: 26%;
	}

	.dots15 {
		left: 37%;
        bottom: 16%;
	}
}

@media only screen and (max-width: 360px) {
    .dots1 {
        left: 151px;
        top: 546px;
    }
}
@media only screen and (max-width: 344px) {
    .dots1 {
        left: 143px;
        top: 520px;
    }
}

@media (min-width: 992px) {
    .navbar {
		padding: 12px 8px;
		align-items: center;
	}
}