:root{
	--primary-color			: #2d84b4;
	--secondary-color		: #595656;
	--text-color			: #606778;
	--title-color			: #000;
	--accent-color			: #033E5B;
	--white-color			: #FFFFFF;
	--black-color 			: #000000;
	--divider-color			: #FFFFFF33;
	--dark-divider-color	: #D4F0F533;
	--error-color			: rgb(230, 87, 87);
}
/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	 font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
}

p{
	line-height: 1.5em;
	margin-bottom: 1.6em;
	color:#595656;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--title-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: 1390px;
}

.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: 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: 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;
}

.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;
}
#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: 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: 40px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-color);
	padding-left: 10px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '/';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--title-color)
	width: 6px;
	height: 15px;
}

.section-title h1 {
    font-size: 50px;
    margin-bottom: 0;
}

.section-title h2{
	font-size: 40px;
	margin-bottom: 0;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: #595656;
}
.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 {
   /* background: linear-gradient(to left,#ff020c 0,#44057d 100%);*/
}

.topbar-contact-info{	
	text-align: left;
}

.topbar-contact-info ul{
	display: flex;
	flex-wrap: wrap;
	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;
}

.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(--text-color);
}

.topbar-social-links ul li a i{
	font-size: 20px;
	color: inherit
}

header.main-header{
	background: transparent;
	border-bottom: 1px solid var(--divider-color);
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--accent-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.navbar{
	padding: 0px 0;
	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;
    align-items: center;
    justify-content: center;
    padding-top: 27px;
}

.main-menu ul li{
	margin: 0 9px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	padding: 14px 15px !important;
	color: var(--title-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
.main-menu ul li a:hover, .main-menu ul li a:focus {
    color: #da0323;
}
.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 400px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    background: linear-gradient(to left, #1572a7 0, #052f61 100%);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 220px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li {
    margin: 0;
    padding: 7px;
}
.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #ccd1dc;
	background: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn .btn-default{
	padding: 2px 30px 2px 2px;
}

.header-btn .btn-default::before{
	background-image: url('../images/-icon-phone-header-btn.svg');
	width: 15px;
	height: 15px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    background: #02afec;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background: 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: #052f61;
}

.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: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background: transparent;
	color: var(--text-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.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(--text-color);
}
header.main-header .header-sticky .navbar a img {
    padding-top: 5px;
    position: absolute;
    left: 0;
    height: 100px;
    top: 7px;
}
/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    padding: 30px 0 50px;
    margin-top: 10px;
}
.hero-content {
    position: relative;
    width: 100%;
    z-index: 1;
    top: auto;
    box-shadow: 2.5px 4.33px 15px 0 rgb(0 0 0 / .15);
    padding: 50px;
    right: -142px;
    background: white;
    margin-top: 84px;
    height: 438px;
}
.banner-slider .content-col:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #2d84b4;
    z-index: -1;
    left: 137px;
    top: 243px;
}
.hero-content .section-title h1, .hero-content .section-title .main-head, .section-title .title {
	color: var(--primary-color);
}
.hero-content .section-title h1 span, .hero-content .section-title .main-head span, .section-title .title span {
	color: var(--secondary-color	);
}
.section-title .title {
	font-size: 45px;
    margin-bottom: 0;
}
.section-title .para {
	font-size: 18px;
}
.hero-content .section-title p{
	font-size: 18px;
	color: #595656;
}
.banner-slider .row .images-col figure {
    height: 600px;
    border-radius: 20px;
}
.banner-slider .images-col figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#home .container-fluid {
	padding:0px;
}
/************************************/
/***       06. About Us css 	  ***/
/************************************/

.about-us {
    background: var(--white-color);
    padding: 80px 0;
    margin-top: 20px;
}
.about-us .about-us-images {
    padding-right: 40px;
}
.about-us .about-us-images figure {
    border-radius: 15px;
    width: 100%;
    height: 540px;
}
.about-us .about-us-images img {
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}
.list-items {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
    padding: 0px;
}
.list-items li {
    position: relative;
    padding: 2px 10px 2px 30px;
    text-align: left;
    transition: all .15s ease-in-out;
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}
.list-items li::before {
    content: "\f058";
    left: 3px;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 2px;
    color: #e14961;
    transition: all .15s ease-in-out;
}

/*************************************/
/***  08. Care Rehabilitation css  ***/
/*************************************/

