:root {
	--text-color: #000;
	/* --text-color-alt: #fcc438; */
	/* Override theme colors in includes/common-meta.php with admin config */
	--color-1: var(--main-color);
	--color-2: #F58634;
	--text-color-alt: var(--theme-primary);
	--theme-primary: #fbc337;
	--theme-primary-text: #000;
	--theme-primary-border: #626262;
	--theme-secondary: #14b4c2;
	/* --theme-secondary-light: #e1f2f4; */
	--theme-secondary-text: #fff;
	--border-color: #e5e5e5;
	--column-gutter: 15px;
	--light-bg: #f7f7f7;
	--secondary-filter: invert(71%) sepia(64%) saturate(3726%) hue-rotate(139deg) brightness(91%) contrast(84%);
	--primary-filter: invert(79%) sepia(27%) saturate(1197%) hue-rotate(344deg) brightness(104%) contrast(97%);
	--section-gap: 6rem;
	--color-yellow: #f9c000;
	--color-blue: #00a0e7;
	--color-blue-deep: #212354;
	--color-green: #00c193;
	--color-green-b: #229a00;
	--color-green-d: #1a7400;
	--color-orange: #fa6e4f;
	--color-saffron: #ffb164;
	--color-red-b: #f31f00;
	--color-red-d: #cd1a00;
	--main-color: #0F83D7;
	--main-color-2: rgb(221, 248, 248);
	--main-gradient: linear-gradient(to right, rgb(15, 131, 215), rgb(66, 215, 215));
	--container-width: 1400px;
	--container-sm: 1024px;
	--container-xsm: 896px;
	--container-lg: 1600px;
	--container-md: 1200px;
	--top-header-height: 3.5rem;
	--header-height: 5rem;
	--logo-width: 12rem;
	--icon-font: normal 900 1rem/1 "Font Awesome 6 Free";
	--section-bgr: linear-gradient(to right bottom, rgb(240, 245, 250), rgb(221, 248, 248));
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding: var(--header-height);
}

body {
	color: var(--text-color);
	font-family: "Poppins", sans-serif;
	font-size: 16px;
}

main {
	min-height: calc(100dvh - (var(--header-height) + 36rem));
}

figure,
p {
	margin: 0;
}

input,
button,
select,
textarea {
	font: inherit;
	color: inherit;
	border: 0;
	background: none;
	outline: none;
	font-size: 14px;
}

input,
select,
textarea {
	display: block;
	width: 100%;
}

button {
	cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s;
	transition-property: color, background-color;
}

.loading-screen {
	visibility: hidden;
	opacity: 0;
	width: 100vw;
	height: 100dvh;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s ease-in-out;
}

.loading .loading-screen {
	opacity: 1;
	visibility: visible;
}

.loading .loading-screen figure {
	max-width: 300px;
	width: 100%;
}

.loading .loading-screen figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.loaded .loading-screen {
	display: none;
}

label.error {
	color: red;
	font-size: 0.9em;
}

.hlt-secondary {
	color: var(--theme-secondary);
}

.light-bg {
	background-color: #e4eaed;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding-left: var(--column-gutter);
	padding-right: var(--column-gutter);
}

.container-md {
	max-width: var(--container-md);
}

.container-sm {
	max-width: var(--container-sm);
}

.container-xsm {
	max-width: var(--container-xsm);
}

.container-lg {
	max-width: var(--container-lg);
}

.banner-swiper-nav {
	width: auto;
	background-color: #fff;
	/* opacity: 0.9; */
	color: #000;
	padding: 40px 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	--swiper-navigation-size: 24px;
	margin-top: 0;
	transform: translateY(-50%);
}

.banner-swiper-nav.swiper-button-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.banner-swiper-nav.swiper-button-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.top-header {
	height: var(--top-header-height);
	background: linear-gradient(90deg, #FFEEE2 -1.7%, #ffdec6 48.89%, #FFEEE2 102.61%);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.top-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #EEEEEE;
}

.top-header-brand {
	width: 250px;
	height: 80px;
	margin-right: 20px;
}

.top-header-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.top-header-contact {
	display: flex;
	align-items: center;
}

.top-header-contact a {
	font-size: 0.84rem;
	line-height: 1.14rem;
	font-weight: 500;
}

.top-header-contact a i {
	color: var(--color-1)
}

.main-header {
	background-color: #011F4B;
	color: var(--theme-menu-text-color);
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-height);
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}

.contactPhone {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: #fff;
	transition: 0.3s ease-in-out;
}

.contactPhone i {
	font-size: 1.125rem;
	line-height: 1.5rem;
	margin-right: 0.25rem;
	vertical-align: middle;
}

.contactPhone:hover {
	color: var(--main-color);
}

.main-header .container {
	height: 100%;
}

.main-header-row {
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 0;
	position: relative;
}

.main-header-brand {
	display: block;
	max-width: var(--logo-width);
	width: 100%;
	height: 100%;
	max-height: calc(100% - 0.5rem);
	/* position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%); */
}

.main-header-brand {
	display: flex;
	align-items: center;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: 900;
	font-family: "Playfair Display", Georgia, serif;

}

.main-header-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.main-header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex: 1 1 auto;
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 500;
	height: 100%;
}

