:root {
	--text-color: #000;
	/* --text-color-alt: #fcc438; */
	/* Override theme colors in includes/common-meta.php with admin config */
	--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;
	--container-width: 1400px;
	--container-sm-wdith: 1200px;
	--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%);
	--header-height: 80px;

	--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;
	--font-family: "Inter", sans-serif;
	--section-gap: 4rem;
	--background-shade: rgba(243, 245, 247, 0.3);
	--background-shade-2: rgb(243, 245, 247);
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
}

body {
	color: var(--text-color);
	font-family: var(--font-family);
	font-size: 16px;
	/* overflow-x: hidden; */
}

b {
	font-weight: bold;
}

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;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s;
	transition-property: color, background-color;
}

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-left: auto;
	margin-right: auto;
	padding-left: var(--column-gutter);
	padding-right: var(--column-gutter);
}

.container-sm {
	max-width: var(--container-sm-wdith);
}

.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 {
	display: none;
	/* background-color: var(--theme-primary);
	color: var(--theme-primary-text); */
	padding-top: 10px;
	padding-bottom: 10px;
}

.top-header-row {
	display: flex;
	align-items: center;
}

.top-header-brand {
	width: 500px;
	height: 80px;
	margin-right: 20px;
	display: flex;
}

.top-header-brand figure {
	padding: 0 20px;
	margin: 0;
	margin-left: 20px;
	position: relative;
}

.top-header-brand figure::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 55%;
	background-color: #ccc;
}

.top-header-brand img {
	width: 50%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.top-header-brand figure img {
	width: 100%;

}

.top-header-contact {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.top-header-contact-col+.top-header-contact-col {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid;
	border-color: var(--border-color);
}

.top-header-contact-col {
	display: flex;
	align-items: center;
}

.top-header-contact-icon {
	margin-right: 15px;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	place-content: center;
	/* background-color: var(--theme-secondary-light); */
	color: var(--theme-secondary);
	border-radius: 6px;
	font-size: 20px;
	overflow: hidden;
	position: relative;
}

.top-header-contact-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-secondary);
	opacity: 0.1;
	z-index: 0;
}

.top-header-contact-title {
	color: var(--theme-secondary);
	font-weight: 500;
	line-height: 1.6;
}

.top-header-contact-add {
	font-size: 16px;
	line-height: 1.5;
	max-width: 300px;
}

.main-header {
	background-color: transparent;
	color: var(--theme-primary-text);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	height: var(--header-height);
	transition: 0.3s ease-in-out;
}

.scroll-down .main-header {
	background-color: #fff;
}

.scroll-down .main-header-nav-link {
	color: rgb(31, 38, 46);
}

.main-header .container {
	height: 100%;
}

.main-header-row {
	display: flex;
	align-items: center;
	height: 100%;
}

.main-header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-right: 20px;
	/* margin-left: -1.5em; */
	flex: 1 1 auto;
}

.main-header-nav-link {
	display: block;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: #fff;
}

.main-header-cta {
	margin-left: auto;
}

.main-header-cta-btn {
	display: inline-block;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding: 0.25rem 0.75rem;
	background-color: rgb(24, 161, 180);
	color: var(--theme-secondary-text);
	border-radius: 5px;
	border: 1px solid rgb(24, 161, 180);
	transition: 0.3s;
	position: relative;
}

.main-header-cta-btn: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 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
	background-color: rgb(15, 101, 112);
	border-color: rgb(15, 101, 112);
	transform: translateY(-2px);
}

.header-social-icons {
	margin-top: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.header-social-icons .main-header-nav-link {
	margin-right: 0;
	padding: 5px 15px;
	height: 35px;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border-radius: 50px;
}

.main-header-nav-link.nav-active {
	color: var(--theme-secondary);
	font-weight: 500;
}

.main-header-nav li a {
	transition: 0.3s ease-in-out;
}

.main-header-nav li:hover a {
	color: var(--theme-secondary);
}

.header-social-link {
	padding: 10px 0;
	margin-left: 1rem;
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	font-size: 16px;
	border-radius: 50px;
}

.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;
}

.home-hero-section {
	overflow: hidden;
	height: 100dvh;
	max-height: 100%;
	padding-block: 0;
}

.home-hero-section .swiper,
.home-hero-section .swiper-wrapper,
.home-hero-section .swiper-slide {
	height: 100%;
}

.home-hero-section figure {
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.home-hero-section figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
	animation: zoom-in-out 10s ease-in-out infinite;
}

@keyframes zoom-in-out {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.hero-slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-section figure .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(135deg, rgba(15, 101, 112, 0.85), rgba(15, 101, 112, 0.6), rgba(218, 170, 47, 0.3));
	z-index: 1;
}

.hero-slide-body {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-items: center;
	z-index: 2;
}

.hero-slide-content {
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin-inline: auto;
	color: #fff;
}

