/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-color: #054163;
	--secondary-color: #E6EFED;
	--text-color: #5C5C5C;
	--accent-color: #004C4D;
	--white-color: #FFFFFF;
	--divider-color: #FFFFFF26;
	--dark-divider-color: #153C331A;
	--error-color: rgb(230, 87, 87);
	--accent-font: "Noto Sans", sans-serif;
	--default-font: "Poppins", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1em;
	color: var(--primary-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;
}

.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(--accent-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	color: var(--white-color);
	background: var(--accent-color);
	text-transform: capitalize;
	padding: 10px 32px 10px 12px;
	/* border-radius: 8px; */
	border-radius: 0;
	border: none;
	box-shadow: 3px 4px 4px rgb(0 0 0 / 25%);
	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: 20px;
	height: 28px;
	border-radius: 50%;
	background-image: url('../images/icons/arrow-sm-down.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 {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 20px;
	height: 28px;
	border-radius: 50%;
	background-image: url('../images/icons/arrow-down-black.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}
.btn-default:hover {
    background: #fff;
	border: 1px solid;
    color: var(--accent-color);
}
.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 102%;
	border-radius: 0;
    background: #fff;
	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(--primary-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}


.practice-content .btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 13px;
	height: 13px;
	border-radius: 0;
	background-image: url('../images/icons/cta-vector-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}
.practice-content .btn-default:hover {
	background: #fff;
	color: var(--accent-color);
}

.practice-content .btn-default:hover::before {
	background-image: url('../images/icons/cta-vector.svg');
}

#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: 60px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 30px;
}

.section-title h3 {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background-color: var(--secondary-color);
	color: var(--accent-color);
	border-radius: 99px;
	padding: 10px 20px;
	margin-bottom: 20px;
}

.section-title h1 {
	font-size: 57px;
	font-weight: 500;
	line-height: 117%;
	margin-bottom: 0;
	text-align: start;
}

.section-title h2 {
	font-size: 23px;
	font-weight: 500;
	line-height: 151%;
	margin-bottom: 0;
	text-transform: uppercase;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 5px;
    margin-bottom: 0;
    line-height: 151%;
    font-size: 15px;
    font-weight: 300;
    font-style: var(--default-font);
}

.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(--primary-color);
}

.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(--accent-color);
}

.topbar-social-links ul li a i {
	font-size: 20px;
	color: inherit
}

header.main-header {
	background-color: var(--white-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(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

.navbar {
	padding: 30px 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;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 14px 15px !important;
	color: var(--primary-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: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	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(--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: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn .btn-default::before {
	background-image: url(../images/icon-phone.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: 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 .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 30px;
}

.slicknav_menu ul ul li a:hover {
	padding: 10px 20px 10px 33px;
}

.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);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	background-color: var(--secondary-color);
	padding: 50px 0 0;
}

.hero-content {
	padding-right: 100px;
}

.hero-content .section-title p {
	font-size: 19px;
	color: var(--primary-color);
	font-family: var(--default-font);
	font-weight: 200;
	text-align: start;
}

.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%;
	max-width: 680px;
	margin: 0 auto;
	padding-right: 0;
	z-index: 1;
}

.hero.bg-image .hero-content .section-title p,
.hero.bg-image .hero-content .section-title h1 span,
.hero.bg-image .hero-content .section-title h1 {
	color: #fff;
}

.hero.bg-image .hero-content .section-title h1 {
	font-size: 51px;
	text-transform: capitalize;
}

.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: 400px 0 90px;
}

.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: #212529ba;
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.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: 100%;
	margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
	bottom: 100px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	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;
}

.hero.bg-image.hero-video::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.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;
}

.hero-slide .line {
	width: 1400px;
	height: 1px;
	background-color: #ffffffa1;
	margin: 30px 0;
}

.swiper-button-next,
.swiper-button-prev {
	background: none;
	width: auto;
	height: auto;
	position: absolute;
	bottom: 33%;
	/* distance from bottom */
	top: auto;
	/* override default */
}

.swiper-button-prev {
	right: 14%;
	/* space for next button */
	left: auto;
}

.swiper-button-next {
	right: 12%;
	/* aligns to far right */
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-button-next img,
.swiper-button-prev img {
	width: 28.51px;
	height: 28.51px;
	cursor: pointer;
}

.section-title-all {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%; /* full container width */
}

.section-title-all h2 {
	white-space: nowrap; /* keep title text in one line */
}

.section-title-all img {
	margin: 0 10px;
}

.line-title {
	flex: 1;               /* take up remaining space */
	height: 1px;
	background-color: #000000;
}



/************************************/
/***  05. Home Contact Us css     ***/
/************************************/

.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: 100px 0 50px;
	background: url('../images/about-us-bg.svg') no-repeat;
	background-position: right -100px center;
	background-size: auto;
}

.about-us-image {
	position: relative;
}

.about-img img {
	border-radius: 30px;
}

.company-experience {
	position: absolute;
	right: 40px;
	bottom: 40px;
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 15px 20px;
	box-shadow: 0px 0px 24px 0px #00000012;
	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: calc(100% - 62px);
	text-align: left;
}

.company-experience-content h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 5px;
}

.company-experience-content p {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 14px;
	text-transform: capitalize;
	margin: 0;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.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     ***/
/************************************/

.our-service {
	padding: 30px 0;
}

.service-item {
	padding: 15px;
    border: 1px solid #004c4dab;
    border-radius: 0;
    height: 340px; /* fixed height */
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 0;
    cursor: pointer;
	transition: transform 0.6s ease, height 0.4s ease;
    /* transition: transform 0.9s ease, height 0.4s ease; */
	will-change: transform;
}

.service:hover {
	height: 387px;
	transform: translateY(0);
}

.service-item:hover {
	/* height: 362px;
    transform: translateY(-22px); */
	height: 356px;
	transform: translateY(-22px) scale(1.03);
}

.service-item:before {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, #017D7E, #004C4D);
    transition: top 0.6s ease;
    height: 100%;
    z-index: -1;
}

.service-item:hover:before {
	top: 0;
}

.service-item .icon-box {
	display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    height: 180px;
    transition: all 0.6s ease;
    overflow: hidden;
}

.service-item:hover .icon-box {
	height: 180px;
	/* image grows upward */
}

.service-item .icon-box img {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
    /* transition: height 0.9s ease, transform 0.9s ease; */
}

.service-item:hover .icon-box img {
	/* height: 200px; 
    transform: translateY(-10px); */
	transform: scale(1.05) translateY(-10px);
}

/* .service-item:hover .icon-box::before{
	top: 0;
} */

.service-item .icon-box img {
	position: relative;
	z-index: 1;
	border-radius: 0;
	width: 100%;
	/* max-width: 30px; */
}


.service-item .service-body {
	margin-bottom: 20px;
}

.service-item .service-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body h3 {
	color: var(--white-color);
}



.service-item .service-body p {
	margin: 0;
	font-size: 14px;
	display: -webkit-box;
	/* -webkit-line-clamp: 3; */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body p {
	color: var(--white-color);
}

.service-item .service-footer a {
	background-color: var(--primary-color);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	background-image: url('../images/icons/arrow-up-vertical.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	/* adjust as needed */
}

.service-item:hover .service-footer a {
	background-color: #ffffff;
	background-image: url('../images/icons/arrow-up-vertical-black.png');
	background-size: 16px 16px;
}


.service-item .service-footer a:hover {
	background-color: var(--text-color);
}

.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);
}

.mt-30 {
	margin-top: 0;
}

.service-slide .service-item {
	padding: 15px;
}



.why-us .swiper-button-prev,
.why-us .swiper-button-next {
	position: absolute;
	bottom: 0;
	top: auto;
	transform: translateY(0);
	background: transparent;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-us .swiper-button-prev {
	left: 50%;
	transform: translateX(-60px);
}

.why-us .swiper-button-next {
	right: 50%;
	transform: translateX(60px);
}

.why-us .swiper-button-prev::after,
.why-us .swiper-button-next::after {
	display: none;
}


/* .service-footer a img{
	transform: rotate(320deg);
} */

/************************************/
/***  09. Solution Your Plan css  ***/
/************************************/

.solution-your-plan {
	padding: 100px 0;
	background: url('../images/expertise-bg.png');
}

.solution-your-plan .section-title h2 {
	font-size: 23px;
	font-weight: 500;
	line-height: 151%;
	margin-bottom: 0;
	text-transform: uppercase;
	color: #F9F9F9;
}

.solution-your-plan .section-title p {
	color: #F9F9F9;
}

.line-title-white {
	flex: 1; 
	height: 1px;
	background-color: #f8f8f8ad;
	margin: 30px 0;
}

.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: flex-start;
	gap: 20px;
	transition: all 0.4s ease;
	box-shadow: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.solution-counter-item:hover {
  	transform: translateY(-6px) scale(1.04);
    box-shadow: none;
    background: transparent;
}
.solution-counter-item:hover .solution-counter-content h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 151%;
    transition: color 0.4s ease;
}
.solution-counter-item h5 {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-color, #ff6600);
	transition: color 0.3s ease;
}

.solution-counter-item h3 {
	font-size: 20px;
	font-weight: 600;
	transition: color 0.4s ease;
}

.solution-counter-item p {
	transition: color 0.3s ease;
	color: #555;
}

.solution-counter-item:hover h3 {
  	color: var(--accent-color, #ff6600);
}

.solution-counter-item:hover p {
  	color: #222;
}

.solution-counter-item .icon-box {
	margin-right: 10px;
}

.solution-counter-item .icon-box img {
	max-width: 60px;
}

.solution-counter-item .solution-counter-content {
	width: calc(100% - 58px);
}

.solution-counter-item .solution-counter-content h3 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 5px;
	color: var(--white-color);
	font-family: var(--default-font);
}

.solution-counter-item .solution-counter-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.solution-counter-content ul li {
	color: #F4F4F4;
	font-size: 16px;
	font-weight: 200;
	line-height: 160%;
}

.solution-counter-content .line {
	width: 280px;
	height: 1px;
	background-color: #f4f4f487;
	margin: 20px 0;
}

.code-solution .solution-counter-content .counter-content {
	display: flex;
	gap: 84px;
}

.code-solution .solution-counter-item .solution-counter-content {
	width: 100%;
}

.solution-plan-counter .down {
	margin-top: 5%;
}

.solution-plan-counter .up {
	margin-top: -4%;
}

.code-solution .line-title-white {
	flex: 1; 
	height: 1px;
	background-color: #f8f8f8ad;
	margin: 30px 0;
}

.code-solution {
	padding: 40px 0;
	background: url('../images/code.png');
	background-size: cover;
}

.code-solution .solution-counter-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 25px 0;
	border-bottom: 1px solid #ffffff78;
}

.code-solution .solution-counter-content h5 {
	color: #fff;
	font-weight: 100;
	font-size: 22px;
}

.code-solution .solution-counter-item .solution-counter-content p {
	color: var(--white-color);
	text-transform: none;
	margin: 0;
	font-weight: 200;
}

.solution-counter-item .solution-counter-content h3 {
	font-size: 18px;
	font-weight: 300;
	line-height: 151%;
	margin-bottom: 5px;
	width: 400px;
	color: var(--white-color);
	font-family: var(--default-font);
}

/************************************/
/***    10. Why Choose Us css 	  ***/
/************************************/

.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%;
}