.header-nav-active {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.header-nav-active:hover {
	color: var(--color-1);
}

.main-header-nav>li {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 1rem;
	line-height: 1.25rem;
	color: #ffffff;
}

.main-header-nav>li>a {
	border: 1px solid transparent;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.main-header-nav>li>a:hover {
	opacity: 0.85;
}

.have-sub-menu::after {
	content: '\f107';
	font: var(--icon-font);
	vertical-align: middle;
	margin-left: 0.25rem;
	position: relative;
	top: -1px;
	font-size: 0.75rem;
}

.header-nav-active.have-sub-menu::after {
	color: #fff;
	transition: 0.3s ease-in-out;
}

.header-nav-active.have-sub-menu:hover::after {
	color: var(--main-color);
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 300%;
	min-width: 300px;
	height: 0;
	background-color: #00327e;
	border-radius: 0;
	transform: translateY(30px);
	transition: ease 0.25s transform, ease-in-out 0.3s opacity, 0.5s ease-in-out visibility;
	visibility: hidden;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
	opacity: 0;
	max-height: 450px;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
}

.sub-menu>li>a {
	display: block;
	width: 100%;
	padding: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: #f3f3f3;
}

.sub-menu>li>a:hover {
	background-color: #eee;
	color: #011F4B;
}

.main-header-nav>li:hover>a {
	color: #fff;

}

.main-header-nav>li:hover>.header-nav-active {
	color: var(--color-1);
}

.main-header-nav>li:hover .sub-menu {
	height: auto;
	transform: translateY(0);
	visibility: visible;
	z-index: 999;
	opacity: 1;
}

.header-options a {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 500;
	border-radius: 0.75rem;
	color: #005DA3;
	background: linear-gradient(90deg, #FFEEE2 -1.7%, #ffdec6 48.89%, #FFEEE2 102.61%);
	text-transform: capitalize;
	transition: 0.3s ease-in-out;
}

.header-options a:hover {
	transform: translateY(-2px);
}

.form-select {
	border-width: 2px;
}

.form-select:focus {
	box-shadow: none;
	border-color: #000
}

.bannerBox {
	width: 100%;
	aspect-ratio: 2.8 / 1;
	overflow: hidden;
}

.bannerBox figure {
	width: 100%;
	height: 100%;
}

.bannerBox .container {
	position: relative;
	height: 100%;
}

.get-appointment-btn {
	border: 1px solid #fff;
	padding: 0.5rem 1rem;
	color: #fff;
	border-radius: 0;
	font-size: 0.825rem;
	font-weight: 600;
	transition: 0.3s ease-in-out;
	transform: translateY(0);
	display: inline-block;
}

.get-appointment-btn.btn-2 {
	color: var(--color-1);
	border-color: var(--color-1);
}

.get-appointment-btn:hover {
	transform: translateY(-2px);
}

@keyframes bannerZoom {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.bannerBox figure img {
	animation: bannerZoom 20s ease-in-out infinite;
}

.bannerBox .insideBox {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

@keyframes fakeDrop {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(10px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.bannerBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bannerBox .mobile-view {
	display: block;
}

.bannerBox .mobile-view {
	display: none;
}

.bannerBox .content {
	/* background: var(--main-color)8c; */
	color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width: 50%;
	padding: 2rem;
	border-radius: 0.5rem;
}

.banner-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: linear-gradient(260deg, #FFFFFF00 23%, #D5E6FF 66%);
}

.bannerBox .content .title {
	font-size: 4rem;
	line-height: 4.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--color-1);
	transform: translateY(100px);
	opacity: 0;
	transition: 0.75s ease-in-out;
}

.bannerBox .content .cta-btn {
	transform: translateY(100px);
	opacity: 0;
	transition: 0.5s ease-in-out;
}

.bannerBox .content .description {
	font-size: 1.1rem;
	line-height: 1.4rem;
	color: #f9f9f9;
	color: var(--color-1);
	margin-bottom: 1rem;
	transform: translateY(100px);
	opacity: 0;
	transition: 0.75s ease-in-out;
}

.section-header {
	margin-bottom: 1.5rem;
}

.section-header .section-subtitle {
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 400;
	color: var(--color-1);
	background-color: #d3e9fb;
	display: inline-block;
	padding: 0.25rem 0.5rem;
	border-radius: 0.33rem;
}

.section-header .section-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
	color: #011F4B;
	font-family: "Playfair Display", Georgia, serif;
}

.section-header .section-title+.section-desc {
	margin-top: 0.5rem;
}

.section-desc {
	color: rgb(101, 117, 139);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.doctorInfo {
	text-align: center;
}

.doctorInfo .name {
	color: #011F4B;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: 900;
	font-family: "Playfair Display", Georgia, serif;
}

.center-header {
	text-align: center;
	max-width: 896px;
	margin-inline: auto;
}

.about-figure {
	position: relative;
	max-width: 450px;
	margin: auto;
	aspect-ratio: 1 / 1;
	border-radius: 1.5rem;
	overflow: hidden;
}

.about-figure .img-1 {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-figure .img-2 {
	position: absolute;
	max-width: 50%;
	width: 50%;
	bottom: 0;
	right: 10%;
	max-height: 350px;
	min-height: 200px;
	height: 100%;
	object-fit: cover;
}

.about-description {
	color: #666;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

.about-description * {
	all: revert;
}

.swiper-slide-active .bannerBox .content .title,
.swiper-slide-active .bannerBox .content .description,
.swiper-slide-active .bannerBox .content .cta-btn {
	transform: translateY(0);
	opacity: 1;

}

.custom-know-more {
	background: #0F83D7 !important;
	color: #fff !important;
	padding: 0.5rem 2rem;
	font-size: 1rem;
	line-height: 1.5rem;
	border-radius: 0.25rem;
}

.header-options a i {
	margin-right: 0.25rem;
	font-size: 0.8rem;
	line-height: 1.1rem;
}

.main-header-cta {
	margin-left: auto;
}

.cta-btn {
	display: inline-flex;
	padding: 0.75rem 1.75rem;
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 500;
	border-radius: 0.25rem;
	background-color: var(--color-1);
	color: #fff;
	text-transform: capitalize;
	border: 1px solid #fff;
	transition: 0.3s ease-in-out;
}

.cta-btn:hover {
	background-color: #fff;
	border-color: var(--color-1);
	color: var(--color-1);
}

.cta-btn-alt {
	background-color: #fff;
	border-color: var(--color-1);
	color: var(--color-1);
}

.cta-btn-alt:hover {
	background-color: var(--color-1);
	color: #fff;
	border: 1px solid #fff;
}

.cta-btn-2 {
	background-color: var(--color-2);
	border-color: #fff;
	color: #fff;
}

.cta-btn-2:hover {
	background-color: #fff;
	border-color: var(--color-2);
	color: var(--color-2);
}


/* Bootstrap Datepicker Styling */
.datepicker {
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	background: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding: 10px;
	z-index: 1100 !important;
	/* Ensure visibility above other elements */
}

/* Fade-in animation for datepicker */
.datepicker.dropdown-menu {
	animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Table and cell styling */
.datepicker table {
	width: 100%;
	margin: 0;
}

.datepicker th,
.datepicker td {
	border-radius: 6px;
	text-align: center;
	padding: 8px;
}

.datepicker td.day:hover {
	background: #f8f9fa;
	cursor: pointer;
	transition: background 0.2s ease;
}

.datepicker td.day.active {
	background: #007bff;
	color: #fff;
	border-radius: 6px;
}

.datepicker td.day.active:hover {
	background: #0056b3;
	/* Darker blue on hover */
}

/* Today’s date */
.datepicker td.today {
	border: 1px solid #007bff;
	background: #e9ecef;
}

/* Disabled dates */
.datepicker td.disabled {
	color: #6c757d;
	cursor: not-allowed;
}

/* Month and year dropdowns */
.datepicker .datepicker-switch {
	font-weight: 500;
	color: #007bff;
}

.datepicker .datepicker-switch:hover {
	background: #f8f9fa;
	cursor: pointer;
}

.datepicker select.monthselect,
.datepicker select.yearselect {
	font-size: 0.9rem;
	border-radius: 4px;
	padding: 4px;
	background: #f8f9fa;
	border: 1px solid #ced4da;
}

.datepicker select.monthselect:focus,
.datepicker select.yearselect:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Navigation arrows */
.datepicker .prev,
.datepicker .next {
	border-radius: 50%;
	padding: 8px;
	background: #f8f9fa;
	color: #007bff;
}

.datepicker .prev:hover,
.datepicker .next:hover {
	background: #e9ecef;
	cursor: pointer;
}

/* Ensure responsiveness */
@media (max-width: 576px) {
	.datepicker {
		padding: 8px;
		font-size: 0.85rem;
	}

	.datepicker th,
	.datepicker td {
		padding: 6px;
	}

	.datepicker select.monthselect,
	.datepicker select.yearselect {
		font-size: 0.85rem;
		padding: 3px;
	}
}

.main-header-cta-btn {
	display: inline-block;
	font-weight: 600;
	font-size: 14px;
	height: 35px;
	padding: 5px 15px;
	background-color: var(--theme-menu-button-bg-color);
	color: var(--theme-menu-button-text-color);
	border-radius: 50px;
	letter-spacing: 0.3px;
	line-height: 24px;
	text-transform: uppercase;
}

.header-social-icons {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-social-icons li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	background-color: var(--color-2);
	color: #fff;
	transition: 0.3s ease-in-out;
}

.header-social-icons li a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.header-social-icons li:hover {
	background-color: var(--color-1);
}


.header-social-icons li a i {
	font-size: 0.9rem;
	line-height: 1.2rem;
}


.main-header-cta-link {
	margin-right: 0;
	padding: 5px 15px;
	background-color: var(--theme-menu-button-bg-color);
	color: var(--theme-menu-button-text-color);
	border-radius: 50px;
	display: inline-block;
	font-size: 0.84rem;
	line-height: 1.14rem;
}

.main-header-cta-link:hover {
	background-color: var(--theme-menu-button-text-color);
	color: var(--theme-menu-button-bg-color);
}

.header-social-link {
	padding: 10px 0;
	/* margin-top: 0.3rem; */
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	/* background-color: var(--theme-secondary); */
	color: var(--theme-icon-color);
	font-size: 16px;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
}

.header-social-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--theme-icon-color);
	opacity: 0.1;
	pointer-events: none;
}

.header-contact-links p {
	margin-bottom: 10px;
	margin-top: 5px;
}

.header-contact-links img {
	display: inline-block;
	vertical-align: middle;
}

.hero-slide {
	position: relative;
	box-sizing: border-box;
}

.hero-slide-img {
	position: relative;
}

.hero-slide-img::before {
	content: "";
	display: block;
	/* padding-top: 42%; */
	height: 700px;
}

.hero-slide-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slide-body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 50px;
	padding-top: 50px;
	display: grid;
	justify-items: center;
	align-content: center;
	--banner-text-color: #fff;
}

.hero-slide-content {
	width: 100%;
	height: 100%;
	max-width: 1200px;
	color: var(--banner-text-color);
}

.hero-slide-title {
	font-size: 40px;
	font-weight: 700;
	max-width: 450px;
	line-height: 1.3;
	/* margin-bottom: 0.5em; */
}

.hero-slide-desc {
	max-width: 470px;
	margin-bottom: 1.5em;
	display: none;
}

.hero-slide-cta {
	display: inline-block;
	padding: 1em 1.5em;
	font-size: 0.8rem;
	margin-top: 1.5rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	text-transform: uppercase;
	border-radius: 4px;
}

.hero-slide-cta:hover {
	background-color: var(--theme-primary);
}

.home-hero-slider .swiper-nav-btn {
	--swiper-navigation-size: 15px;
	--swiper-navigation-color: #fff;
	width: 40px;
	height: 40px;
	background-color: #787f93;
	transition: ease 0.25s;
	transform: translateY(-50%);
	margin: 0;
}

.home-hero-slider .swiper-nav-btn:hover {
	background-color: var(--theme-secondary);
}

.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
	width: 45px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: var(--main-color-2);
	transition: 0.3s ease-in-out;
	border-radius: 50%;
}

.swiper-nav .swiper-button-prev::after {
	content: '\f053';
	font: var(--icon-font);
}

.swiper-nav .swiper-button-next::after {
	content: '\f054';
	font: var(--icon-font);
}

.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
	font-size: 0.9rem;
	line-height: 1.2rem;
	color: var(--main-color);
}

.swiper-nav .swiper-button-prev:hover,
.swiper-nav .swiper-button-next:hover {
	background-color: var(--color-1);
}

.swiper-nav .swiper-button-prev:hover::after,
.swiper-nav .swiper-button-next:hover::after {
	color: #fff;
}

.section-gap {
	padding: var(--section-gap) 0;
}

.page-section-bg-light {
	background-color: var(--light-bg);
}

.section-bgr {
	background: var(--section-bgr);
}

.page-section-header {
	text-align: center;
}

.page-header-title-sm {
	color: var(--theme-secondary);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 14px;
}

.page-header-title {
	color: var(--theme-section-text-color);
	font-weight: 600;
	font-size: 30px;
	line-height: 1.5;
	/* border-bottom: 1px solid #dadada; */
}

.page-header-title img {
	display: inline-block;
	vertical-align: middle;
	height: 1em;
}

.page-header-text {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	margin-top: 1em;
}

.page-section-content {
	margin-top: 50px;
}

.page-banner {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background: linear-gradient(90deg, #D3E9FB -1.7%, #c2e3ff 48.89%, #D3E9FB 102.61%);
	background-size: cover;
	background-position: center;
	position: relative;
	text-align: center;
}

.service-banner {
	z-index: 0;
	position: relative;
	background: linear-gradient(to right bottom, rgb(240, 245, 250), rgb(221, 248, 248));
}

.page-banner[data-banner-type="bg"] {
	background-image: none !important;
}

.page-banner .container {
	position: relative;
	z-index: 5;
}

.page-banner-title {
	color: #011F4B;
	/* text-align: center; */
	font-family: "Playfair Display", Georgia, serif;
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 0;
}

.page-banner-subtitle {
	color: var(--color-2);
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 500;
}

.service-info .title {
	font-size: 2rem;
	line-height: 2.5rem;
	margin-bottom: 1rem;
	color: var(--color-2);
}

.section-images .left-image,
.section-images .right-image {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width: 400px;
	aspect-ratio: 1 / 1;
	opacity: 0.025;
}

@keyframes shake {
	0% {
		transform: rotate(0deg);
	}

	10% {
		transform: rotate(15deg);
	}

	30% {
		transform: rotate(-15deg);
	}

	40% {
		transform: rotate(10deg);
	}

	50% {
		transform: rotate(-10deg);
	}

	60% {
		transform: rotate(0deg);

	}

	100% {
		transform: rotate(0deg);
	}
}

.section-images figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation: shake 2s ease-in-out infinite;
}

.section-images .left-image {
	animation: shake 2s ease-in-out infinite;
}

.section-images .right-image {
	animation: shake 2s ease-in-out infinite reverse;

}

.section-images .left-image {
	left: 3rem;
}

.section-images .right-image {
	right: 3rem;
}

.page-banner:has(.page-banner-title) .page-banner-subtitle {
	margin-bottom: 0.5rem;
}

.service-info .content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 3rem;
	flex-wrap: wrap;
}

.service-info .leftSide {
	flex-basis: calc(50% - 1.5rem);
	text-align: center;
}

.service-info .content figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
}

.service-info .content figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-info .content .description {
	flex-basis: calc(50% - 1.5rem);
}

.service-info .content .description>* {
	all: revert;
}

.about-section-row {
	display: flex;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	gap: 2rem;
	align-items: center;
}

.about-section-icon {
	flex: 1 0 350px;
	/* margin-right: 1rem; */
	position: relative;
	overflow: hidden;
}

.galleryCard {
	padding: 0;
}

.galleryCard figure {
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	border-radius: 0.25rem;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
	position: relative;
}

.galleryCard figure figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0.5rem 0.75rem;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 500;
	background-color: #0f83d77d;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
}

.galleryCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.galleryCard:hover img {
	transform: scale(1.05);
}

/*
.about-section-icon::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.about-section-icon img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
} */

.about-section-text {
	line-height: 1.5;
	flex: 0 1 auto;
	width: auto;
}

.about-section-text p {
	font-size: 1rem;
}

.about-section-text p:not(:last-child) {
	margin-bottom: 1em;
}

#services-swiper,
#testimonials-swiper {
	overflow: visible;
	overflow-x: clip;
}