.hero-slide-title {
	font-size: 4.5rem;
	line-height: 4.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.hero-slide-title span {
	color: var(--theme-primary);
}

.hero-slide-subtitle {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.banner-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.banner-actions a {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	border-radius: 0.5rem;
}

.book-btn,
.contact-btn {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	border-radius: 0.5rem;
	background-color: var(--theme-secondary);
	transition: 0.3s ease-in-out;
}

.contact-btn {
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	;
}

.book-btn:hover {
	background-color: rgb(15, 101, 112);
	transform: translateY(-4px);
}

.contact-btn:hover {
	backdrop-filter: 4px;
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.hero-slide-desc {
	max-width: 470px;
	margin-bottom: 1.5em;
	display: none;
}

.hero-slide-cta {
	display: inline-block;
	padding: 1em 1.5em;
	font-size: 10px;
	margin-top: 1em;
	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: var(--theme-secondary);
	transition: ease 0.25s;
	border-radius: 50%;
}

.home-hero-slider .swiper-nav-btn:hover {
	background-color: #fff;
	color: var(--theme-secondary);
	transform: rotateZ(360deg);
}

.page-section {
	overflow: hidden;
}

.page-section-bg-light {
	background-color: var(--light-bg);
}

.page-section-header {
	text-align: center;
	max-width: 678px;
	margin: 0 auto 4rem;
}

.page-header-title-sm {
	color: var(--theme-secondary);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 1.25rem;
	margin-bottom: 1.5rem;
	letter-spacing: 0.7px;
}

.page-header-title {
	color: #000;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 1.5rem;
	/* border-bottom: 1px solid #dadada; */
	letter-spacing: -1.2px;
}

.page-header-title span {
	color: var(--theme-secondary);
}

.page-header-title img {
	display: inline-block;
	vertical-align: middle;
	height: 1em;
}

.page-header-desc,
.about-desc {
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: rgb(103, 115, 126);
}

.page-header-text {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	margin-top: 1em;
}

.page-banner {
	--banner-bg-color: #d1d2d4;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: var(--theme-secondary);
	background-size: cover;
	background-position: center;
	position: relative;
}

.page-banner::before {
	/* content: ""; */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--banner-bg-color);
	background: linear-gradient(45deg, var(--banner-bg-color) 0%, transparent 100%);
	opacity: 0.75;
}

.page-banner[data-banner-type="bg"] {
	background-image: none !important;
}

.page-banner .container {
	position: relative;
	z-index: 5;
}

.page-banner-title {
	color: var(--text-color);
	/* text-align: center; */
	font-size: 2.5rem;
	font-weight: 600;
}

.page-banner-breadcrumbs {
	text-align: center;
	color: #fff;
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 500;
}

.page-banner[style]:not([style=""]) .page-banner-title {
	color: #fff;
	text-align: center;
}

.banner-content {
	max-width: 678px;
	width: 100%;
	margin-inline: auto;
	padding: 2rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	text-align: center;
}

#home-hero-slider .swiper-pagination {
	text-align: end;
	padding-right: 2rem;
}

#home-hero-slider .swiper-pagination .swiper-pagination-bullet {
	background-color: #fff;
	width: 2rem;
	border-radius: 0.25rem;
	height: 0.5rem;
}

.home-whyus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid #dadada;
	box-shadow: 5px 10px 10px 0.1px rgba(180, 217, 231, 0.2);
	padding: 2rem;
	border-radius: 10px;
	position: relative;
	transition: 0.3s ease-in-out;
	overflow: hidden;
}

.service-card .line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	background: linear-gradient(to right, rgb(24, 161, 180), rgb(218, 170, 47));
	height: 4px;
	transition: 0.3s ease-in-out;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: rgba(31, 38, 46, 0.1) 0px 20px 25px -5px, rgba(31, 38, 46, 0.1) 0px 8px 10px -6px;
}

.service-card:hover .icon {
	background-color: var(--theme-secondary);
	color: #fff;
	transition: 0.3s ease-in-out;
}

.service-card:hover .line {
	opacity: 1;
}

.service-card .learn-more {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--theme-secondary);
}

.service-card .learn-more i {
	margin-left: 0.25rem;
	transition: 0.3s ease-in-out;
}

.book-appointment-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border: 2px solid var(--theme-secondary);
	border-radius: 6px;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.book-appointment-btn i {
	margin-right: 0.5rem;
}

.service-card:hover .learn-more i {
	margin-left: 0.5rem;
}