.why-us .section-title .line-title {
	flex: 1; 
	height: 1px;
	background-color: #000000;
	margin: 30px 0;
}

.why-us .service-item .icon-box {
	height: 67px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	z-index: 1;
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.why-us .service-item .icon-box img {
	position: relative;
	z-index: 1;
	border-radius: 0;
	width: 100%;
	max-width: 51px;
	height: auto;
}



.why-us .service-item:hover .icon-box img {
    transform: none;
}

.why-us .service-item {
	padding: 30px 20px;
	border: 0;
	margin: 0 10px;
	border-radius: 0;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	background: #E9E9E9;
	z-index: 0;
	height: fit-content;
	cursor: pointer;
	text-align: center;
	transition: 0.3s ease-in-out;
}

.why-us .service-item:hover {
	height: fit-content;
	transform: translateY(0);
}

.why-us .service-item:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(176deg, #FFFFFF, #004C4D);
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: -1;
	/* stays behind text but visible */
}

.why-us .service-item:hover:before {
	top: 0;
}

.why-us .service-item:hover .service-body h3 {
	color: var(--white-color);
}

.why-us .service-item .service-body p {
	margin: 0;
	color: #004C4D;
	font-size: 16px;
	display: block;
	transition: all 0.5s ease-in-out;
}

.why-us .service-item:hover .service-body p {
	color: var(--white-color);
}

.why-us .down {
	margin-top: 4%;
}

/************************************/
/***   11. Need Attension css     ***/
/************************************/

.need-attention {
	padding: 100px 0;
	background: url('../images/need-attention-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
}

.need-attention:before {
	position: absolute;
	content: '';
	background: var(--primary-color);
	opacity: 90%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.need-attention .container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 970px;
	margin: 0 auto;
}

.need-attention .section-title {
	text-align: center;
}

.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 20px 10px;
	border-bottom: 1px solid var(--divider-color);
}

.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;
}

.need-attention-list .need-attention-content {
	width: calc(100% - 52px);
}

.need-attention-list .need-attention-content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
	margin: 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%;
	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: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}


.our-labour .team-member-item:hover .team-social-icon {
	bottom: 0;
	transform: translateY(0);
}

.our-labour .team-social-icon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translateY(100%);
	text-align: center;
	z-index: 1;
	padding: 20px;
	background: #fff;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.our-labour .line-title {
	flex: 1; 
	height: 1px;
	background-color: #000000;
	margin: 30px 0;
}

.our-labour .home-contact-item .home-contact-content p {
	color: var(--text-color);
	margin: 0;
}

.our-labour .appointment-btn {
	text-align: left;
	margin-top: 20px;
}

.our-labour .service-item {
	border-radius: 25px;
	border: 0;
	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;
	padding: 0;
}

.our-labour .service-item:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: transparent;
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: -1;
}

.our-labour .service-item .service-body h3 {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.5s ease-in-out;
}

.our-labour .service-item:hover .service-body h3,
.our-labour .service-item:hover .service-body p {
	color: var(--accent-color);
}

.our-labour .service-item:hover {
	height: 387px;
	transform: translateY(-46px);
	box-shadow: 2px 2px 4px rgb(0 0 0 / 25%);
}



.our-labour .service-item .img-box {
	position: relative;
}

.our-labour .service-item-new .img-box img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
	height: auto;
}

.our-labour .service-item .service-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translateY(100%);
	text-align: start;
	z-index: 1;
	padding: 20px;
	background: #fff;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.our-labour .service-item:hover .service-body {
	bottom: 0;
	transform: translateY(0);
}

.team-slider {
	position: relative;
	width: 100%;
}

.team-slider .swiper-slide {
	height: 387px;
	/* Same as hover height */
	transition: all 0.4s ease;
}

.team-slider .service-item {
	height: 100%;
}

.slider-header {
	position: absolute;
	top: -30px;
	left: 0;
	font-size: 16px;
	font-weight: 500;
}

.slider-counter {
	color: #999;
}

.slider-nav {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	margin-top: 15px;
}

.swiper-button-prev,
.swiper-button-next {
	position: static;
	background: none;
	width: 30px;
	height: 30px;
}



/************************************/
/***  	13. Our Testimonial css   ***/
/************************************/

.our-testimonial {
	padding: 100px 0 50px;
	background: var(--secondary-color) url('../images/testimonial-bg.svg') no-repeat center center;
	background-size: auto;
}

.our-testimonial .section-title {
	text-align: center;
}

.our-testimonial .section-title h3 {
	background: var(--white-color);
}

.our-testimonial .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	background: var(--white-color);
	border: 2px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 40px;
}

.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;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	width: 56px;
	height: 56px;
	margin-right: 10px;
}

.testimonial-body .author-image img {
	width: 56px;
	height: 56px;
	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: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: var(--accent-color);
	opacity: 1;
	margin: 0px 6px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
	opacity: 1;
}

/************************************/
/***   		14. Our featurs css      ***/
/************************************/

.our-featurs .line-title {
	flex: 1; 
	height: 1px;
	background-color: #000000;
	margin: 30px 0;
}

.our-featurs .section-title p {
	margin-top: 5px;
	margin-bottom: 0;
	line-height: 151%;
	font-size: 17px;
	text-align: start;
}

.our-featurs {
	padding: 40px 0;
	padding-bottom: 0;
	background: transparent;
	background-size: auto;
}

.our-featurs .appointment-btn {
	text-align: left;
}

.our-featurs .testimonial-body .author-content h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: none;
	line-height: 151%;
	margin-bottom: 10px;
}