#services-swiper,
#services-swiper .swiper-slide {
	height: auto;
}

.serviceBox {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 1rem;
	padding: 0;
	transition: 0.3s ease-in-out;
	border: 1px solid transparent;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.serviceBox:hover {
	border-color: var(--main-color);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
	transform: translateY(-4px);
}

.serviceBox figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-inline: auto;
	margin-bottom: 1rem;
	transition: 0.3s ease-in-out;
	margin-bottom: 0;
}

.serviceBox figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s ease-in-out;
}

.serviceBox article {
	padding: 1.25rem;
}

.theme-section {
	background-color: #F4F6F9;
}

.serviceBox .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: rgb(52, 66, 86);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	max-height: 3lh;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
}

.other-expertise {
	background: linear-gradient(to right bottom, rgb(240, 245, 250), rgb(221, 248, 248));
}

.serviceBox .desc {
	font-size: 0.825rem;
	line-height: 1.75rem;
	font-weight: 400;
	color: rgb(101, 117, 139);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.services-grid-col {
	background-color: var(--light-bg);
	padding: 50px 25px;
	display: grid;
	justify-items: center;
	text-align: center;
}

.services-grid-icon {
	width: 75px;
	height: 75px;
	margin-bottom: 20px;
}

.services-grid-icon img {
	filter: var(--secondary-filter);
}

.services-title {
	color: var(--text-color-alt);
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.services-desc {
	font-size: 14px;
	line-height: 1.6;
}

.services-grid-lg {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 30px;
}

.services-grid-lg-col {
	position: relative;
}

.services-grid-lg-img {
	position: relative;
	overflow: hidden;
	padding: 20px;
}

.services-grid-lg-img::before {
	content: "";
	/*padding-top: 115%;*/
	display: block;
}

.services-grid-lg-img img {
	/*position: absolute;*/
	/*top: 0;*/
	/*left: 0;*/
	/*width: 100%;*/
	/*height: 100%;*/
	/*object-fit: cover;*/
	margin: 0 auto;
}

.services-grid-lg-content {
	/* position: absolute; */
	bottom: 30px;
	left: 30px;
	right: 30px;
	top: auto;
	text-align: center;
	background-color: #fff;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 40px;
}

.services-lg-title {
	color: var(--theme-services-label-color);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}

.services-grid-lg-hover-content {
	height: 0;
	overflow: hidden;
	transition: ease 0.25s height;
	display: none;
}

.services-grid-lg-col:hover .services-grid-lg-hover-content {
	height: 160px;
}

.services-grid-lg-desc {
	margin-top: 10px;
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.6;
}

.services-grid-lg-link {
	color: var(--theme-secondary);
	font-weight: 600;
}

.services-extras {
	text-align: center;
	margin-top: 40px;
}

.services-more-link {
	display: inline-block;
	padding: 0.7em 1.5em;
	background-color: var(--theme-services-more-btn-bg-color);
	color: var(--theme-services-more-btn-color);
	border: 2px solid var(--theme-services-more-btn-bg-color);
	border-radius: 6px;
	font-weight: 500;
}

.services-more-link:hover {
	background-color: var(--theme-services-more-btn-color);
	color: var(--theme-services-more-btn-bg-color);
}

.appointment-alert-message {
	padding: 1rem 2rem;
	margin-bottom: 2rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-text);
	border-radius: 1rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.appointment-steps {
	display: flex;
	flex-wrap: wrap;
	white-space: nowrap;
	gap: 1rem;
	list-style: none;
	list-style-position: inside;
}

.appointment-steps li {
	padding: 0.3rem;
	padding-right: 1rem;
	border: 2px solid var(--theme-secondary);
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 500;
}

.appointment-steps li.active {
	background-color: #d3fed5;
}

.appointment-steps li::before {
	content: counter(list-item);
	display: inline-block;
	width: 2em;
	height: 2em;
	/* line-height: 1; */
	text-align: center;
	/* margin: 0; */
	border-radius: 50%;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	margin-right: 0.5rem;
	padding: 0.3rem;
}

.page-appointment-cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.page-appointment-img-col img {
	height: 100%;
	object-fit: cover;
}

.page-appointment-form-col {
	/* background-color: #f6f6f6; */
	color: #444;
	display: grid;
	align-content: center;
	padding: 60px;
	justify-items: center;
}

.page-appointment-form-col .page-section-header {
	max-width: 600px;
}

.page-appointment-form-container {
	max-width: 600px;
	width: 100%;
}

.page-appointment-form-container .page-header-title {
	color: inherit;
}

.page-appointment-form {
	margin-top: 30px;
}

.appointment-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.appointment-form-group-wide {
	grid-column: 1 / -1;
}

.appointment-form-group {
	width: 100%;
}

.appointment-form-label {
	font-weight: 500;
	margin-bottom: 0.3em;
	font-size: 0.85rem;
	display: inline-block;
}

.appointment-form-input {
	padding: 15px;
	border: 1px solid var(--theme-primary-border);
	border-radius: 4px;
	appearance: none;
	height: auto;
	background-color: #fff;
}

.appointment-doctors-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.appointment-group {
	overflow: hidden;
	flex: 1 1 40%;
	min-width: 250px;
	background-color: #fff;
	border: 1px solid var(--border-color);
	/* padding: var(--column-gutter); */
	border-radius: 8px;
}

.appointment-group-head {
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: underline;
	padding: var(--column-gutter);
}

.appointment-group-head small {
	font-weight: 500;
}

.appointment-group-blocks {
	display: grid;
	gap: 0.3rem;
	align-items: start;
	font-size: 0.85em;
	line-height: 1.4;
}

.appointment-block {
	background-color: var(--theme-primary);
	color: var(--theme-primary-text);
	padding: 0.4rem 0.8rem;
	border-radius: 0.4rem;
	/* border: 1px solid var(--border-color); */
}

.appointment-sub-group {
	margin-top: 0.3rem;
	margin-bottom: calc(var(--column-gutter) * 0.7);
}

.appointment-name {
	font-size: 1rem;
	font-weight: 600;
	padding: 1rem;
}

.appointment-sub-list {
	line-height: 1.5;
	font-size: 0.9rem;
}

.appointment-select-group {
	position: relative;
	margin-top: 0.2rem;
	display: flex;
	padding: 4px 0;
	align-items: center;
}

.appointment-select-option {
	padding-left: 1.5rem;
	cursor: pointer;
	display: block;
}

.appointment-select-control {
	height: 1px;
	width: 1px;
	opacity: 0;
	position: absolute;
}

.appointment-select-option::before {
	content: "";
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 1.1rem;
	height: 1.1rem;
	box-shadow: inset 0 0 0 2px #787f93;
	border-radius: 50px;
	transition: ease 0.3s;
	transition-property: border, box-shadow;
}

.appointment-select-control:checked~.appointment-select-option::before {
	box-shadow: inset 0 0px 0px 0.45em var(--theme-secondary);
}

.appointment-sub-list span {
	font-weight: 500;
}

.appointment-form-action {
	padding: 15px;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	font-weight: 600;
	border-radius: 4px;
	text-transform: uppercase;
}

.appointment-back-button {
	background-color: #999;
	color: #fff;
}

.team-modal header figure {
	width: 100%;
	max-width: 180px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	margin: auto;
	margin-bottom: 0.75rem;
	padding: 0.5rem;
	position: relative;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.team-modal header figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px dashed var(--theme-primary);
	animation: spin 72s linear infinite;
}

.team-modal header figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-modal .schedule-boxes .box {
	min-width: 160px;
	max-width: 200px;
}

.team-modal .schedule-boxes .box:hover {
	background-color: var(--theme-primary);
	color: #fff;
}

.appointment-doctor-slide {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: var(--column-gutter);
	position: relative;
	box-sizing: border-box;
}

.appointment-doctor-img {
	position: relative;
	width: 130px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.appointment-doctor-img::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.appointment-doctor-img::after {
	content: "Selected";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.3rem 0.5rem;
	padding-bottom: 0.7rem;
	background-color: var(--color-green-b);
	color: #fff;
	text-align: center;
	opacity: 0;
	transition: ease 0.25s opacity;
}

.appointment-doctor-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.appointment-doctor-name {
	font-size: 1.1rem;
	font-weight: 500;
	/* margin-bottom: 0.25em; */
	transition: ease 0.25s color;
	line-height: 1.2;
}

.appointment-doctor-name b {
	font-weight: 500;
	display: block;
	font-size: 0.8em;
}

.appointment-doctor-desc {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.appointment-doctor-select {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.appointment-doctor-select:checked~.appointment-doctor-info>.appointment-doctor-name {
	color: var(--theme-secondary);
}

.appointment-doctor-select:checked~.appointment-doctor-img::after {
	opacity: 1;
}

.doctors-schedule-list {
	margin-top: 1rem;
	border: 1px solid var(--border-color);
	padding: var(--column-gutter);
	border-radius: 0.5rem;
	gap: 0.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.doctors-schedule-list .appointment-group-head {
	grid-column: 1 / -3;
	padding: 0;
	padding-bottom: 0.5rem;
}

.doctors-schedule-list .appointment-group-blocks {
	grid-column: -3 / -1;
	grid-row: 1;
}

.appointment-select-time {
	list-style: none;
	position: relative;
}

.appointment-select-time-radio {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.appointment-select-time-label {
	/* display: flex;
	flex-direction: column;
	align-items: center; */
	display: block;
	padding: 0.5rem;
	background-color: var(--theme-secondary-text);
	/* color: var(--theme-secondary); */
	border: 1px solid var(--border-color);
	border-radius: 0.3rem;
	transition: ease 0.25s;
	transition-property: background-color, color, border-color;
	cursor: pointer;
	padding-right: 1.5rem;
	/* display: flex; */
	/* align-items: center; */
}

.appointment-select-time-radio:checked~.appointment-select-time-label {
	background-color: var(--theme-secondary);
	border-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
}

.appointment-select-time-radio:disabled~.appointment-select-time-label {
	cursor: not-allowed;
	background-color: var(--border-color);
}

.appointment-preview {
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
}

.appointment-preview-details {
	padding: 1rem;
	border-top: inherit;
}

.appointment-preview-text {
	line-height: 1.6;
}

.appointment-preview-text b {
	font-weight: 500;
}

.appointment-preview-amount {
	color: var(--color-green-b);
}

.performance-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.performance-info-charts {
	display: flex;
	margin-top: 60px;
}

.performance-info-chart {
	height: 200px;
	margin-right: 20px;
	text-align: center;
}

.performance-chart-label {
	margin-top: 20px;
	font-weight: 600;
	color: var(--text-color-alt);
}

.team-swiper .swiper-slide {
	height: auto;
}

.team-popup {
	display: inline-flex;
	height: 100%;
}

.teamCard {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 0.5rem;
	overflow: hidden;
	padding: 1.5rem
}

.teamCard figure {
	width: 100%;
	aspect-ratio: 1 / 1.25;
	overflow: hidden;
	border-radius: 0.5rem;
}

.teamCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.teamCard:hover figure img {
	transform: scale(1.1);
}


.teamCard article {
	padding: 1rem 0 0;
}

.teamCard .cta-btn {
	padding: 0.33rem 0.5rem;
	border-radius: 0.5rem;
}

.teamCard article .title {
	font-size: 1.1rem;
	line-height: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	min-height: 1lh;
	color: var(--color-1);
}

.teamCard article .qualifications {
	font-size: 1rem;
	line-height: 1.3rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	min-height: 3lh;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 400;
	color: #222;
}

.appointment-page .teamCard article .qualifications {
	min-height: unset;
}

.teamCard article .cta-btn {
	border-radius: 5rem;
	background-color: #fff;
	border-color: var(--color-1);
	color: var(--color-1);
}

.teamCard article .cta-btn:hover {
	background-color: var(--color-1);
	color: #fff;
}

#teamMemberModal .modal-dialog {
	max-width: 700px;
}

#teamMemberModal .modal-body {
	padding: 2rem;
}

.team-info {
	gap: 1.5rem;
}


.team-info .section-title {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 500;
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	color: var(--color-2);
}

.team-info figure {
	width: 100%;
	overflow: hidden;
	flex-basis: 40%;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}

.team-info figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-info article {
	flex-basis: 55%;
}

.team-info article .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--color-1);
}

.team-info article .qualification {
	font-size: 0.875rem;
	line-height: 1.175rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

.team-info article .qualification strong {
	font-weight: 500;
}

.team-info article .description {
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 400;
	color: #333;
	text-align: justify;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.team-col {
	text-align: center;
}

.team-img {
	position: relative;
	overflow: hidden;
}

.team-img::before {
	content: "";
	display: block;
	padding-top: 125%;
}

.team-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease 0.8s transform;
}

.team-col:hover .team-img img {
	transform: scale(1.2);
}

.team-info .name {
	font-size: 2.2rem;
	line-height: 2.5rem;
	font-weight: 600;
	color: var(--theme-team-member-color);
	margin-bottom: 0.5em;
}

.team-desc {
	color: var(--theme-team-qualification-color);
}

.team-qual {
	text-align: justify;
}

.team-card {
	perspective: 250rem;
}

.team-card-face {
	transition: transform 0.6s ease;
	position: relative;
	top: 0;
	left: 0;
	backface-visibility: hidden;
	overflow: auto;
	background-color: #fff;
}

.team-card-front .team-desc {
	--clamp: 3;
	height: calc(1lh * var(--clamp));
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: var(--clamp);
	-webkit-line-clamp: var(--clamp);
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.team-card-back {
	transform: rotateY(180deg);
	position: absolute;
	height: 100%;
	box-shadow: 0 5px 15px rgb(10 1 58 / 10%);
	overflow: auto;
}

.team-card-back .team-img {
	position: absolute;
	inset: 0;
	opacity: 0.4;
	z-index: 0;
}

.team-card-back .team-info {
	position: relative;
	padding: 20px;
}

.team-card-back .team-name {
	color: var(--theme-team-heading-color);
}

.team-card-back .team-desc {
	margin-bottom: 1rem;
	font-style: italic;
	font-size: 0.9em;
}

.team-card:hover .team-card-front {
	transform: rotateY(180deg);
}

.team-card:hover .team-card-back {
	transform: rotateY(360deg);
}

.bg-section {
	position: relative;
}

.bg-section::before {
	content: "";
	padding-top: 31%;
	display: block;
}

.video-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.video-bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bg-section-content {
	display: grid;
	justify-content: center;
	align-items: center;
	justify-items: center;
	align-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	color: var(--theme-secondary-text);
}

.video-bg-title {
	font-size: 60px;
	margin-bottom: 10px;
}

.video-bg-icon {
	width: 75px;
	height: 75px;
	display: grid;
	place-content: center;
	font-size: 24px;
	border-radius: 100px;
	border: 3px solid var(--theme-secondary-text);
}

.login-box {
	width: 100%;
	max-width: 680px;
	margin: auto;
	background-color: #F4F6F7;
	border-radius: 0.75rem;
	padding: 3rem 5rem;
}

.login-box .heading {
	font-size: 3rem;
	line-height: 3.5rem;
	margin-bottom: 3rem;
	font-weight: 300;
	color: var(--color-1);
}

.login-box .form-floating input {
	background-color: transparent;
	border-width: 2px;
	padding: 1.75rem;
	border-radius: 0.75rem;
}

.login-box .form-floating label {
	color: rgba(42, 85, 90, 0.5);
}

.login-box .form-floating input:focus {
	border-color: #000;
	padding-top: 2.25rem;
	padding-bottom: 1.25rem;
	padding-left: 0.8rem;
}

.login-box .form-floating input:not(:placeholder-shown):not(:focus) {
	border-color: rgb(228, 228, 228);
	padding-left: 0.8rem;
}

.login-box .form-select {
	background-color: transparent;
	padding: 1rem;
	border-radius: 0.75rem;
}

.login-box .link {
	position: relative;
	color: #999;
}

.login-box .link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: left;
	width: 100%;
	height: 1px;
	background-color: #999;
	transform: scaleX(1);
	transition: 0.3s ease-in-out;
}

.login-box .link:hover::before {
	transform: scaleX(0);
}

.login-box .submit-btn {
	width: 100%;
	border-radius: 5rem;
	border: 2px solid #999;
	padding: 1rem;
	transition: 0.3s ease-in-out;
	color: #333;
	font-size: 1.2rem;
	line-height: 1.5rem;
}

.login-box .submit-btn:hover {
	color: var(--color-1);
	border-color: var(--color-1);
}

.login-box .forgot-link {}

.blogCard {
	border: 1px solid #eee;
	border-radius: 1rem;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
	overflow: hidden;
}

.blogCard:hover {}

.blogup {
	transition: transform 0.3s ease-in-out;
}

.blogup:hover {
	transform: translateY(-4px);
}

.blogCard figure {
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
}

.blogCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out transform;
}

.blogCard:hover figure img {
	transform: scale(1.1);
}

.blogCard article {
	padding: 1.5rem;
}

.blogCard article .date {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: rgb(101, 117, 139);
	display: inline-block;
	margin-bottom: 0;
}

.blogCard article .date i {
	margin-right: 0.25rem;
}

.blogCard article .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: rgb(52, 66, 86);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
	min-height: 2lh;
	margin-bottom: 1rem;
}

.blogCard article .description {
	font-size: 0.875rem;
	line-height: 1.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	min-height: 2lh;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 400;
	color: rgb(101, 117, 139);
	margin-bottom: 1rem;
	text-align: start;
}

.blogCard article .read-more {
	font-size: 0.875rem;
	line-height: 1.125rem;
	color: rgb(52, 66, 86);
	transition: 0.3s ease-in-out;
	padding: 0.5rem 1rem;
	border-radius: 5rem;
}


.blogCard article .read-more i {
	margin-left: 0.25rem;
	transition: 0.3s ease-in-out;
}

.blogCard article .read-more:hover {
	background-color: var(--main-color-2);
}

.blogCard article .read-more:hover i {
	transform: translateX(4px);
}

.blogCard .card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0 0.5rem;
	border-top: 1px solid rgb(215, 224, 234);
}

.home-blog-wrapper {
	margin-top: 40px;
	position: relative;
}

.blog-slide-image {
	position: relative;
}

.blog-slide-image::before {
	content: "";
	padding-top: 56.5%;
	display: block;
}

.blog-slide-image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-slide-content {
	padding: 1.5rem 1rem;
	text-align: center;
}

.blog-slide-date {
	margin-bottom: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-slide-date i {
	font-size: 1.1rem;
	color: var(--theme-blogs-date-icon-color);
}

.blog-slide-date-text {
	font-size: 0.9rem;
	color: var(--theme-blogs-date-color);
}

.blog-slide-title {
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.blog-slide-title a {
	color: var(--theme-blogs-label-text-color);
	text-decoration: none;
	transition: ease 0.3s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

.blog-slide-title a:hover {
	color: var(--theme-primary);
}

.blog-slide-text {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.blog-slide-read-more {
	margin-top: 1rem;
}

.blog-slide-read-more a {
	color: var(--theme-blogs-readmore-btn-color);
	background-color: var(--theme-blogs-readmore-btn-bg-color);
	text-decoration: none;
	display: inline-block;
	padding: 0.6rem 1.5rem;
	border: 1px solid var(--theme-blogs-readmore-btn-bg-color);
	transition: ease 0.3s;
	font-weight: 500;
	font-size: 0.9rem;
}

.blog-slide-read-more a:hover {
	background-color: var(--theme-blogs-readmore-btn-color);
	border-color: var(--theme-blogs-readmore-btn-bg-color);
	color: var(--theme-blogs-readmore-btn-bg-color);
}

.form-control.flatpickr-input[readonly] {
	background-color: #fff;
}

.slot-header {
	overflow-x: auto;
	justify-content: center;
}

.slot-header .nav-item .nav-link {
	border: 1px solid var(--theme-primary);
	color: #000;
	border-radius: 0;
	border-right: 0;
	padding: 0.5rem 2rem;
}

.slot-header .nav-item:first-child .nav-link {
	border-radius: 5rem 0 0 5rem;
}

.slot-header .nav-item:last-child .nav-link {
	border-radius: 0 5rem 5rem 0;
}

.slot-header .nav-item .nav-link .date {
	font-size: 0.75rem;
	line-height: 1.05rem;
	font-weight: 500;
}

.slot-header .nav-item:last-child .nav-link {
	border-right: 1px solid var(--theme-primary);
}


.slot-header .nav-item .nav-link.active {
	background-color: var(--theme-primary);
	color: #fff;
}

.doctor-card-preview .select-doctor {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 500;
}

.appointment-select {
	padding: 0.8rem 1.6rem;
}

.timeSlotBtn {
	padding: 0.75rem 1.25rem;
	border-radius: 5rem;
}

.loader {
	display: none;
	text-align: center;
	padding: 1rem;
}

.loader::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 3px solid #007bff;
	border-top: 3px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.btn.available-btn {
	background-color: #fff;
	border: 1px solid rgb(65, 141, 65);
	color: rgb(65, 141, 65);
}

.btn.available-btn:hover {
	background-color: var(--color-1);
	color: #fff;
}

.btn.available-btn:hover .status-available {
	color: #fff;
}

.slotsDiv .active .btn.available-btn .status-available,
.slotsDiv .active .btn.available-btn {
	background-color: var(--color-1);
	color: #fff;
}

.btn.booked-btn {
	opacity: 0.7;
	color: #911b06;
	position: relative;
	border: 1px solid #ccc;
}

.btn .status-booked {
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 0.8rem;
	color: #911b06;
}

.btn.booked-btn::after {
	/* content: 'Booked'; */
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 0.8rem;
	line-height: 0.8rem;
	color: #911b06;
}

.proceed-ahead-btn {
	background-color: var(--theme-primary);
	color: #fff;
	border: 1px solid var(--theme-primary);
	border-radius: 0;
	padding: 0.75rem 1.5rem;
}

.proceed-ahead-btn:hover {
	border-color: var(--theme-primary);
	background-color: #fff;
	color: #000;
}

#bookingForm .form-control:focus {
	box-shadow: none;
}

.teamClose {
	position: sticky;
	top: 3%;
	left: 90%;
	z-index: 1;
}

.proceed-ahead-btn:disabled {
	cursor: not-allowed;
	background-color: initial;
	color: initial;
	border-color: initial;
}

.btn.holiday-btn {
	opacity: 0.7;
	color: #911b06;
	position: relative;
	border: 1px solid #ccc;
}

#doctor-card.teamCard figure {
	aspect-ratio: 1 / 1;
}

#doctor-card.teamCard article {
	padding: 1rem 0 0;
}

.appointmentModalBody h3 {
	font-size: 1rem;
	line-height: 1.3rem;
}

.appointmentModalBody h3 strong {
	font-weight: 500;
}

.btn .status-unavailable {
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 0.8rem;
	color: #911b06;
}

.btn .status-available {
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 0.8rem;
	color: rgb(65, 141, 65);
}

.btn.holiday-btn::after {
	/* content: 'Unavailable'; */
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-size: 0.8rem;
	line-height: 0.8rem;
	color: #911b06;
}

.appointment-history-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 100%;
	padding: 1.5rem;
	transition: transform 0.2s;
}

.appointment-history-card:hover {
	transform: translateY(-5px);
}

.appointment-history-card .card-header {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #333;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 0.5rem;
}

.appointment-history-card .card-body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.appointment-history-card .card-body .card-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.appointment-history-card .card-body .card-item span:first-child {
	font-weight: 600;
	color: #555;
}

.appointment-history-card .card-body .card-item span:last-child {
	color: #333;
	text-align: right;
}

.appointment-history-card .card-body .card-item span:last-child span {
	font-size: 0.8rem;
	line-height: 1.1rem;
	font-weight: 500;
}

.appointment-history-card .card-footer {
	margin-top: 1rem;
	text-align: right;
}

.appointment-history-card .bill_btn:hover {
	background-color: #0056b3;
}

.appointment-history-card .cta-btn {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 3rem;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
}

.appointment-history-card .bill_btn i {
	margin-right: 0.5rem;
}


@keyframes loaderSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 768px) {
	.login-box .submit-btn {
		padding: 0.75rem;
		font-size: 1rem;
		line-height: 1.3rem;
	}
	

	.login-box {
		padding: 2rem;
	}

	.login-box .heading {
		font-size: 2rem;
		line-height: 2.5rem;
		margin-bottom: 1.5rem;
	}

	.account-row .account-sidebar {
		position: fixed;
		left: 0;
		top: var(--header-height);
		width: 100%;
		height: calc(100vh - var(--header-height));
		background: #fff;
		transition: 0.3s ease-in-out;
		transform: translateX(-100%);
		z-index: 99;
	}

	.account-row .account-sidebar.show {
		transform: translateX(0);
		z-index: 998;
	}

	.blog-slide-date-text {
		font-size: 0.8rem;
	}

	.blog-slide-title {
		font-size: 1rem;
	}

	.blog-slide-text {
		font-size: 0.8rem;
	}

	.blog-slide-read-more a {
		font-size: 0.8rem;
	}

	.team-modal .schedule-boxes .box {
		max-width: 100%;
	}

	.doctor-card-preview img,
	#doctor-card.teamCard figure {
		max-width: 150px;
		margin: 1rem auto auto;
	}

	.main-header-nav>li {
		padding: 0.25rem 0;
		height: auto;
	}

	.header-options a,
	.main-header-nav>li .cta-btn {
		padding: 0.6rem 1.2rem;
		display: inline-block;
	}

	.sub-menu>li>a {
		padding: 0.5rem 0.75rem;
	}
}