.service-card .flex {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.service-card figure {
	width: 40px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
}

.whyus-title {
	font-size: 2.5rem;
	color: var(--theme-secondary);
	margin-bottom: 15px;
}

.service-card .icon {
	max-width: 3.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: rgba(24, 161, 180, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-secondary);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.service-card .icon-heading {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: rgb(31, 38, 46);
	margin-bottom: 0.75rem;
}

.service-card .icon-text {
	color: rgb(103, 115, 126);
	font-size: 1rem;
	line-height: 1.625rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	min-height: 2lh;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: hidden;
	margin-bottom: 1.5rem;
}

.service-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-section-row {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}

.about-point-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.about-point-list .pointCard {
	border: 1px solid rgba(224, 230, 235, 0.5);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
	padding: 1.5rem;
	border-radius: 0.5rem;
	transition: 0.3s ease-in-out;
}

.about-point-list .pointCard:hover {
	box-shadow: rgba(31, 38, 46, 0.1) 0px 20px 25px -5px, rgba(31, 38, 46, 0.1) 0px 8px 10px -6px;
	transform: translateY(-4px);
}

.about-point-list .pointCard .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: rgba(24, 161, 180, 0.1);
	color: var(--theme-secondary);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	transition: 0.3s ease-in-out;
}

.about-point-list .pointCard:hover .icon {
	background-color: var(--theme-secondary);
	color: #fff;
}

.about-point-list .pointCard .icon i {
	font-size: 1.5rem;
}

.about-point-list .pointCard .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.about-point-list .pointCard .description {
	color: rgb(103, 115, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.about-section-row .page-header-title {
	margin-bottom: 1rem;
	font-size: 3rem;
	line-height: 3.5rem;
}

.about-section-icon {
	flex-basis: 50%;
}

.about-section-icon figure {
	max-width: 100%;
	width: 100%;
	margin-left: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.about-section-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-section-text {
	line-height: 1.5;
	flex-basis: 50%;
	width: auto;
}

.about-section-text p {
	font-size: 1.25rem;
	color: #666;
}


.about-desc p {
	font-size: 1.2rem;
	line-height: 1.6rem;
	margin-bottom: 1em;
}

.about-points {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 1.5rem;
}

.about-points .point {
	width: 100%;
	flex-basis: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-points .point span {
	font-size: 1.2rem;
	font-weight: 400;
	color: #666;
}

.about-points .point:last-child {
	margin-bottom: 2rem;
}

.about-points .point figure {
	width: 40px;
	aspect-ratio: 1 / 1;
}

.about-points .point figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.cta-btn {
	display: inline-block;
	padding: 0.7em 1.5em;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border: 2px solid var(--theme-secondary);
	border-radius: 6px;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.cta-btn::after {
	content: '';
	width: 0;
	height: 0;
	background-color: #fff;
	position: absolute;
	transition: 0.3s;
	left: 50%;
	bottom: 10px;
	transform: translate(-50%)
}

.cta-btn:hover::after {
	width: 80%;
	height: 1px;
}

.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(3, 1fr);
	gap: 30px;
}

.services-grid-lg-col {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}

.services-grid-lg-img {
	position: relative;
	overflow: hidden;
}

.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;
	transition: 0.3s ease-in-out;
}

.services-grid-lg-col:hover img {
	transform: scale(1.1);
}

.services-grid-lg-content {
	background-color: var(--theme-secondary);
	padding: 20px;
	height: -webkit-fill-available;
}

.services-lg-title {
	color: #fff;
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 500;
	/* min-height: 2lh;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden; */
}

.services-grid-lg-hover-content {
	height: 0;
	overflow: hidden;
	transition: ease 0.25s height;
}

.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 {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--theme-secondary);
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.services-grid-lg-link:hover {
	color: var(--theme-primary);
}

.services-extras {
	text-align: center;
	margin-top: 2rem;
}

.services-more-link {
	display: inline-block;
	padding: 0.7em 1.5em;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	border: 2px solid var(--theme-secondary);
	border-radius: 6px;
	font-weight: 500;
}

.services-more-link:hover {
	background-color: var(--theme-secondary-text);
	color: var(--theme-secondary);
}

.serviceCard {
	border-radius: 0.5rem;
	overflow: hidden;
	display: block;
	height: 100%;
}

.serviceCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1.15;
	overflow: hidden;
}

.serviceCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.serviceCard:hover figure img {
	transform: scale(1.1);
}

.serviceCard article {
	background-color: var(--theme-secondary);
	padding: 1.25rem;
	height: -webkit-fill-available;
}

.serviceCard article .title {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: #fff;
	transition: 0.3s ease-in-out;
}

.serviceCard:hover article .title {
	color: var(--theme-primary);
}

.service-main-content * {
	all: revert;
}


.why-choose-us {
	background-color: var(--theme-secondary);
	position: relative;
	padding-block: 8rem;
}

.why-choose-us::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 2px 2px, rgb(31, 38, 46) 1px, rgba(0, 0, 0, 0) 0px);
	background-size: 40px 40px;
	z-index: 0;
	opacity: 0.05;
}

.why-choose-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(576px, 1fr));
	align-items: center;
	gap: 3rem;
	position: relative;
}