.our-featurs .testimonial-header .testimonial-content p {
	color: var(--text-color);
	opacity: 1;
	margin: 0;
	font-size: 15px;
	line-height: 151%;
}

.our-featurs .testimonial-item .testimonial-header {
	margin-bottom: 20px;
}

.our-featurs .btn-default {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 200;
	line-height: 150%;
	color: var(--white-color);
	background: #053E5F;
	text-transform: capitalize;
	padding: 10px 32px 10px 12px;
	border-radius: 8px;
	border: none;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.our-featurs .swiper-slide {
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 0.5;
	transform: scale(0.9);
	border-radius: 25px;
}

.our-featurs .swiper-slide-active {
	transform: scale(1);
	opacity: 1;
	height: 400px;
	background-size: cover;
	background-position: center;
	border-radius: 25px;
}

.our-featurs .swiper-slide-prev,
.our-featurs .swiper-slide-next {
	transform: scale(0.95);
	opacity: 0.7;
}

.our-featurs .testimonial-item {
	padding: 30px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.our-featurs .swiper-slide[data-bg] {
	background-image: var(--bg);
}

.our-featurs .testimonial-item {
	background: #E9E9E9;
	border: 2px solid var(--dark-divider-color);
	border-radius: 25px;
	padding: 40px;
	transition: background 0.4s ease, border-color 0.4s ease;
}

.our-featurs .swiper-slide-active .testimonial-item {
	background: transparent;
	border-color: transparent;
}

.our-featurs .swiper-slide-active .testimonial-body .author-content h3 {
	color: #fff;
}

.our-featurs .swiper-slide-active .testimonial-header .testimonial-content p {
	color: var(--white-color);
}

.our-featurs .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box;
	align-items: center;
}

.our-featurs .testimonial-button-prev,
.our-featurs .testimonial-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: transparent;
	color: #fff;
	padding: 0;
	border-radius: 0;
	cursor: pointer;
}

.our-featurs .testimonial-button-prev {
	left: 31%;
}

.our-featurs .testimonial-button-next {
	right: 31%;
}



/************************************/
/***   		14. Our Blog css      ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.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 h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.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;
}

.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: var(--secondary-color);
	padding: 30px 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 24s linear infinite;
}

.scrolling-content span {
	display: inline-block;
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	font-family: var(--accent-font);
	vertical-align: middle;
}

.scrolling-content span img {
	width: 100%;
	max-width: 30px;
	margin-right: 40px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***   		16. Footer css        ***/
/************************************/

.main-footer {
	padding: 100px 0 0;
	background: var(--primary-color);
}

.footer-logo {
	margin-bottom: 30px;
}

.about-footer-content {
	margin-bottom: 30px;
}

.about-footer-content p {
	color: var(--white-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(--white-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: 22px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.about-working-hour {
	margin-left: 55px;
}

.about-working-hour ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-working-hour ul li {
	color: var(--white-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: 20px;
}

.about-service-list ul li:last-child {
	margin-bottom: 0;
}

.about-service-list ul li a {
	color: var(--white-color);
	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: -2px;
	left: 0;
}

.footer-info-box .icon-box img {
	max-width: 20px;
}

.footer-info-box-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-copyright {
	border-top: 1px solid var(--divider-color);
	padding: 40px 0;
	margin-top: 40px;
}

.footer-copyright-text p {
	color: var(--white-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: 40px;
}

.footer-links ul li:last-child {
	margin-right: 0;
}

.footer-links ul li a {
	color: var(--white-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);
}

.page-header-box h1 {
	color: var(--primary-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(--accent-font);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.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: 100px 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;
}

.our-mva-item {
	position: relative;
	background: var(--white-color);
	border: 2px solid var(--dark-divider-color);
	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(--accent-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 .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: 1;
}

.our-mva-item .mva-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.our-mva-item:hover .mva-item-content h3 {
	color: var(--white-color);
}

.our-mva-item .mva-item-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.our-mva-item:hover .mva-item-content p {
	color: var(--white-color);
}

.cta-infobar {
	position: relative;
	background-image: url('../images/cta-banner.png');
	background-size: cover;
	padding: 40px;
	border: 0;
	border-radius: 0;
	z-index: 1;
}

c

.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: 22px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #F5F5F5;
}

.cta-infobar-1 .cta-info-content .cta-content h3 {
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #F5F5F5;
}

.cta-infobar-1 .cta-info-content .cta-content p {
	color: #F5F5F5;
	opacity: 1;
	margin: 0;
	font-weight: 200;
	margin-bottom: 20px;
	line-height: 151%;
	font-size: 15px;
}

.cta-infobar-1 .btn-default {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	color: #fff;
    background: var(--accent-color);
	text-transform: capitalize;
	padding: 10px 32px 10px 12px;
	border-radius: 0;
	border: none;
	box-shadow: 3px 4px 4px rgb(0 0 0 / 25%);
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.cta-infobar-1 .btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 13px;
	height: 13px;
	border-radius: 0;
	background-image: url('../images/icons/cta-vector-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	transform: translate(-10px, -50%);
	transition: all 0.4s ease-in-out;
}
.cta-infobar-1 .btn-default:hover {
	background: #fff;
	color: var(--accent-color);
}

.cta-infobar-1 .btn-default:hover::before {
	background-image: url('../images/icons/cta-vector.svg');
}

.cta-info-content .cta-content p {
	color: #F5F5F5;
	opacity: 1;
	margin: 0;
	font-weight: 300;
	margin-bottom: 20px;
	line-height: 151%;
	font-size: 15px;
}

.cta-info-content .appointment-btn {
	text-align: left;
}

.cta-appointment-btn {
	text-align: right;
}

.quality-treatment {
	background: var(--secondary-color);
	padding: 100px 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-body ul li {
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 20px;
}

.quality-treatment-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;
}

.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: 20px 0;
}

.page-services .cta-infobar {
	margin-top: 0;
}

/************************************/
/***    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: 100px 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      ***/
/************************************/

.page-single-post {
	padding: 100px 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%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.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: 30px;
}

.post-entry h4 {
	font-size: 26px;
}

.post-entry h5 {
	font-size: 20px;
}

.post-entry h6 {
	font-size: 16px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 18px;
}

.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 {
	background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 35px 40px;
	background-size: 45px;
	border-radius: 30px;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 600;
}

.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);
}

/************************************/
/***   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: 100px 0 25px;
}

.page-team-single .row {
	background-color: var(--primary-color);
	border-radius: 35px 30px 30px 35px;
}

.team-member-image {
	height: 100%;
}

.team-member-image figure {
	height: 100%;
}

.team-member-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 30px 0 0 30px;
}

.team-member-details {
	margin-left: 30px;
	height: 100%;
	padding: 50px 30px;
}

.member-detail-header {
	margin-bottom: 40px;
}

.member-detail-header h2 {
	font-size: 32px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.member-detail-header p {
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.member-detail-content {
	margin-bottom: 40px;
}

.member-detail-content p {
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
}

.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: 18px;
	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: 100px 0 70px;
}

.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: 30px;
}

.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: 46px;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(-50%);
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	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: 30px;
}

/************************************/
/*** 	  25. FAQs Page css	 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.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: 0;
	border-radius: 0;
	margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}



.faq-accordion .accordion-item .accordion-button::after {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(0deg);
	background-image: url("../images/icons/faq-open.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px;
	border-radius: 50%;
	/* background-color: var(--accent-color); */
	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 {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%) rotate(0deg);
	background-image: url("../images/icons/faq-close.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px;
	border-radius: 50%;
	/* background-color: var(--accent-color); */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 20px 20px 20px 60px;
	background: #E9E9E9;
	color: #053E5F;
	font-family: var(--default-font);
}

.accordion-header .accordion-button:not(.collapsed) {
	background: #004C4D;
	color: #fff;
	box-shadow: none;
}

.accordion-body p {
	margin: 0;
	color: #fff;
	font-weight: 200;
	font-family: var(--default-font);
}

/* When accordion is open */
.accordion-item .accordion-collapse.show .accordion-body p {
	color: #fff;
	/* change text color when open */
	font-weight: 200;
	/* example: bolder text */
}

.accordion-body {
	padding: 0 20px 20px 20px;
}

.accordion-body p {
	margin: 0;
}

.accordion-body .row {
	padding: 40px;
	padding-bottom: 0;
}

.accordion-item-1 {
	background-image: url('../images/faq-bg.png');
	background-size: cover;
}

.background-section {
	background-image: url(../images/background.png);
	background-size: cover;
	background-attachment: fixed;
}

.support-section .line-title {
	flex: 1; 
	height: 1px;
    background-color: #000000;
    margin: 30px 0;
}

.support-section .accordion-item .accordion-collapse.show .accordion-body p {
	color: #053E5F;
	font-weight: 200;
	margin-top: 20px;
}

.support-section .accordion-body {
	padding: 0 20px 20px 0;
}

.support-section .service-footer .service-btn {
	background-color: var(--primary-color);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	background-image: url(../images/icons/arrow-up-vertical.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.support-section .accordion-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.support-section .faq-catagery-list ul li:before {
	position: absolute;
	content: '';
	background: url(../images/icons/faq-close.svg) no-repeat center center;
	/* background-color: var(--primary-color); */
	top: 1px;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

/* Normal state */
.support-section .icon-front {
	background-color: var(--accent-color);
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

/* Active state */
/* Active state */
#home:checked~.list label.home .icon-front,
#blog:checked~.list label.blog .icon-front,
#help:checked~.list label.help .icon-front,
#code:checked~.list label.code .icon-front,
#about:checked~.list label.about .icon-front {
	background-color: #fff;
}



/* Normal state icons */
.support-section .icon-front-one {
	background-image: url('../images/icons/support-1.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35px 35px;
}

.support-section .icon-front-two {
	background-image: url('../images/icons/support-2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35px 35px;
}

.support-section .icon-front-three {
	background-image: url('../images/icons/support-3.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35px 35px;
}

.support-section .icon-front-four {
	background-image: url('../images/icons/support-4.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35px 35px;
}

.support-section .icon-front-five {
	background-image: url('../images/icons/support-5.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35px 35px;
}

/* Active state icons */
#home:checked~.list label.home .icon-front-one {
	background-image: url('../images/support/support-1-dark.svg');
}

#blog:checked~.list label.blog .icon-front-two {
	background-image: url('../images/support/support-2-dark.svg');
}

#help:checked~.list label.help .icon-front-three {
	background-image: url('../images/support/support-3-dark.svg');
}

#code:checked~.list label.code .icon-front-four {
	background-image: url('../images/support/support-4-dark.svg');
}

#about:checked~.list label.about .icon-front-five {
	background-image: url('../images/support/support-5-dark.svg');
}





.support-section .list .lable-list-one:before {
	position: absolute;
	content: '';
	background: url(../images/icons/faq-close.svg) no-repeat center center;
	top: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

.support-section .list .lable-list-two:before {
	position: absolute;
	content: '';
	background: url(../images/icons/faq-close.svg) no-repeat center center;
	top: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	transition: all 0.3s ease-in-out;
}

.topic {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.7);
}

.content input {
	display: none;
}

.content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content .list {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 75%;
    margin-right: 163px;
}

.content .list label {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	height: 75px;
	line-height: 60px;
	font-weight: 500;
	padding-left: 25px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.content .list label .lable-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

#home:checked~.list label.home,
#blog:checked~.list label.blog,
#help:checked~.list label.help,
#code:checked~.list label.code,
#about:checked~.list label.about {
	color: #ffffff;
}

/* .content .slider{
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 3px;
    border-radius: 0;
  transition: all 0.5s ease;
  background: #004C4D;
} */
.content .slider {
	position: absolute;
	left: 0;
	top: 0;
	height: 75px;
	width: 104%;
	border-radius: 0;
	transition: all 0.5s ease;
	background: #004C4D;
}

#home:checked~.list .slider {
	top: 0;
}

#blog:checked~.list .slider {
	top: 97px;
}

#help:checked~.list .slider {
	top: 191px;
}

#code:checked~.list .slider {
	top: 285px;
}

#about:checked~.list .slider {
	top: 381px;
}

.content .text-content {
	width: 80%;
	height: 100%;
	color: rgba(255, 255, 255, 0.7);
}

.content .text {
	display: none;
}

.content .text .title {
	font-size: 25px;
	margin-bottom: 10px;
	font-weight: 500;
}

.container .text p {
	text-align: start;
	color: #053E5F;
	font-weight: 400;
	margin-top: 20px;
}

.content .text-content .home {
	display: block;
}



#home:checked~.text-content .home,
#blog:checked~.text-content .blog,
#help:checked~.text-content .help,
#code:checked~.text-content .code,
#about:checked~.text-content .about {
	display: block;
}

#blog:checked~.text-content .home,
#help:checked~.text-content .home,
#code:checked~.text-content .home,
#about:checked~.text-content .home {
	display: none;
}