.logo-swiper {
	margin-bottom: 100px;
	margin-top: 40px;
}

.logo-slide {
	height: auto;
}

.logo-slide img {
	/* filter: grayscale(20%) brightness(0%) contrast(0%); */
	margin: auto;
	/* opacity: 0.4; */
	width: 100%;
	height: 100%;
	transition: ease 0.3s;
	padding: 20px;
	box-sizing: border-box;
	object-fit: contain;
}

.logo-slide:hover img {
	filter: none;
	opacity: 1;
}

.testimonialBox {
	border: 1px solid #eee;
	border-radius: 1rem;
	background-color: #FFF;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
	padding: 1.5rem;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	transition: box-shadow 0.3s ease-in-out;
}

.testimonialBox:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}

.testimonialBox .testimonial {
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: rgb(101, 117, 139);
}

.testimonials-swiper {
	margin-top: 2rem;
}

.testimonials-swiper .swiper-slide {
	height: auto;
}

/* .author-info {
	border-top: 1px solid var(--main-color);
	padding-top: 1rem;
} */

.author-info .author {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: rgb(52, 66, 86);
}

.author-info .designation {
	/* font-size: 0.75rem;
	line-height: 1.25rem;	 */
	font-weight: 400;
}

.testimonial-slide {
	border: 1px solid #dadada;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	background-color: #fff;
	height: auto;
	box-sizing: border-box;
}