.why-us-points {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

.why-us-points .point {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.why-us-points .point i {
	color: var(--theme-primary);
	margin-top: 0.25rem;
}

.why-choose-us-grid .page-section-header {
	text-align: start;
}

.why-choose-us .page-section-header .page-header-title-sm {
	color: var(--theme-primary);
}

.why-choose-us .page-section-header .page-header-title {
	color: #fff;
}

.why-choose-us .page-section-header .page-header-desc {
	color: rgba(255, 255, 255, 0.8);
}

.galleryCard {
	display: block;
	border-radius: 0.75rem;
	overflow: hidden;
	position: relative;
}

.galleryCard .default {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to right bottom, rgba(24, 161, 180, 0.2), rgb(243, 245, 247), rgba(218, 170, 47, 0.2));
	z-index: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
}

.galleryCard .default i {
	font-size: 2rem;
	line-height: 1;
	color: var(--theme-secondary);
}

.view-gallery-btn {
	display: block;
	margin: auto;
	text-align: center;
	margin-top: 4rem;
	max-width: max-content;
	border-radius: 0.375rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	background-color: #fff;
	border: 1px solid rgb(224, 230, 235);
	transition: 0.3s ease-in-out;
}

.blog-swiper,
.swiper-slide {
	height: auto;
}

.blog-swiper .swiper-slide {
	padding: 1rem 0;
	overflow-y: visible;
}

.blogCard {
	display: block;
	border-radius: 1rem;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	border: 1px solid rgba(224, 230, 235, 0.5);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
	height: 100%;
}

.blogCard:hover {
	transform: translateY(-2px);
}

.blogCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	background-image: linear-gradient(to right bottom, rgba(24, 161, 180, 0.1), rgb(243, 245, 247), rgba(218, 170, 47, 0.1));
}

.blogCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.blogCard:hover figure img {
	transform: scale(1.05);
}

.blogCard article {
	padding: 1.5rem;
}

.blogCard article .tag {
	display: inline-block;
	border-radius: 5rem;
	padding: 0.25rem 0.75rem;
	background-color: rgba(24, 161, 180, 0.1);
	color: var(--theme-secondary);
	font-size: 0.75rem;
	line-height: 1rem;
	margin-bottom: 1rem;
}

.blogCard article .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 1rem;
	min-height: 2lh;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.blogCard article .description {
	color: rgb(103, 115, 126);
	margin-bottom: 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.blogCard article .blogFooter {
	border-top: 1px solid rgb(224, 230, 235);
	padding-top: 1rem;
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.blogCard article .blogFooter .date,
.blogCard article .blogFooter .author {
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgb(103, 115, 126);
}

.blogCard article .blogFooter .date i,
.blogCard article .blogFooter .author i {
	margin-right: 0.35rem;
}

.view-gallery-btn:hover {
	background-color: rgb(243, 245, 247);
}

.view-gallery-btn i {
	margin-left: 0.25rem;
}

.galleryCard figure {
	position: relative;
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.galleryCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.galleryCard figure .hover-content {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, rgba(31, 38, 46, 0.8), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 1rem;
	transition: 0.3s ease-in-out;
}

.galleryCard:hover figure .hover-content {
	bottom: 0;
}

.galleryCard figure .hover-content .title {
	color: #fff;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
}

.checkupBox {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	border-radius: 0.5rem;
}

.checkupBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.checkupBox:hover img {
	transform: scale(1.08);
}

.checkupBox figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 0.75rem;
	color: #000;
	background-color: var(--theme-primary);
	text-align: center;
}

.appointment-alert-message {
	padding: 1rem 3rem;
	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: 1.75em;
	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-container {
	max-width: 550px;
	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);
	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-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-doctors-swiper {}

.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: 100px;
	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(--theme-secondary);
	color: var(--theme-secondary-text);
	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;
}

.appointment-doctor-name b {
	font-weight: 500;
}

.appointment-doctor-desc {
	font-size: 1rem;
}

.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(100px, 1fr));
}

.doctors-schedule-list .appointment-group-head {
	grid-column: 1 / -1;
	padding: 0;
	padding-bottom: 0.5rem;
}

.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;
}

.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-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 30px;
	margin-top: 40px;
	/* margin-bottom: 40px; */
}

.teamCard {
	overflow: hidden;
	border: 1px solid rgba(224, 230, 235, 0.5);
	background-color: #fff;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
	transition: 0.3s ease-in-out;
}

.teamCard:hover {
	/* box-shadow: rgba(31, 38, 46, 0.1) 0px 20px 25px -5px, rgba(31, 38, 46, 0.1) 0px 8px 10px -6px; */
	transform: translateY(-4px);
}

.teamCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	/* background-image: linear-gradient(to right bottom, rgba(24, 161, 180, 0.1), rgb(243, 245, 247), rgba(218, 170, 47, 0.1)); */
	position: relative;
}

.teamCard figure .bg-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 4rem;
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	z-index: 0;
	background-color: rgba(24, 161, 180, 0.2);
	border-radius: 50%;
	font-size: 1.5rem;
	padding: 0.5rem;
	color: var(--theme-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.teamCard figure img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: 0.3s ease-in-out;
	z-index: 1;
}

.teamCard article {
	padding: 1.5rem;
	text-align: center;
}

.teamCard article .name {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.75rem;
	color: rgb(31, 38, 46);
}

.teamCard article .designation {
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--theme-secondary);
	font-weight: 500;
}

.teamCard article .description {
	font-size: 1rem;
	line-height: 1.5rem;
	color: rgb(103, 115, 126);
	font-weight: 400;
}

.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);
}

.home-blog-wrapper {
	margin-top: 40px;
	position: relative;
}

.blog-slide-img {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	display: block;
}