.content .list label:hover {
	color: #053E5F;
}

.content .about-img img {
	border-radius: 0;
}


/* Default arrow icon (closed state) */
.arrow-icon {
	width: 20px;
	height: 20px;
	background: url('../images/icons/faq-close.svg') no-repeat center center;
	background-size: contain;
	transform: rotate(90deg);
	transition: transform 0.3s ease, background 0.3s ease;
}

/* Rotate and change icon when active (radio checked) */
#home:checked~.list label.home .arrow-icon,
#blog:checked~.list label.blog .arrow-icon,
#help:checked~.list label.help .arrow-icon,
#code:checked~.list label.code .arrow-icon,
#about:checked~.list label.about .arrow-icon {
	transform: rotate(360deg);
	background: url('../images/support/white-faq.svg') no-repeat center center;
	background-size: contain;
}

.practice-content {
	background-color: transparent;
	padding: 50px 0;
}

.practice-content .line-title {
	flex: 1; 
	height: 1px;
	background-color: #000000;
	margin: 30px 0;
}

.practice-content .home-contact-item .home-contact-content p {
	color: var(--text-color);
	margin: 0;
	margin-bottom: 30px;
}

.practice-content .appointment-btn {
	text-align: left;
}

.practice-content .about-img img {
	border-radius: 0;
	width: 100%;
}

/************************************/
/***	26. Contact Us Page css	  ***/
/************************************/

.page-contact {
	padding: 100px 0 20px;
}

.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-us-form {
	padding: 50px 0 100px;
}

.contact-us-img img {
	border-radius: 30px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.contact-form {
	margin-left: 25px;
}

.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: 730px;
}

/***************************************/
/***  27. Make Appointment Page css  ***/
/***************************************/

.page-book-appointment {
	padding: 100px 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;
}



/*  */

.home-content {
	background-color: #FFFFFF;
	padding: 50px 0;
}

.home-content .home-contact-item .home-contact-content {
	width: 100%;
}

.home-content .home-contact-item .home-contact-content {
	margin-bottom: 15px;
}

.home-content .home-contact-content p {
	color: var(--text-color);
	margin: 0;
	font-family: var(--default-font);
	font-weight: 300;
	margin-bottom: 10px;
	font-size: 17px;
	line-height: 155%;
}

.home-content .appointment-btn {
	text-align: start;
}

.show{
	display: none;
}

.cta-infobar-1 {
		position: relative;
		background-image: url(../images/cta-banner-1.png);
		background-size: cover;
		background-position: center;
		padding: 60px;
		border: 0;
		border-radius: 0;
		z-index: 1;
		margin-left: 290px ;
		margin-right: 290px;
	}
	
/*---------------------------
    Rbt Show More Button  
------------------------------*/
.rbt-show-more-btn {
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	color: var(--white-color) !important;
	background: var(--accent-color);
	text-transform: capitalize;
	padding: 10px 32px 10px 12px;
	border-radius: 0;
	border: none;
	box-shadow: 3px 4px 4px rgb(0 0 0 / 25%);
	transition: all 0.4s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
	display: block;
	margin-top: 0;
	cursor: pointer;
	text-align: unset;
	width: fit-content;
}

.rbt-show-more-btn::before {
	background: #fff;
	position: absolute;
	content: "";
	left: -5px;
	bottom: 100%;
	width: 100%;
	height: 86px;
}

.rbt-show-more-btn::after {
	content: "";
	position: absolute;
	right: 0;
	top: 30%;
	transform: translateY(0%);
	width: 14px;
	height: 14px;
	margin-right: 10px;
	padding: 8px;
	background: url("../images/icons/arrow-sm-down.svg") no-repeat center center;
	/* your arrow image */
	background-size: 14px 14px;
}

.rbt-show-more-btn.active::before {
	background: none;
	display: none;
}

.rbt-show-more-btn.active::after {
	background: url("../images/icons/arrow-sm-down.svg") no-repeat center center;
	/* arrow for active state */
	background-size: 14px 14px;
	rotate: 180deg;
}