.testimonial-content {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	padding-top: 2rem;
	display: block;
	line-height: 1.5;
	color: var(--theme-testimonial-content-color);
}

.testimonial-content::before {
	font-size: 6rem;
	top: 0;
	line-height: 1;
	opacity: 0.5;
	content: "\201C";
	color: var(--theme-testimonial-quote-color);
	position: absolute;
	font-family: "Times New Roman", serif;
}

.testimonial-content::after {
	content: none;
}

.testimonial-author {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--theme-testimonial-author-color);
}

.testimonial-designation {
	line-height: 1.6;
	font-size: 0.8rem;
	color: var(--theme-testimonial-designation-color);
}

.contact-section {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: flex-start;
	border: 1px solid #eee;
	padding: 2rem;
	background-color: #fff;
}

.contact-links-group {
	margin-bottom: 3rem;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.contact-links-icon {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: 50px;
	background-color: #e2e2e2;
	font-size: 1.4rem;
	color: #fff;
}

.contact-links-icon.color-yellow {
	background-color: var(--color-yellow);
}

.contact-links-icon.color-green {
	background-color: var(--color-green);
}

.contact-links-icon.color-orange {
	background-color: var(--color-orange);
}

.contact-links-info {
	flex: 1;
	line-height: 1.6;
	color: #555;
}

.contact-links-head {
	font-weight: 400;
	font-size: 1.1rem;
	color: #222;
}

.contact-link {
	font-size: 0.9rem;
}

.contact-link a:hover {
	color: var(--color-orange);
	text-decoration: underline;
}

.contact-link-extra {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--color-orange);
}

.contact-form-column {}

.contact-form-card {}

.contact-form-row {
	display: flex;
	gap: 2rem;
}

.contact-form-col {
	flex: 1 1 0;
}

.contact-form-group {
	margin-bottom: 2rem;
	padding: 0.5rem;
	border: 1px solid #ebebeb;
	border-radius: 6px;
}