.blog-slide-img::before {
	content: "";
	padding-top: 65%;
	display: block;
}

.blog-slide-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: ease 0.4s transform;
}

.blog-slide:hover .blog-slide-img img {
	transform: scale(1.07);
}

.blog-slide-content {
	margin-top: 20px;
}

.blog-slide-title {
	color: var(--theme-secondary);
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 10px;
}

.blog-slide-meta {
	text-transform: uppercase;
	color: var(--theme-secondary);
	font-size: 14px;
	margin-bottom: 10px;
}

.blog-slide-content-sample {
	font-size: 14px;
}

.blog-slide-link {
	display: inline-block;
	margin-top: 10px;
}

.home-blog-wrapper .swiper-nav-btn {
	opacity: 0;
	transition: ease 0.3s;
	transition-property: opacity, color;
	z-index: 1;
	color: var(--theme-primary);
	--swiper-navigation-size: 30px;
	font-weight: 800;
}

.testimonials-swiper {
	padding-bottom: 1rem;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	max-width: 3rem;
	width: 100%;
	overflow: hidden;
	border: 1px solid;
	padding: 1rem;
	background-color: rgba(25, 32, 44, 0.8);
	color: #fff;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
	background-color: rgba(25, 32, 44, 0.9);
}

.testimonials-swiper .swiper-button-prev::after {
	content: "\f053";
	font: 900 1rem "Font Awesome 6 Free";
}

.testimonials-swiper .swiper-button-next::after {
	content: "\f054";
	font: 900 1rem "Font Awesome 6 Free";
}

.home-blog-wrapper .swiper-button-prev {
	left: -40px;
}

.home-blog-wrapper .swiper-button-next {
	right: -40px;
}

.home-blog-wrapper:hover .swiper-nav-btn:not(.swiper-button-disabled) {
	opacity: 1;
}

.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;
}

.testimonials-swiper,
.testimonials-swiper .swiper-slide {
	height: auto;
}


.testimonialCard {
	background-color: #fff;
	border: 1px solid rgb(218, 218, 218);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	height: 100%;
	position: relative;
	padding: 1.5rem;
	border-radius: 1rem;
	box-sizing: border-box;
}

.testimonialCard figure {
	max-width: 40px;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	left: 1.5rem;
	top: 1.5rem;
	position: absolute;
}

.testimonialCard .testimonial {
	padding-top: 3rem;
	font-size: 1rem;
	line-height: 1.5rem;
	color: rgb(103, 115, 126);
}

.testimonialCard .author-info .name {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
}

.testimonialCard .author-info .designation {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--theme-secondary);
}

.testimonials-swiper {
	margin-top: 2rem;
}

.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;
}

.testimonial-content::before {
	font-size: 6rem;
	top: 0;
	line-height: 1;
	opacity: 0.5;
	content: "\201C";
	color: var(--theme-secondary);
	position: absolute;
	font-family: "Times New Roman", serif;
}

.testimonial-content::after {
	content: none;
}

.testimonial-author {
	font-size: 1.2rem;
	font-weight: 600;
}

.testimonial-designation {
	line-height: 1.6;
	font-size: 0.8rem;
	color: var(--theme-secondary);
}

section {
	background: #fff;
	padding-block: var(--section-gap);
}

.background-shade {
	background: var(--background-shade);
}

.background-shade-2 {
	background: var(--background-shade-2);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.contact-grid header.page-section-header {
	text-align: start;
}

.contactPoints {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 3rem;
}

.contactPoints .point {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contactPoints .point .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	background-color: rgba(24, 161, 180, 0.1);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--theme-secondary);
}

.contactPoints .point .content .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: rgb(31, 38, 46);
}

.contactPoints .point .content .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(103, 115, 126);
}

.contact-section {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: flex-start;
}

.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;
	max-width: 85%;
}

.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 {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 10px 15px -3px, rgba(31, 38, 46, 0.1) 0px 4px 6px -4px;
	border: 1px solid rgba(224, 230, 235, 0.5);
	color: rgb(31, 38, 46);
	padding: 2rem;
	border-radius: 1rem;
}

.contact-form-card {}

.contact-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.contact-form-col {
	flex: 1 1 100%;
}

.contact-form-group {
	margin-bottom: 0.7rem;
	padding: 0.5rem;
	border: 1px solid rgb(224, 230, 235);
	border-radius: 6px;
	position: relative;
}

.contact-form-group span.icon {
	position: absolute;
	left: 0.75rem;
	top: 0.75rem;
	color: rgb(103, 115, 126);
}

.contact-form-group>input,
.contact-form-group>textarea {
	padding-left: 2rem;
}

.contact-form-group>input::placeholder,
.contact-form-group>textarea::placeholder {
	color: rgb(103, 115, 126);
}

.contact-form-group label.error {
	font-size: 0.75rem;
	line-height: 1;
	padding-left: 2rem;
}

.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;
}

.map-frame {
	padding: 0;
}

.map-frame iframe {
	width: 100%;
	height: 250px;
	display: block;
}

.about-section {
	background-image: linear-gradient(rgb(255, 255, 255), rgb(249, 250, 250));
}

