@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&family=Sora:wght@100..800&display=swap");

:root {
	--primary-color: #1e1e1e;
	--secondary-color: #eaeef1;
	--text-color: #828283;
	--accent-color: #f08100;
	--accent-secondary-color: #570499;
	--white-color: #ffffff;
	--divider-color: #f1f1f1;
	--dark-divider-color: #ffffff1a;
	--error-color: rgb(230, 87, 87);
	--default-font: "Hanken Grotesk", sans-serif;
	--accent-font: "Sora", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--white-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: #fff;
	background-color: var(--accent-secondary-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	font-family: var(--default-fontF);
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50px;
	padding: 15px 15px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::after,
.btn-default::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-secondary-color);
	transform: skew(15deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default::before {
	left: -10px;
}

.btn-default::after {
	right: -10px;
}

.btn-default:hover::after,
.btn-default:hover::before {
	width: 60%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted::after,
.btn-default.btn-highlighted::before {
	background: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-2px, -50%);
	background: url("../images/arrow-accent.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 14px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after {
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.primary-color {
	color: var(--accent-color);
}

.bg-section {
	width: 100%;
	background-color: var(--secondary-color);
	/* border-radius: 50px; */
}

.bg-section.dark-section {
	position: relative;
	/* background: url(../images/banner-bg-img.png) no-repeat center center; */
	background-size: cover;
	background: #ffffff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	box-shadow: 0 20px 30px rgb(0 0 0 / 2%);
}

.bg-section.dark-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.bg-section.dark-section .container {
	position: relative;
	z-index: 1;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	background: url("../images/icon-sub-heading.svg") no-repeat;
	background-position: left top;
	background-size: 22px auto;
	display: inline-block;
	padding-left: 30px;
	margin-bottom: 10px;
}

.section-title h1 {
	font-size: 45px;
	font-weight: 700;
	line-height: 150%;
	margin-bottom: 0;
	cursor: none;
}

.highlight {
	color: var(--accent-color);
}

.section-title h2 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	color: #313131;
	margin-bottom: 0;
}

.bg-section.dark-section .section-title-content p,
.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
	color: #000000;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	border-bottom: 1px solid var(--dark-divider-color);
	background: transparent;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

.main-header.bg-section {
	border-radius: 0;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--accent-secondary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 25px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: end;
	margin: 0 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 15px 15px;
	color: var(--white-color);
	text-transform: capitalize;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: "\f107";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 200px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--white-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: "\f105";
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
	background: var(--accent-secondary-color);
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
	display: flex;
	align-items: center;
	gap: 25px;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 2px;
	width: 18px;
	background-color: #ffffff;
	border-radius: 4px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-48deg) translate(-5px, 4px);
	background-color: #ffffff;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(48deg) translate(-4px, -4px);
	background-color: #ffffff;
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: "\f107";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: #000000;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	padding: 155px 0 0;
}

.hero.hero-bg-image {
	background: url("../images/hero-bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 285px 0 180px;
	overflow: hidden;
}

.hero.hero-bg-image.bg-section.dark-section::before {
	background: var(--primary-color);
	opacity: 70%;
	border-radius: 0;
	z-index: 1;
}

.hero.hero-bg-image::after {
	display: none;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	background: url("../images/hero-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 285px 0 180px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide.slide-2 {
	background: url("../images/hero-bg-2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero.hero-bg-image .hero-content .section-title p {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	margin-top: 10px;
}

.hero-content-body {
	display: flex;
	align-items: center;
	gap: 20px 30px;
}

.hero.hero-bg-image .hero-content .hero-content-body {
	justify-content: center;
}

.contact-now-box {
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.contact-now-box .icon-box {
	position: relative;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box {
	background-color: var(--accent-color);
}

.contact-now-box .icon-box img {
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content p {
	color: #000000;
	margin-bottom: 5px;
}

.contact-now-box-content h3,
.contact-now-box-content .responsive-mobile {
	font-size: 18px;
	color: #000000;
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--accent-color);
}

.hero-content-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.trusted-client-images {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.client-image {
	position: relative;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-left: -10px;
	width: 40px;
	height: 40px;
	overflow: hidden;
	z-index: 1;
}

.client-image:first-child {
	margin: 0;
}

.client-image figure {
	display: block;
}

.client-image img {
	width: 100%;
	border-radius: 50%;
}

.client-image.add-more {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.client-image.add-more h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
}

.trusted-client-review p {
	color: var(--white-color);
	margin-bottom: 0;
}

.trusted-client-review p i {
	color: var(--accent-color);
	margin: 0 6px;
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	overflow: visible;
}

.doctor-img-wrapper {
	position: relative;
	display: inline-block;
}

.doctor-img {
	position: relative;
	z-index: 1;
}

/* .doctor-img-bg-shadow {
	position: absolute;
	top: 0px;
	left: 60px;
	z-index: 0;
} */

/* .doctor-img-bg-shadow .shadow-container {
	display: block;
	width: 200px;
	height: 200px;
	background: #9747ff;
	border-radius: 50%;
	filter: blur(110px);
} */

.hero-experience-box {
	position: absolute;
	top: 70%;
	left: -170px;
	width: 70%;
	background: var(--white-color);
	color: var(--accent-secondary-color);
	box-shadow: 0px 0px 11.8px 0px #0000001f;
	border-radius: 16px;
	padding: 15px;
	animation: experienceobject 3s infinite linear alternate;
	overflow: hidden;
	z-index: 1;
}

@keyframes experienceobject {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(40px);
	}
}

.hero-experience-box:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.hero-experience-box:hover::before {
	top: auto;
	height: 100%;
}

.hero-experience-box h6,
.hero-experience-box p {
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.hero-experience-box h6 {
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 7px;
	color: #000000;
}

.hero-experience-box p {
	color: #000000;
	margin-bottom: 0;
}

.hero-experience-box:hover h6,
.hero-experience-box:hover p {
	color: var(--white-color);
}

.about-us {
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding: 15px 245px 15px 25px;
}

.about-us-img-1 {
	transform: rotate(-6.46deg);
}

.about-us-img-1,
.about-us-img-2 {
	border-radius: 30px;
}

.about-us-img-1 figure {
	display: block;
	border-radius: 30px;
}

.about-us-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 1.48;
	object-fit: cover;
	border-radius: 30px;
}

.about-us-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 250px;
	border: 5px solid var(--white-color);
}

.about-us-img-2::before {
	content: "";
	position: absolute;
	bottom: 10px;
	right: 20px;
	background: url("../images/about-us-arrow.svg") no-repeat;
	background-position: center center;
	background-size: contain;
	height: 110px;
	width: 83px;
	transform: translateY(100%) rotate(-10.67deg);
}

.about-us-img-2 figure {
	display: block;
	border-radius: 24px;
}

.about-us-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.405;
	object-fit: cover;
	border-radius: 24px;
}

.about-us-images .hero-experience-box {
	top: auto;
	bottom: 0;
	right: 100px;
}

.about-us-images .hero-experience-box:before {
	background: var(--accent-secondary-color);
}

.about-us-images .hero-experience-box:hover h2,
.about-us-images .hero-experience-box:hover p {
	color: var(--white-color);
}

.about-us-body {
	position: relative;
	background: var(--secondary-color);
	border-left: 3px solid var(--accent-secondary-color);
	border-radius: 10px;
	padding: 45px 30px;
	overflow: hidden;
}

.about-us-body::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	height: 100%;
	width: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-body:hover::after {
	width: 100%;
	right: 100%;
}

.about-us-body ul {
	position: relative;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.about-us-body ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	color: #000000;
	padding-left: 30px;
	transition: all 0.4s ease-in-out;
}

.about-us-body:hover ul li {
	color: var(--white-color);
}

.about-us-body ul li::before {
	content: "\f058";
	position: absolute;
	font-family: "FontAwesome";
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-secondary-color);
	transition: all 0.4s ease-in-out;
}

.about-us-body:hover ul li::before {
	color: var(--accent-color);
}

.about-us-footer {
	display: flex;
	gap: 20px 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.about-author-box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.about-author-box .author-image {
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	padding: 6px;
}

.about-author-box .author-image figure {
	display: block;
	border-radius: 50%;
}

.about-author-box .author-image img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.about-author-box .author-info h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

.about-author-box .author-info p {
	margin-bottom: 0;
}

.our-services {
	padding: 100px 0;
}

.our-service-content {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 20px;
	overflow: hidden;
}

.service-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff4e7;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
}

.service-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
	z-index: 1;
}

.service-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.service-item .image-box img {
	position: relative;
	z-index: 11;
	border-radius: 10px;
	margin-bottom: 20px;
}

.service-item-content {
	position: relative;
	/* margin-bottom: 30px; */
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.service-item-content h3 a {
	color: inherit;
}

.service-item-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	color: var(--primary-color);
}

.service-readmore-btn {
	position: relative;
	z-index: 1;
}

.page-cta-box {
	position: relative;
	background: url("../images/page-cta-box-bg.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	align-content: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.page-cta-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-cta-box-info,
.page-cta-box .contact-now-box {
	position: relative;
	z-index: 1;
}

.page-cta-box-info {
	margin-bottom: 30px;
}

.page-cta-box-info h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.page-cta-box-info h2 {
	font-size: 30px;
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.section-footer-text span {
	font-family: var(--accent-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-secondary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--accent-color);
}

.what-we-do {
	padding: 100px 0;
}

.what-we-do-image-1 figure,
.what-we-do-image-2 figure {
	display: block;
	border-radius: 20px;
}

.what-we-do-image-1 img,
.what-we-do-image-2 img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-do-image-1 img {
	aspect-ratio: 1 / 1.455;
}

.what-we-do-content .section-row {
	margin-bottom: 40px;
}

.what-we-list-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.what-we-list-item:last-child {
	margin-bottom: 0;
}

.what-we-list-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	margin-right: 20px;
}

.what-we-list-item .icon-box:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-list-item:hover .icon-box::before {
	transform: scale(1);
}

.what-we-list-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.what-we-list-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-do-list-content {
	width: calc(100% - 80px);
}

.what-we-do-list-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.what-we-do-list-content p {
	margin-bottom: 0;
}

.what-we-do-image-2 img {
	aspect-ratio: 1 / 0.975;
}

.why-choose-us {
	padding: 100px 0 0;
}

.why-choose-item {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
	border-color: transparent;
}

.why-choose-item .icon-box:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.why-choose-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.why-choose-image {
	margin: 0 70px;
}

.why-choose-image figure {
	display: block;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 1.47;
	object-fit: cover;
}

.our-expertise {
	padding: 30px 0 80px;
}

.expertise-image {
	margin-right: -130px;
}

.expertise-image figure {
	display: block;
	border-radius: 20px;
}

.expertise-image img {
	width: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 20px;
}

.expertise-box-list {
	position: relative;
	z-index: 1;
}

.expertise-box {
	position: relative;
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000d;
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.expertise-box::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffe5c7;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.expertise-box:hover::after {
	height: 100%;
}

.expertise-box:last-child {
	margin-bottom: 0;
}

.expertise-box-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.expertise-box-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.expertise-box-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.expertise-box:hover .expertise-box-content p {
	color: var(--primary-color);
}

.expertise-box-btn {
	position: relative;
	z-index: 1;
}

/************************************/
/***      10. Intro Video css     ***/
/************************************/

.intro-video.bg-section.dark-section {
	background: url("../images/intro-bg-image.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 180px 0 50px;
}

.intro-video.bg-section.dark-section::before {
	background: var(--primary-color);
	opacity: 50%;
}

.intro-video-circle {
	position: relative;
	text-align: center;
}

.intro-video-circle a {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	cursor: none;
}

.intro-video-circle a figure {
	display: block;
}

.intro-video-circle a figure img {
	width: 100%;
	border-radius: 50%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.into-video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 68px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}

.into-video-play-icon i {
	font-size: 30px;
	color: var(--primary-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.intro-video-circle a:hover .into-video-play-icon {
	background-color: var(--accent-secondary-color);
}

.intro-video-circle a:hover .into-video-play-icon i {
	color: var(--accent-color);
}

.intro-video-counter-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 190px;
	padding-top: 50px;
}

.intro-video-counter-item {
	width: calc(20% - 24px);
}

.intro-video-counter-item h2 {
	font-size: 46px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.intro-video-counter-item p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/***     11. Our Programs css     ***/
/************************************/

.our-programs {
	padding: 100px 0 70px;
}

.program-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.program-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.program-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-item:hover .program-image::before {
	opacity: 40%;
}

.program-image a,
.program-image figure {
	display: block;
	cursor: none;
}

.program-image figure::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg,
			rgba(30, 30, 30, 0) 42.53%,
			rgba(30, 30, 30, 0.8) 100%);
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.program-image img {
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img {
	transform: scale(1.1);
}

.program-body {
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 100px;
	transform: translateY(50px);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.program-item:hover .program-body {
	transform: translateY(0);
}

.program-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.program-content h3 a {
	color: inherit;
}

.program-readmore-btn {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.program-item:hover .program-readmore-btn {
	margin-top: 20px;
	opacity: 1;
	visibility: visible;
}

/************************************/
/***      12. How It Work css     ***/
/************************************/

.how-it-work {
	padding: 100px 0 260px;
}

.how-it-work-steps {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.how-work-step-item {
	width: calc(25% - 22.5px);
}

.how-work-step-item .icon-box {
	position: relative;
	height: 100px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-right: 15px;
	margin-bottom: 30px;
}

.how-work-step-item .icon-box:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.how-work-step-item:hover .icon-box::before {
	transform: scale(1);
}

.how-work-step-item .icon-box img {
	width: 100%;
	max-width: 50px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.how-work-no {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -15px;
	height: 30px;
	width: 30px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-work-no h3 {
	font-size: 18px;
}

.how-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.how-work-content p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***   13. Book Appointment css   ***/
/************************************/

.book-appointment {
	position: relative;
	margin-top: -150px;
	z-index: 2;
}

.book-appointment-box {
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 30px 0px #0000000d;
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
	padding: 100px;
}

.book-appointment-content {
	width: calc(48% - 30px);
}

.book-appointment-image figure {
	display: block;
	border-radius: 20px;
}

.book-appointment-image img {
	width: 100%;
	aspect-ratio: 1 / 0.555;
	object-fit: cover;
	border-radius: 20px;
}

.book-appointment-form {
	width: calc(52% - 30px);
}

.book-appointment-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--text-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.book-appointment-form .form-control::placeholder {
	color: var(--text-color);
}

.book-appointment-form .form-control.form-select {
	padding: 17px 35px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
	font-weight: 500;
	color: var(--accent-secondary-color);
}

/************************************/
/***       14. Our FAQs css	      ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.faq-images {
	position: relative;
	background: url("../images/faq-image-star.svg") no-repeat;
	background-size: 55px auto;
	background-position: bottom 205px left 100px;
	padding: 0 190px 270px 0;
	margin-right: 20px;
}

.faq-image-1 {
	position: relative;
}

.faq-image-1::before {
	content: "";
	position: absolute;
	top: 110px;
	right: -130px;
	background: url("../images/faq-image-circle.svg") no-repeat;
	background-size: cover;
	height: 85px;
	width: 85px;
	animation: infiniterotate 20s infinite linear;
}

.faq-image-1 figure {
	display: block;
	border-radius: 30px;
}

.faq-image-1 img,
.faq-image-2 img {
	width: 100%;
	object-fit: cover;
}

.faq-image-1 img {
	aspect-ratio: 1 / 0.912;
	border-radius: 30px;
}

.faq-image-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 428px;
	border: 7px solid var(--white-color);
	border-radius: 30px;
}

.faq-image-2 figure {
	display: block;
	border-radius: 22px;
}

.faq-image-2 img {
	aspect-ratio: 1 / 0.916;
	border-radius: 22px;
}

.faq-accordion .accordion-item {
	margin-bottom: 30px;
	padding: 0;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--primary-color);
	padding: 17px 60px 17px 20px;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	/* margin-bottom: 15px; */
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	background: transparent;
	margin-bottom: 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
	border-radius: 10px;
}

/* .faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	right: 15px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	width: 30px;
	height: 30px;
	color: var(--primary-color);
	background-color: var(--white-color);
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	background-color: var(--accent-color);
} */

.faq-accordion .accordion-item .accordion-body {
	background-color: var(--secondary-color);
	padding: 20px;
	border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

/************************************/
/***   15. Our Testimonial css    ***/
/************************************/

.our-testimonial {
	background-image: url(../images/testimonial-bg.png);
	background-repeat: repeat-x;
	background-size: cover;
	padding: 100px 0;
	animation: testimonialbgmove 60s infinite linear;
}

@keyframes testimonialbgmove {
	from {
		background-position: left center;
	}

	to {
		background-position: left 200vw center;
	}
}

.testimonial-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 25px;
	overflow: hidden;
}

.testimonial-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.testimonial-item.active::after,
.testimonial-item:hover::after {
	height: 100%;
}

.testimonial-item-content,
.testimonial-author-box {
	position: relative;
	z-index: 1;
}

.testimonial-item-content {
	margin-bottom: 30px;
}

.testimonial-rating {
	margin-bottom: 15px;
}

.testimonial-rating i {
	font-size: 14px;
	color: #fdd663;
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-rating i,
.testimonial-item:hover .testimonial-rating i {
	color: var(--accent-secondary-color);
}

.testimonial-info p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-info p,
.testimonial-item:hover .testimonial-info p {
	color: var(--primary-color);
}

.testimonial-author-box {
	display: flex;
}

.testimonial-author-iamge {
	margin-right: 15px;
}

.testimonial-author-iamge figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-iamge img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.testimonial-author-content {
	width: calc(100% - 55px);
}

.testimonial-author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.testimonial-author-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-author-content p,
.testimonial-item:hover .testimonial-author-content p {
	color: var(--primary-color);
}

.testimonial-images {
	position: relative;
	padding: 15px 245px 160px 25px;
}

.testimonial-img-1 {
	transform: rotate(-6.46deg);
	border-radius: 30px;
	overflow: hidden;
}

.testimonial-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 250px;
}

.testimonial-img-2::before {
	content: "";
	position: absolute;
	bottom: -15px;
	right: 10px;
	background: url(../images/about-us-arrow.svg) no-repeat;
	background-position: center center;
	background-size: contain;
	height: 125px;
	width: 95px;
	transform: translateY(100%) rotate(-25deg);
}

.testimonial-img-2,
.testimonial-img-3 {
	border: 5px solid var(--white-color);
	border-radius: 30px;
}

.testimonial-img-3 {
	position: absolute;
	bottom: 20px;
	left: 10px;
	transform: rotate(-7.87deg);
	width: 100%;
	max-width: 360px;
}

.testimonial-img-1 figure {
	display: block;
}

.testimonial-img-2 figure,
.testimonial-img-3 figure {
	display: block;
	border-radius: 24px;
}

.testimonial-img-1 img,
.testimonial-img-2 img,
.testimonial-img-3 img {
	width: 100%;
	object-fit: cover;
}

.testimonial-img-1 img {
	aspect-ratio: 1 / 1.48;
}

.testimonial-img-2 img {
	aspect-ratio: 1 / 1.405;
}

.testimonial-img-3 img {
	aspect-ratio: 1 / 0.644;
}

.hero-content-footer.client-review-box {
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 100%;
	max-width: 205px;
	background: var(--accent-secondary-color);
	box-shadow: 0px 0px 11.8px 0px #0000001f;
	align-items: flex-start;
	gap: 20px;
	flex-direction: column;
	border-radius: 16px;
	padding: 20px;
	margin: 0;
	animation: experienceobject 3s infinite linear alternate;
}

/************************************/
/***       16. Our Blog css	      ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.744;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 25px;
}

.post-item-content h3 {
	font-size: 20px;
	line-height: 1.5;
}

.post-item-content h3 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/***        17. Footer css	      ***/
/************************************/

.main-footer {
	padding: 80px 0 0 0;
	background: #fbfbfb;
	position: relative;
	overflow: hidden;
}

.main-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 170px;
	background: #9747ff;
	border-radius: 50%;
	filter: blur(95px);
}

.main-footer-box {
	display: flex;
	gap: 50px 150px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer-about {
	position: relative;
	/* width: calc(48% - 75px); */
}

.footer-shape-1 {
	position: absolute;
	right: 23%;
	top: 50%;
	width: 200px;
}

.footer-shape-2 {
	position: absolute;
	left: 27%;
	top: 45%;
	width: 160px;
}

/* .footer-about::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -75px;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
} */
.footer-links-box .contact-details li {
	display: flex;
	align-items: start;
	gap: 15px;
}

.footer-links-box .contact-details li .icon {
	width: 35px;
	height: 35px;
	border: 1px solid var(--accent-color);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
}

.footer-links-box .contact-details li .icon i {
	color: var(--accent-color);
}

.footer-logo,
.about-footer-content {
	margin-bottom: 30px;
}

.footer-logo img {
	width: 100%;
	max-width: 240px;
}

.about-footer-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.footer-contact-list {
	margin-bottom: 40px;
}

.footer-contact-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px 50px;
	flex-wrap: wrap;
}

.footer-contact-list ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 9px 20px;
	line-height: 1.1em;
	transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover {
	border-color: var(--accent-color);
}

.footer-contact-list a {
	display: block;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover a {
	color: var(--accent-color);
}

.footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 50px;
}

.footer-menu ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover {
	color: var(--accent-color);
}

.footer-menu ul li a {
	color: inherit;
}

.footer-links-box {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.7em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-social-links {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social-links span {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.footer-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 15px;
}

.footer-social-links ul li:last-child {
	margin: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid #f08100;
	background: var(--accent-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
	border-color: var(--accent-color);
}

.footer-social-links ul li i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
	color: var(--white-color);
}

.footer-copyright {
	position: relative;
	border-top: 1px solid #4c4c4c38;
	padding: 30px 0;
	margin-top: 50px;
	z-index: 1;
}

.footer-copyright-text p {
	color: var(--primary-color);
	margin: 0;
}

.footer-privacy-policy {
	text-align: end;
}

.footer-privacy-policy ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li {
	position: relative;
	color: var(--primary-color);
	/* text-transform: capitalize; */
	display: inline-block;
	margin-right: 10px;
	padding-right: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
	color: var(--accent-color);
}

.footer-privacy-policy ul li a {
	color: inherit;
}

.footer-privacy-policy ul li::before {
	content: "|";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	font-size: 18px;
	color: var(--primary-color);
}

.footer-privacy-policy ul li:last-child {
	padding: 0;
	margin: 0;
}

.footer-privacy-policy ul li:last-child:before {
	display: none;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	padding: 260px 0 160px;
	margin-top: 50px;
}

.page-header:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url("../images/page-header-bg.png") no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 74px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0;
}

.our-approach-image {
	margin-right: 20px;
}

.our-approach-image figure {
	display: block;
	border-radius: 30px;
}

.our-approach-image img {
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 30px;
}

.our-approach-body {
	margin-bottom: 60px;
}

.our-approach-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-approach-body ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.our-approach-body ul li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.our-approach-footer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: -175px;
	z-index: 2;
}

.mission-vision-item,
.mission-vision-image {
	width: calc(33.33% - 20px);
}

.mission-vision-item {
	position: relative;
	background-color: var(--white-color);
	border-radius: 16px;
	padding: 24px;
	overflow: hidden;
}

.mission-vision-item:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before {
	top: auto;
	height: 100%;
}

.mission-vision-item .icon-box {
	position: relative;
	height: 40px;
	width: 40px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	z-index: 1;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box img {
	transform: rotateY(180deg);
}

.mission-vision-content {
	position: relative;
	z-index: 1;
}

.mission-vision-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content p {
	color: var(--primary-color);
}

.mission-vision-image figure {
	height: 100%;
	display: block;
	border-radius: 16px;
}

.mission-vision-image img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.how-it-work.about-how-it-work {
	padding: 100px 0;
}

.about-how-it-work .how-work-step-item .icon-box {
	border-color: var(--accent-secondary-color);
	transition: all 0.4s ease-in-out;
}

.about-how-it-work .how-work-step-item:hover .icon-box {
	border-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box:before {
	background-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box img {
	filter: none;
}

.about-how-it-work .how-work-step-item .how-work-no {
	background: var(--accent-secondary-color);
}

.about-how-it-work .how-work-step-item .how-work-no h3 {
	color: var(--white-color);
}

.about-how-it-work .how-work-content h3 {
	color: var(--primary-color);
}

.about-how-it-work .how-work-content p {
	color: var(--text-color);
}

.how-work-counter-list {
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.how-work-counter-item {
	position: relative;
	width: calc(20% - 48px);
}

.how-work-counter-item::before {
	content: "";
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	background: var(--divider-color);
	height: 100%;
	width: 1px;
}

.how-work-counter-item:nth-child(5n + 5)::before {
	display: none;
}

.how-work-counter-item h2 {
	font-size: 46px;
	margin-bottom: 5px;
}

.how-work-counter-item p {
	margin-bottom: 0;
}

.expert-coaching {
	padding: 100px 0;
}

.expert-coaching-image {
	position: relative;
	padding: 110px 250px 280px 25px;
	margin-right: 20px;
}

.expert-coaching-image:before {
	content: "";
	position: absolute;
	border: 20px solid var(--accent-color);
	border-radius: 50%;
	width: 160px;
	height: 160px;
	top: 50%;
	transform: translateY(-20%);
	right: 60px;
}

.expert-coaching-img-1,
.expert-coaching-img-2,
.expert-coaching-img-3 {
	border: 9px solid var(--white-color);
	border-radius: 30px;
	box-shadow: 0px 13px 50px 0px #00000029;
	overflow: hidden;
}

.expert-coaching-img-1 figure,
.expert-coaching-img-2 figure,
.expert-coaching-img-3 figure {
	display: block;
}

.expert-coaching-img-1 img,
.expert-coaching-img-2 img,
.expert-coaching-img-3 img {
	width: 100%;
	object-fit: cover;
}

.expert-coaching-img-1 {
	position: relative;
	transform: rotate(-11.61deg);
	z-index: 1;
}

.expert-coaching-img-1 img {
	aspect-ratio: 1 / 1.03;
}

.expert-coaching-img-2 {
	position: absolute;
	top: 25px;
	right: 25px;
	max-width: 295px;
	transform: rotate(12.91deg);
	z-index: 2;
}

.expert-coaching-img-2 img {
	aspect-ratio: 1 / 1.17;
}

.expert-coaching-img-3 {
	position: absolute;
	left: 170px;
	bottom: 10px;
	max-width: 290px;
	transform: rotate(3.68deg);
}

.expert-coaching-img-3 img {
	aspect-ratio: 1 / 0.99;
}

.expert-coaching-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.expert-coaching-body-item {
	width: calc(50% - 15px);
}

.expert-coaching-body-item h3 {
	position: relative;
	font-size: 20px;
	text-transform: capitalize;
	padding-left: 35px;
	margin-bottom: 10px;
}

.expert-coaching-body-item h3:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	background: url("../images/icon-sub-heading.svg") no-repeat;
	background-position: left center;
	background-size: cover;
}

.expert-coaching-body-item p {
	margin: 0;
}

.expert-coaching-list {
	margin-bottom: 40px;
}

.expert-coaching-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.expert-coaching-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.expert-coaching-list ul li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.our-health {
	padding: 100px 0;
}

.our-health-image {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding-left: 68px;
}

.our-health-img-box {
	width: calc(50% - 10px);
}

.our-health-img-1 figure,
.our-health-img-2 figure,
.our-health-img-3 figure {
	display: block;
	border-radius: 30px;
}

.our-health-img-1 img,
.our-health-img-2 img,
.our-health-img-3 img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.our-health-img-1 {
	margin-bottom: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img {
	aspect-ratio: 1 / 1.065;
}

.our-health-img-3 img {
	aspect-ratio: 1 / 2.2;
}

.contact-us-circle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 1;
}

.contact-us-circle a {
	display: block;
	border-radius: 50%;
}

.contact-us-circle img {
	width: 100%;
	max-width: 164px;
	border: 8px solid var(--secondary-color);
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

.our-journey {
	padding: 30px 0 70px;
}

.our-journey-item {
	position: relative;
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000d;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 25px;
	overflow: hidden;
}

.our-journey-item:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #ffe5c7;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.our-journey-item:hover:before {
	top: auto;
	height: 100%;
}

.our-journey-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	margin-bottom: 30px;
}

.our-journey-item .icon-box img {
	width: 100%;
	max-width: 36px;
}

.our-journey-content {
	position: relative;
	z-index: 1;
}

.our-journey-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-journey-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.our-journey-item:hover .our-journey-content p {
	color: var(--primary-color);
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image a {
	display: block;
	cursor: none;
	border-radius: 20px;
	overflow: hidden;
}

.team-image figure:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg,
			transparent 65.69%,
			rgba(0, 0, 0, 0.8) 98.29%);
	z-index: 1;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	top: 40px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
	top: 20px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li {
	margin-bottom: 10px;
}

.team-social-icon ul li:last-child {
	margin-bottom: 0;
}

.team-social-icon ul li a {
	width: 34px;
	height: 34px;
	color: var(--white-color);
	background: var(--accent-secondary-color);
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 16px;
}

.team-social-icon ul li a:hover {
	color: var(--primary-color);
	background: var(--white-color);
}

.team-content {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 2;
}

.team-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 60px 0 70px;
}

.our-testimonial.service-testimonial {
	background: transparent;
	animation: none;
}

/************************************/
/*** 	20. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: normal;
	text-transform: capitalize;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 13px 40px 13px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.page-catagery-list ul li a::before {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background: url("../images/arrow-text.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 13px;
	transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before {
	filter: brightness(0) invert(0);
}

.page-catagery-list ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.page-cta-box.sidebar-cta-box {
	padding: 80px 30px;
}

.service-featured-image {
	margin-bottom: 40px;
}

.service-featured-image figure {
	display: block;
	border-radius: 30px;
}

.service-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.542;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.service-solutions-box,
.service-personalized-box,
.service-entry-image-content {
	margin-top: 60px;
}

.what-we-do-list.service-solutions-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.what-we-do-list.service-solutions-list .what-we-list-item {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-personalized-image-conetnt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}

.service-personalized-conetnt {
	width: calc(62% - 15px);
}

.service-personalized-conetnt ul {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-personalized-image {
	width: calc(38% - 15px);
}

.service-personalized-image figure {
	display: block;
	border-radius: 30px;
}

.service-personalized-image img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-entry-image {
	width: calc(38% - 15px);
}

.service-entry-image figure {
	display: block;
	border-radius: 30px;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 1.235;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry-content {
	width: calc(62% - 15px);
}

.service-entry-content-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.service-entry-content-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.service-entry-content-item h3 {
	font-family: var(--default-font);
	font-size: 20px;
	margin-bottom: 15px;
}

.service-entry-content-item p {
	margin-bottom: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

/************************************/
/*** 	 22. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
	border-radius: 30px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: "";
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.44em;
}

.post-entry h1 {
	font-size: 74px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url("../images/icon-blockquote.svg"),
		var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 50px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 23. Programs Page css	  ***/
/************************************/

.page-programs {
	padding: 100px 0 70px;
}

/************************************/
/*** 	24. Program Single Css	  ***/
/************************************/

.page-program-single {
	padding: 100px 0;
}

.program-detail-box {
	background-color: var(--secondary-color);
	padding: 30px;
	border-radius: 30px;
	margin-bottom: 60px;
}

.program-detail-item {
	background: var(--white-color);
	border-radius: 15px;
	margin-bottom: 20px;
	padding: 20px;
}

.program-detail-item:last-child {
	margin-bottom: 0;
}

.program-detail-item h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.program-detail-item p {
	margin-bottom: 0;
}

.program-featured-image {
	margin-bottom: 40px;
}

.program-featured-image figure {
	display: block;
	border-radius: 30px;
}

.program-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.575;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry {
	margin-bottom: 60px;
}

.program-entry p {
	margin-bottom: 20px;
}

.program-entry p:last-child {
	margin-bottom: 0;
}

.program-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.program-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}

.program-entry ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.program-entry ul li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-secondary-color);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.program-entry-image-video {
	position: relative;
	margin-top: 40px;
}

.program-entry-image figure {
	display: block;
	border-radius: 30px;
}

.program-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.431;
	object-fit: cover;
	filter: brightness(80%);
	border-radius: 30px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	position: relative;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a i {
	font-size: 26px;
	color: var(--white-color);
	margin-left: 3px;
}

.program-entry-practices {
	margin-top: 60px;
}

.program-image-content-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.what-we-do-list.program-content-list {
	width: calc(52% - 15px);
}

.what-we-do-list.program-content-list .what-we-list-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-do-list.program-content-list .what-we-list-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.program-practice-image {
	width: calc(48% - 15px);
}

.program-practice-image figure {
	display: block;
	border-radius: 20px;
}

.program-practice-image img {
	width: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  25. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.team-sidebar-box {
	background-color: var(--accent-secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
}

.team-sidebar-image {
	margin-bottom: 30px;
}

.team-sidebar-image figure {
	display: block;
	border-radius: 20px;
}

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.027;
	object-fit: cover;
	border-radius: 20px;
}

.team-sidebar-body-content {
	margin-bottom: 30px;
}

.team-sidebar-body-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.team-sidebar-body-content p {
	color: var(--white-color);
	margin: 0;
}

.team-sidebar-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-sidebar-body ul li {
	width: 100%;
	color: var(--white-color);
	display: inline-flex;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.team-sidebar-body ul li span {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	width: 32%;
}

.team-sidebar-footer {
	display: flex;
	align-items: center;
	gap: 20px;
}

.team-sidebar-footer span {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-sidebar-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
	margin-right: 0;
}

.team-sidebar-footer ul li a {
	background-color: var(--white-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
	background-color: var(--accent-color);
}

.team-sidebar-footer ul li a i {
	color: var(--accent-secondary-color);
	font-size: 18px;
}

.team-member-info,
.team-skills-box,
.team-awards-box {
	margin-bottom: 60px;
}

.team-member-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-member-info ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.team-member-info ul li:last-child {
	margin-bottom: 0;
}

.team-member-info ul li::before {
	content: "\f058";
	position: absolute;
	font-family: "FontAwesome";
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-secondary-color);
}

.team-skills-list {
	margin-top: 40px;
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
}

.team-skills-item {
	width: calc(25% - 37.5px);
	text-align: center;
}

.team-skills-item .circle {
	position: relative;
	display: inline-block;
	border-color: var(--text-color);
	color: var(--accent-secondary-color);
	text-align: center;
	margin-bottom: 20px;
}

.circle .progress_value {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	font-family: var(--accent-font);
	font-size: 40px;
	color: var(--primary-color);
	font-weight: 700;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
}

.team-skills-item p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.team-awards-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-awards-list ul li {
	font-weight: 600;
	line-height: 1.7em;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 30px;
}

.team-awards-list ul li:last-child {
	margin-bottom: 0;
}

.team-awards-list ul li span {
	color: var(--primary-color);
}

/************************************/
/***  27.  Testimonial Page css	  ***/
/************************************/

.page-testimonials {
	padding: 100px 0;
}

.page-testimonials .testimonial-boxes .testimonial-item {
	width: calc(25% - 22.5px);
}

/************************************/
/*** 	28.  Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29.  Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: "\f04b";
	font-family: "FontAwesome";
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-secondary-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30.  FAQs Page css	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/***  31.  Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 70px 0 50px;
}

.contact-now-circle {
	text-align: right;
}

.contact-now-circle img {
	width: 100%;
	max-width: 144px;
	animation: infiniterotate 25s infinite linear;
}

.contact-form {
	margin-right: 30px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid #a9a9a9;
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.contact-us-content {
	border-radius: 35px;
	border: 1px solid #570499;
	overflow: hidden;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	background-color: #6f1db1;
	padding: 40px;
}

.contact-info-item {
	width: 50%;
}

.contact-info-item {
	padding: 30px 30px 30px 0;
	border-bottom: 1px solid var(--dark-divider-color);
	border-right: 1px solid var(--dark-divider-color);
}

.contact-info-item:nth-of-type(2n + 2) {
	padding: 30px 0 30px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	border-right: none;
}

.contact-info-item:nth-last-child(-n + 2) {
	padding-bottom: 0;
	border-bottom: none;
}

.contact-info-item:nth-child(-n + 2) {
	padding-top: 0;
}

.contact-info-item .icon-box {
	position: relative;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
	border-color: transparent;
}

.contact-info-item .icon-box::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--accent-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

/* .contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
} */

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.contact-info-content p {
	color: var(--white-color);
	margin: 0;
}

.contact-info-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover {
	color: var(--accent-color);
}

.contact-social-list {
	background: var(--white-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	padding: 30px 40px;
}

.contact-social-list h3 {
	color: var(--primary-color);
	font-size: 20px;
	text-transform: capitalize;
}

.contact-social-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-list ul li a {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
}

.contact-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 460px;
	border-radius: 30px;
}

/************************************/
/***   32. Book Appointment css	  ***/
/************************************/

.page-book-appointment {
	padding: 100px 0;
}

/************************************/
/***   33. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title {
	margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

/* @media only screen and (max-width: 1820px) {

	.bg-section {
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}
} */

@media only screen and (max-width: 1560px) {
	/* .bg-section {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
		border-radius: 30px;
	} */

	.intro-video.bg-section.dark-section::before {
		border-radius: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.btn-default {
		padding: 13px 15px;
	}

	.readmore-btn {
		padding-right: 26px;
	}

	.readmore-btn:after {
		width: 16px;
		height: 12px;
	}

	header.main-header {
		margin: 0;
	}

	.navbar {
		padding: 15px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

	.bg-section.dark-section::before {
		border-radius: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		background-size: 18px auto;
		padding-left: 25px;
	}

	.section-title h1 {
		font-size: 52px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 10px;
	}

	.hero {
		padding: 130px 0 0;
		margin: 0;
	}

	.hero.hero-bg-image {
		padding: 180px 0 100px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 200px 0 120px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-content-footer {
		margin-top: 30px;
	}

	.hero-image {
		width: 100%;
		margin: 0 auto;
		max-width: 55%;
	}

	.hero-experience-box {
		max-width: 170px;
		border-radius: 10px;
		gap: 10px;
		padding: 10px;
	}

	.hero-experience-box h2 {
		font-size: 32px;
		width: calc(32% - 5px);
	}

	.hero-experience-box p {
		width: calc(68% - 5px);
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		width: 100%;
		max-width: 80%;
		margin: 0 auto 30px;
	}

	.about-us-img-1,
	.about-us-img-2,
	.about-us-img-1 figure,
	.about-us-img-1 img {
		border-radius: 20px;
	}

	.about-us-img-2 figure {
		border-radius: 16px;
	}

	.about-us-img-2 img {
		aspect-ratio: 1 / 1.25;
		border-radius: 16px;
	}

	.about-us-body {
		padding: 30px 20px;
	}

	.about-us-body ul {
		gap: 20px 30px;
	}

	.about-us-body ul li {
		padding-left: 25px;
	}

	.about-us-body ul li::before {
		font-size: 18px;
	}

	.about-us-footer {
		margin-top: 30px;
		margin-bottom: 30px !important;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item,
	.page-cta-box {
		padding: 30px;
	}

	.service-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-item-content {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.page-cta-box-info {
		margin-bottom: 20px;
	}

	.page-cta-box-info h2 {
		font-size: 26px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-image-1 {
		margin-bottom: 30px;
	}

	.what-we-do-image-1 img {
		aspect-ratio: 1 / 0.8;
	}

	.what-we-do-content .section-row {
		margin-bottom: 30px;
	}

	.what-we-list-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.what-we-list-item .icon-box img {
		max-width: 26px;
	}

	.what-we-do-list-content {
		width: calc(100% - 60px);
	}

	.what-we-do-list-content h3 {
		margin-bottom: 5px;
	}

	.why-choose-us {
		padding: 50px 0 0;
	}

	.why-choose-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.why-choose-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 20px;
	}

	.why-choose-item .icon-box img {
		max-width: 26px;
	}

	.why-choose-image {
		width: 100%;
		max-width: 55%;
		margin: 30px auto 0;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.expertise-image {
		margin: 0 0 30px 0;
	}

	.expertise-image img {
		aspect-ratio: 1 / 0.62;
	}

	.expertise-box {
		padding: 30px;
	}

	.expertise-box-content {
		margin-bottom: 20px;
	}

	.intro-video.bg-section.dark-section::before {
		border-radius: 0;
	}

	.intro-video.bg-section.dark-section {
		padding: 100px 0 50px;
	}

	.intro-video-circle a figure img {
		max-width: 140px;
	}

	.into-video-play-icon {
		width: 60px;
		height: 60px;
	}

	.into-video-play-icon i {
		font-size: 24px;
	}

	.intro-video-counter-list {
		gap: 25px 20px;
		margin-top: 100px;
		padding-top: 30px;
	}

	.intro-video-counter-item {
		width: calc(20% - 16px);
	}

	.intro-video-counter-item h2 {
		font-size: 36px;
	}

	.our-programs {
		padding: 50px 0 20px;
	}

	.program-image img {
		aspect-ratio: 1 / 1.1;
	}

	.program-body {
		left: 30px;
		bottom: 30px;
		right: 50px;
	}

	.how-it-work {
		padding: 50px 0 150px;
	}

	.how-work-step-item {
		width: calc(50% - 15px);
	}

	.how-work-step-item .icon-box {
		height: 80px;
		width: 80px;
		margin-bottom: 20px;
	}

	.how-work-step-item .icon-box img {
		max-width: 36px;
	}

	.how-work-no {
		height: 25px;
		width: 25px;
	}

	.how-work-no h3 {
		font-size: 14px;
	}

	.book-appointment {
		margin-top: -100px;
	}

	.book-appointment-box {
		padding: 50px;
	}

	.book-appointment-content,
	.book-appointment-form {
		width: 100%;
	}

	.book-appointment-image img {
		aspect-ratio: 1 / 0.48;
	}

	.book-appointment-form .form-control {
		padding: 14px 15px;
	}

	.book-appointment-form .form-control.form-select {
		padding: 14px 35px 14px 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faq-images {
		width: 100%;
		max-width: 75%;
		background-size: 45px auto;
		background-position: bottom 108px left 118px;
		padding: 0 180px 160px 0;
		margin: 0 auto 30px;
	}

	.faq-image-1::before {
		top: 50px;
		right: -105px;
		height: 70px;
		width: 70px;
	}

	.faq-image-1 figure,
	.faq-image-1 img {
		border-radius: 20px;
	}

	.faq-image-1 img,
	.faq-image-2 img {
		aspect-ratio: 1 / 0.81;
	}

	.faq-image-2 {
		max-width: 385px;
		border: 4px solid var(--white-color);
		border-radius: 20px;
	}

	.faq-image-2 figure,
	.faq-image-2 img {
		border-radius: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 13px 50px 13px 15px;
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 14px;
		width: 24px;
		height: 24px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-item {
		padding: 20px;
	}

	.testimonial-item-content {
		margin-bottom: 20px;
	}

	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.testimonial-images {
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
	}

	.testimonial-img-1 img {
		aspect-ratio: 1 / 1.3;
	}

	.testimonial-img-1,
	.testimonial-img-2,
	.testimonial-img-3 {
		border-radius: 20px;
	}

	.testimonial-img-2 figure,
	.testimonial-img-3 figure {
		border-radius: 14px;
	}

	.testimonial-img-2 {
		max-width: 220px;
	}

	.testimonial-img-3 {
		max-width: 330px;
	}

	.testimonial-img-2::before {
		height: 95px;
		width: 70px;
	}

	.hero-content-footer.client-review-box {
		bottom: 30px;
		max-width: 180px;
		padding: 15px;
	}

	.hero-content-footer.client-review-box .trusted-client-review p i {
		margin: 0 2px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	.main-footer {
		padding: 40px 0 0 0;
		margin-bottom: 0;
	}

	.footer-about,
	.footer-links-box {
		width: 100%;
	}

	.footer-logo,
	.about-footer-content {
		margin-bottom: 20px;
	}

	.footer-contact-list {
		margin-bottom: 30px;
	}

	.footer-contact-list ul {
		gap: 20px;
	}

	.footer-contact-list ul li {
		font-size: 18px;
		padding: 9px 15px;
	}

	.footer-menu ul {
		gap: 20px 30px;
	}

	.footer-menu ul li {
		font-size: 18px;
	}

	.footer-links-box {
		gap: 30px 60px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header {
		padding: 160px 0 80px;
		margin-top: 0px;
	}

	.page-header-box h1 {
		font-size: 52px;
		margin-bottom: 5px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.our-approach-image {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-approach-image figure,
	.our-approach-image img {
		border-radius: 20px;
	}

	.our-approach-image img {
		aspect-ratio: 1 / 0.8;
	}

	.our-approach-body {
		margin-bottom: 30px;
	}

	.our-approach-body ul li {
		padding-left: 25px;
	}

	.our-approach-body ul li::before {
		font-size: 18px;
	}

	.our-approach-footer {
		margin-left: 0;
	}

	.mission-vision-item {
		padding: 15px;
	}

	.mission-vision-image figure,
	.mission-vision-image img {
		height: auto;
	}

	.how-it-work.about-how-it-work {
		padding: 50px 0;
	}

	.how-work-counter-list {
		margin-top: 50px;
		padding-top: 50px;
		gap: 20px;
	}

	.how-work-counter-item {
		width: calc(20% - 16px);
	}

	.how-work-counter-item::before {
		right: -10px;
	}

	.how-work-counter-item h2 {
		font-size: 36px;
	}

	.expert-coaching {
		padding: 50px 0;
	}

	.expert-coaching-image {
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.expert-coaching-body {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.expert-coaching-body-item h3 {
		padding-left: 30px;
	}

	.expert-coaching-body-item h3:before {
		width: 20px;
		height: 20px;
	}

	.expert-coaching-list {
		margin-bottom: 30px;
	}

	.expert-coaching-list ul li {
		padding-left: 25px;
	}

	.expert-coaching-list ul li::before {
		font-size: 18px;
	}

	.our-health {
		padding: 50px 0;
	}

	.our-health-content {
		margin-bottom: 30px;
	}

	.our-health-image {
		max-width: 75%;
		margin: 0 auto;
	}

	.our-health-img-1 figure,
	.our-health-img-2 figure,
	.our-health-img-3 figure,
	.our-health-img-1 img,
	.our-health-img-2 img,
	.our-health-img-3 img {
		border-radius: 20px;
	}

	.contact-us-circle img {
		max-width: 134px;
	}

	.our-journey {
		padding: 50px 0 20px;
	}

	.our-journey-item {
		padding: 20px;
		border-radius: 20px;
	}

	.our-journey-item .icon-box {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image img {
		aspect-ratio: 1 / 1.03;
	}

	.team-content {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-catagery-list {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-catagery-list h3 {
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a {
		border-radius: 10px;
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
	}

	.page-cta-box.sidebar-cta-box {
		padding: 60px 20px;
	}

	.service-featured-image {
		margin-bottom: 30px;
	}

	.service-featured-image figure {
		border-radius: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.48;
		border-radius: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.service-solutions-box,
	.service-personalized-box,
	.service-entry-image-content {
		margin-top: 40px;
	}

	.what-we-do-list.service-solutions-list {
		gap: 30px 20px;
		margin-top: 30px;
	}

	.what-we-do-list.service-solutions-list .what-we-list-item {
		width: calc(50% - 10px);
	}

	.service-personalized-image-conetnt {
		gap: 20px;
		margin-top: 30px;
	}

	.service-personalized-conetnt {
		width: calc(62% - 10px);
	}

	.service-personalized-conetnt ul {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-personalized-image {
		width: calc(38% - 10px);
	}

	.service-personalized-image figure,
	.service-personalized-image img {
		border-radius: 20px;
	}

	.service-entry-image figure,
	.service-entry-image img {
		border-radius: 20px;
	}

	.service-entry-content-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-entry-content-item h3 {
		margin-bottom: 10px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .post-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img {
		border-radius: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.417em;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-programs {
		padding: 50px 0 20px;
	}

	.page-program-single {
		padding: 50px 0;
	}

	.program-detail-box {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.program-detail-item {
		padding: 15px;
		margin-bottom: 15px;
		border-radius: 10px;
	}

	.program-featured-image {
		margin-bottom: 30px;
	}

	.program-featured-image figure {
		border-radius: 20px;
	}

	.program-featured-image img {
		aspect-ratio: 1 / 0.47;
		border-radius: 20px;
	}

	.program-entry {
		margin-bottom: 30px;
	}

	.program-entry p {
		margin-bottom: 15px;
	}

	.program-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.program-entry ul {
		gap: 15px 30px;
		margin-bottom: 15px;
	}

	.program-entry ul li {
		padding-left: 25px;
	}

	.program-entry ul li::before {
		font-size: 18px;
	}

	.program-entry-image-video {
		margin-top: 30px;
	}

	.program-entry-image figure {
		border-radius: 20px;
	}

	.program-entry-image img {
		aspect-ratio: 1 / 0.4;
		border-radius: 20px;
	}

	.video-play-button a {
		width: 65px;
		height: 65px;
	}

	.video-play-button a i {
		font-size: 24px;
		margin-left: 2px;
	}

	.program-entry-practices {
		margin-top: 40px;
	}

	.program-image-content-box {
		margin-top: 30px;
	}

	.what-we-do-list.program-content-list .what-we-list-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-sidebar-box {
		padding: 20px;
	}

	.team-single-sidebar {
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 0.8;
	}

	.team-sidebar-body-content {
		margin-bottom: 25px;
	}

	.team-sidebar-body-content h3 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-sidebar-body ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-member-info,
	.team-skills-box,
	.team-awards-box {
		margin-bottom: 30px;
	}

	.team-member-info ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.team-member-info ul li::before {
		font-size: 18px;
	}

	.team-skills-item .circle {
		margin-bottom: 10px;
	}

	.team-skills-item .circle canvas {
		aspect-ratio: auto 120 / 120 !important;
		height: 120px !important;
		width: 120px !important;
	}

	.circle .progress_value {
		font-size: 32px;
		width: 80px;
		height: 80px;
	}

	.team-awards-list ul li {
		padding: 15px;
		margin-bottom: 20px;
	}

	.member-contact-form.contact-form {
		margin-bottom: 0;
	}

	.page-testimonials {
		padding: 50px 0;
	}

	.page-testimonials .testimonial-boxes .testimonial-item {
		width: calc(50% - 15px);
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-now-circle img {
		max-width: 114px;
	}

	.contact-form {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.contact-us-content {
		border-radius: 20px;
	}

	.contact-info-list {
		padding: 30px;
	}

	.contact-info-item {
		padding: 20px 20px 20px 0;
	}

	.contact-info-item:nth-of-type(2n + 2) {
		padding: 20px 0 20px 20px;
	}

	.contact-info-item:nth-last-child(-n + 2) {
		padding-bottom: 0;
	}

	.contact-info-item:nth-child(-n + 2) {
		padding-top: 0;
	}

	.contact-social-list {
		padding: 20px 30px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
		border-radius: 20px;
	}

	.page-book-appointment {
		padding: 50px 0;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 60%;
	}

	.error-page-content-body p,
	.error-page-content .section-title {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content-body {
		gap: 15px;
	}

	.contact-now-box-content h3,
	.contact-now-box-content .responsive-mobile {
		font-size: 18px;
		font-weight: bold;
	}

	.hero-image {
		max-width: 100%;
		text-align: center;
	}

	.hero-experience-box {
		max-width: 260px;
	}

	.hero-experience-box h2 {
		font-size: 24px;
	}

	.about-us-images {
		max-width: 100%;
		padding: 10px 135px 50px 15px;
	}

	.about-us-img-2 {
		top: 10px;
		right: 15px;
		max-width: 160px;
	}

	.about-us-img-2::before {
		right: 10px;
		height: 70px;
		width: 55px;
	}

	.about-us-body {
		padding: 15px;
	}

	.about-us-body ul {
		gap: 10px;
	}

	.about-us-body ul li {
		width: 100%;
	}

	.about-us-body ul li::before {
		font-size: 16px;
	}

	.about-author-box .author-info h3 {
		font-size: 18px;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.page-cta-box {
		padding: 40px 20px;
	}

	.page-cta-box-info h3 {
		font-size: 18px;
	}

	.page-cta-box-info h2 {
		font-size: 24px;
	}

	.what-we-do-image-1 img {
		aspect-ratio: 1 / 0.95;
	}

	.what-we-do-list {
		margin-bottom: 30px;
	}

	.what-we-do-list-content h3 {
		font-size: 18px;
	}

	.why-choose-item,
	.why-choose-item:last-child {
		border-bottom: 1px solid var(--dark-divider-color);
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-us .col-lg-3.col-md-6:last-child .why-choose-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.why-choose-image {
		max-width: 100%;
	}

	.expertise-image img {
		aspect-ratio: 1 / 0.8;
	}

	.expertise-box {
		padding: 20px;
	}

	.expertise-box-content h3 {
		font-size: 18px;
	}

	.intro-video.bg-section.dark-section {
		padding: 50px 0;
	}

	.intro-video-content {
		margin-bottom: 30px;
	}

	.intro-video-circle a figure img {
		max-width: 120px;
	}

	.into-video-play-icon {
		width: 50px;
		height: 50px;
	}

	.into-video-play-icon i {
		font-size: 22px;
	}

	.intro-video-counter-list {
		margin-top: 50px;
	}

	.intro-video-counter-item {
		width: calc(50% - 10px);
	}

	.intro-video-counter-item h2 {
		font-size: 26px;
	}

	.program-image img {
		aspect-ratio: 1 / 0.98;
	}

	.program-body {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.program-content h3 {
		font-size: 18px;
	}

	.how-work-step-item {
		width: 100%;
		display: flex;
	}

	.how-work-step-item .icon-box {
		height: 65px;
		width: 65px;
		margin: 0 25px 0 0;
	}

	.how-work-step-item .icon-box img {
		max-width: 28px;
	}

	.how-work-content {
		width: calc(100% - 90px);
	}

	.how-work-content h3 {
		font-size: 18px;
	}

	.book-appointment-box {
		padding: 20px;
	}

	.book-appointment-image img {
		aspect-ratio: 1 / 0.7;
	}

	.faq-images {
		width: 100%;
		max-width: 100%;
		background-size: 38px auto;
		background-position: bottom 75px left 60px;
		padding: 0 90px 120px 0;
	}

	.faq-image-1::before {
		top: 35px;
		right: -80px;
		height: 55px;
		width: 55px;
	}

	.faq-image-2 {
		max-width: 240px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body p {
		font-size: 15px;
	}

	.testimonial-boxes {
		gap: 20px;
	}

	.testimonial-item {
		width: 100%;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-author-content h3 {
		font-size: 18px;
	}

	.testimonial-images {
		min-width: 100%;
		padding: 10px 140px 95px 10px;
	}

	.testimonial-img-1 img {
		aspect-ratio: 1 / 1.54;
	}

	.testimonial-img-2 {
		right: 15px;
		max-width: 150px;
	}

	.testimonial-img-2::before {
		height: 70px;
		width: 60px;
	}

	.testimonial-img-3 {
		bottom: 10px;
		max-width: 195px;
	}

	.hero-content-footer.client-review-box {
		max-width: 160px;
		gap: 10px;
		bottom: 0;
		padding: 10px;
	}

	.hero-content-footer.client-review-box .trusted-client-review p {
		font-size: 14px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.main-footer-box {
		gap: 40px;
	}

	.footer-contact-list {
		margin-bottom: 20px;
	}

	.footer-contact-list ul {
		gap: 15px;
	}

	.footer-contact-list ul li {
		font-size: 16px;
	}

	.footer-menu ul li {
		font-size: 16px;
	}

	.footer-links {
		width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-social-links span {
		font-size: 18px;
	}

	.footer-copyright {
		text-align: center;
		padding: 15px 0;
	}

	.footer-privacy-policy {
		text-align: center;
		margin-top: 10px;
	}

	.footer-privacy-policy ul li {
		margin-right: 3px;
		padding-right: 15px;
	}

	.footer-privacy-policy ul li::before {
		font-size: 16px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.our-approach-image img {
		aspect-ratio: 1 / 0.9;
	}

	.our-approach-body ul li {
		width: 100%;
	}

	.mission-vision-item,
	.mission-vision-image {
		width: 100%;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 15px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.how-work-counter-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.how-work-counter-item:nth-child(5n + 5):before {
		display: block;
	}

	.how-work-counter-item:last-child:before,
	.how-work-counter-item:nth-child(2n + 2):before {
		display: none;
	}

	.how-work-counter-item {
		width: calc(50% - 10px);
	}

	.how-work-counter-item h2 {
		font-size: 26px;
	}

	.expert-coaching-image {
		max-width: 100%;
		padding: 25px 140px 175px 18px;
	}

	.expert-coaching-image:before {
		border-width: 10px;
		width: 120px;
		height: 120px;
		right: 30px;
		transform: translateY(-50%);
	}

	.expert-coaching-img-1,
	.expert-coaching-img-2,
	.expert-coaching-img-3 {
		border-width: 5px;
	}

	.expert-coaching-img-2 {
		max-width: 140px;
		top: 10px;
		right: 10px;
	}

	.expert-coaching-img-3 {
		left: 100px;
		max-width: 180px;
	}

	.expert-coaching-body-item {
		width: 100%;
	}

	.expert-coaching-body-item h3 {
		font-size: 18px;
	}

	.expert-coaching-list ul {
		gap: 15px;
	}

	.expert-coaching-list ul li {
		width: 100%;
	}

	.our-health-image {
		max-width: 100%;
		padding-left: 40px;
	}

	.contact-us-circle img {
		max-width: 100px;
		border-width: 4px;
	}

	.our-journey-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.page-catagery-list h3 {
		font-size: 18px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-solutions-box,
	.service-personalized-box,
	.service-entry-image-content {
		margin-top: 30px;
	}

	.what-we-do-list.service-solutions-list .what-we-list-item {
		width: 100%;
	}

	.service-personalized-conetnt,
	.service-personalized-image {
		width: 100%;
	}

	.service-personalized-conetnt .what-we-do-list {
		margin-bottom: 0;
	}

	.service-personalized-image img {
		aspect-ratio: 1 / 0.78;
	}

	.service-entry-image-content {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-content {
		width: 100%;
	}

	.service-entry-image img {
		aspect-ratio: 1 / 0.9;
	}

	.service-entry-content-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.service-entry-content-item h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.program-detail-item h3 {
		font-size: 18px;
	}

	.program-featured-image {
		margin-bottom: 20px;
	}

	.program-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.program-entry h2 {
		font-size: 26px;
	}

	.program-entry ul li {
		width: 100%;
	}

	.program-entry-image img {
		aspect-ratio: 1 / 0.56;
	}

	.what-we-do-list.program-content-list,
	.program-practice-image {
		width: 100%;
	}

	.what-we-do-list.program-content-list {
		margin-bottom: 0;
	}

	.what-we-do-list.program-content-list .what-we-list-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.program-practice-image img {
		aspect-ratio: 1 / 0.82;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 1.027;
	}

	.team-sidebar-body-content h3 {
		font-size: 18px;
	}

	.team-sidebar-body ul li span {
		font-size: 18px;
	}

	.team-sidebar-footer span {
		font-size: 18px;
	}

	.team-skills-list {
		gap: 30px;
	}

	.team-skills-item {
		width: calc(50% - 15px);
	}

	.circle .progress_value {
		font-size: 24px;
	}

	.page-testimonials .testimonial-boxes .testimonial-item {
		width: 100%;
	}

	.contact-now-circle {
		margin-top: 20px;
		text-align: left;
		display: none;
	}

	.contact-now-circle img {
		max-width: 84px;
	}

	.contact-info-list {
		padding: 20px;
	}

	.contact-info-item {
		width: 100%;
		border-bottom: 1px solid var(--dark-divider-color);
		border-right: none;
		margin-bottom: 20px;
		padding: 0 0 20px 0;
	}

	.contact-info-item:nth-of-type(2n + 2) {
		padding: 0 0 20px 0;
	}

	.contact-info-item:nth-last-child(-n + 2) {
		border-bottom: 1px solid var(--dark-divider-color);
		padding-bottom: 20px;
	}

	.contact-info-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.contact-info-item .icon-box {
		margin-bottom: 10px;
	}

	.contact-info-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.contact-social-list {
		padding: 20px;
	}

	.contact-social-list h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

.header-logo {
	max-width: 215px;
}

.hero-content-btn .t-btn-circle {
	width: 45px;
	height: 45px;
	background: #f08100;
	color: #fff;
	border-radius: 50%;
	transition: 0.3s linear;
}

.hero-content-btn .t-btn-circle i {
	font-size: 16px;
	transform: rotate(-45deg);
}

.light-page-btn .btn-highlighted,
.light-page-btn .t-btn-circle {
	background-color: var(--accent-secondary-color);
}

.light-page-btn .btn-default.btn-highlighted::after,
.light-page-btn .btn-default.btn-highlighted::before {
	background-color: var(--accent-secondary-color);
}

.light-page-btn .btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.light-page-btn {
	transition: 0.3s linear;
}

.light-page-btn:hover .t-btn-circle {
	margin-left: 5px;
	transform: rotate(45deg);
	transition: 0.3s linear;
}

.our-programs-sec {
	position: relative;
	padding: 0 0 150px;
}

.our-programs-sec .program-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	transition: 0.3s ease;
}

.our-programs-sec .program-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.our-programs-sec .program-content {
	position: absolute;
	bottom: 20px;
	left: 8px;
	width: 95%;
	padding: 15px;
	background: #eeeeeee6;
	border-radius: 20px;
}

.our-programs-sec .program-content h5 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

.our-programs-sec .program-content .price {
	color: #570499;
	font-weight: bold;
}

.our-programs-sec .swiper-slide {
	height: auto;
}

.our-programs-sec .buy-now-btn {
	background-color: var(--accent-color);
	color: #fff;
	border-radius: 20px;
	padding: 3px 10px;
}

.our-programs-sec .program-slider {
	position: relative;
	margin-top: 60px;
}

.our-programs-sec::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 150px;
	background-color: var(--accent-color);
	top: 35%;
}

.our-programs-sec .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

.custom-swiper-btn {
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px !important;
	height: 40px !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	top: 50%;
	transform: translateY(-50%);
	opacity: 0 !important;
	visibility: hidden;
	color: #570499;
	transition: 0.8s linear;
}

.our-programs-sec .program-slider:hover .custom-swiper-btn {
	opacity: 1 !important;
	visibility: visible;
	transition: 0.8s linear;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	z-index: 10;
}

.swiper-button-prev {
	left: -20px;
	/* Push outside slightly */
}

.swiper-button-next {
	right: -20px;
}

/* Optional: adjust arrow icon */
.our-programs-sec .swiper-button-prev::after,
.our-programs-sec .swiper-button-next::after {
	font-size: 16px;
	font-weight: bold;
}

.our-programs-sec .swiper-button-prev:after,
.our-programs-sec .swiper-rtl .swiper-button-next:after {
	font-size: 15px !important;
	color: #fff !important;
}

.our-programs-sec .swiper-button-next:after,
.our-programs-sec .swiper-rtl .swiper-button-prev:after {
	font-size: 15px !important;
	color: #fff !important;
}

.our-programs-sec .custom-swiper-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s ease;
}

/* recipes section css starts */

.filter-buttons {
	margin-top: 40px;
	margin-bottom: 40px;
}

.filter-buttons .btn {
	margin-right: 15px;
	margin-bottom: 10px;
	border-radius: 25px;
	padding: 10px 25px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.filter-buttons .btn.active {
	background: #ff6b35 !important;
	border-color: #ff6b35 !important;
	color: white !important;
}

.recipe-swiper {
	padding-bottom: 50px;
}

.recipe-card .recipe-card-container {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgb(0 0 0 / 4%);
	transition: all 0.3s ease;
}

.recipe-card .card-img-top {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.recipe-card .badge {
	border-radius: 0 15px;
	padding: 8px 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.recipe-card .card-body {
	padding: 20px;
}

.recipe-card .card-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0;
}

.swiper-pagination-bullet {
	background: #8b5cf6;
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #8b5cf6;
}

/* Hide filtered out cards */
.recipe-card.hidden {
	display: none !important;
}

.recipe-card.hidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.recipe-swiper .swiper-slide {
	height: auto !important;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title h2 {
		font-size: 1.7rem;
		text-align: center;
		margin-bottom: 20px;
	}

	/* .hero-content-btn {
		justify-content: center !important;
	} */

	.filter-buttons {
		text-align: center;
	}

	.filter-buttons .btn {
		margin-right: 10px;
		padding: 8px 20px;
		font-size: 0.9rem;
	}
}

.recipe-section {
	padding: 0 0 90px;
}

.footer-links-box ul li .contact-contain p {
	text-transform: lowercase;
}

.recipe-swiper {
	padding-bottom: 60px !important;
	/* Give enough room for pagination */
}

.recipe-section .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

/* client-transformation-sec css start */
.client-transformation-sec {
	padding: 0 0 60px;
}

.client-transformation-sec .main-container {
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: start;
}

.client-transformation-sec .animated-text {
	font-size: 35px;
	font-weight: bold;
	color: #333;
}

.client-transformation-sec .word {
	display: inline-block;
	margin: 0 1px;
	animation: typewriter 4s ease-in-out infinite;
	opacity: 0;
	transform: translateY(20px);
}

.client-transformation-sec .word:nth-child(1) {
	animation-delay: 0s;
}

.client-transformation-sec .word:nth-child(2) {
	animation-delay: 0.8s;
}

.client-transformation-sec .word:nth-child(3) {
	animation-delay: 1.6s;
	position: relative;
}

@keyframes typewriter {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.8);
	}

	20% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	80% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.transformation-contact-contain img {
	width: 45px;
	height: 45px;
	object-fit: cover;
}

.transformation-contact-contain p {
	margin-bottom: 5px;
}

.client-transformation-sec .image-box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.client-transformation-sec .image-box img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease-in-out;
}

.client-transformation-sec .custom-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ffa500;
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-transformation-sec .custom-nav.left {
	left: 10px;
}

.client-transformation-sec .custom-nav.right {
	right: 10px;
}

.client-transformation-sec .image-box:hover .custom-nav {
	opacity: 1;
}

.client-transformation-sec .hover-text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: linear-gradient(to top, rgb(240 129 0 / 40%), transparent);
	color: #fff;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
	z-index: 1;
}

.client-transformation-sec .hover-text h4 {
	color: #fff;
}

.client-transformation-sec .image-box:hover .hover-text {
	opacity: 1;
}

/* wellness journey sec css starts */

.wellness-journey-sec {
	background: #fff;
	padding: 60px 0;
}

.wellness-journey-sec .left-content {
	background: url(../images/wellness-journey.png) center center / cover no-repeat;
	height: 100%;
	min-height: 371px;
	padding: 30px;
	position: relative;
	display: flex;
	color: #fff;
	z-index: 2;
	align-items: end;
	justify-content: start;
}

.wellness-journey-sec .left-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, #020202cf 0%, transparent 100%);
	z-index: -1;
}

.wellness-journey-sec .content-box {
	max-width: 85%;
	margin: 0 auto;
}

.wellness-journey-sec .btn-purple {
	background-color: var(--accent-secondary-color);
	color: white;
	border-radius: 25px;
	border: none;
}

.wellness-journey-sec .btn-purple:hover {
	background-color: var(--accent-secondary-color);
	color: #fff;
}

.wellness-journey-sec .btn-outline-light {
	border-radius: 25px;
	border: 2px solid rgb(255, 255, 255);
	background-color: #ffffff;
	color: rgb(0, 0, 0);
}

.wellness-journey-sec .right-content {
	background: linear-gradient(90deg, #ff8c42, #f1860a, #e06c00);
	padding: 80px;
}

.wellness-journey-list-btns .btn {
	padding: 5px 25px;
}

/* our coaching css starts  */

.coaching-methodology-sec {
	position: relative;
	text-align: center;
	padding: 30px 0 80px;
}

.coaching-methodology-sec .coaching-wrapper {
	width: 100%;
	height: 500px;
	/* adjust height as needed */
	position: relative;
}

.coaching-methodology-sec .center-image {
	width: 340px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.coaching-methodology-sec .info-box {
	position: absolute;
	background: #fff;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 400px;
	text-align: left;
	z-index: 2;
}

.coaching-methodology-sec .info-box .icon {
	width: 100px;
	margin-bottom: 10px;
}

.coaching-methodology-sec .info-box .icon img {
	width: 100%;
	height: auto;
}

/* Positioning each box manually */
.coaching-methodology-sec .box-1 {
	top: 50px;
	left: 0;
}

.coaching-methodology-sec .box-2 {
	top: 50px;
	right: 0;
}

.coaching-methodology-sec .box-3 {
	bottom: 100px;
	left: 0;
}

.coaching-methodology-sec .box-4 {
	bottom: -30px;
	right: 33%;
}

.coaching-methodology-sec .box-5 {
	top: 65%;
	right: -40px;
	transform: translateY(-50%);
}

/* success stories css starts */
.success-stories {
	background: #fbfbfb;
	position: relative;
	padding: 80px 0 30px;
}

/* .success-stories::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/testi-1.png) no-repeat center center;
	z-index: 0;
} */

.success-stories .text-highlight {
	color: #f97316;
}

.success-stories .btn-gradient {
	background: linear-gradient(90deg, #f97316, #a855f7);
	color: #fff;
	border-radius: 25px;
	padding: 8px 18px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}

.success-stories .card {
	border-radius: 16px;
	border: none;
	position: relative;
	background: #fff;
}

.success-stories .card::after {
	content: "";
	position: absolute;
	width: 80px;
	height: 60px;
	background: url(../images/quote.png) no-repeat center center;
	background-size: contain;
	right: 15px;
	bottom: 15px;
	opacity: 0.7;
	pointer-events: none;
}

.success-stories .swiper-pagination .swiper-pagination-bullet {
	background-color: #f97316;
	opacity: 0.4;
}

.success-stories .swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.success-stories .swiper-slide {
	height: auto !important;
}

.success-stories .testimonialSwiper {
	padding-bottom: 70px;
}

/* contact us sec css starts */

.contact-us-sec {
	background-color: #ffffff;
	padding: 80px 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

/* .contact-us-sec::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 30%;
    width: 380px;
    height: 500px;
    background: url(../images/doctor-img.webp) no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
    opacity: 0.2;
} */
.contact-us-bg-img img {
	position: absolute;
	top: 25%;
	left: 30%;
	width: 380px;
	height: 500px;
	/* background: url(../images/doctor-img.webp) no-repeat; */
	background-size: cover;
	background-position: left;
	z-index: -1;
	opacity: 0.2;
	object-fit: cover;
}

.contact-details-container .cont-container {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-details-container .icon {
	width: 50px;
	height: 50px;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-details-container .icon img {
	width: 20px;
}

.appointment-form {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.custom-input {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	padding-left: 0;
	font-size: 15px;
}

.custom-input:focus {
	border-bottom: 1px solid var(--accent-secondary-color);
	box-shadow: none;
}

.contact-us-sec .appointment-form label {
	color: #000;
}

.book-btn {
	background-color: var(--accent-secondary-color);
	color: #fff;
	padding: 12px;
	border-radius: 999px;
	transition: background 0.3s ease;
}

.book-btn:hover {
	background-color: var(--accent-secondary-color);
	color: #fff;
}

.contact-us-sec input::placeholder {
	color: #a3a3a3;
}

.check-box-input {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: auto;
}

.our-faqs {
	padding: 40px 0 100px;
}

.our-faqs .faq-contact-box {
	background: #fff;
	position: absolute;
	bottom: -35px;
	right: 80px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
	z-index: 10;
}

.our-faqs .faq-contact-box {
	background: #fff;
	position: absolute;
	bottom: -35px;
	right: 80px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
	animation: experienceobject 3s infinite linear alternate;
	z-index: 10;
}

.faq-accordion .accordion-button {
	background-color: #f9f9f9;
	color: #000;
	font-weight: 500;
	border-radius: 8px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background-color: #4c1d95;
	color: #fff;
	border-radius: 12px 12px 0 0;
}

.faq-accordion .accordion-body {
	background-color: #4c1d95;
	color: #fff;
	border-radius: 0 0 12px 12px;
	padding: 20px;
}

.accordion-button {
	width: 100%;
	text-align: left;
	padding: 15px;
	border: none;
	outline: none;
	background-color: #f5f5f5;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-bottom: 10px;
}

.accordion-button.active {
	background-color: #4c1d95 !important;
	color: #fff !important;
}

.accordion-collapse {
	display: none;
	background-color: #ffffff;
	border-top: 1px solid var(--accent-secondary-color);
	border-bottom: 1px solid #333;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	color: #000000;
	padding: 5px;
	border-radius: 10px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #d2d2d2;
	border-radius: 10px !important;
	border-radius: 12px 12px 0 0;
}

.faq-accordion .accordion-item .accordion-body {
	padding: 5px !important;
	background: #ffffff;
	color: #000;
}

.faq-accordion .accordion-header .accordion-button {
	margin-bottom: 0px !important;
}

.faq-accordion .accordion-item .accordion-body p {
	font-size: 17px;
}

.accordion-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-icon {
	margin-left: auto;
	background: #fff;
	color: var(--accent-secondary-color);
	padding: 8px 10px;
	border-radius: 5px;
	position: absolute;
	right: 15px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.latest-from-us .section-title {
	font-size: 2rem;
	font-weight: 700;
}

.latest-from-us .highlight {
	color: #f97316;
}

.latest-from-us .view-all-btn {
	background-color: #4c1d95;
	color: #fff;
	border-radius: 30px;
	padding: 8px 20px;
	font-weight: 500;
}

.latest-from-us .read-more {
	color: #f97316;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.latest-from-us .read-more:hover {
	text-decoration: underline;
}

.latest-from-us-card {
	border-radius: 16px;
	overflow: hidden;
}

.latest-right-img {
	width: 40%;
	height: 220px;
	object-fit: cover;
}

.latest-date {
	color: var(--accent-secondary-color) !important;
}

.latest-from-us .latest-from-us-card {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

#calorieModal .modal-content {
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	border: none;
}

#calorieModal .modal-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
}

#calorieModal .modal-title .highlight {
	color: var(--accent-secondary-color);
}

#calorieModal .form-label {
	color: #000;
	font-weight: 500;
	margin-bottom: 10px;
}

#calorieModal .form-control,
#calorieModal .form-select {
	border: none;
	border-bottom: 2px solid #e0e0e0;
	border-radius: 0;
	padding-left: 0;
	box-shadow: none;
	font-size: 15px;
}

#calorieModal .form-check-input {
	accent-color: #8b22c5;
}

#calorieModal .form-check-label {
	margin-left: 5px;

	margin-right: 20px;
	font-weight: 500;
}

#calorieModal .calculate-btn {
	background-color: #4c1d95;
	color: #fff;
	padding: 8px 24px;
	border-radius: 40px;
	font-weight: 500;
}

#calorieModal .calculate-btn i {
	margin-left: 6px;
}

#calorieModal .calorie-badge {
	background: #f3e8ff;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 16px;
	color: var(--accent-secondary-color);
}

#calorieModal .calorie-badge strong {
	font-size: 20px;
	font-weight: 600;
	margin-right: 4px;
}

#calorieModal .popup-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#calorieModal .btn-close {
	background-color: var(--accent-color);
	color: #fff;
	padding: 0.5rem;
	border-radius: 50%;
}

#bodyFatModal .modal-content {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
}

#bodyFatModal .modal-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
}

#bodyFatModal .modal-title .highlight {
	color: var(--accent-secondary-color);
}

#bodyFatModal .form-label {
	color: #000;
	font-weight: 500;
	margin-bottom: 10px;
}

#bodyFatModal .form-control,
#bodyFatModal .form-select {
	border: none;
	border-bottom: 2px solid #e0e0e0;
	border-radius: 0;
	padding-left: 0;
	box-shadow: none;
	font-size: 15px;
}

#bodyFatModal .form-check-input {
	accent-color: var(--accent-secondary-color);
}

#bodyFatModal .form-check-label {
	margin-left: 5px;
	margin-right: 20px;
	font-weight: 500;
}

#bodyFatModal .calorie-badge {
	background: #f3e8ff;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 16px;
	color: #7e22ce;
}

#bodyFatModal .calorie-badge strong {
	font-size: 20px;
	font-weight: 600;
	margin-right: 4px;
}

#bodyFatModal .popup-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#bodyFatModal .btn-close {
	background-color: var(--accent-color);
	padding: 0.5rem;
	border-radius: 50%;
}

/* breadcrumb css starts */

.breadrumb-section {
	position: relative;
	padding: 200px 0 120px;
	background: url(../images/breadcrumb/about-us.jpg) no-repeat left center;
	background-size: cover;
	/* background-attachment: fixed; */
	z-index: 2;
}

.breadrumb-section::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 30%);
	z-index: -1;
}

.breadrumb-section h1 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 25px;
}

.breadrumb-section .breadcrumb li {
	font-size: 18px;
	color: #fff;
}

.breadrumb-section .breadcrumb li a {
	font-size: 18px;
	color: var(--accent-color);
}

.breadrumb-section .breadcrumb li a::after {
	content: "/";
	margin-right: 5px;
	margin-left: 5px;
}

/* about-us page css starts */

.new-about-us {
	background-color: #fdfdfd;
	padding: 80px 0;
	position: relative;
}

.new-about-us .arrow-shape {
	position: absolute;
	top: 40%;
	left: 100px;
	width: 100px;
	height: 200px;
	background: url(../images/arrow-shape.png) no-repeat center center;
	background-size: cover;
	transform: rotate(320deg);
	z-index: 0;
}

.new-about-us-title {
	font-size: 2.25rem;
	font-weight: 700;
}

.new-about-us-desc {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
}

.new-about-us-img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.new-about-us-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.new-about-us-text {
	font-size: 1rem;
	color: var(--primary-color);
	max-width: 90%;
	margin: 0 auto;
}

.new-about-us-icon-img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.new-about-us-btn {
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 500;
	background-color: #007bff;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.new-about-us-btn:hover {
	background-color: #0056b3;
	color: #fff;
}

.contact-us-form .form-control {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	padding-left: 0;
	font-size: 1rem;
}

.contact-us-form .form-control:focus {
	border-bottom: 2px solid var(--accent-secondary-color);
	outline: none;
	box-shadow: none;
}

.contact-us-form label {
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #333;
	display: block;
}

.contact-us-form .form-check-label {
	margin-right: 1rem;
	font-weight: 400;
}

.page-contact-us .sticky-col {
	position: sticky;
	top: 50px;
	height: fit-content;
}

/* text changing animation css starts */
.home-banner-section .banner-container {
	text-align: start !important;
	max-width: 800px;
	margin-bottom: 35px;
}

.home-banner-section .home-banner-title {
	font-size: 45px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	max-height: 150px;
}

.home-banner-section .text-anime-style-3 {
	animation: fadeInUp 1s ease-out;
}

.home-banner-section .highlight {
	/* color: var(--accent-color); */
	/* background: linear-gradient(90deg, #F08100, #FFD700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; */
	position: relative;
	/* display: flex; */
}

.home-banner-section .typewriter-text {
	white-space: nowrap;
	display: inline-block;
	width: 280px;
	text-align: left;
	vertical-align: baseline;
	position: relative;
}

.home-banner-section .typewriter-text::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 1em;
	background-color: var(--accent-color);
	animation: blink 1s infinite;
	margin-left: 2px;
}

.home-banner-section .typing {
	animation: none;
	/* background: linear-gradient(73deg, #F08100 85% 85%, #fffefa); */
	background: linear-gradient(73deg, #f08100 85% 85%, #f08100);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline;
}

.home-banner-section .cursor-blink::after {
	animation: blink 1s infinite;
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Smooth fade transition between words */
.home-banner-section .fade-out {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.home-banner-section .fade-in {
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
	.home-banner-section .typewriter-text {
		width: 200px;
	}
}

/* @media (max-width: 480px) {
	.home-banner-section .typewriter-text {
		width: 160px;
	}
} */

/* Glowing effect */
.home-banner-section .highlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(45deg, transparent, rgba(74, 222, 128, 0.1), transparent); */
	border-radius: 8px;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.home-banner-section .banner-description {
	max-width: 750px;
}

.home-banner-section .banner-highlight {
	color: var(--accent-color);
}

.recipe-section .filter-btns:hover {
	background-color: var(--accent-secondary-color);
	border: 1px solid var(--accent-secondary-color);
	color: #fff;
}

.contact-us-sec .mail-contact-container {
	max-width: 300px;
}

.contact-us-sec .mail-contact-container h6 {
	line-height: 1.5;
}

.form-check-input:checked {
	background-color: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

/* bottom to top css strats */

.progress-wrap {
	visibility: hidden;
}

.progress-wrap.active-progress {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	display: block;
	background: #ffffff;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.04);
	z-index: 99999;
	opacity: 0;
	transform: translateY(15px);
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	/* stroke: var(--accent-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear; */
	stroke: var(--accent-color);
	/* CHANGED: from --accent-bg to --accent-color */
	stroke-width: 4;
	box-sizing: border-box;
	transition: stroke-dashoffset 0.1s linear;
}

.top-arrow {
	top: 47%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.top-arrow svg {
	transform: rotate(-90deg);
}

.floating_btn {
	position: fixed;
	bottom: 120px;
	right: 30px;
	opacity: 1;
	transition: 0.3s;
	z-index: 100;
}

@media (max-width: 767px) {
	.floating_btn {
		right: 20px;
		bottom: 110px;
	}

	.floating_btn.floating_btn_show {
		bottom: 90px;
	}
}

.floating_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	font-size: 23px;
	transition: transform 0.3s;
	animation: 2s infinite pulse-animation;
}

.floating_btn a:hover {
	transform: translateY(-3px);
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.6);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(37, 211, 101, 0.1);
	}
}

/* programs-page css starts */
.programs-list-section {
	padding: 50px 0 65px;
}

.programs-list-section .program-card {
	border: 1px solid #eee;
	transition: all 0.3s ease-in-out;
	background-color: #fff;
	height: auto;
}

.programs-list-section .program-card:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.programs-list-section .program-card-img {
	object-fit: cover;
	height: 230px;
	width: 100%;
	border-bottom: 1px solid #f0f0f0;
}

.programs-list-section .program-badge {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background-color: var(--accent-color);
	color: #fff;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 500;
}

.programs-list-section .favorite-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--accent-color);
	font-size: 18px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
}

.programs-list-section .favorite-icon i {
	animation: heartPulse 1.5s infinite;
	display: inline-block;
	transition: transform 0.3s ease;
}

/* Heart pulse animation */
@keyframes heartPulse {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.1);
	}

	50% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.programs-list-section .delete-wishlist-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--accent-color);
	font-size: 18px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
}

.programs-list-section .delete-wishlist-icon i {
	font-size: 17px;
}

.programs-list-section .favorite-icon:hover {
	color: var(--accent-color);
}

.programs-list-section .program-title {
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	line-height: normal;
}

.programs-list-section .rating-star i {
	font-size: 14px;
	color: #fdd663;
}

.programs-list-section .rating-star {
	font-size: 14px;
	color: #171717;
	font-weight: 500;
}

.programs-list-section .text-main {
	color: var(--accent-secondary-color);
}

.programs-list-section .text-main:hover {
	color: var(--accent-secondary-color);
	text-decoration: underline;
}

.programs-list-section .normal-rate {
	font-size: 18px;
}

.programs-list-section .mrp-rate {
	font-size: 22px;
}

.programs-list-section .duration-icon {
	color: var(--accent-color);
}

.programs-list-section .programs-list-header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.programs-list-section .results-count {
	font-size: 18px;
	font-weight: 600;
	color: #222;
}

.programs-list-section .view-toggle button {
	border: 1px solid #ddd;
	background-color: #fff;
	padding: 9px 20px;
	font-size: 16px;
	transition: 0.3s;
}

.programs-list-section .view-toggle button.active,
.programs-list-section .view-toggle button:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.programs-list-section .sort-by select {
	border: 1px solid #ddd;
	padding: 8px 12px;
	min-width: 200px;
	font-size: 14px;
	border-radius: 5px;
}

/* List View Container */
.programs-list-section .programs-list-container.list-view .program-card {
	display: flex;
	flex-direction: row;
	height: auto;
}

.programs-list-section .programs-list-container.list-view .program-card .program-card-img {
	width: 250px;
	height: 100%;
	object-fit: cover;
	border-bottom: none;
	border-right: 1px solid #f0f0f0;
}

.programs-list-section .programs-list-container.list-view .program-card>.p-4 {
	flex: 1;
	padding: 20px;
}

.programs-list-section .programs-list-container.list-view .program-card .position-relative {
	width: 250px;
	height: auto;
	flex-shrink: 0;
	border-bottom: none;
}

/* Remove bottom margin between stacked cards */
.programs-list-section .programs-list-container.list-view .col-md-6,
.programs-list-section .programs-list-container.list-view .col-lg-4 {
	flex: 1 1 100%;
	max-width: 100%;
}

/* In List View, make only 2 cards per row */
.programs-list-section .programs-list-container.list-view .col-md-6.col-lg-4 {
	flex: 0 0 50%;
	max-width: 50%;
}

/* Optional: For smaller devices, fallback to 100% width */
@media (max-width: 767px) {
	.programs-list-section .programs-list-container.list-view .col-md-6.col-lg-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.programs-banner-section {
	background: url(../images/programs/banner.jpg) no-repeat left center;
	background-size: cover;
}

/* programs details css starts */

.program-details-section {
	padding: 80px 0;
	background-color: #fff;
}

.program-details-section .main-img {
	/* height: 400px;
	object-fit: cover; */
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-details-section .img-thumbnail {
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s ease;
	object-fit: cover;
	height: 80px;
}

.program-details-section .img-thumbnail:hover {
	transform: scale(1.05);
	border-color: var(--accent-color);
}

.program-details-section h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 18px;
}

.program-details-section del {
	font-size: 20px;
}

.program-details-section .text-success {
	font-size: 24px;
}

.program-details-section .badge {
	font-size: 14px;
	padding: 6px 10px;
	border-radius: 6px;
}

.program-details-section ul {
	padding-left: 0;
	list-style: none;
}

.program-details-section ul li {
	color: #000;
	margin-bottom: 15px;
	font-size: 16px;
}

.program-details-section p {
	color: #000;
}

.program-details-section .btn {
	font-size: 15px;
	border-radius: 50px;
	padding: 10px 25px;
}

.program-details-section .add-to-cart {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.program-details-section .btn-outline-dark {
	border-color: var(--accent-secondary-color);
	color: #000;
}

.program-details-section .btn-outline-dark:hover {
	background-color: var(--accent-secondary-color);
	color: #fff;
}

.program-details-section .nav-tabs {
	margin-bottom: 0;
	border: none;
	gap: 15px;
}

.program-details-section .nav-tabs .nav-link {
	border: none;
	font-weight: 600;
	color: #666;
	padding: 12px 20px;
	background-color: #f4f4f4;
	border-radius: 50px;
}

.program-details-section .nav-tabs .nav-link.active {
	background-color: var(--accent-color);
	color: #fff;
}

.program-details-section .tab-content {
	background-color: #fff;
	border-top: none;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	margin-top: -1px;
}

.program-details-section .review {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.program-details-section .review strong {
	font-size: 16px;
}

.program-details-section .review p {
	margin-bottom: 0;
	font-size: 14px;
}

.products-specifications li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.products-specifications li svg {
	width: 20px;
	fill: var(--accent-secondary-color);
	flex-shrink: 0;
}

.programs-related-swiper .swiper-slide {
	height: auto;
	padding: 0;
	/* important if anything adds default padding */
}

.related-programs-list .programs-related-swiper:hover .swiper-button-next,
.related-programs-list .programs-related-swiper:hover .swiper-button-prev {
	opacity: 1;
	transition: 0.3s linear;
}

.related-programs-list .swiper-button-next,
.related-programs-list .swiper-button-prev {
	color: #fff;
	/* or use your theme color */
	background: var(--accent-color);
	padding: 15px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	top: 50%;
	width: 40px;
	height: 40px;
	opacity: 0;
	transition: 0.3s linear;
}

.related-programs-list .swiper-button-next::after,
.related-programs-list .swiper-button-prev::after {
	font-size: 20px;
}

.main-header .shop-cart {
	list-style: none;
	position: relative;
}

.main-header .shop-cart .nav-icon-item {
	font-size: 24px;
	color: #ffffff;
	margin-left: 15px;
}

.main-header .shop-cart .count {
	width: 24px;
	height: 24px;
	display: block;
	border-radius: 50%;
	background: var(--accent-color);
	position: absolute;
	top: -12px;
	right: -12px;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-cta-section {
	background-color: #ffffff;
	color: #ffffff;
}

.cta-container-box {
	padding: 50px;
	background: url(../images/cta-image.jpg) no-repeat center center;
	background-size: cover;
	border-radius: 20px;
	position: relative;
	z-index: 11;
	overflow: hidden;
}

.cta-container-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right,
			rgba(2, 2, 2, 0.22) 0%,
			transparent 100%);
	z-index: -1;
}

.services-cta-section .services-cta-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--white-color);
}

.services-cta-section .services-cta-subtext {
	/* max-width: 600px; */
	/* margin: 0 auto; */
	font-size: 1.1rem;
	color: #ffffff;
}

/* .content-container-boxs {
	max-width: 800px;
	margin: 0 auto;
} */

.services-cta-section .btn-accent {
	background-color: #f06292;
	color: #fff;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.services-cta-section .btn-accent:hover {
	background-color: #ec407a;
	color: #fff;
}

.services-banner-section {
	background: url(../images/services-banner.png) no-repeat center center;
	background-size: cover;
}

.programs-details-banner-section {
	padding: 170px 0 50px;
	background: url(../images//programs-details-banner.png) no-repeat center center;
	background-size: cover;
}

.recipe-card {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgb(0 0 0 / 4%);
	transition: all 0.3s ease;
}

.recipe-item {
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(1);
	opacity: 1;
}

.recipe-item.fade-out {
	transform: scale(0.8);
	opacity: 0;
}

.recipe-item.fade-in {
	animation: zoomIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	50% {
		transform: scale(1.05);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Hidden state for filtered items */
.recipe-item.hidden {
	display: none;
}

.text-anime-style-3 {
	animation: slideInFromLeft 0.8s ease-out;
}

@keyframes slideInFromLeft {
	0% {
		transform: translateX(-50px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.main-header .user-account {
	list-style: none;
	margin-left: 5px;
}

.main-header .user-account a {
	color: #ffffff;
}

.main-header.new-bg-color {
	background-color: rgba(0, 0, 0, 0) !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.main-header.new-bg-color .main-menu ul li a {
	color: #000000;
}

.nav-item.submenu li a.nav-link {
	color: #ffffff !important;
}

.main-header.new-bg-color .shop-cart .nav-icon-item {
	color: var(--accent-secondary-color);
}

.main-header .user-account a {
	font-size: 24px;
	color: #ffffff;
	margin-left: 16px;
	padding: 5px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
	overflow: hidden;
}

.main-header .user-account a img {
	border-radius: 50px;
}

.login-section {
	padding: 150px 0 100px;
}

.login-section .login-section-left {
	width: 100%;
	background: linear-gradient(180deg, var(--accent-color), #dd7500);
	/* background: url('../images/login-bg.png') no-repeat center center; */
	background-size: cover;
	background-blend-mode: overlay;
	padding: 60px 40px;
	color: #ffffff;
	border-radius: 30px;
}

.login-section .login-section-title {
	color: #ffffff;
	font-size: 2.5rem;
	line-height: 1.3;
}

.login-section .login-section-image {
	max-height: 320px;
	width: 100%;
	object-fit: cover;
}

/* Input Group Wrapper */
.login-section .form-group {
	position: relative;
	margin-bottom: 2rem;
}

/* Floating Label Effect */
.login-section .form-control {
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 0.8rem 0.8rem;
	font-size: 1rem;
	background-color: #fff;
	box-shadow: none;
	transition: all 0.3s ease;
}

.login-section .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 2px rgb(234 125 0 / 20%);
}

.login-section .form-group label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 1rem;
	color: #999;
	transition: all 0.2s ease-in-out;
	pointer-events: none;
	background-color: #fff;
	padding: 0 5px;
}

/* Label floats when input has content or is focused */
.login-section .form-control:focus+label,
.login-section .form-control:not(:placeholder-shown)+label {
	top: -0.6rem;
	left: 0.8rem;
	font-size: 0.75rem;
	color: var(--accent-color);
	background-color: #fff;
}

/* Button Enhancements */
.login-section .login-section-submit {
	background-color: var(--accent-secondary-color);
	color: #fff;
	padding: 0.75rem;
	font-weight: 600;
	border-radius: 8px;
	transition: background-color 0.3s;
	border: none;
}

.login-section .login-section-submit:hover {
	background-color: var(--accent-color);
	/* slightly darker shade */
}

/* Signup Link */
.login-section .login-section-signup-link {
	color: var(--accent-color);
	font-weight: 500;
	text-decoration: underline;
	transition: 0.3s;
}

.login-section .login-section-signup-link:hover {
	color: var(--accent-secondary-color);
}

/* Forgot Password */
.login-section .login-section-forgot {
	font-size: 15px;
	color: #777;
	transition: 0.3s;
}

.login-section .login-section-forgot:hover {
	color: var(--accent-color);
}

/* Logo styling */
.login-section .header-logo {
	height: 48px;
}

.login-shape-animate {
	bottom: -15px;
}

.light-effect {
	position: absolute;
	top: 100px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #ffffff;
	filter: blur(20px);
	animation: lightEffectAnimation 2s infinite alternate;
}

.light-effect {
	position: absolute;
	top: 105px;
	right: 27px;
	width: 25px;
	height: 30px;
	background: #ffffff;
	filter: blur(10px);
	opacity: 0.8;
	border-radius: 50%;
	animation: lightBlink 1.2s infinite ease-in-out;
}

@keyframes lightBlink {

	0%,
	100% {
		transform: scale(0.95);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.2);
		opacity: 1;
	}
}

/* Hide arrows in number inputs (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.signup-section-left {
	position: sticky;
	top: 50px;
	height: fit-content;
}

.main-header.new-bg-color .btn-default.btn-highlighted {
	border: 1px solid var(--accent-color);
}

.main-header.new-bg-color .btn-default.btn-highlighted:hover {
	color: var(--primary-color);
	border: 1px solid var(--accent-secondary-color);
}

.wishlist-section .wishlist-table img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.wishlist-section .wishlist-table tr th {
	padding: 20px 10px;
	background: #e4e4e4;
}

.wishlist-section .wishlist-table tr td {
	padding: 30px 20px;
}

.wishlist-section .wishlist-table .btn {
	font-size: 15px;
	background-color: var(--accent-secondary-color);
	border-radius: 50px;
	padding: 10px 25px;
}

.wishlist-section .wishlist-table .close-btn {
	background-color: transparent;
}

#cartOffcanvas .cart-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}

#cartOffcanvas .cart-checkout-btns {
	background-color: var(--accent-secondary-color);
	color: var(--white-color);
	transition: 0.3s linear;
}

#cartOffcanvas .cart-checkout-btns:hover {
	background-color: var(--accent-color);
	transition: 0.3s linear;
}

.checkout-section {
	padding: 150px 0 80px;
}

.checkout-section .review-items-place .added-program-img {
	width: 130px;
	height: 130px;
}

.contact-news-offers .form-control,
.billing-address-form .form-control {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	padding-left: 0;
	font-size: 1rem;
}

.billing-address-form .form-select {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
}

.contact-news-offers label,
.billing-address-form label {
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #333;
	display: block;
}

.contact-news-offers a {
	color: var(--primary-color);
	text-decoration: underline;
}

.coupon-wrapper {
	display: flex;
	align-items: center;
	background-color: #f4f4f4;
	border-radius: 30px;
	overflow: hidden;
	padding: 2px;
}

.coupon-input {
	border: none;
	padding: 12px 15px;
	border-radius: 20px 0 0 20px;
	outline: none;
	background-color: transparent;
	font-size: 14px;
	min-width: 280px;
}

.coupon-input:focus {
	border-color: #ffffff;
	outline: 0;
	box-shadow: none;
}

.coupon-btn {
	background-color: var(--accent-secondary-color);
	color: white;
	border: none;
	width: 100%;
	padding: 15px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
}

.coupon-btn:hover {
	background-color: var(--accent-color);
}

.total-bill-list {
	max-width: 100%;
	font-size: 15px;
	color: #000;
}

.bill-item {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
}

.bill-item.total {
	font-weight: bold;
	font-size: 16px;
	margin-top: 10px;
}

.total-bill-list hr {
	margin: 10px 0;
	border: none;
	border-top: 1px solid #ccc;
}

.checkout-section .checkout-sticky-tab {
	position: sticky;
	top: 50px;
	height: fit-content;
}

.confirmation-popup {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	justify-content: center;
	align-items: center;
	font-family: "Arial", sans-serif;
}

.popup-content {
	position: relative;
	background: #f7f7f7;
	padding: 60px 40px;
	border-radius: 25px;
	text-align: center;
	width: 100%;
	max-width: 600px;
	/* Increased width */
	min-height: 400px;
	/* Increased height */
	margin: 0 auto;
	animation: fadeIn 0.3s ease-in-out;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.success-icon {
	width: 220px;
	margin-bottom: 40px;
}

.popup-content h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: #000;
}

.popup-content p {
	margin-bottom: 25px;
	font-size: 14px;
	color: #333;
}

.continue-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s;
}

.continue-btn:hover {
	background-color: #e55d00;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	font-weight: bold;
	transition: color 0.2s ease;
}

.close-btn:hover {
	color: #000;
}

.checkout-section .checkout-section-submit {
	background-color: var(--accent-secondary-color);
	color: #fff;
	padding: 0.75rem;
	font-weight: 600;
	border-radius: 8px;
	transition: background-color 0.3s;
	border: none;
}

.checkout-section .checkout-section-submit:hover {
	background-color: var(--accent-color);
}

.accordion-item:last-of-type>.accordion-collapse {
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
}

.home-banner-section .decors-1 {
	top: 130px;
	left: 60px;
	opacity: 0.3;
	animation: movings 10s linear infinite;
}

.home-banner-section .decors-2 {
	bottom: 0;
	left: 30px;
	opacity: 0.3;
	animation: movings 10s linear infinite;
}

.home-banner-section .decors-3 {
	bottom: 70px;
	left: 37%;
	opacity: 0.08;
	animation: movings 10s linear infinite;
}

@keyframes movings {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(30px);
		/* move right */
	}

	100% {
		transform: translateX(0);
		/* back to original */
	}
}

.banner-btn,
.banner-btn-icon {
	background-color: var(--accent-secondary-color) !important;
	border: 1px solid var(--accent-secondary-color);
}

.form-label {
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #333;
	display: block;
}

.contact-info-list .contact-info-item:last-child {
	width: 100%;
	border-right: none;
	border-top: 1px solid var(--dark-divider-color);
}

.blog-details-section {
	color: #333;
	padding-top: 150px;
	padding-bottom: 70px;
}

.blog-details-section .blog-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-details-section .blog-meta {
	font-size: 14px;
	color: #888;
}

.blog-details-section .blog-meta i {
	margin-right: 5px;
	color: #888;
}

.blog-details-section h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1e1e1e;
}

.blog-details-section h4 {
	font-size: 22px;
	font-weight: 600;
	margin-top: 25px;
	margin-bottom: 10px;
	color: #000000;
}

.blog-details-section p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 16px;
}

/* .blog-details-section .blog-tags .badge {
	padding: 8px 14px;
	font-size: 14px;
	border-radius: 50px;
	background-color: #f0f0f0;
	color: #333;
	cursor: pointer;
	transition: 0.3s ease;
} */

.blog-details-section h5 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #2c3e50;
}

.blog-details-section ul {
	list-style: none;
	padding-left: 0;
}

.blog-details-section ul li {
	margin-bottom: 8px;
}

.blog-details-section ul li a {
	color: #555;
	text-decoration: none;
	transition: 0.3s ease;
}

.blog-details-section ul li a:hover {
	color: var(--accent-color);
}

.blog-details-section .recent-blog h6 {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
}

.blog-details-section .recent-blog small {
	font-size: 13px;
	color: #888;
}

.blog-details-section .recent-blog img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
}

.blog-details-section .badge {
	font-size: 15px;
	font-weight: normal;
	padding: 10px 12px;
	background-color: #f0f0f0;
	color: #444;
	border-radius: 15px 0 15px;
	transition: background 0.3s ease, color 0.3s ease;
}

.blog-details-section .badge:hover {
	background-color: var(--accent-color);
	color: #ffffff;
	transition: background 0.3s ease, color 0.3s ease;
}

.blog-details-section .d-flex.gap-3>div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.blog-details-section .recent-blog-images {
	width: 100px;
	height: 80px;
	object-fit: cover;
}

.blog-details-categories li {
	margin-bottom: 20px !important;
}

.blog-details-categories li a span {
	float: right;
	color: var(--accent-secondary-color);
	font-size: 15px;
}

.careers-list-page {
	padding: 80px 0;
}

.careers-list-page .job-list {
	margin-top: 2rem;
}

.careers-list-page .job-card {
	background-color: #fff;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	transition: 0.3s;
}

.careers-list-page .job-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
	border-bottom: 1px solid var(--accent-color);
	transform: translateY(-1px);
	transition: 0.3s;
}

.careers-list-page .job-card h5 {
	font-weight: 600;
	font-size: 25px;
}

.careers-list-page .job-card p {
	color: #444;
	font-size: 16px;
}

.careers-list-page .badge-icon {
	background-color: #f5f5f5;
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 0.85rem;
	color: #333;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #ddd;
}

.careers-list-page .apply-link {
	display: inline-block;
	padding: 10px 18px;
	background-color: var(--accent-secondary-color);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: background 0.3s ease;
}

.careers-list-page .apply-link i {
	margin-left: 6px;
}

.careers-list-page .apply-link:hover {
	background-color: var(--accent-secondary-color);
}

.careers-details-page {
	padding: 150px 0 80px;
}

.careers-details-page .job-title {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
}

.careers-details-page .custom-list {
	list-style: none;
	padding-left: 0;
}

.careers-details-page .custom-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 20px;
	color: #444;
	font-size: 16px;
}

.careers-details-page .custom-list li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-size: 19x;
	font-weight: 900;
	color: var(--accent-secondary-color);
	position: absolute;
	left: 0;
	top: 2px;
}

.careers-details-page .form-card {
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #eee;
}

.careers-details-page .captcha-box {
	font-weight: bold;
}

.careers-details-page .share-btn {
	font-size: 1.1rem;
	color: #fff;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.careers-details-page .facebook {
	background: #3b5998;
}

.careers-details-page .twitter {
	background: #000;
}

.careers-details-page .linkedin {
	background: #0a66c2;
}

.careers-details-page .whatsapp {
	background: #25d366;
}

.application-submit-btn {
	width: 100%;
	background-color: var(--accent-secondary-color);
	color: #ffffff;
}

.application-submit-btn:hover {
	background-color: var(--accent-secondary-color);
	color: #ffffff;
}

.careers-details-page .form-select {
	padding: 5px;
	border-bottom: 1px solid #ccc;
}

.careers-details-page select,
.careers-details-page select option {
	color: #000 !important;
	background-color: #fff;
}

.dropdown-toggle::after {
	display: none !important;
}

.custom-dropdown-menu {
	list-style: none;
	position: absolute;
	display: none;
	max-height: 90vh;
	padding: 0;
	right: 0;
	width: auto;
	background-color: var(--cds-color-white-0, #ffffff);
	color: #7a7d7f;
	box-shadow: 0 0 2px 0 var(--cds-color-darken-100, rgba(0, 0, 0, 0.1));
	border-color: var(--cds-color-grey-25, #e0e0e0);
	border-radius: 1px;
	top: 65px;
	border: 1px solid var(--cds-color-grey-25, #e0e0e0);
	z-index: 1000 !important;
	min-width: 200px !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(-10px);
	overflow: hidden;
	transition: all 0.3s ease;
}

.custom-dropdown-menu.show {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.custom-dropdown-menu .dropdown-item {
	padding: 12px 16px !important;
	color: #7a7d7f !important;
	text-decoration: none !important;
	display: block !important;
	transition: background-color 0.2s ease !important;
	border: none !important;
	background: transparent !important;
}

.custom-dropdown-container {
	position: relative !important;
	display: inline-block !important;
}

.user-image {
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}

.user-image:hover {
	opacity: 0.8 !important;
}

.main-header .user-account .nav-icon-item-drop-down {
	font-size: 24px;
	color: #000;
	margin-left: 16px;
	padding: 5px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
}

.main-header .user-account .nav-icon-item-drop-down .dropdown-item {
	color: #000 !important;
}

.custom-dropdown-menu .dropdown-item {
	font-size: 16px !important;
	width: 100% !important;
	margin: 5px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: start !important;
	padding: 12px 16px !important;
	color: #000 !important;
	font-weight: 500;
	text-decoration: none !important;
	background: transparent !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-dropdown-menu .dropdown-item i {
	color: #000 !important;
	font-size: 16px;
}

.my-programs {
	padding: 150px 0 80px;
}

.my-programs .intro-card,
.my-programs .program-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

.my-programs .intro-card h5,
.my-programs .program-card h5 {
	font-weight: 600;
}

.my-programs .program-card .my-program-title {
	font-size: 20px;
	font-weight: 600;
	color: #000000;
}

.my-programs .intro-card p,
.my-programs .program-card p {
	color: #555;
	margin-bottom: 10px;
}

.my-programs .progress {
	height: 8px;
	background-color: #e9ecef;
	border-radius: 5px;
}

.my-programs .progress-bar {
	background-color: #087051;
}

.my-programs .resume-your-program-btn {
	background-color: var(--accent-secondary-color);
	border: none;
	color: #ffffff;
	font-size: 14px;
	padding: 6px 12px;
}

.my-programs small {
	font-size: 13px;
	color: #666;
}

.my-programs h2 {
	font-weight: 700;
	margin-bottom: 30px;
}

.my-programs .btn-outline-primary {
	font-size: 14px;
}

.my-programs .program-card:hover {
	border-color: #cce5ff;
	box-shadow: 0 4px 12px rgba(0, 21, 255, 0.05);
}

.my-programs .profile-img {
	width: 100px;
	height: 100px;
}

.my-programs .profile-img img {
	border-radius: 50%;
}

.my-programs .status-program {
	background: var(--accent-color);
	color: #ffffff;
}

.my-programs .status-program-completed {
	background: #008000;
	color: #ffffff;
}

.my-programs .browse-programs {
	border: 1px solid var(--accent-secondary-color);
	background-color: var(--accent-secondary-color);
	color: #ffffff;
}

/* program plan css starts */
.program-plan {
	background: #f8f9fa;
	padding: 140px 0 80px;
}

.program-plan .accordion-button:focus {
	box-shadow: none;
}

.program-plan .accordion-item {
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 10px;
}

.program-plan .video-list .video-link {
	padding: 15px 15px;
	display: block;
	border-left: 4px solid transparent;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.program-plan .video-list .video-link:hover,
.program-plan .video-list .video-link.active {
	background: #f1f7ff;
	border-left-color: var(--accent-secondary-color);
	color: var(--accent-color);
	border-top-color: 1px solid var(--accent-secondary-color);
	border-right-color: 1px solid var(--accent-secondary-color);
	border-bottom-color: 1px solid var(--accent-secondary-color);
}

.program-plan .video-player iframe {
	width: 100%;
	height: 400px;
	border-radius: 10px;
	border: 1px solid #ddd;
}

.program-plan .next-btn {
	margin-top: 15px;
}

.program-plan .left-menu {
	max-height: 600px;
	overflow-y: auto;
}

.program-plan .video-link {
	display: flex;
	align-items: center;
	font-size: 15px;
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 5px;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.program-plan .video-link:hover {
	background-color: #f0f8ff;
	border-color: #cce5ff;
}

.program-plan .video-link.active {
	background-color: #e9f2ff;
	border-color: var(--accent-secondary-color);
	color: var(--accent-secondary-color);
	font-weight: 500;
}

@media (max-width: 767px) {
	.program-plan .left-menu {
		display: none !important;
	}
}

.program-plan .accordion-body {
	padding: 15px;
}

.program-plan .video-list {
	display: block;
	width: 100%;
}

.program-plan .video-link {
	display: flex;
	align-items: center;
	font-size: 15px;
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 5px;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s ease;
	width: 100%;
}

.program-plan .video-link:hover {
	background-color: #f0f8ff;
	border-color: #cce5ff;
}

.program-plan .video-link.active {
	background-color: #e9f2ff;
	border-color: #007bff;
	color: #007bff;
	font-weight: 500;
}

.program-plan .accordion-collapse {
	width: 100%;
}

.program-plan .accordion-collapse.show {
	display: block;
}

.program-plan .accordion-button {
	padding: 8px 15px;
	border-radius: 0;
}

.program-plan .next-video-btn {
	color: var(--accent-secondary-color);
}

.program-plan .locked-month {
	opacity: 0.6;
	pointer-events: auto;
	cursor: not-allowed;
}

.program-plan .locked-month .accordion-button.locked-btn {
	background-color: #f8f9fa;
	color: #6c757d;
	cursor: not-allowed;
}

.program-plan .locked-month .accordion-button.locked-btn:disabled {
	pointer-events: auto;
	opacity: 1;
}

.program-plan .locked-month .accordion-button.locked-btn {
	background-color: #f8f9fa;
	color: #6c757d;
	cursor: default;
}

.program-plan .locked-month .accordion-button.locked-btn:hover {
	background-color: #f1f1f1;
}

.tooltip {
	z-index: 9999;
}

.accordion,
.accordion-item {
	overflow: visible !important;
}

.my-programs-tooltip-wrapper {
	position: relative;
}

.my-programs-tooltip {
	position: absolute;
	top: -35px;
	right: 0;
	background-color: #000;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	display: none;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.my-programs-tooltip::after {
	content: "";
	position: absolute;
	bottom: -6px;
	right: 10px;
	border-width: 6px;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
}

.my-programs-tooltip-wrapper:hover .my-programs-tooltip {
	display: block;
}

.my-programs-tooltip-wrapper {
	position: relative;
}

.my-programs-tooltip {
	position: absolute;
	top: -42px;
	left: 50%;
	transform: translateX(-50%);
	width: fit-content;
	background-color: #212529;
	color: #fff;
	padding: 0px 12px;
	border-radius: 0.25rem;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1050;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.my-programs-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 14px;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: #212529 transparent transparent transparent;
}

.my-programs-tooltip-wrapper:hover .my-programs-tooltip {
	opacity: 1;
	visibility: visible;
}

.profile-section {
	padding: 150px 0 80px 0;
	background: linear-gradient(to right, #f8f9fc, #ffffff);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.decor-top-left,
.decor-bottom-right {
	position: absolute;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #570499, #8132c7);
	border-radius: 50%;
	opacity: 0.15;
	z-index: -1;
}

.decor-top-left {
	right: -55px;
	top: -55px;
	width: 170px;
	height: 170px;
}

.decor-bottom-right {
	top: 50px;
	right: -17px;
	width: 130px;
	height: 130px;
}

.profile-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png'); */
	opacity: 0.05;
	z-index: -1;
}

.logout-message-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.profile-section-center {
	display: flex;
	max-width: 1100px;
	margin: 0px auto;
}

.profile-section__sidebar {
	width: 250px;
	background: #f9f9f9;
	padding: 30px 20px;
	border-radius: 16px 0 0 16px;
	border: 1px solid #eee;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.profile-section__nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.profile-section__nav li {
	padding: 12px 20px;
	margin-bottom: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s;
	font-weight: 500;
}

.profile-section__nav li.active {
	background: linear-gradient(90deg, #570499 0%, #8132c7 100%);
	color: #fff;
}

.profile-section__nav li:hover {
	background: #ececec;
}

.profile-section__nav li.active:hover {
	background: linear-gradient(90deg, #570499 0%, #8132c7 100%);
	color: #fff;
}

.profile-section__content {
	flex: 1;
	padding: 30px;
	background: #fff;
	border-radius: 0 16px 0px 16px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	border: 1px solid #eee;
}

.profile-section__tab-content {
	display: none;
	padding: 0px;
}

.profile-section__tab-content.active {
	display: block;
}

.profile-section__image-section {
	position: relative;
	display: inline-block;
	width: 150px;
	height: 150px;
}

.profile-section__profile-pic {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #e0e0e0;
	transition: transform 0.3s ease;
}

.profile-section__profile-pic:hover {
	transform: scale(1.03);
}

.profile-section__edit-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #570499;
	color: #fff;
	border: 1px solid;
	border-radius: 50%;
	padding: 6px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.profile-section__edit-icon:hover {
	background: #3d036e;
}

.profile-section__form input {
	display: block;
	width: 100%;
	margin: 12px 0;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.profile-section__edit-btn,
.profile-section__save-btn {
	padding: 10px 16px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.profile-section__edit-btn {
	background: #e74c3c;
	color: white;
}

.profile-section__edit-btn:hover {
	background: #c0392b;
	transform: scale(1.02);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-section__save-btn {
	background: #27ae60;
	color: white;
}

.profile-section__save-btn:hover {
	background: #1e8449;
	transform: scale(1.02);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-section__address-header h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

.profile-section__address-box {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-section__textarea {
	width: 100%;
	height: 150px;
	padding: 15px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	resize: none;
	transition: border-color 0.3s;
}

.profile-section__textarea:focus {
	border-color: #e74c3c;
	outline: none;
}

.profile-section__textarea:disabled {
	background-color: #f7f7f7;
	color: #555;
	cursor: not-allowed;
}

.profile-section__button-group {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

.profile-section__program-card {
	display: flex;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

.profile-section__program-img img {
	width: 200px;
	height: 100%;
	object-fit: cover;
}

.profile-section__program-body {
	padding: 16px;
	flex: 1;
}

.profile-section__badge {
	background: orange;
	color: white;
	padding: 4px 10px;
	border-radius: 16px;
	font-size: 12px;
}

.profile-section__price-row {
	margin: 8px 0;
	font-size: 16px;
}

.profile-section__view-link {
	color: #570499;
	text-decoration: none;
	font-weight: 600;
}

.logout-tab {
	color: var(--accent-secondary-color);
}

.profile-section__image-section::before {
	content: "";
	position: absolute;
	top: -7px;
	left: -8px;
	width: 110%;
	height: 110%;
	border-radius: 50%;
	border: 2px dashed #8132c7;
	animation: rotate 8s linear infinite;
	opacity: 0.2;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.accordion-header {
	margin-bottom: 0 !important;
}

/* profile show page css end */
.mobile-cart-profile ul {
	padding-left: 4rem;
	padding-right: 1rem;
}

.mobile-cart-profile .shop-cart .nav-icon-item {
	font-size: 20px;
	color: #ffffff;
	margin-left: 15px;
}

.mobile-cart-profile .shop-cart .count {
	width: 17px;
	height: 17px;
}

.mobile-cart-profile .user-account .nav-icon-item-drop-down {
	font-size: 20px;
	color: #000;
	margin-left: 16px;
	padding: 0px;
	width: 35px;
	height: 35px;
}

.profile-section__edit-icon i {
	color: var(--accent-secondary-color) !important;
}

.mobile-cart-profile .user-account a {
	font-size: 20px;
	color: #000;
	margin-left: 16px;
	padding: 3px;
	width: 35px;
	height: 35px;
}

/* Privacy policy css starts */
.privacy-policy-section,
.terms-and-conditions-section {
	padding: 130px 0 50px;
}

.privacy-policy-wrapper {
	background-color: #fff;
	border: 1px solid #eee;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 40px;
	border-radius: 16px;
}

.privacy-policy-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-secondary-color);
}

.privacy-policy-wrapper p,
.privacy-policy-wrapper ul {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
}

.privacy-policy-wrapper h5 {
	font-size: 18px;
	color: var(--accent-secondary-color);
	font-weight: 600;
}

.privacy-policy-wrapper ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.contact-list {
	list-style: none;
	padding: 0;
}

.contact-list li {
	margin-bottom: 10px;
}

.contact-list a {
	color: var(--accent-secondary-color);
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
}

@media (max-width: 576px) {
	.privacy-policy-wrapper {
		padding: 25px 20px;
	}

	.privacy-policy-title {
		font-size: 22px;
	}
}

.terms-wrapper {
	background-color: #fff;
	border: 1px solid #eee;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 40px;
	border-radius: 16px;
}

.terms-wrapper p,
.terms-wrapper ul {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
}

.terms-wrapper h5 {
	font-size: 18px;
	color: var(--accent-secondary-color);
	font-weight: 600;
}

.terms-wrapper ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.contact-list {
	list-style: none;
	padding: 0;
}

.contact-list li {
	margin-bottom: 10px;
}

.contact-list a {
	color: var(--accent-secondary-color);
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
}

@media (max-width: 576px) {
	.terms-wrapper {
		padding: 25px 20px;
	}

	.terms-title {
		font-size: 22px;
	}
}

.programs-list-section .program-badge:hover {
	cursor: text;
}

.related-blog .swiper-button-next,
.related-blog .swiper-button-prev {
	color: #fff;
	background: var(--accent-color);
	padding: 15px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	top: 50%;
	width: 40px;
	height: 40px;
	transition: 0.3s linear;
}

.related-blog .swiper-button-next::after,
.related-blog .swiper-button-prev::after {
	font-size: 20px;
}

.related-blog .swiper-slide {
	padding-bottom: 30px;
	/* Add bottom space */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.profile-section .section-title .profile-text {
	font-size: 30px;
}

.apply-coupon-box {
	border: 1px dashed #ababab;
	padding: 15px 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	width: 100%;
	margin-bottom: 20px;
}

.coupon-panel {
	position: fixed;
	top: 0;
	right: -440px;
	width: 440px;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 20px;
	transition: right 0.3s ease-in-out;
	overflow-y: auto;
}

.coupon-panel.open {
	right: 0;
}

.coupon-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid #bfbfbf;
}

.close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

.coupon-input-wrapper {
	display: flex;
	margin: 20px 0;
}

.coupon-input {
	flex: 1;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 7px 0 0 7px;
	outline: none;
}

.coupon-input:focus {
	border: 1px solid #ccc;
}

.apply-btn {
	background: var(--accent-secondary-color);
	border: none;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	cursor: pointer;
	border-radius: 0 7px 7px 0;
}

.coupon-card {
	border: 1px solid #ddd;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.coupon-code {
	display: inline-block;
	background-color: #fff5e1;
	color: #000;
	font-weight: bold;
	padding: 6px 16px;
	font-size: 14px;
	border: 1px solid #e6d5b8;
	position: relative;
	border-radius: 4px;
	margin-bottom: 8px;
}

.coupon-code::before,
.coupon-code::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: white;
	border: 1px solid #e6d5b8;
	border-radius: 50%;
	z-index: 1;
}

.coupon-code::before {
	left: -6px;
}

.coupon-code::after {
	right: -6px;
}

.apply-coupon-btn {
	background: none;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
	padding: 8px 16px;
	cursor: pointer;
	margin-top: 8px;
	border-radius: 4px;
	font-weight: bold;
}

.apply-coupon-btn:hover {
	background: var(--accent-color);
	color: white;
}

.coupon-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 9998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.coupon-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* Success Popup Styles */
.success-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	text-align: center;
	min-width: 320px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.success-popup.show {
	opacity: 1;
	visibility: visible;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 24px;
}

.success-popup h3 {
	color: #666;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: normal;
}

.savings-amount {
	font-size: 48px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

.savings-text {
	color: #666;
	margin-bottom: 20px;
	font-size: 16px;
}

.divider {
	width: 40px;
	height: 2px;
	background: #ddd;
	margin: 20px auto;
}

.coupon-message {
	color: #999;
	font-size: 14px;
	margin-bottom: 20px;
}

.yay-text {
	color: var(--accent-color);
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}

/* Applied Coupon Display */
.applied-coupon {
	border: 1px dashed #4caf50;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8fff8;
	border-radius: 4px;
	margin-bottom: 20px;
}

.applied-coupon-info {
	display: flex;
	flex-direction: column;
}

.applied-coupon-code {
	font-weight: bold;
	color: #333;
	font-size: 16px;
}

.applied-coupon-desc {
	color: #666;
	font-size: 14px;
	margin-top: 2px;
}

.remove-btn {
	background: none;
	border: 1px solid #ff4444;
	color: #ff4444;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
}

.remove-btn:hover {
	background: #ff4444;
	color: white;
}

.hidden {
	display: none;
}

.custom-input-group {
	display: flex;
	align-items: center;
}

.country-code-select {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	background-color: transparent;
	padding-left: 0;
	font-size: 15px;
	width: auto;
}

.custom-input {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	padding-left: 5px;
	font-size: 15px;
	flex: 1;
}

.country-code-select {
	max-width: 78px;
	flex: 0 0 auto;
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	background-color: transparent;
	padding-left: 0;
	font-size: 15px;
	padding: 5px 17px 5px 5px;
}

.custom-input {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	padding-left: 0;
	font-size: 15px;
}

.country-code-select:focus {
	border-bottom: 1px solid #ccc;
	box-shadow: none;
}

.my-profile-edit {
	height: 45px;
}

/* .sticky-sidebar {
	position: fixed;
	top: 150px;
	right: 70px;
	width: 460px;
	z-index: 100;
} */

.toggle-password {
	position: absolute;
	right: 30px;
	top: 43px;
	cursor: pointer;
	color: #888;
	font-size: 15px;
}

.toggle-password:hover {
	color: #333;
}

.succes-page-container {
	padding: 150px 0 60px 0;
}

.succes-page-container .payment-success-icon {
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin-bottom: 20px;
}

.succes-page-container .popup-content {
	box-shadow: 0 25px 50px rgb(0 0 0 / 10%);
}

/* failure */
.failure-page-container {
	padding: 150px 0 60px 0;
}

.failure-page-container .payment-failure-icon {
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin-bottom: 20px;
}

.failure-page-container .popup-content {
	box-shadow: 0 25px 50px rgb(0 0 0 / 10%);
}

.program-short-description ul {
	list-style: none;
	/* remove default bullets */
	padding-left: 30px;
}

.program-short-description ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 18px;
	/* optional spacing */
}


.program-short-description ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23570499' viewBox='0 0 512 512'><path d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'/></svg>") no-repeat center;
	background-size: contain;
}

.about-us video {
	width: 100%;
	height: 330px;
	object-fit: cover;
	border-radius: 15px;
}

.offer-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1050;
}

/* Popup container */
.offer-popup {
	background: #fff;
	border-radius: 15px;
	padding: 25px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: popupFadeIn 0.5s ease;
}

/* Title */
.offer-popup h4 {
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

/* Offer image */
.offer-popup img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;
}

/* Circular close button */
.offer-close-btn {
	position: absolute;
	top: -12px;
	right: -12px;
	background: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.offer-close-btn:hover {
	background: var(--accent-secondary-color);
	transform: scale(1.1);
}

@keyframes popupFadeIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}