.contact-form-label {
	font-size: 0.85rem;
	font-weight: 500;
	display: inline-block;
	color: #555;
}

.contact-form-control {
	border-radius: 3px;
	line-height: 2.2;
	font-size: 0.85rem;
	transition: ease 0.2s;
	transition-property: box-shadow;
	min-height: 2rem;
	resize: vertical;
}

.contact-form-control::placeholder {
	color: #ccc;
}

.contact-form-control:focus {
	/* box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%); */
}

.contact-form-action {
	text-align: center;
}

.contact-form-button {
	background-color: var(--color-1);
	color: var(--theme-secondary-text);
	font-weight: 400;
	font-size: 1rem;
	display: inline-block;
	/* text-transform: uppercase; */
	padding: 0.5rem 2rem;
	border-radius: 4px;
	line-height: 2;
	transition: 0.3s ease-in-out;
	border: 1px solid #fff;
}

.contact-form-button:hover {
	background-color: #fff;
	color: var(--color-1);
	border-color: var(--color-1);
}

.contact-form-button:hover {
	/* background-color: var(--color-green-d); */
}

.page-footer {
	background: #011F4B;
	color: #fff;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.page-footer a:hover {
	color: var(--main-color-2);
}

.page-footer a.footer-social-link:hover {
	background-color: var(--main-color);
	color: var(--main-color-2);
}

.footer-contact-links li {
	margin-bottom: 0.5rem;
}

.footer-contact-links li a {
	font-size: 0.875rem;
	line-height: 1.175rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 300px;
}

.footer-service-links li:hover::before {
	width: 6px;
	top: calc(3px + 0.25rem);
	background-color: var(--main-color-2);
}

.footer-row {
	display: flex;
	gap: 100px;
}

.footer-col {
	flex: 1 1 100%;
}

.footer-about-col {
	flex-basis: 200%;
}

.footer-about-brand {
	max-width: 200px;
	width: 100%;
	margin-bottom: 1rem;
	font-size: 2rem;
	line-height: 1;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
}


.footer-desc-text {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.5;
}

.footer-social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-social-icons li a:hover {
	background-color: var(--color-1);
	color: #fff;
}

.footer-social-link {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	color: var(--main-color);
	background-color: var(--main-color-2);
	font-size: 16px;
	border-radius: 50px;
}

.footer-col-title {
	font-size: 18px;
	margin-bottom: 45px;
	position: relative;
}

.footer-service-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
}


.footer-service-links li {
	flex-basis: calc(50% - 1rem);
	position: relative;
}

.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-service-links li::before {
	content: '';
	width: 4px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	left: -0.75rem;
	top: calc(4px + 0.25rem);
	transition: 0.3s ease-in-out;

}

.footer-service-links li a {
	font-size: 0.875rem;
	line-height: 1.175rem;
}

.footer-col-title::after {
	content: "";
	width: 37px;
	height: 2px;
	top: 2.4em;
	left: 0;
	background-color: #fff;
	display: block;
	position: absolute;
}

.footer-link {
	line-height: 2.4;
	font-size: 14px;
}

.copy-footer {
	background: #011F4B;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid #7e7e7eab;
}

.copy-footer-text img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

/* Blog */

.blog-body {
	padding-top: 80px;
	padding-bottom: 80px;
}

.blog-container {
	display: flex;
	gap: 30px;
}

.blog-main {
	position: relative;
	width: 70%;
}

.blog-extra {
	width: 30%;
}

.blog-tags {
	font-size: 0.9rem;
	color: var(--theme-secondary);
	margin-bottom: 0.5rem;
}

.blog-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--theme-secondary);
}

.blog-meta {
	color: var(--theme-secondary);
	font-weight: 500;
}

.blog-content {
	margin-top: 20px;
	position: relative;
	/* padding: 20px; */
	/* box-shadow: 0 0 15px rgb(0 0 0 / 15%); */
}

.blog-content::after {
	content: "";
	display: block;
	clear: both;
}

.blog-main-img {
	/* width: 40%; */
	min-width: 500px;
	float: left;
	margin-right: 25px;
	margin-bottom: 20px;
	max-width: 50%;
}

.blog-main-img img {
	width: 100%;
}

.blog-main-content {
	font-size: 16px;
	clear: right;
}

.blog-main-content p {
	margin-bottom: 1em;
}

.blog-main-content h1 {
	font-size: 2em;
	margin-bottom: 0.6em;
}

.blog-main-content h2 {
	font-size: 1.5em;
	margin-bottom: 0.8em;
}

.blog-main-content h3 {
	font-size: 1.17em;
	margin-bottom: 1em;
}

.blog-main-content h4 {
	font-size: 1.1em;
	margin-bottom: 1em;
}

.blog-main-content strong {
	font-weight: 600;
}

.blog-main-content em {
	font-style: italic;
}

.blog-main-content hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border-bottom: 0;
}

.blog-main-content .marker {
	background-color: Yellow;
}

.blog-main-content ul,
.blog-main-content ul {
	/* padding-left: 1.5em; */
	margin-bottom: 1em;
	list-style-position: inside;
}

.blog-main-content li {
	margin-bottom: 0.5em;
}

.blog-main-content ul {
	list-style-type: disc;
}

.blog-main-content ol {
	list-style: decimal;
}

.blog-list-banner {
	background-color: #eeeeee;
	padding: 30px;
	border-radius: 10px;
}

.blog-list-banner-title {
	/* text-align: center; */
	font-weight: 500;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.blog-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 25px;
	margin-bottom: 30px;
	/* padding: 20px; */
	/* box-shadow: 0 0 15px rgb(0 0 0 / 15%); */
}

.pagination-wrapper {
	margin-top: 60px;
}

.page-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.page-numbers {
	display: block;
	padding: 5px 10px;
	border: 1px solid var(--theme-secondary);
	border-radius: 4px;
	color: var(--theme-secondary);
}

.page-numbers:hover {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border-color: var(--theme-secondary);
}

.blog-share-title {
	font-weight: 500;
	font-size: 20px;
}

.blog-share-list {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
	margin-top: 15px;
}

.blog-share-link {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border-radius: 50px;
	border: 1px solid var(--theme-secondary);
}

.blog-share-link:hover {
	background-color: var(--theme-secondary-text);
	color: var(--theme-secondary);
}

/* Gallery */

.gallery-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

.gallery-section .section-title {
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 500;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.gallery-grid-sm {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 20px;
}

.gallery-card {
	padding: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	background-color: #fff;
}

.gallery-card-img {
	position: relative;
	margin-bottom: 10px;
}

.gallery-media-img {
	/* margin-bottom: 0; */
}

.gallery-card-img::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 75%;
}

.gallery-card-img img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-caption {
	font-weight: 500;
	text-align: center;
	font-size: 18px;
}

.sl-overlay {
	background-color: #000;
}

.sl-wrapper .sl-close {
	font-size: 2.8em;
	top: 15px;
	right: 15px;
}

.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter,
.sl-wrapper .sl-close {
	color: var(--theme-fore-color);
}

.sl-wrapper .sl-counter,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-close {
	color: var(--color-2) !important;
}

.sl-wrapper .sl-image .sl-caption {
	text-align: center;
	background-color: #f5893a70;
}

.sl-wrapper .sl-image {
	position: relative;
	transform: translateX(0);
}

.services-body {
	padding-top: 60px;
	padding-bottom: 60px;
}

.login-page {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

#login-popup .popup-container {
	background-image: url('../images/login-bg-2.png');
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
	z-index: 1;
}

#login-popup .popup-container::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.85);
	z-index: -1;
	pointer-events: none;
}

.login-container {
	max-width: 550px;
	margin: 0 auto;
	width: 100%;
	display: block;
	padding: 30px;
	/* box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); */
	border-radius: 1rem;
}

.login-container .page-header-title {
	text-align: center;
	margin-bottom: 0.3em;
}

.form-group {
	position: relative;
}

.form-group+.form-group {
	margin-top: 1rem;
}

.form-group>label {
	display: inline-block;
	margin-bottom: 0.3em;
	font-weight: 500;
}

.form-control {
	display: block;
	width: 100%;
	font-size: 1rem;
	padding: 0.6rem 1.2rem;
	border-radius: 0.3rem;
	border: 1px solid var(--border-color);
	/* font-size: 1.1rem; */
	background-color: #fff;
}

.form-control[readonly] {
	background-color: #f1f1f1;
}

.form-action-group {
	text-align: center;
}

.form-action-btn {
	padding: 0.5rem 1.5rem;
	text-align: center;
	background-color: var(--theme-secondary);
	border: 2px solid var(--theme-secondary);
	color: var(--theme-secondary-text);
	font-weight: 500;
	font-size: 1.1rem;
	border-radius: 0.3rem;
	transition: ease 0.25s;
	min-width: 180px;
}

.form-action-btn:hover {
	background-color: var(--theme-secondary-text);
	color: var(--theme-secondary);
}

.form-horizontal-separator {
	padding-inline: 0.5rem;
	color: #777;
	font-weight: 500;
}

.login-alert {
	padding: 1rem;
	text-align: center;
	border: 1px solid #ff5757;
	background-color: #ffaaaa;
	color: #f00;
	font-weight: 600;
	border-radius: 0.3rem;
	margin: 0.9rem 0;
}

.login-alert-info {
	border-color: #00a8ff;
	background-color: #e8f3ff;
	color: #00a8ff;
}