.has-show-more .has-show-more-inner-content {
	max-height: 173px;
	overflow: hidden;
	margin-bottom: 15px;
	transition: max-height 0.9s ease;
}

.has-show-more.active .has-show-more-inner-content {
	max-height: 2000px;
}

.rbt-show-more-btn-code {
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: var(--white-color) !important;
    background: transparent;
    text-transform: capitalize;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.7s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: none;
    margin-top: 0;
    cursor: pointer;
    text-align: unset;
    width: fit-content;
}
.has-show-more-code .has-show-more-inner-content {
	max-height: 173px;
	overflow: hidden;
	margin-bottom: 15px;
	transition: max-height 0.9s ease;
}

.has-show-more-code.active .has-show-more-inner-content {
	max-height: 2000px;
}


/* career page */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
.practice-content {
    background-color: transparent;
    padding: 50px 0;
}
.about-us-image {
    position: relative;
}
.practice-content .home-contact-item .home-contact-content p {
    color: var(--text-color);
    margin: 0;
    margin-bottom: 30px;
	font-size: 18px;
}
figure {
    margin: 0;
}
.practice-content .about-img img {
    border-radius: 0;
    width: 100%;
	width: 100%;
    height: auto;
}
.news .home-contact-item .home-contact-content {
    width: 100%;
    padding-left: 0;
}
.btn-career {
    position: relative;
    color: #00A6C6 !important;
    font-weight: 700;
    font-size: 23px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}
.btn-career::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;          /* adjust distance under text */
    width: 0%;
    height: 3px;           /* underline thickness */
    background-color: #00A6C6;
    transition: width 0.3s ease;
}
.btn-career:hover {
    color: #38434f !important;
}
.btn-career:hover::after {
    width: 100%;
}
.practice-content .about-us-image{
	margin-right: -54%;
    margin-left: 3px;
}
.practice-content .tabs {margin-bottom:28px;}
.practice-content .tab-btn {
    background: #00A6C6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    line-height: 43px;
    font-weight: 600;
    letter-spacing:.2px;
	width: 100%;
	margin-bottom: 20px;
}
.practice-content .tab-btn[aria-selected="true"]{background:#00A6C6; box-shadow:0 4px 10px rgba(0,0,0,.08)}
.practice-content .tab-btn:focus{outline:3px solid rgba(0,165,179,.18)}
.practice-content .tab-panel{display:none}
.practice-content .tab-panel.active{display:block}

:root{
    --card-bg:#ffffff;
    --accent:#0b8aa7; /* link color */
    --muted:#6b7a7f;
    --card-border:#e9ecec;
  }
.jobs-section .heading {
    font-size: 30px;
    margin-bottom: 50px;
    line-height: 55px;
    padding-bottom: 15px;
    text-transform: capitalize;
    position: relative;
    color: #00A6C6;
}
.stright-line{
	background-color:  #00A6C6;
	height: 2px;
	width: 94.26px;
	margin: 14px 0 23px;
}

.jobs-section h4 {
    margin-bottom: 20px;
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 26.4px;
	font-size: 20px;
    color: var(--primary-color);
	overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 50px;
}

.my-slider{
  padding: 0;
}
.slick-initialized .slick-slide{
	background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(20,30,30,0.04);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  	height: 320px;
  	margin: 0 15px 0 0;
}



.slick-next, .slick-prev{
  z-index: 5;
}
.slick-next{
  right: 15px;
}
.slick-prev{
  left: 15px;
}
.slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.job-meta{
	margin-bottom: 35px;
}
.job-meta ul {
    list-style: none;       /* remove default dots */
    margin: 0;
    padding: 0;
}

.job-meta ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 23px;
	color:#003F62 ;
}

.job-meta ul li::before {
    content: "";
    width: 3px;             
    height: 3px;
    background: #003F62;   
    border-radius: 50%;     
    position: absolute;
    left: 0;
    top: 12px;               
}
.job-link{
	color: #00A6C6 !important;
    font-weight: 600;
}
  