.contact-form-control:focus {
	/* box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%); */
}

.contact-form-action {
	text-align: center;
}

.contact-form-action small {
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgb(103, 115, 126);
	margin-top: 1rem;
	display: inline-block;
}

.contact-form-action button {
	width: 100%;
	display: inline-block;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0.45rem 0.75rem;
	background-color: rgb(24, 161, 180);
	color: var(--theme-secondary-text);
	border-radius: 5px;
	border: 1px solid rgb(24, 161, 180);
	transition: 0.3s;
	position: relative;
}

.contact-form-button {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-text);
	font-weight: 600;
	font-size: 1rem;
	display: inline-block;
	padding: 0.2rem 1.5rem;
	border-radius: 4px;
	line-height: 2;
}

.contact-form-button:hover {
	/* background-color: var(--color-green-d); */
}

.page-footer {
	background-color: var(--theme-secondary);
	color: #fff;
	padding-top: 100px;
	padding-bottom: 100px;
}

.footer-row {
	display: flex;
	gap: 100px;
}

.footer-col {
	flex: 1 1 100%;
}

.footer-about-col {
	flex-basis: 200%;
}

.footer-about-brand {
	width: 160px;
	margin-bottom: 20px;
}

.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-link {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--theme-secondary-text);
	font-size: 16px;
	border-radius: 0.5rem;
}

.footer-social-link:hover {
	background-color: var(--theme-primary);
}

.footer-col-title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	margin-bottom: 0.75rem;
	position: relative;
	font-weight: 600;
}

.footer-col-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-col-links.special-case li a {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-col-links.special-case li a i {
	margin-top: 0.4rem;
	width: 0.75rem;
	flex-basis: 0.75rem;
	color: var(--theme-primary);
}

.footer-col-links .footer-link {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.footer-link {
	line-height: 2.4;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	transition: 0.1s ease-in-out;
}

.footer-link:hover {
	color: var(--theme-primary);
}

.copy-footer {
	background-color: #0F6570;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copy-footer>.container {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.copy-footer-text {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgba(255, 255, 255, 0.6);
}

.copy-footer-text.middle-one {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.copy-footer-text.middle-one a:hover {
	color: #fff;
}

.steed-text {
	color: #fff;
	text-transform: uppercase;
	text-decoration: underline;
	font-style: italic;
	font-weight: 500;
}

.copy-footer-text img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

/* Blog */

.blog-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.blog-main {
	position: relative;
	width: calc(70% - 15px);
}

.blog-extra {
	width: calc(30% - 15px);
}

.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;
}

.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-caption {
	font-weight: 500;
	text-align: center;
	font-size: 18px;
}

.albumCard {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
	border: 1px solid rgba(224, 230, 235, 0.5);
	transition: 0.3s ease-in-out;
}

.albumCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.33 / 1;
	overflow: hidden;
	position: relative;
	background-image: linear-gradient(to right bottom, rgba(24, 161, 180, 0.1), rgb(243, 245, 247), rgba(218, 170, 47, 0.1));
}

.albumCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.albumCard figure figcaption {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	background-color: var(--theme-secondary);
	color: #fff;
	padding: 0.25rem 0.75rem;
	border-radius: 5rem;
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 500;
}

.albumCard article {
	padding: 1.25rem;
}

.albumCard article .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: rgb(31, 38, 46);
	text-transform: capitalize;
	transition: 0.3s ease-in-out;
}

.albumCard:hover {
	box-shadow: rgba(31, 38, 46, 0.1) 0px 20px 25px -5px, rgba(31, 38, 46, 0.1) 0px 8px 10px -6px;
	transform: translateY(-2px);
}

.albumCard:hover .title {
	color: var(--theme-secondary);
}

.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-image .sl-caption {
	text-align: center;
}

.sl-wrapper .sl-image {
	position: relative;
	transform: translateX(0);
}


.services-body .blog-title {
	color: var(--theme-secondary);
}

.login-page {
	padding-top: 50px;
	padding-bottom: 50px;
}

.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;
}

.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;
}

.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;
}

.account-content .page-header-title {
	margin-bottom: 1em;
}

.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;
}

.home-gallery-swiper figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}

.home-gallery-swiper figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.home-gallery-swiper figure:hover img {
	transform: scale(1.1);
}

.mobile-banner {
	display: none;
}

.wide-hide {
	display: none;
}

.facilityGrid {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.facilityGrid .page-section-header {
	margin-bottom: 0;
}

.facilityGrid header.page-section-header {
	text-align: start;
}

.facilityGrid>article {
	background-image: linear-gradient(to right bottom, rgba(24, 161, 180, 0.2), rgba(218, 170, 47, 0.1), rgba(24, 161, 180, 0.05));
	place-content: center;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	position: relative;
	overflow: hidden;
	padding: 1rem;
}

.facilityGrid>article figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 1rem;
}

.facilityGrid>article figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.facilityGrid>article figure:hover img {
	transform: scale(1.05);
}