.otp-input-group {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.otp-input-group input {
	width: 40px;
	height: 40px;
	/* border: none; */
	line-height: 50px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 200;
	margin: 0 3px;
	/* border-bottom: 1px solid #c6cdd5; */
	/* border-radius: 0; */
	padding: 0;
}

.form-text {
	margin-bottom: 0.3em;
	color: #555;
}

fieldset.form-group {
	border: 0;
	text-align: center;
}

.account-page {
	padding-block: 2rem;
	position: relative;
}

.account-row {
	display: flex;
	align-items: stretch;
	gap: 2rem;
}

.account-sidebar,
.account-content {
	/* box-shadow: 0 0 10px rgb(0 0 0 / 20%); */
	border-radius: 0.5rem;
	border: 1px solid #dadada;
}

.account-sidebar {
	flex: 0 0 300px;
	padding: 1.2rem;
}

.account-sidebar-nav li {
	margin-bottom: 0.2rem;
}

.account-sidebar-nav li a {
	font-weight: 500;
	color: var(--theme-primary);
	font-size: 1rem;
	display: block;
	padding: 0.7rem;
	border-radius: 0.3rem;
}

.account-sidebar-nav li a:hover {
	background-color: #f1f1f1;
}

.account-sidebar-nav li.nav-active a {
	background-color: var(--theme-primary);
	color: var(--theme-primary-text);
}

.account-content {
	flex: 1 1 auto;
	padding: 1.2rem 2rem;
	max-width: 100%;
}

.preSlotsMessage {
	padding: 2.5rem 1.5rem;
	background-color: #ffbb8aa6;
	color: var(--color-1);
	font-size: 1.2rem;
	line-height: 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.preSlotsMessage i {
	font-size: 1.7rem;
}

.patient-section {
	display: none;
}

.summaryBox {
	margin-bottom: 1rem;
	padding: 0 1.5rem;
}

.summaryBox figure {
	width: 100%;
	max-width: 150px;
	margin: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	text-align: center;
	margin-bottom: 0.5rem;
}

.summaryBox figure img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.summaryBox .summary-text {
	font-size: 0.9rem;
	line-height: 1.2rem;
	font-weight: 600;
	color: #797979;
	text-align: center;
}

/* .slots-section .nav-link {
	position: relative;
}

.slots-section .nav-link::before {
	content: '27-06-2025';
	position: absolute;
	left: 50%;
	bottom: 0;
	font-size: 0.8rem;
	line-height: 1rem;
	font-weight: 500;
	transform: translateX(-50%);
} */

.summaryBox .summaryLine {
	margin-bottom: 0.5rem;
}

.summaryBox .summaryLine span.heading {
	display: inline-block;
	width: 100%;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.4rem;
}

.appointment-page {
	background: linear-gradient(90deg, #FFF8F3 -1.7%, #FFEEE2 48.89%, #FFF8F3 102.61%);
}

.appointment-page .middle-box,
.appointment-page .right-side-box,
.appointment-page .left-side-box {
	background-color: #fdfdfd;
	padding: 1.5rem;
	box-shadow: 0 1px 4px #7575752e;
}

.appointment-page .right-side-box {
	padding: 0;
}

.t_and_c_box input {
	border-color: #999;
}

.t_and_c_box input:focus {
	box-shadow: none;
}

.t_and_c_box input:checked {
	background-color: var(--color-1);
	border-color: var(--color-1);
}

.t_and_c_box label {
	font-size: 0.875rem;
	line-height: 1.175rem;
}

.t_and_c_box label a {
	color: blue;
}

.sticky-action-box .cta-btn {
	justify-content: center;
}

.cta-btn:disabled,
.cta-btn:disabled:hover {
	background-color: #ccc;
	border-color: 1px solid #dadada;
	color: #000
}

.appointment-page .middle-box .section-heading,
.appointment-page .right-side-box .section-heading,
.appointment-page .left-side-box .section-heading {
	font-size: 1.2rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 500;
	position: relative;
	padding-bottom: 0.5rem;
}

.appointment-page .middle-box .section-heading::after,
.appointment-page .right-side-box .section-heading::after,
.appointment-page .left-side-box .section-heading::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #ccc;

}

.appointment-page .right-side-box .section-heading {
	margin: 1.5rem 1.5rem 0.5rem;
}

.sticky-action-box {
	position: sticky;
	bottom: 0;
	margin-top: 1.5rem;
	background-color: #fff;
	padding: 1.5rem;
	border-top: 1px solid #ccc;
}

.right-side-box {
	max-height: 70vh;
	overflow: auto;
	scrollbar-width: thin;
	position: sticky;
	top: var(--header-height, 7rem);
}

.serviceCharge {
	color: #00c400;
	font-size: 1.3rem;
	line-height: 1.6rem;
	font-weight: 600
}

.account-form {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 1rem 2rem;
}

.account-form .form-group {
	margin: 0;
}

.form-group-action {
	text-align: center;
	grid-column: 1 / -1;
}

.appointment-history-list {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

.appointment-history-item:nth-child(even) {
	background-color: #f5f5f5;
}

.appointment-history-list th,
.appointment-history-list td {
	padding: 0.3rem 0.5rem;
	border-bottom: 1px solid #ddd;
}

.appointment-history-list th {
	font-weight: 600;
}

.appointment-history-list td {
	font-size: 0.9rem;
	vertical-align: middle;
}

.appointment-history-charges {
	text-align: right;
}

.appointment-history-status {
	text-align: center;
}

.history-status-badge {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	padding: 0.5rem 1rem;
	display: inline-block;
	border-radius: 50px;
	line-height: 1;
}

.sidebar-menu-btn {
	display: none;
}

@media (min-width: 769px) {
    .resp-only {
        display:none;
    }
}

@media (min-width: 761px) {
	.resp-menu-wrapper {
		display: none;
	}

	.main-header-resp-cta {
		display: none;
	}

	.main-header-nav .resp-menu-extras {
		display: none;
	}

	.page-header-left {
		text-align: left;
	}

	.performance-info-content {
		max-width: 600px;
		padding-right: 20px;
	}
	
}

.form-control:focus {
	box-shadow: none;
}

.getToTopButton {
	width: 40px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-1);
	color: #fff;
	border-radius: 50%;
	position: fixed;
	bottom: 7%;
	right: 5%;
	z-index: 999;
	display: none;
}

.main-header-row .cta-btn {
	background: linear-gradient(90deg, #FFEEE2 -1.7%, #ffdec6 48.89%, #FFEEE2 102.61%);
	color: var(--main-color);
}

.main-header-row .cta-btn:hover {
	border-color: var(--color-2);
}

.main-header-nav .resp-sidebar-menu {
	display: none;
}

.whyChoosegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.whyChooseComponent {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
	transition: 0.3s ease-in-out;
	padding: 1.5rem;
	text-align: center;
}

.whyChooseComponent .icon {
	max-width: 4rem;
	margin: auto;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	background: var(--main-gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	margin-bottom: 0.75rem;
	color: #fff;
	font-size: 2rem;
}

.whyChooseComponent article .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: rgb(52, 66, 86);
}

.whyChooseComponent article .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: rgb(101, 117, 139);
}

.whyChooseComponent:hover {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}

@media (max-width: 760px) {

	.blog-extra {
		width: 100%;
	}

	.page-banner-subtitle {
		font-size: 1.2rem;
		line-height: 1.5rem;
	}

	.page-banner-title {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.service-info .title {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.blog-list {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1rem;
	}

	.main-header-nav .resp-sidebar-menu {
		display: flex;
	}

	.ToggleProfileMenu {
		padding: 0.25rem 1rem;
		color: var(--color-1);
		margin-bottom: 0.25rem;
		position: relative;
	}

	.ToggleProfileMenu::before {
		content: '\f107';
		font: var(--icon-font);
		position: absolute;
		right: 0rem;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1rem;
	}

	.header-options .hide {
		display: none;
	}

	.header-options a {
		border-radius: 0.25rem;
		background: transparent;
		padding: 0.25rem 1.5rem;
	}

	.account-form {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}

	.appointment-history-card .card-body .card-item {
		flex-direction: column;
	}

	#doctor-card.teamCard article {
		padding: 1rem;
	}

	.preSlotsMessage {
		flex-direction: column;
		font-size: 1rem;
		line-height: 1.3rem;
	}

	.sidebar-menu-btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 50px;
		aspect-ratio: 1 / 1;
		overflow: hidden;
		border-radius: 50%;
		background-color: var(--color-1);
		color: #fff;
		position: fixed;
		right: 5%;
		bottom: 10%;
		z-index: 999;
		border: 1px solid #fff;
		transition: 0.3s ease-in-out;
	}

	.sidebar-menu-btn:hover {
		background-color: #fff;
		border-color: var(--color-1);
		color: var(--color-1);
	}

	.account-content {
		padding: 1rem;
	}

	.team-box {
		flex-direction: column;
	}

	.swiper-nav {
		display: none;
	}

	#services-swiper-nav {
		display: block;
	}

	.service-info .content {
		flex-direction: column;
		gap: 1rem;
	}

	header,
	section,
	footer {
		overflow-x: hidden;
	}

	:root {
		--column-gutter: 15px;
		--header-height: 90px;
		--swiper-navigation-size: 30px;
		--section-gap: 2rem;
	}

	.teamCard figure {
		aspect-ratio: 1 / 1;
	}

	.multi-menu {
		width: calc(100% - var(--column-gutter) - 2rem);
	}

	.multi-menu a {
		position: relative;
	}

	.have-sub-menu::after {
		right: -1rem;
	}

	.sub-menu {
		width: 100%;
	}

	.section-header .section-title {
		font-size: 1.5rem;
		line-height: 1.8rem;
	}

	.about-figure {
		display: flex;
		gap: 1rem;
		width: 100%;
		aspect-ratio: 2 / 1;
		overflow: hidden;
	}

	.about-figure .img-1,
	.about-figure .img-2 {
		position: relative;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		max-width: unset;
		max-height: unset;
		aspect-ratio: 1 / 1;
		overflow: hidden;
		width: 100%;
		height: auto;
	}

	.bannerBox .content .title {
		font-size: 2.5rem;
		line-height: 3rem;
	}

	.top-header {
		height: 80px;
		transition: ease 0.25s;
		display: none;
	}

	.top-header-row {
		justify-content: center;
	}

	.top-header-brand {
		width: auto;
		margin: 0;
		height: 60px;
	}

	.top-header-contact {
		display: none;
	}

	.main-header {
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
		background-color: #fff;
		/* color: var(--text-color); */
	}

	.main-header .container {
		height: 100%;

	}

	.footer-service-links li {
		flex-basis: 100%;
	}

	.main-header-row {
		padding-left: 0;
	}

	.bannerBox {
		aspect-ratio: 1 / 1.25;
	}

	.bannerBox .content {
		max-width: 100%;
	}

	.center-header {
		max-width: 100%;
	}

	.main-header-brand {
		height: 100%;
		padding: 7px 0;
		margin-right: auto;
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		width: auto;
	}

	.resp-menu-toggle {
		padding: 5px;
		display: block;
		font-size: 22px;
		color: #fff;
	}

	.bannerBox .web-view {
		display: none;
	}

	.bannerBox .mobile-view {
		display: block;
	}

	.main-header-nav {
		position: fixed;
		top: calc(var(--header-height));
		left: 0;
		width: 100%;
		max-width: 500px;
		height: calc(100dvh - var(--header-height));
		gap: 0.25rem;
		z-index: 10;
		background-color: #fff;
		color: #333;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		transform: translateX(-100%);
		margin: 0;
		transition: ease 0.25s;
		transition-property: transform;
		padding: 10px var(--column-gutter, 10px);
		border-top: 1px solid rgb(140 140 140 / 40%);
		overflow: auto;
	}

	.footer-col-title {
		margin-bottom: 1rem;
	}

	.footer-col-title::after {
		width: 15%;
		top: unset;
		bottom: -0.5rem;
	}

	.footer-link {
		font-size: 0.875rem;
		line-height: 1.5rem;
	}

	.main-header-nav>li:hover>.header-nav-active {
		color: var(--color-2);
	}

	.get-appointment-btn {
		display: block;
	}

	.main-header-nav>li>a {
		padding: 0.25rem 1rem;
	}

	.main-header-nav>.multi-menu>a {
		padding: 0.25rem 2rem 0.25rem 1rem;
	}

	.main-header-nav .multi-menu .header-nav-active.have-sub-menu::after {
		right: 0.5rem;
		color: #fff;
	}

	.header-options .showItem {
		display: block;
	}

	.main-header-nav .resp-sidebar-menu {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-contact-links,
	.resp-menu-gap {
		padding-left: 1rem;
	}

	.get-appointment-btn {
		padding: 0.5rem 1rem;
	}

	.main-header-nav-link {
		padding: 10px 0;
		margin: 0;
		display: inline-block;
	}

	.header-social-icons .main-header-nav-link {
		margin-right: 0.5rem;
	}

	.resp-menu-extras {
		margin-top: 1em;
	}

	.top-header-contact-col {
		margin-bottom: 0.5rem;
	}

	.top-header-contact-col+.top-header-contact-col {
		margin-left: 0;
		border: 0;
		padding-left: 0;
	}

	.top-header-contact-icon {
		width: 40px;
		height: 40px;
	}

	.header-contact-links p {
		margin-bottom: 0;
		margin-top: 0;
	}

	.top-header-social-col {
		margin-bottom: 1rem;
	}

	.resp-menu-gap {
		margin-top: auto;
	}

	.main-header-cta {
		display: none;
	}

	.header-social-icons-wrapper {
		margin-left: 0;
	}

	.header-social-icons {
		margin-top: 0.5rem;
		gap: 15px;
	}

	.header-social-link {
		/* margin-left: 0; */
		/* margin-right: 0.5rem; */
		width: 40px;
		height: 40px;
	}

	.menu-active {
		overflow: hidden;
	}

	.menu-active .top-header {
		height: 0;
		padding: 0;
	}

	.menu-active .main-header-nav {
		transform: translateX(0);
	}

	.main-header-cta-btn {
		padding: 0.7em 1em;
		margin: 8px 0;
		line-height: 1.7;
		font-size: 13px;
	}

	.hero-slide-img::before {
		padding-top: 80%;
	}

	.hero-slide-title {
		font-size: 25px;
	}

	.hero-slide-desc {
		font-size: 10px;
	}

	.home-hero-slider .swiper-nav-btn {
		visibility: hidden;
	}

	.page-section {
		padding-top: 50px;
	}

	.page-header-title-sm {
		font-size: 12px;
	}

	.page-header-title {
		font-size: 18px;
	}

	.page-section-content {
		margin-top: var(--column-gutter);
	}

	.about-section-row {
		flex-wrap: wrap;
	}

	.about-section-icon {
		flex-basis: 100%;
		/* flex-grow: 0; */
		/* margin-bottom: 1rem; */
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: var(--column-gutter);
	}

	.services-grid-col {
		padding: 30px 20px;
	}

	.services-grid-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 10px;
	}

	.services-title {
		font-size: 16px;
	}

	.services-desc {
		font-size: 13px;
	}

	.services-grid-lg {
		grid-template-columns: 1fr;
		gap: var(--column-gutter);
	}

	.services-lg-title {
		font-size: 16px;
	}

	.services-grid-lg-desc {
		font-size: 13px;
	}

	.testimonialBox .testimonial {
		line-height: 1.5rem;
	}

	.page-appointment-cols {
		grid-template-columns: 1fr;
	}

	.page-appointment-img-col {
		display: none;
	}

	.page-appointment-form-col {
		padding: 40px;
		display: contents;
	}

	.appointment-steps li::before {
		margin-left: 2rem;
		display: flow;
	}

	.appointment-steps li {
		width: 33.33%;
		font-size: 0.7rem;
	}

	.appointment-steps {
		flex-wrap: nowrap;
		flex-direction: row;
	}

	.appointment-form-group-wide {
		margin-top: 1rem;
	}

	.page-appointment-form {
		margin-top: var(--column-gutter);
	}

	.appointment-form-action {
		font-size: 14px;
		padding: 12px 20px;
	}

	.appointment-form-grid {
		grid-template-columns: 1fr;
		gap: var(--column-gutter);
		display: contents;
	}

	.appointment-form-input {
		padding: 12px 15px;
		font-size: 13px;
	}

	.performance-cols {
		grid-template-columns: 1fr;
	}

	.performance-info-content {
		margin-top: var(--column-gutter);
	}

	.performance-info-charts {
		flex-direction: column;
		margin-top: 30px;
	}

	.performance-info-chart {
		height: auto;
		margin: 0;
		margin-bottom: 30px;
	}

	.performance-chart-canvas {
		height: 140px;
	}

	.performance-chart-label {
		margin-top: 10px;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: var(--column-gutter);
		margin-top: var(--column-gutter);
	}

	.team-card-front .team-info {
		padding: 15px 0;
	}

	.team-card-back .team-info {
		padding: 20px;
	}

	.team-name {
		font-size: 1rem;
		line-height: 1.3;
	}

	.team-desc {
		font-size: 0.9rem;
	}

	.video-bg-title {
		font-size: 20px;
	}

	.bg-section::before {
		padding-top: 45%;
	}

	.video-bg-icon {
		width: 40px;
		height: 40px;
		font-size: 14px;
		border-width: 2px;
	}

	.home-blog-wrapper {
		margin-top: var(--column-gutter);
	}

	.contact-section {
		grid-template-columns: 1fr;
		margin-top: 1rem;
	}

	.contact-form-row {
		display: block;
	}

	.contact-form-action {
		text-align: center;
	}

	.page-footer {
		padding: 2.5rem 1rem;
	}

	.footer-row {
		flex-wrap: wrap;
		gap: 40px;
	}

	.footer-col {
		width: 100%;
	}

	.copy-footer {
		padding: 15px 0;
		font-size: 13px;
	}

	.copy-footer-text img {
		height: 26px;
	}

	.slot-header .nav-item .nav-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.875rem;
		line-height: 1.075rem;
	}

	.slot-header .nav-item .nav-link .date {
		font-size: 0.65rem;
		line-height: 0.95rem;
	}
}