.care-rehabilitation {
    background: #fffafa;
    padding: 70px 0 70px;
    margin-top: 0;
    z-index: 1;
}
.rehab-benefits-item{
	background: linear-gradient(to left,#ff020c 0,#44057d 100%);
	border-radius: 10px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 30px;
}

.rehab-benefits-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.rehab-benefits-item .icon-box::before{
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.rehab-benefits-item .icon-box img{
	position: relative;
	max-width: 50px;
	z-index: 1;
}

.rehab-benefits-content h3{
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
}
/************************************/
/***      10. How It Work css     ***/
/************************************/

.how-it-work {
    background: var(--white-color) url('../images/how-work-bg.svg') no-repeat;
    background-position: left top;
    background-size: auto;
    padding: 80px 0 80px;
}
.how-work-images{
	background: url('../images/how-work-image-bg-shape.svg') no-repeat;
	background-position: right -30px bottom;
	background-size: auto;
	padding: 0 40px 40px 0;
}

.how-work-image-box-1{
	border-radius: 10px 0 0 10px;
	overflow: hidden;
}

.how-work-image-box-2{
	border-radius: 0 10px 10px 0;
	position: relative;
}

.how-work-img-4,
.how-work-img-3,
.how-work-img-2,
.how-work-img-1{
	width: 100%;
}

.how-work-img-4 figure,
.how-work-img-3 figure,
.how-work-img-2 figure,
.how-work-img-1 figure{
	display: block;
}

.how-work-img-4 img,
.how-work-img-3 img,
.how-work-img-2 img,
.how-work-img-1 img{
	width: 100%;
	object-fit: cover;
}

.how-work-img-1 img{
	aspect-ratio: 1 / 1.1;
}

.how-work-img-2 img{
	aspect-ratio: 1 / 1.12;
}

.how-work-img-3 img{
	aspect-ratio: 1 / 2.28;
}

.how-work-img-4 img{
	aspect-ratio: 1 / 0.57;
}

.how-work-accordion .accordion-item{
	margin-bottom: 25px;
	border-radius: 10px;
	overflow: hidden;
}

.how-work-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.how-work-accordion .accordion-header{
	position: relative;
}

.how-work-accordion .accordion-item .icon-box {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.how-work-accordion .accordion-item .accordion-header .icon-box img{
	max-width: 36px;
}

.how-work-accordion .accordion-header .accordion-button {
    position: relative;
    font-size: 22px;
    line-height: 1.2em;
    background: transparent;
    color: var(--title-color)
	padding: 15px 30px 15px 110px;
    transition: all 0.3s ease-in-out;
    z-index: 0;
    padding-left: 80px;
    padding-top: 13px;
    padding-bottom: 13px;
}

.how-work-accordion .accordion-button:not(.collapsed){
	padding: 30px 30px 30px 110px;
   background: linear-gradient(to left,#ff020c 0,#44057d 100%);
   color: var(--white-color);
}

.how-work-accordion .accordion-header .accordion-button.collapsed{
	background: var(--secondary-color);
	color: var(--title-color)
}

.how-work-accordion .accordion-item .accordion-button::after,
.how-work-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f077';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(-30px, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.how-work-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translate(-30px, -50%) rotate(-180deg);
	color: var(--title-color)
}

.how-work-accordion .accordion-item .accordion-body{
	background: linear-gradient(to left,#ff020c 0,#44057d 100%);
	padding: 0px 30px 20px 30px;
}

.how-work-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}
.how-work-images .how-work-image-box-2 .how-work-img-2 {
	padding-right: 15%;
}
.how-work-images .how-work-image-box-2 .how-work-img-4 {
    position: absolute;
    top: auto;
    max-width: 410px;
    z-index: 1;
    bottom: -35px;
    left: auto;
    right: 0;
}
.how-work-images .how-work-image-box-2 .how-work-img-2 figure, .how-work-images .how-work-image-box-2 .how-work-img-4 figure {
    border-radius: 10px;
    border: 6px solid #fff;
    box-shadow: 2.5px 4.33px 15px 0 rgb(0 0 0 / .15);
}




/************************************/
/***   	  14. Our Blog css        ***/
/************************************/

.our-blog {
    background: var(--white-color);
    padding: 80px 0 0px;
}
.blog-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
}

.post-featured-image{
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
}

.post-featured-image a{
	display: block;
	cursor: none;
	border-radius: 10px;
}

.post-featured-image img {
    aspect-ratio: 1/0.72;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-out;
    height: 290px;
    width: 100%;
}
.blog-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.blog-item .post-tags{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.blog-item .post-tags a{
	position: relative;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	color: var(--white-color);
	border-radius: 5px;
	padding: 6px 10px;
	font-size: 12px;
	text-transform: capitalize;
	cursor: pointer;
	overflow: hidden;
}

.blog-item .post-tags a::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
}

.article-meta{
	margin-bottom: 20px;
}

.article-meta ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-meta ul li a {
    font-size: 14px;
    color: var(--text-color);
    text-transform: capitalize;
}
.post-item-body{
	margin-bottom: 20px;
}

.post-item-body h2{
	font-size: 22px;
	line-height: 1.4em;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-footer .readmore-btn{
	position: relative;
    text-transform: capitalize;
	font-weight: 500;
    color: var(--title-color)
    padding-right: 20px;
    transition: 0.3s ease-in-out;
}
.post-item-footer .readmore-btn:hover{
   color: transparent;
    -webkit-background-clip: text !important;
    background: -moz-linear-gradient(to left,#ff020c 0,#44057d 100%);
    background: -webkit-linear-gradient(to left,#ff020c 0,#44057d 100%);
    background: linear-gradient(to left, #ff020c 0, #44057d 100%);
}
.post-item-footer .readmore-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -21px;
    bottom: 0;
    transform: translateY(-50%);
    background-image: url("../images/arrow-blue-readmore-btn.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 12px;
    height: 12px;
    transition: 0.3s ease-in-out;
}

/************************************/
/***        15. Footer css  	  ***/
/************************************/

footer.main-footer {
    background-position: bottom center;
    background-size: contain;
    padding: 20px 0;
    z-index: 0;
    padding-bottom: 15px;
}
.about-footer{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 50px;
	margin-bottom: 50px;
}

.footer-logo img{
	width: 100%;
	max-width: 220px;
}

.about-footer-content h3 {
     font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 20px;
}

.about-footer-content p{
	color: #595656;
	margin-bottom: 0;
	margin-right: 30px;
}

.about-footer-list{
	display: flex;
	flex-wrap: wrap;
	row-gap: 50px;
	column-gap: 100px;
}

.footer-links{
	width: calc(33% - 66.66px);
}

.footer-links h3{
	display: inline-block;
	background: var(--secondary-color);
	color: var(--title-color)
	border-radius: 100px;
	 font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
	padding: 5px 20px;
	margin-bottom: 20px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	position: relative;
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding-left: 12px;
	margin-right: 15px;
}

.footer-links ul li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	bottom: 0;
	transform: translateY(-50%);
	background: var(--secondary-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.footer-links ul li:last-child{
	margin-right: 0;
}

.footer-links ul li a{
	color: inherit;
}

.footer-links ul li:hover{
	color: var(--text-color);
}

.footer-links.service-links{
	width: calc(50% - 66.66px);
}

.footer-links.social-links{
	width: calc(17% - 66.66px);
	text-align: center;
}

.footer-links.social-links ul{
	list-style: none;
}

.footer-links.social-links ul li{
	padding-left: 0;
}

.footer-links.social-links ul li::before{
	display: none;
}

.footer-links.social-links ul li a i{
	color: var(--white-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-links.social-links ul li:hover a i{
	color: var(--text-color);
}

.footer-links.working-links{
	width: calc(60% - 66.66px);
}

.footer-links.footer-contact-details{
	width: calc(40% - 66.66px);
}

.footer-contact-box{
	display: flex;
	align-items: center;
}

.footer-contact-details .footer-info-box{
	display: flex;
	margin-right: 25px;
}

.footer-contact-details .footer-info-box:last-child{
	margin-right: 0;
}

.footer-info-box .icon-box{
	margin-right: 10px;
}

.footer-info-box .icon-box img{
	max-width: 20px;
}

.footer-info-box-content{
	width: calc(100% - 30px);
}

.footer-info-box-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links.terms-condition-links{
	width: 100%;
	text-align: center;
}

.footer-copyright-text{
	margin-bottom: 10px;
}

.footer-copyright-text p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.footer-terms-condition ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-terms-condition ul li{
	display: inline-block;
}

.footer-terms-condition ul li a{
	color: var(--white-color);
	text-transform: capitalize;
	text-decoration: underline;
}
.footer-logo img {
    margin-top: -12px;
    margin-bottom: 20px;
}
/************************************/
/***     28. responsive css       ***/
/************************************/

@media only screen and (max-width: 1366px){

	.our-services::before{
		top: -270px;
	}

	.page-about-us{
		padding-left: 0;
	}

	.page-about-us .container-fluid{
		padding: 0 15px;
	}
}

@media only screen and (max-width: 1024px){

	.navbar{
        padding: 20px 0px;
    }
	
	.main-menu ul li{
		margin-left: 0;
	}

	.our-services::before{
        top: -200px;
    }
}

@media only screen and (max-width: 991px){

	#magic-cursor{
        display: none !important;
    }

    .slicknav_nav li, .slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.btn-default span{
		font-size: 16px;
		padding: 14px 18px;
	}
	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 56px;
	}

	.section-title h2{
		font-size: 42px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-btn{
        text-align: left;
        margin-top: 15px;
    }

	.section-title-content{
		text-align: left;
      	margin-top: 20px;
    }

	.topbar-contact-info ul{
		justify-content: center;
		gap: 20px;
	}

	.topbar-contact-info ul li a img{
		max-width: 18px;
		margin-right: 5px;
	}

	.topbar-social-links{
		display: none;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 150px 0;
	}

	.hero.hero-slider-layout .hero-pagination{
		bottom: 80px;
	}

	.hero-content{
		max-width: 100%;
	}

	.hero-content .section-title p{
		font-size: 16px;
	}
	.benefits-item{
		margin-bottom: 20px;
	}

	.our-benefits .col-lg-4:nth-child(2n + 2) .benefits-item{
		border: none;
		padding-right: 0;
	}

	.benefits-content h3{
		font-size: 20px;
	}
	.about-content-body{
		margin-bottom: 30px;
	}

	.about-list-item .icon-box{
		margin-right: 15px;
	}

	.about-list-item .icon-box img{
		max-width: 34px;
		padding: 0 5px 5px 0;
	}

	.about-list-content{
		width: calc(100% - 49px);
	}
	.about-circle-logo{
		width: 180px;
		height: 180px;
	}

	.about-us-images .about-circle-logo img{
		max-width: 70px;
	}
	.our-services::before{
		top: -155px;
		background-size: 100% auto;
	}

	.our-services::after{
		background-size: 50% auto;
	}

	.service-items .icon-box{
		left: 20px;
		width: 70px;
		height: 70px;
	}

	.service-items .icon-box img{
		max-width: 46px;
	}

	.service-body{
		bottom: 20px;
		left: 20px;
	}

	.service-content h3{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.service-btn a{
		width: 30px;
		height: 30px;
	}

	.service-btn a img{
		max-width: 14px;
	}

	.more-service-btn{
		margin-top: 10px;
	}

	.more-service-btn a{
		font-size: 22px;
	}

	.more-service-btn a i{
		font-size: 18px;
		margin-left: 15px;
	}

	.bg-section{
		margin-top: -250px;
	}

	.care-rehabilitation{
		padding: 50px 0 70px;
	}

	.rehab-benefits-item{
		padding: 30px 15px;
	}

	.rehab-benefits-item .icon-box img{
		max-width: 44px;
	}

	.rehab-benefits-content h3{
		font-size: 16px;
	}

	.quality-treatment{
		padding: 50px 0 100px;
		overflow: hidden;
	}

	.quality-treatment::before{
		background-size: 20% auto;
	}

	.quality-treatment::after{
		width: 130px;
	}

	.quality-treatment-body{
		margin-bottom: 30px;
	}
	.how-work-images{
		background-position: right -30px bottom;
		padding: 0 0px 40px 0;
	}

	.how-work-img-1 img{
		aspect-ratio: 1 / 0.95;
	}

	.how-work-img-2 img{
		aspect-ratio: 1 / 0.78;
	}

	.how-work-img-3 img{
		aspect-ratio: 1 / 1.61;
	}

	.how-work-img-4 img{
		aspect-ratio: 1 / 0.5;
	}

	.how-work-content{
		margin-bottom: 30px;
	}

	.how-work-accordion .accordion-item .accordion-header .icon-box{
		left: 20px;
		width: 50px;
		height: 50px;
	}

	.how-work-accordion .accordion-item .accordion-header .icon-box img{
		max-width: 30px;
	}

	.how-work-accordion .accordion-header .accordion-button{
		font-size: 20px;
		padding: 15px 20px 15px 90px;
	}

	.how-work-accordion .accordion-button:not(.collapsed){
		padding: 30px 20px 30px 90px;
	}

	.how-work-accordion .accordion-item .accordion-button::after,
	.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 18px;
		width: 18px;
    	height: 18px;
		transform: translate(-20px, -50%);
	}

	.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		transform: translate(-20px, -50%) rotate(-180deg);
	}

	.our-pricing{
		padding: 50px 0 70px;
	}

	.our-pricing-content{
		margin-bottom: 60px;
	}

	.pricing-item{
		padding: 20px;
	}

	.our-pricing::before{
		background: linear-gradient(0deg, rgba(2, 48, 71, 0) 30.13%, rgba(0, 0, 0, 0.9) 100.06%, #021C29 100.7%);
	}

	.pricing-title h3{
		font-size: 24px;
	}

	.pricing-btn a{
		font-size: 18px;
		padding-right: 40px;
	}

	.pricing-btn a::before{
		background-size: 14px auto;
		width: 30px;
		height: 30px;
	}

	.therapist-team{
		padding: 50px 0 70px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-content h3{
		font-size: 20px;
	}

	.our-testimonial{
		padding: 50px 0 100px;
		background-position: bottom right;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-header .testimonial-rating{
		margin-bottom: 15px;
	}

	.testimonial-content{
        margin-bottom: 20px;
    }

	.testimonial-btn{
		justify-content: center;
		margin-top: 30px;
	}
	.post-featured-image{
		margin-bottom: 20px;
	}

	.article-meta{
		margin-bottom: 15px;
	}

	.post-item-body h2{
		font-size: 20px;
	}

	.post-item-body{
		margin-bottom: 15px;
	}

	.footer-logo{
		margin-bottom: 30px;
	}

	.about-footer{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.about-footer-content p{
		margin-right: 0px;
	}

	.about-footer-list{
		display: flex;
		flex-wrap: wrap;
		row-gap: 40px;
		column-gap: 30px;
	}

	.footer-links{
		width: calc(45% - 15px);
	}

	.footer-links ul li{
		margin-right: 12px;
	}

	.footer-links.service-links{
		width: calc(55% - 15px);
	}

	.footer-links.social-links{
		width: calc(25% - 15px);
		text-align: left;
	}

	.footer-links.working-links{
		width: calc(75% - 15px);
	}

	.footer-links.footer-contact-details{
		width: 100%;
	}

	.page-header{
		padding: 150px 0;
	}

	.page-header::after{
		background-size: 50% auto;
	}

	.page-header-box h1{
		font-size: 56px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 16px;
	}

	.page-about-us{
		padding: 50px 0 100px;
	}

	.page-about-content{
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.page-about-content-body{
		margin-bottom: 30px;
	}

	.page-about-content-item{
		padding: 15px;
	}

	.page-about-content-box{
		padding: 20px;
	}

	.page-about-box-title{
		margin-bottom: 15px;
	}

	.page-about-img-1 img{
		aspect-ratio: 1 / 0.6;
	}

	.page-about-img-2{
		left: auto;
    	right: 0;
		text-align: right;
		z-index: 2;
		max-width: 30%;
	}

	.about-testimonial-box{
		width: 75%;
		padding: 15px 15px 15px 15px;
		border-radius: 30px 0 0 0;
		z-index: 1;
	}

	.about-testimonial-item p{
		font-size: 20px;
	}

	.about-testimonial-btn{
		transform: translateX(-20%);
	}

	.about-icon-box-list{
		padding: 50px 0 70px;
		border-radius: 0 30px 0 0;
		z-index: 2;
	}

	.about-icon-list-item .icon-box{
		margin-bottom: 15px;
	}

	.about-icon-list-item .icon-box img{
		max-width: 60px;
	}

	.about-icon-list-content h3{
		font-size: 20px;
	}

	.our-rehabilitation{
		padding: 50px 0 70px;
		z-index: 2;
	}

	.therapy-rehabilitation-header{
		padding: 20px;
	}

	.therapy-rehabilitation-content{
		margin-bottom: 20px;
	}

	.therapy-rehabilitation-btn a{
		width: 40px;
		height: 40px;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.therapy-rehabilitation-title{
		width: calc(100% - 60px);
	}

	.therapy-rehabilitation-title h3{
		font-size: 24px;
	}

	.therapy-rehabilitation-body{
		padding: 20px;
	}

	.therapy-rehabilitation-list{
		padding: 15px;
	}

	.therapy-process{
		padding: 50px 0 100px;
		background-size: 50% auto;
		z-index: 2;
	}

	.therapy-process-item:hover{
		transform: translateX(0px);
	}

	.therapy-process-item .icon-box{
		width: 80px;
		height: 80px;
		margin-right: 20px;
	}

	.therapy-process-item .icon-box img{
		max-width: 40px;
	}

	.therapy-process-item-content{
		width: calc(100% - 100px);
	}

	.therapy-process-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-video{
		padding: 50px 0 100px;
		z-index: 2;
	}

	.our-video-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.video-play-button img{
		max-width: 130px;
	}

	.process-steps{
		background-position: center center;
		background-size: 140% auto;
		padding: 50px 0 100px;
	}

	.process-steps-line{
		padding-top: 70px;
	}

	.process-step-box{
		padding-top: 60px;
	}

	.process-step-no h2{
		font-size: 94px;
	}

	.process-step-content h3{
		font-size: 20px;
	}

	.process-step-content p{
		font-size: 14px;
	}

	.page-about-faqs{
		padding: 50px 0 100px;
	}

	.about-faq-section .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.about-faq-section .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.about-faq-section .accordion-item .accordion-button::after,
	.about-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.cta-box{
		padding: 50px 0 100px;
	}

	.service-process{
		padding: 50px 0 100px;
	}	

	.service-process-list{
		margin-bottom: 30px;
	}

	.service-process-list .service-process-list-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-process-list-item .service-process-title h3{
		font-size: 20px;
	}

	.service-process-img{
		text-align: center;
	}

	.service-process-box-content{
		text-align: left;
		margin-bottom: 30px;
	}

	.page-services{
		padding: 50px 0 70px;
	}

	.page-service-single{
		padding: 50px 0 100px;
	}

	.service-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		font-size: 26px;
		margin-bottom: 20px;
	}

	.service-catagery-list ul li a{
		padding: 15px 35px 15px 15px;
	}

	.service-catagery-list ul li a::after{
		transform: translate(-15px, -50%);
	}

	.working-hours{
		padding: 20px;
		margin-bottom: 30px;
	}

	.working-hours h3{
		font-size: 26px;
		margin-bottom: 20px;
	}

	.working-hours ul li a{
		padding: 15px 15px 15px 45px;
	}

	.working-hours ul li a::after{
		transform: translate(15px, -50%);
		font-size: 18px;
		width: 18px;
    	height: 18px;
	}

	.sidebar-cta-image img{
		aspect-ratio: 1 / 0.5;
	}

	.sidebar-cta-item .icon-box{
		margin-bottom: 20px;
	}

	.sidebar-cta-content h3{
		font-size: 26px;
		margin-bottom: 10px;
	}

	.sidebar-cta-content p{
		font-size: 20px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 32px;
	}

	.service-entry ul li{
		padding-left: 25px;
	}

	.service-entry ul li:before{
		background-size: 6px auto;
		width: 18px;
		height: 18px;
	}

	.page-blog{
		padding: 50px 0 100px;
	}

	
	.page-blog .blog-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0 100px;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: left 30px top 35px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 42px;
	}

	.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 70px;
	}

	.page-team-single{
        padding: 50px 0 100px;
    }

	.team-member-image{
		margin-bottom: 30px;
	}

	.team-member-details{
		margin-left: 0px;
	}

	.member-detail-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.member-detail-header .member-detail-title h2{
		font-size: 26px;
	}

	.member-detail-content{
		margin-bottom: 20px;
	}

	.page-team-single .team-member-image img{
		aspect-ratio: 1 / 0.85;
	}

	.member-detail-body{
		gap: 30px;
	}

	.member-detail-body .member-detail-list-item{
		width: calc(50% - 15px);
	}

	.member-detail-list-item .icon-box{
		margin-right: 15px;
	}

	.member-detail-list-item .icon-box::before{
		width: 40px;
		height: 40px;
	}

	.member-detail-list-item .icon-box img{
		max-width: 40px;
	}

	.member-detail-list-content{
		width: calc(100% - 65px);
	}

	.member-detail-list-content h3{
		font-size: 22px;
		margin-bottom: 5px;
	}

	.member-detail-list-content p{
		font-size: 16px;
	}
	
	.about-icon-box-list.member-expertise{
		border-radius: 30px 30px 0 0;
	}

	.member-personal-info{
		padding: 50px 0 100px;
	}

	.member-info-content{
		margin-bottom: 30px;
	}

	.member-working-hour{
		margin-left: 0;
	}

	.member-working-hour-box{
		padding: 20px;
	}

	.member-working-hour .section-title h2{
		font-size: 32px;
	}

	.member-working-hour-list ul li span{
		width: 55%;
	}

	.member-working-history{
		padding: 50px 0 100px;
	}

	.member-working-history .member-contact-form{
		padding: 20px;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.member-contact-form .form-control{
		padding: 10px 20px;
	}

	.member-working-history-content .working-history-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.working-history-item .working-history-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.member-winning-award{
		padding: 50px 0 100px;
	}

	.page-video-gallery{
		padding: 50px 0 70px;
	}

	.video-gallery-image img{
		aspect-ratio: 1 / 0.8;
	}

	.page-faqs{
		padding: 50px 0 100px;
	}

	.page-faqs-images{
		margin-bottom: 30px;
	}

	.page-faqs-images img{
		aspect-ratio: 1 / 0.95;
	}

	.page-contact-us{
		padding: 50px 0 100px;
	}

	.contact-information{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.contact-info-list{
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box img{
		max-width: 26px;
	}

	.contact-info-item .icon-box{
		margin-bottom: 15px;
	}

	.contact-info-content h3{
		font-size: 20px;
		margin-bottom: 5px;
	}

	.contact-us-form{
		padding: 20px;
	}

	.contact-us-form .section-title h2{
		font-size: 26px;
	}

	.contact-us-form .form-control{
		padding: 15px;
	}

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 500px;
	}

	.contact-faqs{
		padding: 50px 0 100px;
	}

	.contact-faqs-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.page-book-appointment{
		padding: 50px 0 100px;
	}

	.booking-process{
		padding: 50px 0 100px;
	}

	.booking-process-item::before{
		top: calc(50% - 65px);
		width: 120%;
	}

	.booking-process-no h3{
		font-size: 24px;
	}

	.booking-process-item .icon-box{
		margin-bottom: 15px;
	}

	.error-page{
		padding: 50px 0 100px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}

	.error-page-content-heading h2{
		font-size: 42px;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
        margin-bottom: 30px;
    }
	.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-body .btn-default.btn-highlighted{
		margin: 15px 0 0 0;
	}

	.benefits-item{
        border: none;
		padding-right: 0;
    }

	.benefits-content h3{
        font-size: 18px;
    }

	.about-circle-logo{
        width: 140px;
        height: 140px;
    }

	.about-us-images .about-circle-logo img{
        max-width: 60px;
    }

	.our-services::before{
        display: none;
    }

	.service-items .icon-box{
        width: 60px;
        height: 60px;
    }

	.service-item .icon-box img{
        max-width: 40px;
    }

	.service-content h3{
        font-size: 18px;
		margin-bottom: 10px;
    }
	.bg-section{
		padding: 100px 0;
		margin-top: -160px;
	}

	.rehab-benefits-item{
        padding: 20px 15px;
    }

	.rehab-benefits-item .icon-box{
		margin-bottom: 15px;
	}

	.quality-treatment{
		background: var(--secondary-color);
	}

	.quality-treatment::before{
		display: none;
	}

	.quality-treatment::after{
		display: none;
	}

	.how-work-image{
        max-width: 100%;
		padding: 0;
        margin-bottom: 30px;
    }

	.how-work-image::before{
        background-size: 90% auto;
		margin: 0;
    }

	.how-work-accordion .accordion-item .accordion-header .icon-box{
		left: 15px;
        width: 40px;
        height: 40px;
    }

	.how-work-accordion .accordion-item .accordion-header .icon-box img{
        max-width: 22px;
    }

	.how-work-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 15px 15px 15px 70px;
	}

	.how-work-accordion .accordion-button:not(.collapsed){
		padding: 20px 15px 20px 70px;
	}

	.how-work-accordion .accordion-item .accordion-body{
		padding: 0px 15px 15px 15px;
	}

	.how-work-accordion .accordion-item .accordion-button::after,
	.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 16px;
		width: 16px;
    	height: 16px;
		transform: translate(-15px, -50%);
	}

	.how-work-accordion .accordion-item .accordion-button.collapsed::after{
		transform: translate(-15px, -50%) rotate(-180deg);
	}

	.how-work-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	footer.main-footer{
        padding: 50px 0 50px;
    }

	.about-footer-content h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-links ul li{
		display: block;
        margin-right: 0px;
		margin-bottom: 10px;
    }

	.footer-links ul li:last-child{
		margin-bottom: 0;
	}

	.footer-links.social-links{
        width: 100%;
    }

	.footer-links.working-links{
        width: 100%;
    }

	.footer-links.social-links ul li{
		display: inline-block;
		margin-right: 10px;
		margin-bottom: 0;
	}

	.footer-links.social-links ul li:last-child{
		margin-right: 0;
	}

	.footer-contact-box{
		display: block;
	}

	.footer-info-box{
		margin-right: 0;
		margin-bottom: 10px
	}

	.footer-info-box:last-child{
		margin-bottom: 0;
	}

	.footer-terms-condition ul li{
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0px;
    }

	.page-header-box h1{
		font-size: 40px;
	}

	.page-about-content-list{
		margin-bottom: 30px;
	}

	.page-about-box-title h3{
		font-size: 18px;
	}

	.page-about-body-content{
		margin-top: 20px;
	}

	.page-about-img-2{
       position: relative;
	   max-width: 100%;
	   margin-top: -100px;
	   z-index: 1;
    }

	.about-testimonial-box{
        width: 100%;
		background: linear-gradient(0deg, #10455F 9.97%, #023047 100%);
		border-radius: 30px 30px 0 0;
		text-align: center;
		padding: 20px 20px 70px;
    }

	.about-testimonial-item p{
        font-size: 18px;
    }

	.about-testimonial-btn{
		position: relative;
		transform: translateX(0%);
		justify-content: center;
		margin-top: 15px;
	}

	.about-icon-box-list{
        padding: 50px 0 70px;
		border-radius: 30px 30px 0 0;
		margin-top: -95px;
        z-index: 2;
    }

	.about-icon-list-item .icon-box::before{
		bottom: -5px;
   		right: -5px;
	}

	.about-icon-list-item .icon-box img{
        max-width: 50px;
    }

	.about-icon-list-content h3{
        font-size: 18px;
    }

	.therapy-rehabilitation-title h3{
        font-size: 22px;
    }

	.therapy-process-item{
		display: block;
		text-align: center;
		padding: 15px;
	}

	.therapy-process-item .icon-box{
        width: 80px;
        height: 80px;
		margin: 0 auto;
		margin-bottom: 20px;
    }

	.therapy-process-item-content{
        width: 100%;
    }

	.therapy-process-item-content h3{
		font-size: 20px;
	}

	.therapy-process-img-1{
		width: 100%;
		padding: 55px 0;
	}

	.therapy-process-img-2 img{
		max-width: 200px;
		aspect-ratio: 1 / 1.01;
	}

	.therapy-process-img-3 img{
		max-width: 200px;
		aspect-ratio: 1 / 0.9;
	}

	.our-video::after{
		width: 100%;
	}

	.our-video::before{
		background-position: center center;
		width: 100%;
	}

	.video-play-button a img{
		max-width: 140px;
	}

	.process-steps{
		background-image: none;
	}

	.process-steps-line{
        padding-top: 0px;
    }

	.process-steps .col-lg-3:nth-last-child(even) .process-step-box{
		margin-top: 0px;
	}

	.process-step-box{
        padding-top: 50px;
		margin-bottom: 30px;
    }

	.process-steps .col-lg-3:last-child .process-step-box{
		margin-bottom: 0;
	}

	.process-step-no h2{
        font-size: 74px;
    }

	.process-step-content h3{
        font-size: 18px;
		margin-bottom: 5px;
    }

	.about-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.about-faq-section .accordion-item .accordion-button::after,
	.about-faq-section .accordion-item .accordion-button.collapsed::after{
		font-size: 18px;
	}

	.service-process-list{
        margin-bottom: 0px;
    }

	.about-faq-section .accordion-item .accordion-body{
        padding: 15px;
    }

	.service-process-list-item .service-process-content-body{
		margin-bottom: 10px;
	}

	.service-process-list-item .service-process-title h3{
        font-size: 18px;
    }

	.service-process-list-item .service-process-btn a{
		width: 30px;
		height: 30px;
	}

	.service-process-list-item .service-process-btn img{
		max-width: 16px;
	}

	.service-process-img{
		margin-bottom: 30px;
	}

	.working-hours h3,
	.service-catagery-list h3{
        font-size: 22px;
    }

	.sidebar-cta-image img{
        aspect-ratio: 1 / 0.95;
    }

	.sidebar-cta-item .icon-box{
		width: 90px;
		height: 90px;
	}

	.sidebar-cta-item .icon-box figure{
		width: 70px;
		height: 70px;
	}

	.sidebar-cta-item .icon-box figure img{
		max-width: 30px;
	}

	.sidebar-cta-content h3{
        font-size: 22px;
    }

	.service-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry ul{
		gap: 15px;
	}

	.service-entry ul li{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.80;
	}

	.post-entry blockquote{
		background-position: left 20px top 20px;
        background-size: 35px;
        padding: 55px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 30px;
	}

	.tag-links{
		font-size: 20px;
	}

	.page-team-single .team-member-image img{
		aspect-ratio: 1 / 1.15;
	}

	.member-detail-header .member-detail-title h2{
        font-size: 22px;
    }

	.member-detail-body{
        gap: 20px;
    }

	.member-detail-body .member-detail-list-item{
        width: 100%;
    }

	.about-icon-box-list.member-expertise{
		margin-top: -50px;
	}

	.member-working-hour .section-title h2{
        font-size: 28px;
    }

	.member-working-hour-list ul li{
		justify-content: start;
	}

	.member-working-hour-list ul li span{
        display: none;
    }

	.member-working-hour-list ul li h3{
		font-size: 16px;
		margin-right: 20px;
	}

	.member-working-hour-list ul li p{
		font-size: 16px;
	}

	.contact-information-box{
		gap: 20px;
	}

	.contact-info-item{
		width: calc(50% - 10px);
	}

	.contact-info-item .icon-box img{
        max-width: 22px;
    }

	.contact-info-content p{
		font-size: 14px;
	}

	.contact-us-form .section-title h2{
        font-size: 22px;
    }

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 400px;
	}

	.booking-process-item{
		width: calc(50% - 15px);
	}

	.booking-process-item::before{
		display: none;
	}

	.booking-process-content h3{
		margin-bottom: 10px;
	}

	.error-page-image img{
		max-width: 100%;
	}

	.error-page-content-heading h2{
        font-size: 30px;
	}
}
/************************************/
/***      Start Form css	      ***/
/************************************/
.form-card {
    padding: 20px 40px;
    background: #10847e;
    box-shadow: 0 0 8px 0 #dedede;
    position: absolute;
    border-radius: 20px;
    max-width: 736px;
    top: 0;
}
.form-title {
    font-size: 16px;
    margin-bottom: 3px;
    color: #fff;
}
.form-title-dropdown {
    font-size: 14px;
    margin-bottom: 2px;
    color: #9cdaf7;
    opacity: 0.8;
}
.form-title-dropdown span {
    position: relative;
}
.form-title-dropdown span::before {
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    right: -20px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.text-center {
    text-align: center!important;
}
.form-card .form-group input, .form-card .form-group select{
	display:none;
}
.form-card .form-group.show-form input, .form-card .form-group.show-form select {
	display:block;
}
/************************************/
/***    End Form css	             ***/
/************************************/
/************************************/
/***     Start Footer css	             ***/
/************************************/
footer {
    background: white;
}
footer .footer-row .copyright-txt {
    font-size: 14px;
    margin: 0;
}
footer .footer-row {
	margin: auto;
    display: flex;
    align-items: center;
}
.social-icons {
    display: flex;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    margin: 0;
    padding-left: 0;
}
ul.social-icons li {
    display: inline-block;
    margin-right: 0px;
    transition: all 0.3s ease-in-out;
}
ul.social-icons li a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}
.social-icons i {
    text-shadow: none;
    color: #fff;
    padding: 8px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #fff;
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e14961;
}
.social-icons li a:hover i {
    background: #10847e;
}
ul.social-icons li  a{
	position:relative;
}
ul.social-icons li  a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.5);
    opacity: 0;
    transition: transform 400ms ease, opacity 400ms ease;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(to left, #8b1463d6 0, #44057d 100%);
}
ul.social-icons li  a:hover:after {
    opacity: 1;
    transform: scale(1);
}
.bottom-footer {
	background: #f5f5f5;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-row-column .col-md-2 {
	width:20%;
}
.footer-top {
    padding-top: 70px;
    padding-bottom: 70px;
}
.footer-list-items {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
    padding: 0px;
}
.footer-list-items li {
    position: relative;
    padding: 2px 10px 2px 30px;
    text-align: left;
    transition: all .15s ease-in-out;
    font-size: 16px;
    color: #595656;
    margin-bottom: 5px;
}
.footer-list-items li:hover {
  color: #052f61;
}
.footer-list-items li::before {
    content: "\f058";
    left: 3px;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 2px;
    color: #e14961;
    transition: all .15s ease-in-out;
}
.footer-list-items li:hover::before {
    color: #10847e;
}
/************************************/
/***     End Footer css	             ***/
/************************************/
/***   	  15. Our hr-section css        ***/
/************************************/
.hr-section {
    padding: 0px 0 50px;
    margin-top: 0;
}
.hr-list .slick-track .col-lg-4{
   padding:0px;
}
.hr-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    background: #052f61;
    padding: 20px;
    border-radius: 15px;
    color: white;
}
.hr-item-image {
    margin-bottom: 20px;
}
.hr-item-image img {
    aspect-ratio: 1 / 0.98;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    height: 160px;
    width: 100%;
    object-position: top;
}
.hr-content {
    margin-bottom: 20px;
    padding-right: 20px;
}
.hr-content h5 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
    font-weight: 600;
}
.hr-content p {
    color: var(--white-color);
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.hr-list .slick-next, .hr-list .slick-prev, .services-list .slick-next,  .services-list .slick-prev {
    width: 45px;
    height: 45px;
    background: #000;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 1;
    display: none !important;
}
.hr-list:hover .slick-next, .hr-list:hover .slick-prev , .services-list:hover .slick-next,  .services-list:hover .slick-prev{
    display: flex !important;
}
.max-width-900 {
    max-width: 900px;
    margin: auto;
}
.hr-list{
	margin-top: 40px;
}
/************************************/
/************************************/
/***   	 Start Responsive css        ***/
/************************************/
@media (max-width:1024px) {
.hero {
    padding: 0px 15px 50px;
}
.our-benefits .col-md-6 {
        width: 32%;
    }
.benefits-content p {
    font-size: 12px;
}	
.our-benefits {
    padding: 30px 20px 50px;
}
.our-services {
    padding: 50px 20px;
}
.service-items .service-content .product-details {
    font-size: 20px;
}
.care-rehabilitation {
    padding: 50px 20px 70px;
}
.our-gallery {
    padding: 0px 0px 50px;
}
.our-gallery .row.section-row{
    padding-left: 20px;
	padding-right: 20px;
}
footer.main-footer {
    padding: 20px 0;
}
footer .footer-row .copyright-txt {
    font-size: 12px;
}
.slicknav_menu {
    border-radius: 10px;
}
}


@media(max-width:767px) {
.more-service-btn a , .service-items .service-content .product-details, .service-items .service-content .product-category {
    font-size: 14px;
}
.main-header .header-sticky .container {
padding-left:0px;
padding-right:0px;
}
.main-header .header-sticky .container a.navbar-brand {
width: 75%;
}
.navbar {
    padding: 0px 0px;
}	
.section-title h1 .split-line, .form-heading .split-line, .section-title h2 {
   display: inline-block !important;
}
.btn-default span {
    font-size: 11px;
    padding: 8px 7px;
}
.section-title {
    margin-bottom: 5px;
}
.our-benefits .col-md-6 {
    width: 100%;
}
.our-benefits {
    padding: 20px 10px 50px;
}
.about-content-list {
    margin-bottom: 15px;
}
.about-content-body {
    margin-bottom: 15px;
}
.our-services {
    padding: 30px 0px 10px !important;
    height: auto !important;
}
.more-service-btn {
    margin-top: -15px;
}
.service-items {
    margin: 5px 5px 60px 5px;
}
.service-items .service-item-image figure {
    margin: auto;
    text-align: center;
    height: 235px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.service-body {
    position: static;
    padding: 10px;
    border-top: 1px solid #eee;
}
.service-content {
    margin-bottom: 0px;
}
.product-list {
    padding-bottom: 0;
}
.supplier-logo-section .supplier-logo-section-item img {
    height: 40px;
}
.supplier-logo-section .supplier-logo-section-item a {
    padding: 10px;
}
.supplier-logo-section {
    margin-bottom: 30px;
}
.supplier-logo-section .slick-dots li button:before {
    font-size: 22px;
    color: #500576;
    border: 1px solid;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    line-height: 12px;
}
.supplier-logo-section  .slick-dots {
    bottom: -53px;
}
.how-work-accordion .accordion-item {
    margin-bottom: 10px;
}
.blog-item {
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
}
.our-blog .container .section-row {
	padding:0px 15px;
}
.our-blog .container{
	padding:0px;
}
.post-item-footer .readmore-btn {
    color: transparent;
    -webkit-background-clip: text !important;
    background: -moz-linear-gradient(to left,#ff020c 0,#44057d 100%);
    background: -webkit-linear-gradient(to left,#ff020c 0,#44057d 100%);
    background: linear-gradient(to left, #ff020c 0, #44057d 100%);
}
.our-gallery .row.section-row {
    padding-left: 0px;
}
.alb_item {
    width: 50%!important;
    height: 150px!important;
    display: flex;
    cursor: zoom-in;
    object-fit: cover;
    padding: 2px;
    flex-wrap: wrap;
}
#filters-gallery {
    column-gap: 5px;
    margin-top: 20px;
}
#filters-gallery .btn-default span {
    padding: 4px 8px;
    font-size: 13px;
    min-width: 70px;
}
.main-footer .container {
	padding: 0;
}
.main-footer .footer-row .copyright-txt {
	text-align: center;
}
.social-icons i {
    padding: 6px;
    width: 35px;
    height: 35px;
    font-size: 16px;
}
.section-title .sub-title {
display: block;	
}
.slicknav_nav a:hover, .slicknav_nav a:focus, .slicknav_nav .slicknav_row:hover {
    color:#fecd08;
}
.how-work-images .how-work-image-box-2 .how-work-img-2 {
    padding-right: 0;
}
.how-work-images .how-work-image-box-2 .how-work-img-4 {
    position: static;
    max-width: 100%;
    margin-top: 20px;
}
.product-list .slick-next{
    right: -6px;
}
.product-list .slick-prev {
    left: -6px;
}
.hr-section {
    padding: 30px 0 30px;
}
.social-media-list {
    margin-top: -14px;
}
.social-media-list .slick-list {
   padding: 0;
}
.social-media-list .slick-next {
    right:4px;
}
.social-media-list .slick-prev {
    left: 4px;
}
.social-media-body {
    bottom: 25px;
}
.how-work-accordion {
	padding-top: 20px;
}
}
/************************************/
/***   	 End Responsive css        ***/
/************************************/


/************************************/
/***      05. Our services css	  ***/
/************************************/

.our-services {
    background: #2d84b4;
    padding: 50px 0 50px;
}
.banner-slider .row {
	display:flex !important;
}
.services-list .service-items {
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 15px;
    padding: 0px;
    min-height: 165px;
    -webkit-transition: all 0.5s 
ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    margin-top: 70px;
    border-bottom: 5px solid #052f61;
}
.services-list .service-items .service-item-image {
    transition: 0.4s;
    position: absolute;
    top: 12px;
}
.services-list .service-items:hover .service-item-image {
	-webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.services-list .service-items .service-item-image figure img {
    border-radius: 15px;
    height: 150px;
    transition: 0.4s;
    width: 100%;
    max-width: 225px;
    object-fit: cover;
}
.services-list .service-items .service-body {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    padding: 108px 25px 25px 25px;
}
.services-list .service-items .service-body .service-content .details {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    font-weight: 600;
}
.paitents-section {
    padding: 0px 0 50px;
    margin-top: 0;
}
.paitents-section  .paitents-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.paitents-section  .paitents-list li {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 14px;
	transition: background-color 0.35s;
}
.paitents-section .paitents-item {
    background: #f5f5f5;
    padding: 20px 20px;
    border-radius: 10px;
    min-height: 180px;
    transition: background-color 0.35s;
    text-align: center;
}
.paitents-section .paitents-item figure {
    margin: auto;
    margin-bottom: 18px;
}
.paitents-section .about-us-images figure {
    border-radius: 15px;
    width: 100%;
}
.paitents-section .about-us-images img {
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}
.paitents-section  .paitents-list li:hover .paitents-item {
    background:#276c92;
}
.paitents-section.icon {
    float: left;
    margin-bottom: 10px;
}
.paitents-section i {
    color: #e12454;
	font-size: 50px;
}
.paitents-section .paitents-item .title {
    padding-left: 20px;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}.paitents-section .paitents-item .para {
    font-size: 16px;
    color: #000;
    margin-bottom: 0px;
    font-weight: 600;
    text-align: center;
}
.paitents-section  .paitents-list li:hover .paitents-item .title, .paitents-section  .paitents-list li:hover .paitents-item .para {
     color: #fff;
}
.max-width-800 {
    max-width: 800px;
    margin: auto;
}
.paitents-section  .paitents-list li:hover .paitents-item figure svg g path {
  stroke:#fff;
}
.cta-section {
    background-color: #2d84b4;
    padding: 70px 0 70px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.white-btn {
    margin-top: 30px;
    border: none;
    background: white;
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 200px;
}
.form-section .white-btn {
    margin-top: 11px;
}
.cta-section .section-title {
    margin-bottom: 0px;
}
.form-section {
    position: relative;
    top: -228px;
    left: 39px;
}
.services-list:hover .slick-arrow {
	display:none !important; 
}
.star-shape{
	position:relative;
}
.star-shape img {
	position: absolute;
}
.star-shape .shape1 {
    top: -136px;
    left: 102px;
}
.star-shape .shape2 {
    right: 0;
    top: -107px;
}
.star-shape .shape3 {
    bottom: -91px;
    left: 173px;
    width: 39px;
}
.star-shape img {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@keyframes rotateme {
	0% {
    transform: rotate(0deg);
    opacity: 1;
}
50% {
    transform: rotate(180deg);
}
100% {
    transform: rotate(360deg);
    opacity: 1;
}
}
.cta-section:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #276c92;
    right: -64px;
    bottom: -176px;
    border-radius: 50%;
}
.btn-custom {
    border: none;
    background: #3a8bb9;
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    margin-top: 25px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}
.footer-call-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.footer-icon-custom {
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: center;
}
.footer-icon-custom .box-icon {
    margin-right: 7px;
}
.footer-icon-custom .box-icon i {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
    font-size: 20px;
    color: #052f61;
	font-family: 'FontAwesome';
}
.footer-icon-custom .box-content .box-title a {
    color:#000;
}
.footer-icon-custom .box-content .box-title {
    font-size: 16px;
    font-weight: 400;
}
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    width: 56px;
    height: 56px;
    box-shadow: inset 0 0 0 0 #01b0f1;
    transition: .5s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: #052f61;
}
/*****************************/
.default-form input[type="text"], .default-form input[type="email"], .default-form input[type="password"], .default-form select, .default-form textarea {
    display: block;
    width: 100%;
    line-height: 28px;
    height: 56px;
    font-size: 15px;
    padding: 8px 22px;
    color: #777777;
    border-radius: 5px;
    border: 1px solid #cccccc;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.default-form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-page-section .contact-info {
    position: relative;
    margin-bottom: 0px;
    list-style: none;
    padding: 0;
}
.contact-page-section .contact-info li {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 24px;
    color: #404040;
    font-weight: 400;
    margin-bottom: 35px;
}
.contact-page-section .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1.4em;
    color: #052f61;
    font-family: 'FontAwesome';
}
.contact-page-section .contact-info li strong {
    display: block;
    font-size: 24px;
    line-height: 26px;
    color: #111111;
    font-weight: 600;
    margin-bottom: 5px;
}
.page-title {
    position: relative;
    text-align: left;
    overflow: hidden;
    padding: 130px 0px 130px;
    background-size: cover;
	background-position: center;
    top: 31px;
}
.page-title:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    top: 0px;
    right: 0px;
    background-color: rgb(26, 31, 63, 0.9);
}
.page-title h2 {
    color: #ffffff;
    margin-bottom: 0px;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    text-align: center;
}
.contact-page-section {
    padding: 80px 0px;
    margin-top: 30px;
}
.contact-page-section .contact-info li a {
    color: #404040;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-page-section .info-column {
	padding-left: 50px;
}
.default-form textarea {
    height: 125px;
    resize: none;
    font-size: 15px;
    padding-top: 18px;
}
/**********************service********/
.left-img-service {
    border: 5px solid #2d84b4;
    padding: 5px;
    box-shadow: 0 0 30px rgb(0 0 0 / 24%);
    padding: 0;
    position: relative;
    margin: 0;
}
.left-img-service .img-col {
    position: relative;
    padding: 0;
}
.left-img-service .img-col::before {
    content: "";
    background-color: #2d84b4;
    padding: 0;
    width: 95%;
    position: absolute;
    height: 100%;
}
.left-img-service .img-col::after {
    -webkit-mask-image: url('data:image/svg+xml,<svg width="84" height="73" viewBox="0 0 84 73" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-0.00195312 0.994333C0.649832 0.962347 1.34524 0.960712 2.07929 0.994333H83.998V72.9697C59.9088 72.9697 47.3422 52.3005 44.0701 41.9659C32.4381 9.78311 12.9901 1.49408 2.07929 0.994333H-0.00195312Z" fill="%23D9D9D9"/></svg>');
    mask-image: url('data:image/svg+xml,<svg width="84" height="73" viewBox="0 0 84 73" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-0.00195312 0.994333C0.649832 0.962347 1.34524 0.960712 2.07929 0.994333H83.998V72.9697C59.9088 72.9697 47.3422 52.3005 44.0701 41.9659C32.4381 9.78311 12.9901 1.49408 2.07929 0.994333H-0.00195312Z" fill="%23D9D9D9"/></svg>');
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    content: '';
    position: absolute;
    top: 0px;
    width: 220px;
    height: 102%;
    right: -180px;
    background-color: #2d84b4;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 0;
}
.left-img-service .image-figure , .right-img-service .image-figure{
	margin: auto;
    text-align: center;
}
.left-img-service .image-figure img, .right-img-service .image-figure img {
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
    z-index: 2;
    position: relative;
    padding-top: 0;
    border: 7px solid #fff;
    margin: 10px;
}
.left-img-service .service-block {
    padding: 30px;
    padding-left: 125px;
}
.left-img-service .service-block h3, .right-img-service .service-block h3 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.left-img-service .service-block p, .right-img-service .service-block p {
    font-size: 18px;
    color: #000;
}
.right-img-service {
    border: 5px solid #e1496b;
    padding: 5px;
    box-shadow: 0 0 30px rgb(0 0 0 / 24%);
    padding: 0;
    position: relative;
    margin: 0;
}
.right-img-service .img-right-col {
    border-radius: 30px;
    text-align: left;
}
.right-img-service .img-right-col::before {
    content: "";
    background-color: #e1496b;
    padding: 0;
    width: 95%;
    position: absolute;
    height: 100%;
    right: 0;
}
.right-img-service .img-right-col::after {
    -webkit-mask-image: url('data:image/svg+xml,<svg width="84" height="73" viewBox="0 0 84 73" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><g transform="scale(-1, 1) translate(-84, 0)"><path d="M-0.00195312 0.994333C0.649832 0.962347 1.34524 0.960712 2.07929 0.994333H83.998V72.9697C59.9088 72.9697 47.3422 52.3005 44.0701 41.9659C32.4381 9.78311 12.9901 1.49408 2.07929 0.994333H-0.00195312Z" fill="%23D9D9D9"/></g></svg>');
    mask-image: url('data:image/svg+xml,<svg width="84" height="73" viewBox="0 0 84 73" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><g transform="scale(-1, 1) translate(-84, 0)"><path d="M-0.00195312 0.994333C0.649832 0.962347 1.34524 0.960712 2.07929 0.994333H83.998V72.9697C59.9088 72.9697 47.3422 52.3005 44.0701 41.9659C32.4381 9.78311 12.9901 1.49408 2.07929 0.994333H-0.00195312Z" fill="%23D9D9D9"/></g></svg>');
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    content: '';
    position: absolute;
    top: -2px;
    width: 220px;
    height: 102%;
    left: 42%;
    background-color: #e1496b;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 4;
}
.s-top-30 {
	margin-top:30px;
}
.right-img-service .service-block {
    padding: 30px;
    z-index: 3;
    position: relative;
    background: white;
    height: 100%;
    padding-right: 125px;
}
.service-main-heading-column {
	margin-bottom:40px;
}
/************************/
.tabs {
    display: flex;
    position: relative;
}
.tabs > ul#tab-links {
    list-style-type: none;
    max-width: 225px;
    width: 100%;
    position: absolute;
    top: 46%;
    left: 0;
    -webkit-transform: translate(0,-50%);
    -khtml-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    background-color: #fff;
    -webkit-box-shadow: 0 0 43px rgba(12,12,12,.19);
    -khtml-box-shadow: 0 0 43px rgba(12,12,12,.19);
    -moz-box-shadow: 0 0 43px rgba(12,12,12,.19);
    -ms-box-shadow: 0 0 43px rgba(12,12,12,.19);
    -o-box-shadow: 0 0 43px rgba(12,12,12,.19);
    box-shadow: 0 0 43px rgba(12,12,12,.19);
    right: 0px;
    margin: 0px auto;
    padding: 0px;
    z-index: 9;
}
.tabs > ul#tab-links li a {
    display: block;
    text-decoration: none;
    background: #fff;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease-in-out;
    padding: 10px 20px;
    position: relative;
    border-bottom: 1px solid #b2129e;
    border-top: 1px solid #b2129e;
}
.tabs > ul#tab-links li a.active {

}
.tabs > ul#tab-links li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: transparent;
    -webkit-transition: all .2s linear 0ms;
    -khtml-transition: all .2s linear 0ms;
    -moz-transition: all .2s linear 0ms;
    -ms-transition: all .2s linear 0ms;
    -o-transition: all .2s linear 0ms;
    transition: all .2s linear 0ms;
    opacity: 0;
    z-index: -1;
}
.tabs > ul#tab-links li a.active:before {
    opacity: 1;
    left: -12px;
    right: -12px;
}
.tabs section {
    background: #fff;
    padding: 0px 0px;
    display: none;
}
.tabs section.active {
    display: block;
}
.leftTab {
    padding-left: 22%;
}
.leftTab h3 {
    margin-bottom: 5px;
}
.righttab {
    padding-left: 5%;
    height: 100%;
}
.about-us .righttab figure {
    width: 100%;
    height: 580px;
    border-radius: 15px;
}
.about-us .righttab figure img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
    border-radius: 15px;
}
.leftTab p.para {
    font-size: 16px !important;
    line-height: 26px;
    color: #000;
}
.tabs .row {
    height: auto;
}
.ct-fancy-box-layout1 .item--title, .ct-fancy-box-layout1.style6 .item--title {
    font-size: 18px;
}
.tabs > ul#tab-links li {
    display: block;
    text-align: center;
}
.tabs > ul#tab-links li a h4 {
    font-size: 14px;
}
.listing-custom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.listing-custom ul li {
    position: relative;
    padding-left: 24px;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 300;
}
.listing-custom ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: #b2129e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 1px 0px 5px rgba(0,0,0,.32);
    top: 5px;
}
.about-us .leftTab  .top-margin {
    margin-top: 30px;
    
}
.about-us .leftTab .list-items li {
    font-size: 16px;
}