.facilityGrid>article .numbers {
	max-width: 24rem;
	margin-inline: auto;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.facilityGrid>article .numbers .number-box {
	background-color: #fff;
	border-radius: 0.75rem;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(31, 38, 46, 0.1) 0px 4px 6px -1px, rgba(31, 38, 46, 0.1) 0px 2px 4px -2px;
}

.facilityGrid>article .numbers .number-box .number-title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
	color: var(--theme-secondary);
}

.facilityGrid>article .numbers .number-box .number-desc {
	color: rgb(103, 115, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.blur-circle {
	max-width: 8rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	filter: blur(40px);
}

.circle-1 {
	position: absolute;
	left: -1rem;
	bottom: -1rem;
	background-color: rgba(24, 161, 180, 0.2);
}

.circle-2 {
	max-width: 6rem;
	position: absolute;
	right: -1rem;
	top: -1rem;
	background-color: rgba(218, 170, 47, 0.2);
}

.star-infra-points {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.star-infra-points .point {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.star-infra-points .point .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	background-color: rgba(24, 161, 180, 0.1);
	color: rgb(24, 161, 180);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.star-infra-points .point .info .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: rgb(31, 38, 46);
	margin-bottom: 0.25rem;
}

.star-infra-points .point .info .description {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(103, 115, 126);
}

.numbers {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
	flex-wrap: wrap;
}

.number-box {
	flex-basis: calc(25% - 1rem);
	max-width: 100%;
	text-align: center;
}

.number-box figure {
	max-width: 90px;
	margin: auto;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--theme-primary);
	border-radius: 50%;
	padding: 1rem;
}

.number-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.number-box article .number-title {
	padding: 0 1rem;
	font-size: 2.5rem;
	line-height: 2.8rem;
	font-weight: 300;
	margin-top: 1rem;
	color: var(--theme-secondary);
	height: 50px;
	position: relative;
	overflow: hidden;
}

.number-box article .number-inner {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.number-box article .number-desc {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 300;
}

.vis-mis {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.vis-mis-box {
	flex-basis: calc(50% - 1rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.vis-mis-box figure {
	width: 100%;
	max-width: 400px;
	margin: auto;
	border-radius: 2.5rem;
	aspect-ratio: 1 / 1.2;
	overflow: hidden;
}

.vis-mis-box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
	overflow: hidden;
}

.vis-mis-box figure:hover img {
	transform: scale(1.1);
}

.vis-mis-box article {
	padding: 1rem;
	max-width: 550px;
	margin: auto;
	text-align: center;
}

.vis-mis-box article .title {
	font-size: 2rem;
	line-height: 2.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.vis-mis-box article .description {
	font-size: 1.1rem;
	line-height: 1.6rem;
	color: #666;
}

.section-gap {
	padding: 4rem 0;
}

.main-header-brand {
	max-width: 12rem;
	width: 100%;
	overflow: hidden;
	height: var(--header-height);
	padding-block: 1rem;
	position: relative;
}

.main-header-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.bg-ds {
	position: absolute;
	max-width: 10rem;
	max-height: 10rem;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.5;
	z-index: 0;
	background-image: url('../images/shape.png');
	background-size: contain;
	background-repeat: no-repeat;
	display: none;
}

.bg-ds.shape-1 {
	left: 2rem;
	top: 4rem;
	transform: rotateY(180deg);
}

.bg-ds.shape-2 {
	right: 2rem;
	top: 4rem;
}

.lb-outerContainer {
	border-radius: 12px;
	background: #000;
}

.lb-image {
	border-radius: 12px;
}

.lb-container {
	background-color: #0a0a0a;
}

.lb-caption {
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
	opacity: 0.8;
}

.lb-nav a:hover {
	opacity: 1;
}

@media (min-width: 769px) {
	.resp-menu-wrapper {
		display: none;
	}

	.main-header-resp-cta {
		display: none;
	}

	.resp-menu-extras {
		display: none;
	}

	.page-header-left {
		text-align: left;
	}

	.performance-info-content {
		max-width: 600px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	:root {
		--column-gutter: 15px;
		--header-height: 75px;
		--section-gap: 2rem;
	}

	.home-whyus-grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}

	.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);
		/* color: var(--text-color); */
	}

	.main-header .container {
		height: 100%;
	}

	.main-header-brand {
		height: 100%;
		padding: 7px 0;
		margin-right: auto;
	}

	.resp-menu-toggle {
		padding: 5px;
		display: block;
		font-size: 22px;
		color: var(--theme-secondary);
	}

	.main-header-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		max-width: 500px;
		height: calc(100vh - var(--header-height));
		z-index: 10;
		background-color: #fff;
		color: #333;
		flex-direction: column;
		align-items: stretch;
		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%);
	}

	.main-header-nav-link {
		padding: 10px 0;
		margin: 0;
		display: inline-block;
		color: #000;
	}

	.header-social-icons .main-header-nav-link {
		margin-right: 0.5rem;
	}

	.resp-menu-extras {
		margin-top: 1em;
	}

	.resp-menu-extras .steed-text {
		color: #000;
	}

	.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;
	}

	.header-social-link {
		margin-left: 0;
		margin-right: 0.5rem;
	}

	.menu-active {
		overflow: hidden;
	}

	.menu-active .top-header {
		height: 0;
		padding: 0;
	}

	.menu-active .main-header-nav {
		transform: translateX(0);
		justify-content: flex-start;
		gap: 0;
		max-height: calc(100dvh - var(--header-height));
		overflow: auto;
	}

	.main-header-cta-btn {
		padding: 0.7em 1em;
		margin: 8px 0;
		line-height: 1.7;
		font-size: 13px;
	}

	.hero-slide-img {
		aspect-ratio: 3 / 4;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.hero-slide-img::before {
		padding-top: 0;
	}

	.services-extras {
		margin-top: 1.5rem;
	}

	.blog-main-content b {
		font-weight: 600;
	}

	.page-banner {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.page-banner-title {
		font-size: 1.75rem;
		line-height: 2rem;
	}

	.blog-main-img {
		width: 100%;
		max-width: 100%;
		min-width: unset;
		aspect-ratio: 1.33 / 1;
		overflow: hidden;
	}

	.blog-main-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.hero-slide-img img,
	.hero-slide-body {
		position: static;
	}

	.banner-content {
		padding: 0;
	}

	.hero-slide-body {
		background-color: #3cb2d28f;
	}

	.banner-content {
		background-color: transparent;
	}

	.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: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.page-header-desc,
	.about-desc p {
		font-size: 1rem;
		line-height: 1.25rem;
	}

	.page-header-title {
		font-size: 1.55rem;
		line-height: 2rem;
		margin-bottom: 1rem;
	}

	.page-section-header {
		max-width: 100%;
		margin: 0 auto 2rem;
	}

	.about-points .point figure {
		width: 30px;
	}

	.about-points .point span {
		font-size: 1.1rem;
		line-height: 1.4rem;
	}

	.testimonials-swiper .swiper-button-prev,
	.testimonials-swiper .swiper-button-next {
		display: none;
	}

	.service-card {
		padding: 1.5rem;
	}

	.about-section-row {
		flex-direction: column;
		gap: 1rem;
	}

	.about-section-icon {
		flex-basis: 100px;
		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;
	}

	.page-appointment-cols {
		grid-template-columns: 1fr;
	}

	.page-appointment-img-col {
		display: none;
	}

	.page-appointment-form-col {
		padding: 40px;
	}

	.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);
	}

	.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-info {
		padding: 15px;
	}

	.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;
	}

	.contact-form-row {
		display: block;
	}

	.contact-form-action {
		text-align: center;
	}

	.contact-form-button {
		font-size: 1.2rem;
		padding: 0.3rem 1.5rem;
	}

	.page-footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-section-row .page-header-title {
		font-size: 1.7rem;
		line-height: 2rem;
	}

	.footer-row {
		flex-wrap: wrap;
		gap: 40px;
	}

	.footer-col {
		width: 100%;
	}

	.copy-footer {
		padding: 15px 0;
		font-size: 13px;
		display: none;
	}

	.copy-footer-text img {
		height: 26px;
	}

	.web-banner {
		display: none;
	}

	.mobile-banner {
		display: block;
	}

	.service-card .icon-heading {
		margin-bottom: 0.5rem;
	}

	.service-card .icon-text {
		line-height: 1.5rem;
	}

	#contact .page-header-title {
		font-size: 1.2rem;
		line-height: 1.5rem;
	}

	.mobile-hide {
		display: none;
	}

	.number-box {
		flex-basis: calc(50% - 1rem);
	}

	.section-gap {
		padding: 2rem 0;
	}

	.vis-mis-box {
		flex-basis: 100%;
	}

	.facilityGrid>article .numbers,
	.about-section-row,
	.why-choose-us-grid,
	.facilityGrid,
	.contact-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.banner-content {
		max-width: calc(100% - 2rem);
		top: calc(50% + 3rem);
		left: 1rem;
		transform: translate(0, -50%);
		max-height: max-content;
		min-height: fit-content;
		height: 100%;
	}

	.facilityGrid>article {
		aspect-ratio: unset;
	}

	.hero-slide-title {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.hero-slide-subtitle {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.banner-actions a {
		font-size: 0.875rem;
		padding: 0.25rem 0.75rem;
	}

	.facilityGrid>article .numbers {
		max-width: 100%;
		gap: 1rem;
	}

	.why-choose-us {
		padding-block: 4rem;
	}

	.contact-grid,
	.why-choose-us-grid {
		gap: 0rem;
	}

	.view-gallery-btn {
		margin-top: 2rem;
	}

	.lb-nav a.lb-prev,
	.lb-nav a.lb-next {
		opacity: 0.75;
	}

	.contact-section {
		margin-top: 0;
	}

	.copy-footer>.container {
		justify-content: center;
	}

	.contact-form-column {
		padding: 1rem;
	}

	.blog-main,
	.blog-extra {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.numbers {
		gap: 2rem;
	}

	.number-box {
		flex-basis: calc(100% - 2rem);
	}
}