@media only screen and (max-width: 361px) {
	.slot-header .nav-item .nav-link {
		padding: 0.33rem;
	}

	.slotsDiv .btn {
		padding: 1rem 0.5rem;
	}

	.btn.booked-btn::after,
	.btn.holiday-btn::after {
		line-height: 1rem;
	}
}

/* #region blog page */

.content-page {
	background-color: #eaeaea;
	padding: 20px 0;
}

.blog-page .container {
	padding-left: 10px;
	padding-right: 10px;
}

.blog-page-row {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	padding: 1.5rem;
	gap: 40px;
}

.blog-page-body {
	background-color: #fff;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	width: 800px;
	flex: 1 1 auto;
}

.blog-header {
	padding: 20px 30px;
}

.blog-main-title {
	font-size: 1.5rem;
	font-weight: 400;
}

.blog-date {
	font-size: 0.9rem;
	margin-top: 1em;
	display: inline-block;
}

.blog-hero-img img {
	display: block;
	width: 100%;
}

.blog-content {
	padding: 10px 30px 30px;
	margin: 0;
}

.blog-related {
	width: 270px;
	flex: 1 1 auto;
}

.other-blogs-list {
	display: grid;
	gap: 0.7rem;
	margin-top: 1rem;
}

.other-blog-item {
	background-color: #fff;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	padding: 15px;
}

.other-blog-text {
	font-size: 0.8rem;
	font-weight: 500;
	color: #666;
}

.other-blog-title {
	color: #222;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 0.3rem;
	/* line clamp 2 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	text-decoration: none;
	color: inherit;
}

.other-blog-title:hover {
	text-decoration: underline;
}

@media print {
	.content-page {
		padding: 0;
		background-color: transparent;
	}

	.blog-page-body {
		padding: 0;
		box-shadow: none;
	}

	.blog-extra,
	.main-header,
	.footer-section,
	.page-footer,
	.copy-footer {
		display: none;
	}

	.blog-header,
	.blog-content {
		padding-inline: 0;
	}
}

/* #endregion blog page */

.services-grid-lg-col:hover {
	border: 1px solid #e7e7e7;
	border-radius: 10px;
}

@media only screen and (max-width: 768px) {
	.blog-content {
		padding: 1.5rem 2rem;
	}

	.page-banner {
		padding-block: 2rem;
	}

	.contact-form-group {
		margin-bottom: 1rem;
		padding: 0.5rem 1rem;
	}

	.contact-section {
		padding: 1.25rem;
	}

	.section-desc {
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
	
	.resp-only {
	    text-align:center;
	}

	.whyChoosegrid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.main-header {
		background: #011F4B;
	}

	.get-appointment-btn {
		border-color: var(--color-1);
		color: var(--color-1);
	}


	.main-header-nav>li:hover>a,
	.main-header-nav>li {
		color: #000;
	}


}