/******************/


@media (max-width:1024px) {
.banner-slider .col-lg-6.tab-order2 , .paitents-section .tab-order2{
    order: 2;
    margin-top: 30px;
}
.form-card {
    position: static;
    max-width: 90%;
    margin: auto;
}
.form-section {
    position: relative;
    top: -62px;
    left: 0px;
}
.hero-content {
   padding: 20px;
   padding-left: 2%;
    padding-right: 2%;
    right: 0;
    margin-top: -7px;
	height:320px;
}
.about-content {
    margin-top: 30px;
}
.about-us .about-us-images {
    padding-right: 0px;
}
.hr-section {
    padding: 0px 20px 50px;
}
.cta-section {
    padding: 50px 20px 50px;
}
.footer-row-column .col-md-2 {
    width: 50%;
}
.footer-row-column .about-footer-content {
    margin-bottom: 30px;
}
.footer-top {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}
header.main-header .header-sticky .navbar a img {
    height: 70px;
}
}


@media(max-width:767px) { 
.section-title h1, .form-heading, .section-title h2, .section-title .title {
    font-size: 20px;
}
.hero {
    padding: 0px 15px 0px;
}
.banner-slider .row .images-col figure {
    height: auto;
}
header.main-header .header-sticky .navbar a img {
    position: static;
            height: 50px;
}
.navbar .navbar-toggle{
    margin-top: 10px;
}
.form-card {
    padding: 15px 20px;
}
.form-card .col-lg-3 {
margin-bottom:15px;	
}
.form-section {
    position: static;
    margin-bottom: 30px;
}
.services-list .service-items .service-item-image {
    display: block;
}
.service-items .service-item-image figure {
    margin-bottom: 0px;height: auto;
}
.services-list .service-items {
    padding: 0px;
    min-height: auto;
}
.services-list .service-items .service-item-image figure img {
    border-radius: 15px 15px 0px 0px;
    height: auto;
}
.about-us {
    padding: 30px 0;
}
.about-us .about-us-images figure {
    height: auto;
}
.hr-section {
    padding: 0px 0px 20px;
}
.hr-list {
	margin-top:20px;
}
.hr-item {
    height: calc(100% - 10px);
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
}
.paitents-section {
    padding: 0px 0 0px;
}
.paitents-section  .paitents-list li {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}
.cta-section {
    padding: 20px 0px 30px;
}
.footer-top {
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
	padding-top: 20px;
}
.footer-row-column .col-md-2 {
    width: 100%;
}
.services-list .slick-prev, .hr-list .slick-prev {
    left: 0;
}
.services-list .slick-next, .hr-list .slick-next {
    right: 0;
}
.cta-section:before {
    width: 200px;
    height: 256px;
}
.star-shape .shape1 {
    width: 20px;
}
.star-shape .shape2 {
    width: 30px;
}
.banner-slider .content-col:before {
	display:none;
}
.paitents-section  .paitents-list {
    margin-top: 20px;
}
.footer-logo img {
    max-width: 96px;
    margin: 0;
	margin-bottom: 15px;
}
.page-title {
    padding: 40px 0px 40px;
    top: 0px;
}
.contact-page-section {
    padding: 30px 0px;
    margin-top: 0;
}
.contact-page-section .info-column {
    padding-left: 20px;
}
.contact-page-section .form-column {
	    order: 1;
}
.map-section-section iframe {
	height: 300px;
}
.left-img-service .image-figure img, .right-img-service .image-figure img {
    height: auto;
    margin: 0;
}
.left-img-service .img-col::before {
    width: 100%;
}
.left-img-service .img-col::after, .right-img-service .img-right-col::after {
  display:none;
}
.left-img-service .service-block, .right-img-service .service-block {
    padding: 0px;
    padding-left: 0px;
	 padding-top: 10px;
}
.left-img-service .image-figure, .right-img-service .image-figure {
    margin-bottom: 5px;
}
.service-main-heading-column {
    margin-bottom: 20px;
}
.right-img-service .img-right-col {
    padding: 0;
}
.right-img-service .img-right-col::before {
    width: 100%; height: auto;
}
.s-top-30 {
    margin-top: 15px;
}
.right-img-service {
    flex-direction: column-reverse;
}
.slicknav_nav .slicknav_row, .slicknav_nav li a {
    font-size: 14px;
    padding: 7px 17px;
    display: inline-block;
    padding-left: 0;
}
.slicknav_menu ul {
    padding: 20px;
}
.slicknav_menu ul ul{
    padding: 0px;
}
.btn-custom {
    padding: 10px 5px;
    min-width: 150px;
}
.tabs {
    display: block;
    position: relative;
}
.tabs > ul#tab-links {
    list-style-type: none;
    max-width: 100%;
    width: 100%;
    position: relative;
    top: 100px;
    left: auto;
    box-shadow: 0 0 43px rgba(12,12,12,.19);
    right: auto;
    margin: 0px auto;
    padding: 0px;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    border-bottom: 1px solid #b2129e;
}
.tabs > ul#tab-links li {
    width: 50%;
}
.tabs > ul#tab-links li a {
    padding: 0px;
    border: 0;
}
.tabs section {
    background: #fff;
    padding-left: 0px;
    display: none;
    padding-right: 0px;
    float: left;
    margin-bottom: 30px;
}
.tabs .row {
    height: auto;
}
.leftTab {
    padding-left: 0;
    padding-bottom: 20px;
    background: #eee;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: -18px;
}
.righttab {
    padding-left: 0;
    padding-top: 20px;
}
.about-us .righttab figure {
    height: 200px;
}
.banner-slider {
    margin-bottom: 0px;
}





}