.innerbanner-job{
    position: relative;
    background: #00A6C6;
    height: 400px;
}
.innerbanner-job:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00A6C6;
    content: "";
}
.innerbanner-job .section-heading {
    font-size: 48px;
    margin-bottom: 0;
    line-height: 55px;
	margin-top: 0 !important;
    padding-bottom: 15px;
	font-family: "Noto Sans", sans-serif;
    text-transform: capitalize;
    position: relative;
    color: #fff;
	text-align: left;
}
.innerbanner-job .section-heading.col-white::after {
    background: #ffffff00;
}
.innerbanner-job .bannercaption p, .inner-banner .bannercaption p {
    padding: 0;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    text-align: left;
    font-weight: 200;
}
.innerbanner-job .bannercaption, .inner-banner .bannercaption {
    position: absolute;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    top: 59%;
    z-index: 3;
    text-align: center;
}
.apply-btn{
	background: #003F62;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
	font-family: "Open Sans", sans-serif;
	padding: 15px 27px;
    border-radius: 4px;
    font-size: 20px;
	transition: all 0.3s ease;
}
.apply-btn:hover{
	background: #003F62;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
	font-family: "Open Sans", sans-serif;
	padding: 15px 27px;
    border-radius: 4px;
    font-size: 20px;
}
.jobs-section .pagecontent p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
	text-align: left;
}
.pagecontent .job-meta ul li{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 23px;
	text-align: left;

}
.border-left-box{
	padding-left: 30px;
    border-left: 1px solid #000;
    margin-left: 4px;
}
.border-left-box p span{
	color: #00A6C6;
    font-weight: 600;
}
.jobs-section{
	padding: 90px 0;
    padding-bottom: 20px;
}
.apply-btn-section{
	padding: 30px 0 50px;
}
.jobs-section .pagecontent h3 {
    font-size: 18px;
    padding-top: 10px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-transform: capitalize;
    text-align: left;
}
.pagecontent .bold-ul-li ul li {
    color: #000;
    font-weight: 300;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 23px;
}
.pagecontent .bold-ul-li ul li span{
	font-weight: 600;
}
.bold-ul-li ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #003F62;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 7px;
}
.inclusion-section {
    background-color: #f3f3f3;
    padding: 50px 0;
    margin-left: -19em;
}
.inclusion-section .home-contact-item .home-contact-content {
    width: calc(100% - 84px);
    padding-left: 20em;
}
.inclusion-section .home-contact-item .home-contact-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
}
.inclusion-section .home-contact-item .home-contact-content p span {font-weight: 600;color: #00A6C6;}
.my-slider-job-detail .slide .job-card{
	background: #f3f3f3;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    margin: 0; 
}

@media only screen and (max-width: 768px) {
	.practice-content .about-us-image {
		margin-right: 0;
		margin-left: 0;
		margin-top: 20px;
	}
	.jobs-section .heading {
		font-size: 30px;
		margin-bottom: 15px;
		line-height: 55px;
		padding-bottom: 15px;
		text-transform: capitalize;
		position: relative;
		color: #00A6C6;
	}
	.jobs-section {
		padding: 20px 0;
	}
	.innerbanner-job .bannercaption p, .inner-banner .bannercaption p {
		margin-bottom: 40px;
	}
	.innerbanner-job  .bannercaption h1 {
        margin-top: 40px;
        margin-bottom: 0;
    }
	.innerbanner-job .section-heading {
    	font-size: 30px;
	}
	.inclusion-section {
		background-color: #f3f3f3;
		padding: 20px 0;
		margin-left: 0;
		margin-right: 0;
	}
	.inclusion-section .home-contact-item .home-contact-content {
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.practice-content .about-us-image {
		margin-right: 0;
		margin-left: 0;
		margin-top: 20px;
	}
	.jobs-section .heading {
		font-size: 30px;
		margin-bottom: 15px;
		line-height: 55px;
		padding-bottom: 15px;
		text-transform: capitalize;
		position: relative;
		color: #00A6C6;
	}
	.jobs-section {
		padding: 20px 0;
	}
	.innerbanner-job .bannercaption p, .inner-banner .bannercaption p {
		margin-bottom: 40px;
	}
	.inclusion-section {
		background-color: #f3f3f3;
		padding: 20px 0;
		margin-left: 0;
        margin-right: 0;
	}
	.inclusion-section .home-contact-item .home-contact-content {
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width:520px){
    .practice-content .tabs{justify-content:stretch}
    .practice-content .tab-btn{flex:1}
}

/* career page end */

/************************************/
/***     28. responsive css       ***/
/************************************/


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

/* unlocked page css start  */
.unlocked-page-section {
	background: linear-gradient(to right, #15294A 0%, #5888D7 50%, #15294A 100%);
	color: #fff;
	margin-top: 60px;
}
.unlocked-page-section .innerbanner::after{
	background: transparent;
}
.unlocked-page-section .innerbanner .banner-breadcrumb {
	position: static;
	background: rgba(0, 0, 0, 0.1);
	font-family: 'open sans', sans-serif;
}
.unlocked-page-content {
padding: 30px 0;
}
.unlocked-page-section h1 {
	font-family: 'Roboto slab', sans-serif;
	font-size: 28px;
	font-weight: 400;
	margin: 15px 0;
	color: #fff;
}
.unlocked-page-section .unlocked-badge {
	background: #fff;
	color: #003F62;
	border-radius: 8px;
	padding: 4px 19px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	display: inline-block;
}
.unlocked-page-section p {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
}
.unlocked-page-section p.date {
	font-weight: 600;
	font-size: 15px;
}
.play-list-section {
	margin-bottom: 30px;
}
.play-list-section li {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 600px;
	margin-bottom: 20px;
}

.play-list-section li p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
}
.play-list-section li p.play-title {
	flex: 0 0 75px;
	font-size: 13px;
}
.unlocked-banner {
	min-height: 320px;
	max-width: 250px;
	padding: 100px 30px;
	margin-left: auto;
	text-align: center;
	background-color: #091d41;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.unlocked-banner svg {
	filter: invert(1) brightness(2);
	max-width: 100px;
}
.video-section {
	background-color: #f3f3f3;
	color: #000;
}

.video-list-section li {
	list-style: none;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	background-color: #fff;
	border: 1px solid transparent;
}
.video-list-section li .video-frame {
	flex: 0 0 110px;	
}
.video-list-section li .play-section {
	flex: 0 0 90px;	
}
.video-list-section li .play-section{
	cursor: pointer;
}

.video-list-section li .play-section .playing {
	display: none;
}
.video-list-section li .play-section.active .playing {
	display: block;
}
.video-list-section li .play-section.active .play-area {
	display: none;
}
.video-list-section li .video-content {
	flex: 1;
	padding: 15px 0;
}
.video-list-section li .video-content p:nth-child(2) {
	font-size: 15px;
}
.video-list-section li .video-content p:first-child{
	font-weight: 600;
	color:#A38312 ;
}
.video-list-section li p {
	margin-bottom: 0;
}
.video-wrapper img{
	width: 100%;
}
.video-wrapper .tab-panel{
	display: none;
}
.video-wrapper .tab-panel.active{
	display: block;
}
.latest-video-section {
	padding-top: 70px;
}
.latest-video-section h2 {
	font-family: 'Roboto slab', sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #000;
}
.latest-video-box {
	font-family: 'open sans', sans-serif;
	display: flex;
	gap: 20px;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	background-color: #fff;
	border-right: 2px solid#A38312;
}
.latest-video-box .video-info {
    padding:10px 0;
}
.latest-video-box figure {
	flex: 0 0 25%;
	width: 25%;
	
}
.latest-video-box figure img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.latest-video-box .video-info .video-title {
	font-family: 'open sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #A38312;
	min-height:40px;
}
.video-slider.slick-initialized .slick-slide {
	background-color: transparent;
	height: auto;
	padding: 0;
}
.video-slider .slick-prev:before, .video-slider .slick-next:before {
	content: '';
	background: url('../images/icons/slick-arrow.svg') no-repeat center center #fff;
	width: 32px;
    height: 32px;
    display: block;
}
.video-slider .slick-next:before  {
	transform: rotate(180deg);
}
button.slick-arrow:focus {
	border: none;
}
.video-slider .slick-prev {
    left: -47px;
}
@media only screen and (max-width:991px) {
	.unlocked-banner {
		max-width: 100%;
		padding: 30px 70px;
	}
}
@media only screen and (max-width:767px) {
    .video-section {
        padding:30px 0;
    }
    .video-list-section li {
        gap:0;
    }
    .play-list-section li {
        gap:10px;
    }
	.unlocked-banner img {
		min-height: auto;
	}
	.video-tab-section {
	    order:1;
	}
	.video-list-section li .video-frame img {
		width: 100%;
		max-height: 200px;
        object-fit: cover;
	}
	.video-list-section li .video-content{
		padding: 10px;
	}
	.unlocked-page-section h1 {
	    font-size:20px;
	}
	.video-list-section li .play-section {
	    flex: 0 0 60px;
        padding-top: 10px;
	}
}

@media only screen and (min-width:1199px) {
    .unlocked-page-content {
        padding:30px 100px;
    }
}
/* unlocked page css end  */

@media only screen and (min-width: 320px) {
    .container, .container-sm {
        max-width: 290px;
    }
}

@media (min-width:425px) {

    .container,
    .container-sm {
        max-width: 400px
    }
}

@media (min-width:575.98px) {

    .container,
    .container-sm {
        max-width: 610px
    }
}
@media (min-width:600px) {

    .container,
    .container-sm {
        max-width: 500px
    }
}
@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}


@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
    .rbt-show-more-btn-code {
        font-size: 14px;
        font-weight: 300;
        line-height: 150%;
        color: var(--white-color) !important;
        background: transparent;
        text-transform: capitalize;
        padding: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        transition: all 0.7s ease-in-out;
        position: relative;
        overflow: hidden;
        z-index: 1;
        display: none;
        margin-top: 0;
        cursor: pointer;
        text-align: unset;
        width: fit-content;
    }
    .has-show-more-code .has-show-more-inner-content {
        max-height: fit-content;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1300px
    }
}
@media (max-width: 1499px) {
	.cta-infobar-1 {
		position: relative;
		background-image: url(../images/cta-banner-1.png);
		background-size: cover;
		padding: 60px;
		border: 0;
		border-radius: 0;
		z-index: 1;
		margin-left: 50px ;
		margin-right: 50px;
	}
}

@media (max-width: 1440px) {
	.cta-infobar-1 {
		position: relative;
		background-image: url(../images/cta-banner-1.png);
		background-size: cover;
		background-position: center;
		padding: 60px;
		border: 0;
		border-radius: 0;
		z-index: 1;
		margin-left: 50px ;
		margin-right: 50px;
	}
}

@media only screen and (max-width: 1399.98px) {
	.has-show-more .has-show-more-inner-content {
		max-height: 189px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
}

@media only screen and (max-width: 1024px) {

	.navbar {
		padding: 20px 0px;
	}

	.main-menu ul li {
		margin-left: 0;
	}
	.hero.bg-image .hero-content .section-title h1 {
		font-size: 22px;
	}

	.hero-slider-layout .hero-slide {
		padding: 300px 0 60px;
	}
	.has-show-more .has-show-more-inner-content {
		max-height: 248px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
	.rbt-show-more-btn-code {
		display: none;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 69px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
	
}




@media only screen and (max-width: 1198.98px) {
	.line-title {
		flex: 1; 
	    height: 1px;
		background-color: #000000;
		margin: 30px 0;
	}
	.line-title-white {
		flex: 1; 
	    height: 1px;
		background-color: #f8f8f8ad;
		margin: 30px 0;
	}
	.section-title h2 {
		font-size: 22px;
	}
	.solution-your-plan .section-title h2 {
		font-size: 22px;
	}
	.why-us .section-title-all {
        padding: 0 15px;
    }
	.why-us .section-title .line-title {
		flex: 1; 
	    height: 1px;
		background-color: #000000;
		margin: 30px 0;
	}
	.code-solution .line-title-white {
		flex: 1; 
	    height: 1px;
		background-color: #f8f8f8ad;
		margin: 30px 0;
	}
	.content .list {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 90%;
        margin-right: 163px;
    }
    .practice-content .line-title {
        width: 567px;
        height: 1px;
        background-color: #000000;
        margin: 30px 0;
        margin-left: 10px;
    }
    .has-show-more .has-show-more-inner-content {
		max-height: 214px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
	.has-show-more-code .has-show-more-inner-content {
        max-height: fit-content;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
    .solution-counter-item .solution-counter-content h3 {
        max-width: 100%;
    }
}

@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;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 20px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 20px;
	}

	.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: center;
		gap: 20px;
	}

	.topbar-contact-info ul li a img {
		max-width: 18px;
		margin-right: 5px;
	}

	.topbar-social-links {
		display: none;
	}

	.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: 30px;
	}

	.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: 80px 0 100px;
	}

	.hero.bg-image .hero-content .section-title h1 {
		font-size: 22px;
	}

	.hero.bg-image.hero-slider {
		padding: 0;
	}

	.hero-slider-layout .hero-slide {
		padding: 300px 0 60px;
	}

	.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-bottom: 30px;
	}

	.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 0;
	}

	.service-item {
		padding: 20px;
	}

	.solution-your-plan {
		padding: 20px 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: 50px 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: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 20px;
	}

	.our-scrolling-ticker {
		padding: 20px 0;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	.main-footer {
		padding: 50px 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: 50px 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: 50px 0;
	}

	.quality-treatment-video {
		margin-bottom: 20px;
	}

	.quality-treatment-content {
		padding-left: 0;
	}

	.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: 20px 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: 50px 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: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.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-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: 20px 0;
	}

	.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: 50px 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-left: 0;
	}

	.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;
	}

	.practice-content .line-title {
		flex: 1; 
	    height: 1px;
		background-color: #000000;
		margin: 30px 0;
	}
	.why-us .section-title-all {
        padding: 0 15px;
    }
	.why-us .section-title .line-title {
		flex: 1; 
	    height: 1px;
		background-color: #000000;
		margin: 30px 0;
	}
	.solution-your-plan .section-title h2 {
		font-size: 20px;
		font-weight: 500;
		line-height: 151%;
		margin-bottom: 0;
		text-transform: uppercase;
		color: #F9F9F9;
	}
	.line-title-white {
		flex: 1; 
	    height: 1px;
		background-color: #f8f8f8ad;
		margin: 30px 0;
	}
	.line-title {
		flex: 1; 
	    height: 1px;
		background-color: #000000;
		margin: 30px 0;
	}
	.cta-infobar-1 {
        margin-left: 0;
        margin-right: 0;
    }
    .has-show-more .has-show-more-inner-content {
        max-height: 294px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
    .rbt-show-more-btn-code {
        position: relative;
        overflow: hidden;
        z-index: 1;
        display: none;
        margin-top: 0;
        cursor: pointer;
        text-align: unset;
        width: fit-content;
    }
}

@media only screen and (max-width: 767px) {

	.btn-default {
		padding: 10px 43px 10px 10px;
	}

	.btn-default::before {
		width: 32px;
		height: 32px;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		text-align: center;
		margin-bottom: 20px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 16px;
        font-weight: 500;
        line-height: 151%;
		text-align: start;
	}

	.solution-your-plan .section-title h2 {
		font-size: 16px;
	}

	.section-title p {
		margin-top: 8px;
	}

	.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;
	}

	.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: 50px 0 80px;
	}

	.hero.bg-image .hero-content .section-title {
		text-align: center;
	}

	.hero.bg-image .hero-content .section-title h1 {
		font-size: 22px;
	}

	.hero-slider-layout .hero-slide {
		padding: 300px 0 60px;
	}

	.hero-slider-layout .swiper-pagination {
		bottom: 20px;
	}

	.hero-book-appointment .appointment-form {
		padding: 30px 20px;
	}

	.home-content .home-contact-content p {
		font-size: 15px;
	}

	.home-content {
		padding: 20px 0;
	}

	.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: calc(100% - 52px);
		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: left;
	}

	.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: 16px;
		width: 100%;
	}

	.code-solution .solution-counter-item .solution-counter-content {
		width: calc(100% - 15px);
	}

	.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: 50px 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: 20px;
		padding: 0px 0px 20px 0px;
		border-bottom: 1px solid var(--divider-color);
	}

	.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: 18px;
	}

	.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: 30px;
	}

	.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 {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 20px 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.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;
	}

	.our-featurs .swiper-slide-active {
		transform: scale(1);
		opacity: 1;
		height: fit-content;
		background-size: cover;
		background-position: center;
		border-radius: 25px;
	}

	.our-featurs .testimonial-button-prev {
		left: 13%;
	}

	.our-featurs .testimonial-button-next {
		right: 13%;
	}

	.swiper-button-next {
		right: 3%;
	}

	.swiper-button-next,
	.swiper-button-prev {
		bottom: 13%;
	}

	.hero .container {
		padding-right: 0;
	}

	.hero-slide .line {
		width: 100%;
		height: 1px;
		background-color: #ffffffa1;
		margin: 8px 0;
	}

	.code-solution .line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }

	.line-title {
		flex: 1; 
	    height: 1px;
		margin: 8px 0;
	}

	.line-title-white {
		flex: 1; 
	    height: 1px;
		margin: 8px 0;
	}

	.accordion-body .row {
		padding: 20px 0px;
		padding-bottom: 0;
	}

	.cta-infobar {
		background-size: cover;
		background-position: right;
	}

	.code-solution .solution-counter-content .counter-content {
		display: flex;
		gap: 20px;
	}

	.code-solution .solution-counter-item .solution-counter-content p {
		font-size: 14px;
	}

	.code-solution .solution-counter-item {
		padding: 10px 0;
		border-bottom: 0;
		border-bottom: 0;
	}

	.code-solution .counter-content .row {
		padding: 25px 0;
		padding-top: 0;
		border-bottom: 1px solid #ffffff78;
	}

	.service-item .icon-box img {
		height: 140px;
	}

	.service-item .icon-box {
		height: 140px;
	}

	.service-item {
		height: fit-content;
	}

	.solution-plan-counter .down {
		margin-top: 0;
	}

	.content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;
	}

	.support-section .line-title {
		flex: 1; 
	    height: 1px;
        margin: 8px 0;
	}

	.support-section .section-title h2 {
		font-size: 16px;
		text-align: start;
	}

	.why-us .section-title .line-title {
		flex: 1; 
	    height: 1px;
		margin: 8px 0;
	}

	.home-contact-item .home-contact-content {
		width: 100%;
	}

	.practice-content .section-title h2 {
		font-size: 15px;
		text-align: left;
	}

	.practice-content .line-title {
		flex: 1; 
	    height: 1px;
        margin: 8px 0;
	}

	/* .cta-infobar-1 {
		position: relative;
		background-image: url('../images/cta-mobile.png');
		background-size: cover;
		padding: 20px;
		border: 0;
		border-radius: 0;
		z-index: 1;
		padding-bottom: 170px;
		background-position: top;
	} */

	.cta-infobar-1 .cta-info-content .cta-content h3 {
		font-size: 19px;
		font-weight: 400;
		text-transform: uppercase;
		margin-bottom: 20px;
		color: #F5F5F5;
		line-height: 151%;
	}

	.service-slide .swiper-slide {
		opacity: 0.4;
		transition: all 0.3s ease;
	}

	.service-slide .swiper-slide-active {
		opacity: 1;
	}

	.service-slide .swiper-slide-active .service-item {
		background-color: #E9E9E9;
		color: #fff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	}

	.practice-content {
    background-color: transparent;
    padding: 20px 0;
}

	.service-item .service-body h3 {
		font-size: 16px;
		font-weight: 300;
	}

	.why-us .service-item {
		margin-bottom: 45px;
	}

	.why-us .down {
		margin-top: 0;
	}

	.content .text-content {
		width: 100%;
		height: 100%;
		color: rgba(255, 255, 255, 0.7);
	}

	.support-section .accordion-body {
		padding: 0;
	}

	.text-content .about-img .icon {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 65px;
	}

	.content .about-img img {
		border-radius: 0;
		width: 100%;
	}

	.support-section .accordion-content {
		display: flex;
		align-items: flex-start;
		gap: 0;
		flex-direction: column;
	}

	.support-section h3 {
		font-size: 16px;
		color: var(--text-color);
	}

	.container .text p {
		text-align: start;
		color: var(--text-color);
		font-weight: 400;
		margin-top: 20px;
	}

	.swiper {
		padding-bottom: 40px;
		/* Space for pagination */
	}

	.content .text-content .home,
	.content .text-content .blog,
	.content .text-content .help,
	.content .text-content .code,
	.content .text-content .about {
		display: block;
		width: 100%;
	}

	.swiper-pagination {
		font-size: 14px;
		font-weight: 500;
		bottom: 10px !important;
		right: 20px !important;
		text-align: right;
	}

	.swiper-button-prev,
	.swiper-button-next {
		color: #000;
		/* change as needed */
		top: auto;
		bottom: 10px;
		transform: translateY(0);
	}

	.swiper-button-prev {
		left: 10px;
	}

	.swiper-button-next {
		right: 50px;
	}

	.support-section.swiper {
		padding: 10px 0;
	}

	/* Make Swiper slides full width */
	.support-section .swiper-wrapper {
		display: flex;
	}

	.support-section .swiper-slide {
		width: 100% !important;
		flex: 0 0 100%;
	}

	/* Slide content alignment */
	.support-section .swiper-slide {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Image box inside slides */
	.support-section .about-us-image {
		margin-bottom: 15px;
	}

	.support-section .about-img img {
		max-width: 100%;
		width: 100%;
		height: auto;
	}

	/* Title and description */
	.support-section .accordion-content h3 {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 10px;
	}

	.support-section .accordion-content p {
		font-size: 14px;
		line-height: 1.5;
	}

	/* Swiper arrows */
	.support-section .swiper-button-next,
	.support-section .swiper-button-prev {
		color: #000;
		width: 35px;
		height: 35px;
		border-radius: 50%;
	}

	.support-section .swiper-button-next:after,
	.support-section .swiper-button-prev:after {
		font-size: 14px;
	}

	.support-section .swiper-button-next {
		position: absolute;
		right: 0;
		bottom: 50%;
	}

	.support-section .swiper-button-prev {
		position: absolute;
		left: 0;
		bottom: 50%;
	}

	.support-section .container .text p {
		text-align: start;
		color: var(--text-color);
		font-weight: 400;
		margin-top: 3px;
	}
	.service-item .service-body {
		margin-bottom: 0;
	}
	.service:hover {
		height: fit-content;
		transform: 0;
	}
	.service-item:hover {
		height: fit-content;
		transform: translateY(0);
	}
	.service-item:hover .icon-box {
		height: 140px;
	}
	.service-item {
        height: fit-content;
        margin-bottom: 10px;
    }
	.mt-30 {
		margin-top: 0px;
	}
	.cta-infobar-1 {
        position: relative;
        background-image: url(../images/cta-banner-1.png);
        background-size: cover;
		background-position: bottom;
        padding: 60px;
		padding-bottom: 200px;
        border: 0;
        border-radius: 0;
        z-index: 1;
    }
	.service-item .service-body p {
		margin: 0;
		font-size: 15px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		transition: all 0.5s ease-in-out;
	}

}

@media (max-width: 767px) {
	.service-slide .swiper-slide {
		width: 300px !important;
		/* fixed width */
		flex-shrink: 0;
		opacity: 0.4;
		transform: scale(0.92);
		transition: all 0.3s ease;
	}

	.service-slide .swiper-slide-active {
		opacity: 1;
		transform: scale(1);
		z-index: 2;
	}

	.service-slide .swiper-wrapper {
		position: relative;
		width: 100%;
		height: 100%;
		z-index: 1;
		display: flex;
		transition-property: transform;
		transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
		box-sizing: content-box;
		align-items: center;
	}

	.service-slide .swiper-slide-active .service-item {
		background-color: #004C4D;
		color: #fff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	}

	.service-slide .swiper-slide-active .service-item .service-body h3 {
		font-size: 16px;
		font-weight: 300;
		color: #fff;
	}

	.service-slide .swiper-slide-active .service-item .service-body p {
		margin: 0;
		color: #fff;
		font-size: 15px;
        font-weight: 300;
		display: block;
		transition: all 0.5s ease-in-out;
	}

	/* First slide active */
	.swiper-slide:nth-child(1).swiper-slide-active .icon-box img {
		content: url("../images/why-us/why-1-active.png");
	}

	/* Second slide active */
	.swiper-slide:nth-child(2).swiper-slide-active .icon-box img {
		content: url("../images/why-us/why-2-active.png");
	}

	/* Third slide active */
	.swiper-slide:nth-child(3).swiper-slide-active .icon-box img {
		content: url("../images/why-us/why-3-active.png");
	}

	/* Fourth slide active */
	.swiper-slide:nth-child(4).swiper-slide-active .icon-box img {
		content: url("../images/why-us/why-4-active.png");
	}

	.why-us .service-item:before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		border-radius: 0px;
		background: transparent;
		transition: all 0.4s ease-in-out;
		height: 100%;
		z-index: -1;
	}

	.why-us .section-title-all {
		padding: 0 15px;
	}

	.why-us .service-item {
		padding: 10px 20px;
	}
	.hide{
		display: none;
	}
	.show{
		display: block;
	}
	.has-show-more .has-show-more-inner-content {
		max-height: 325px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
}



@media (min-width: 768px) {
	.swiper-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.swiper-slide {
		flex: 0 0 25%;
		max-width: 25%;
		opacity: 1 !important;
		transform: none !important;
	}

	.support-section .swiper-button-next,
	.support-section .swiper-button-prev {
		display: none;
	}
}

@media only screen and (max-width: 575.98px) {
    .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.code-solution .line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.why-us .section-title .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.practice-content .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.service-item .service-body {
		margin-bottom: 0;
	}
	.solution-counter-item .icon-box img {
		max-width: 40px;
	}
	.solution-counter-content .line {
		display: none;
	}
	.solution-counter-content ul{
		border-bottom: 1px solid #f4f4f487;
		padding-bottom: 15px;
		padding-left: 15px;
	}
	.solution-counter-content ul li {
		font-size: 13px;
	}
	.why-us-one .container {
        max-width: 100%;
    }
	.cta-infobar-1 {
        position: relative;
        background-image: url(../images/cta-mobile.png);
        background-size: cover;
        padding: 60px;
		padding-bottom: 200px;
        border: 0;
        border-radius: 0;
        z-index: 1;
    }
    .has-show-more .has-show-more-inner-content {
		max-height: 418px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
	.text-content .about-img .icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 44px;
    }
	.rbt-show-more-btn-code {
		display: block;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 72px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
}

@media only screen and (max-width: 425px){
	.container, .container-sm {
        max-width: 390px;
    }
	.line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.why-us .section-title .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.cta-infobar-1 {
		position: relative;
		background-image: url(../images/cta-mobile.png);
		background-size: cover;
		padding: 35px;
		padding-bottom: 178px;
		border: 0;
		border-radius: 0;
		z-index: 1;
	}
	.line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.hero-slider-layout .hero-slide {
        padding: 223px 0 20px;
    }
	.service-item .service-body {
		margin-bottom: 0;
	}
	.solution-counter-item .icon-box img {
		max-width: 40px;
	}
	.solution-counter-content .line {
		display: none;
	}
	.solution-counter-content ul{
		border-bottom: 1px solid #f4f4f487;
		padding-bottom: 15px;
		padding-left: 15px;
	}
	.solution-counter-content ul li {
		font-size: 13px;
	}
	.code-solution .line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
    .has-show-more .has-show-more-inner-content {
		max-height: 424px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}
	.text-content .about-img .icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 43px;
    }
	.rbt-show-more-btn-code {
		display: block;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 72px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
}

@media only screen and (max-width: 400px){
    .has-show-more .has-show-more-inner-content {
        max-height: 425px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
	.rbt-show-more-btn-code {
		display: block;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 72px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
}

@media only screen and (max-width: 359px) {
	.line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
    .has-show-more .has-show-more-inner-content {
        max-height: 473px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
	.text-content .about-img .icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 38px;
    }
	.rbt-show-more-btn-code {
		display: block;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 72px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
}

@media only screen and (max-width: 320px) {
	.hero-slider-layout .hero-slide {
        padding: 270px 0 20px;
    }
    .code-solution .line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.solution-counter-item {
        margin-bottom: 10px;
    }
	.line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.line-title-white {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.support-section .section-title h2 {
        font-size: 13px;
        text-align: start;
    }
	.section-title h2 {
        font-size: 14px;
        font-weight: 500;
        line-height: 151%;
    }
	.why-us .section-title .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
	.section-title img{
		max-width: 11px;
	}
	.cta-infobar-1 .cta-info-content .cta-content p {
		font-size: 13px;
	}
	.practice-content .line-title {
        flex: 1; 
	    height: 1px;
        margin: 8px 0;
    }
    .has-show-more .has-show-more-inner-content {
        max-height: 536px;
        overflow: hidden;
        margin-bottom: 15px;
        transition: max-height 0.9s ease;
    }
	.text-content .about-img .icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 34px;
    }
	.rbt-show-more-btn-code {
		display: block;
	}
	.has-show-more-code .has-show-more-inner-content {
		max-height: 72px;
		overflow: hidden;
		margin-bottom: 15px;
		transition: max-height 0.9s ease;
	}

	.has-show-more-code.active .has-show-more-inner-content {
		max-height: 2000px;
	}
}
