/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #4d537f;
	--secondary-color: #F4F5FF;
	--text-color: #666666;
	--accent-color: #f29ab9;
	--white-color: #FFFFFF;
	--divider-color: #20296E1A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Onest", sans-serif;
	--bgcolor: #c8d1d5;
}




/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	/* background: var(--bgcolor); */
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}



.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--accent-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	border: none;
	padding: 17px 54px 17px 30px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}





.btn-default:hover {
	background: transparent;
}

.btn-default::before {
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	top: 16px;
	right: 30px;
	font-size: 18px;
	color: var(--white-color);
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: rotate(0deg);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(30deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
	background: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:after {
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 18px;
	color: var(--accent-color);
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover:after {
	color: var(--primary-color);
	transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
	border-radius: 40px;
}

.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: 14px;
	font-weight: 600;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent-color);
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.section-title h1 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section {
	background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h2,
.dark-section .section-title h1 {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	padding: 30px 0;
}

.topbar .container-fluid {
	padding: 0;
}

.topbar-contact-info ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	line-height: normal;
	border-right: 1px solid var(--divider-color);
	margin-right: 30px;
	padding-right: 30px;
}

.topbar-contact-info ul li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.topbar-contact-info ul li img {
	width: 100%;
	max-width: 16px;
	margin-right: 10px;
}

.topbar-contact-info ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
	color: var(--accent-color);
}

.topbar-social-links {
	text-align: right;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.topbar-social-links ul li a i {
	font-size: 16px;
	color: inherit;
}

header.main-header {
	position: relative;
	z-index: 100;
}

header.main-header .container-fluid {
	padding: 0;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	z-index: 100;
}

.main-header.bg-section {
	border-bottom: 1px solid var(--dark-divider-color);
	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(--primary-color);
	border: 1px solid var(--dark-divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
	padding: 0 15px;
}

.navbar {
	padding: 30px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.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-size: 16px;
	font-weight: 500;
	line-height: 1em;
	padding: 15px 20px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-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: scale(1, 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(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn {
	text-align: end;
}

.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: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--primary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--primary-color);
}

.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-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg-2.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	margin-top: -115px;
	padding: 125px 0px 0px 0px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 90%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video {
	padding: 240px 0 120px;
}

.hero.hero-video::before {
	opacity: 80%;
}

.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-video.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 240px 0 120px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 90%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 5px;
	text-align: center;
	z-index: 2;
}

.hero.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-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-section {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
}

/* .hero.hero-video .hero-section {
	text-align: center;
} */

.hero.hero-video .hero-content .section-title p {
	max-width: 620px;
}

/* .hero.hero-video .hero-body,
.hero.hero-video .hero-content-list ul {
	justify-content: center;
} */

.hero-section .container-fluid {
	padding: 0;
}

.hero-content,
.hero-img {
	position: relative;
	height: 100%;
	z-index: 1;
}

.hero-content {
	align-content: center;
}

.hero-content-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-content-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--accent-color);
	padding-left: 30px;
}

.hero-content-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.hero-body .video-play-button {
	display: inline-flex;
	align-items: center;
}

.hero-body .video-play-button p {
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0 20px 0 0;
}

.video-play-button a {
	height: 50px;
	width: 50px;
	border: 5px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a i {
	font-size: 18px;
	color: var(--accent-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
	border-color: var(--white-color);
}

.video-play-button:hover a i {
	color: var(--white-color);
}

.hero-img {
	margin-left: 80px;
	align-content: end;
}

.hero-img figure {
	display: block;
}

.hero-img img {
	width: 100%;
	aspect-ratio: 1 / 1.063;
	object-fit: cover;
	margin-bottom: 2px;
}

/************************************/
/*** 	   05. Hero Info css	  ***/
/************************************/

.hero-info {
	padding: 80px 0 0;
}

.hero-info-list {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-info-item {
	width: calc(33.33% - 20px);
	display: flex;
	flex-direction: column;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.hero-info-item:nth-child(3n + 2) {
	background-color: var(--accent-color);
}

.hero-info-item:nth-child(3n + 3) {
	background-color: var(--primary-color);
}

.hero-info-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 10px;
	padding-bottom: 10px;

}

.hero-info-header h3 {
	font-size: 20px;
}

.hero-info-header img {
	width: 100%;
	max-width: 30px;
}

.hero-info-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-info-body ul li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.hero-info-body ul li:last-child {
	margin-bottom: 0;
}

.hero-info-body ul li span {
	width: 65%;
}

.hero-info-body p {
	margin-bottom: 10px;
}

.hero-info-body h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.hero-info-body h3 a {
	color: inherit;
}

.hero-info-item:nth-child(3n + 2) .hero-info-header h3,
.hero-info-item:nth-child(3n + 3) .hero-info-header h3,
.hero-info-item:nth-child(3n + 2) .hero-info-body ul li,
.hero-info-item:nth-child(3n + 3) .hero-info-body ul li,
.hero-info-item:nth-child(3n + 2) .hero-info-body p,
.hero-info-item:nth-child(3n + 3) .hero-info-body p,
.hero-info-item:nth-child(3n + 2) .hero-info-body h3,
.hero-info-item:nth-child(3n + 3) .hero-info-body h3 {
	color: var(--white-color);
}

.hero-info-item:nth-child(3n + 2) .hero-info-header,
.hero-info-item:nth-child(3n + 3) .hero-info-header {
	border-color: var(--dark-divider-color);
}

.hero-info-btn {
	flex-grow: 1;
	align-content: end;
	margin-top: px;
}

.hero-info-btn .btn-default {
	width: 100%;
	padding: 17px;
	text-align: center;
}


.hero-info-btn .btn-default::before {
	display: none;
}

.hero-info-item:nth-child(3n + 2) .hero-info-btn .btn-default {
	background: var(--primary-color);
}



/************************************/
/*** 	 	06. ABout Us css	  ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding: 0 70px 70px 80px;
}

.about-us-img-1 figure {
	display: block;
	mask-image: url(../images/about-image-bg-shape.svg);
	background-image: url(../images/about-image-bg-shape.svg);
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	border-radius: 30px;
	width: 100%;
	height: 100%;
}

.about-us-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.about-us-img-2 {
	position: absolute;
	bottom: 0;
	right: 35px;
	border-radius: 20px;
	overflow: hidden;
}

.about-us-img-2 figure {
	display: block;
}

.about-us-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
}

.about-experience-box {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(70%);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 20px;
	max-width: 178px;
	animation: experiencemoveobject 2s infinite linear alternate;
}

@keyframes experiencemoveobject {
	50% {
		left: 30px;
	}
}

.about-experience-box .icon-box {
	margin-bottom: 10px;
}

.about-experience-box .icon-box img {
	max-width: 45px;
}

.about-experience-box .about-experience-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 600;
	color: var(--white-color);
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-list-btn {
	width: calc(100% - 220px);
}

.about-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-list ul li:last-child {
	margin-bottom: 0;
}

.about-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.about-btn {
	margin-top: 40px;
}

.book-consult-circle a {
	display: inline-block;
	border-radius: 50%;
	padding: 15px;
	background: var(--primary-color);
}

.book-consult-circle a img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/************************************/
/*** 	 07. Our Services css	  ***/
/************************************/

.our-services {
	background: url('../images/section-bg-imgae.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.service-item {
	position: relative;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-image,
.service-item:hover .service-image {
	opacity: 1;
}

.service-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 80%;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.service-body {
	position: relative;
	z-index: 2;
}

.service-body .icon-box {
	margin-bottom: 50px;
}

.service-body .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img {
	filter: brightness(0) invert(1);
}

.service-content {
	transform: translateY(55px);
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
	transform: translateY(0px);
}

.service-content-info h3 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.service-content-info a {
	color: inherit;
}

.service-content-info p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content p,
.service-item:hover .service-content p,
.service-item.active .service-content h3,
.service-item:hover .service-content h3 {
	color: var(--white-color);
}

.service-readmore-btn {
	opacity: 0;
	visibility: hidden;
	margin-top: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-readmore-btn,
.service-item:hover .service-readmore-btn {
	opacity: 1;
	visibility: visible;
}

.service-readmore-btn a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover {
	color: var(--accent-color);
	background: var(--white-color);
}

.service-readmore-btn a i {
	font-size: 20px;
	color: inherit;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover i {
	transform: rotate(0);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.section-footer-text span {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 3px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	 08. Our Commitment css	  ***/
/************************************/

.our-commitment {
	padding: 100px 0;
}

.our-commitment-content,
.our-commitment-image {
	height: 100%;
}

.our-commitment-content {
	align-content: center;
}

.commitment-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.commitment-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.commitment-list ul li:last-child {
	margin-bottom: 0;
}

.commitment-list ul li:before,
.commitment-item-list h3::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.commitment-item-list {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.commitment-item-list h3 {
	position: relative;
	font-size: 20px;
	margin-bottom: 15px;
	padding-left: 30px;
}

.commitment-item-list p {
	margin-bottom: 0;
}

.commitment-btn {
	margin-top: 40px;
}

.our-commitment-image {
	align-content: end;
	margin: 0 52px;
}

.our-commitment-image figure {
	display: block;
}

.our-commitment-image img {
	width: 100%;
	aspect-ratio: 1 / 1.415;
	object-fit: cover;
	margin-bottom: -100px;
}

/************************************/
/*** 	 09. How It Work css	  ***/
/************************************/

.how-it-work {
	padding: 100px 0;
}

.work-step-nav {
	margin-bottom: 60px;
}

.work-step-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	border: none;
	background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
	padding: 30px;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(77, 83, 127, 0.1);
}

.work-step-nav ul li {
	width: calc(33.33% - 20px);
}

.work-step-nav ul li .nav-link {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(145deg, #ffffff, #f0f2ff);
	border: 2px solid transparent;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3em;
	padding: 30px 20px;
	border-radius: 20px;
	text-transform: capitalize;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 5px 15px rgba(77, 83, 127, 0.08);
	position: relative;
	overflow: hidden;
}

.work-step-nav ul li .nav-link.active,
.work-step-nav ul li .nav-link:hover {
	background: linear-gradient(135deg, var(--accent-color), #ff6ba6);
	color: var(--white-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(242, 154, 185, 0.3);
	border-color: var(--accent-color);
}

.work-step-nav ul li .nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.work-step-nav ul li .nav-link:hover::before {
	left: 100%;
}

.work-step-nav ul li .nav-link img {
	width: 100%;
	max-width: 40px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.work-step-nav ul li .nav-link.active img,
.work-step-nav ul li .nav-link:hover img {
	filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255,255,255,0.3));
	transform: scale(1.1);
}

.work-step-content {
	padding-left: 0;
}

.work-step-item {
	position: relative;
	margin-bottom: 50px;
	background: linear-gradient(145deg, #ffffff, #fafbff);
	padding: 40px;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(77, 83, 127, 0.08);
	border: 1px solid rgba(242, 154, 185, 0.1);
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(77, 83, 127, 0.12);
}

.work-step-item:last-child {
	margin-bottom: 0;
}

.work-step-item::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 20px;
	width: 4px;
	height: 4px;
	background: var(--accent-color);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(242, 154, 185, 0.2);
}

.work-step-item::after {
	content: "";
	display: none;
}

.work-step-item:last-child:after {
	display: none;
}

.work-step-item h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 15px;
	padding-left: 25px;
}

.work-step-item h2 {
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.3em;
}

.work-step-item p {
	color: var(--text-color);
	margin-bottom: 0;
	line-height: 1.7em;
}

.work-step-btn {
	margin-top: 40px;
}

.work-step-image figure {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 25px;
	position: relative;
	box-shadow: 0 15px 35px rgba(77, 83, 127, 0.15);
}

.work-step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-step-image:hover img {
	transform: scale(1.05);
}

/************************************/
/*** 	 10. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-box {
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-box:nth-child(3n + 2) {
	flex-direction: column-reverse;
}

.why-choose-image,
.why-choose-item {
	width: 100%;
}

.why-choose-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 0.944;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item {
	background-color: var(--accent-color);
}

.why-choose-box:nth-child(3n + 3) .why-choose-item {
	background-color: var(--primary-color);
}

.why-choose-item h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.why-choose-item h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.why-choose-item p {
	margin-bottom: 0;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item h2,
.why-choose-box:nth-child(3n + 3) .why-choose-item h2,
.why-choose-box:nth-child(3n + 2) .why-choose-item h3,
.why-choose-box:nth-child(3n + 3) .why-choose-item h3,
.why-choose-box:nth-child(3n + 2) .why-choose-item p,
.why-choose-box:nth-child(3n + 3) .why-choose-item p {
	color: var(--white-color);
}

.why-choose-btn {
	margin-top: 30px;
}

.why-choose-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.why-choose-btn .btn-default::before {
	display: none;
}

.why-choose-box:nth-child(3n + 2) .why-choose-item .why-choose-btn .btn-default {
	background: var(--primary-color);
}

/************************************/
/*** 	   11. Our Facts css	  ***/
/************************************/

.our-facts {
	background: url('../images/section-bg-imgae.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.fact-image figure {
	display: block;
	border-radius: 20px;
}

.fact-image img {
	width: 100%;
	aspect-ratio: 1 / 0.655;
	object-fit: cover;
	border-radius: 20px;
}

.fact-info-box .fact-image {
	margin-bottom: 40px;
}

.fact-info-box .fact-image img {
	aspect-ratio: 1 / 0.555;
}

.fact-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.fact-list {
	width: calc(100% - 150px);
}

.fact-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fact-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.fact-list ul li:last-child {
	margin-bottom: 0;
}

.fact-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.book-consult-circle.accent-circle a {
	background: var(--accent-color);
	padding: 10px;
}

.book-consult-circle.accent-circle a img {
	max-width: 110px;
}

.fact-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.fact-counter-item {
	position: relative;
	width: calc(33.33% - 26.66px);
}

.fact-counter-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	bottom: 0;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.fact-counter-item:last-child:after,
.fact-counter-item:nth-child(3n + 3)::after {
	display: none;
}

.fact-counter-item h2 {
	font-size: 40px;
	margin-bottom: 10px;
}

.fact-counter-item p {
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/*** 	  12. Our Pricing css	  ***/
/************************************/

.our-pricing {
	padding: 100px 0;
}

.pricing-item {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	height: calc(100% - 30px);
	padding: 40px;
}

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header p {
	margin-bottom: 30px;
}

.pricing-header h2 {
	font-size: 48px;
	font-weight: 700;
}

.pricing-header h2 sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body {
	margin-bottom: 40px;
}

.pricing-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li {
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 20px;
}

.pricing-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.pricing-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 17px;
}

.pricing-btn .btn-default::before {
	display: none;
}

.pricing-item.highlighted-box {
	background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-body ul li {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-header h2 {
	color: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-header {
	border-color: var(--dark-divider-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 10px;
}

/************************************/
/*** 	    13. CTA Box css		  ***/
/************************************/

.cta-box {
	background: linear-gradient(270deg, rgba(32, 41, 110, 0) -129%, #4d537f 90%), url('../images/motherandbaby.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
	margin: 100px 0;
}

.cta-content-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 0;
}

.cta-contact-item {
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 20px;
	padding-right: 20px;
}

.cta-contact-item:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.cta-contact-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.cta-contact-header img {
	max-width: 20px;
	margin-right: 10px;
}

.cta-contact-header h3 {
	font-size: 20px;
	color: var(--white-color);
}

.cta-contact-item-content p {
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.cta-contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.cta-contact-item-content p a:hover {
	color: var(--accent-color);
}

.cta-btn {
	position: relative;
	display: inline-block;
	margin-top: 60px;
}

.cta-btn::before {
	content: '';
	position: absolute;
	bottom: 5px;
	right: -30px;
	transform: translateX(100%);
	background: url('../images/cta-box-arrow.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100px;
	height: 55px;
	animation: ctaarrowmove 2s infinite linear alternate;
}

@keyframes ctaarrowmove {
	50% {
		right: -55px;
	}
}

/************************************/
/***  	   14. Our Team css	      ***/
/************************************/

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	position: relative;
	text-align: center;
	/* background: var(--secondary-color); */
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 30px 0 30px;
	overflow: hidden;
}

.team-content {
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.team-content h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.team-image img {
	width: 100%;
	max-width: 195px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.39;
	object-fit: cover;
}

.team-social-list {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	transform: translateY(30px);
	text-align: center;
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.team-item:hover .team-social-list .team-social-list-icon {
	transform: translateY(0);
}

.team-social-list {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list {
	opacity: 1;
	visibility: visible;
}

.team-social-list ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-list ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list .team-social-list-icon ul li:hover a {
	background: var(--accent-color);
}

.team-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	15. Our Testimonial css	  ***/
/************************************/

.our-testimonials {
	background-image: url('../images/testimonials-bg.png');
	background-repeat: no-repeat;
	background-size: auto;
	padding: 100px 0;
}

.review-image-box {
	position: relative;
	background: rgba(32, 41, 110, 0.95);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border-radius: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px 36px;
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.review-image-box::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 112, 163, 0.35), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.review-image-box>* {
	position: relative;
	z-index: 1;
}

.review-box {
	display: flex;
	align-items: center;
	gap: 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	padding-right: 24px;
	margin-right: 16px;
	flex: 1 1 260px;
}

.review-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
}

.review-icon img {
	width: 34px;
	height: auto;
}

.review-content p {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 5px;
}

.review-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.review-content ul li {
	display: inline-block;
	line-height: normal;
	color: var(--white-color);
	opacity: 0.9;
}

.review-content ul li:first-child {
	font-size: 30px;
	font-weight: 700;
	margin-right: 8px;
	opacity: 1;
}

.review-content ul li i {
	font-size: 14px;
	color: var(--accent-color);
}

.testimonial-image figure {
	display: block;
	border-radius: 20px;
}

.testimonial-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 20px;
}

.customer-images {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.customer-img {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	overflow: hidden;
	width: 56px;
	height: 56px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.customer-img figure {
	display: block;
	width: 100%;
	height: 100%;
}

.customer-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.customer-img.add-more {
	background-color: var(--white-color);
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.customer-img.add-more p {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: inherit;
}

.testimonial-slider {
	position: relative;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 20px;
	padding: 40px 35px;
	overflow: hidden;
}

.testimonial-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: var(--accent-color);
	transition: all 0.5s ease-in-out;
	height: 100%;
	z-index: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item::before {
	top: 0;
}

.testimonial-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	margin-right: 15px;
}

.author-image figure {
	display: block;
	border-radius: 10px;
}

.author-image img {
	width: 50px;
	/* desired width */
	height: 50px;
	/* desired height */
	object-fit: cover;
	/* image ko crop kiye bina fit kare */
	border-radius: 50%;
	/* agar circular chahiye to */
	display: block;
}













.author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 2px;
}

.author-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-quote img {
	width: 100%;
	max-width: 30px;
}

.testimonial-content {
	position: relative;
	z-index: 1;
}

.testimonial-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 10px;
}

.testimonial-content p {
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	margin: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item .testimonial-content {
	border-color: var(--dark-divider-color);
}

.testimonial-slider .testimonial-pagination {
	position: relative;
	margin-top: 50px;
	text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	position: relative;
	height: 6px;
	width: 6px;
	background: var(--dark-divider-color);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 0;
	width: 0;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--white-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
	border: 1px solid var(--white-color);
	height: 14px;
	width: 14px;
}

/************************************/
/***       16.  Our FAQs css      ***/
/************************************/

.our-faqs {
	position: relative;
	padding: 100px 0;
	z-index: 1;
}

.faqs-content {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.faqs-contact-box {
	width: 100%;
	max-width: 480px;
	border-radius: 20px;
	overflow: hidden;
}

.faqs-contact-box-title {
	background: var(--accent-color);
	text-align: center;
	padding: 15px 30px;
}

.faqs-contact-box-title h3 {
	font-size: 20px;
	color: var(--white-color);
}

.faqs-contact-item-box {
	background: var(--primary-color);
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	padding: 30px;
}

.faq-accordion .accordion-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.111em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 20px 45px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: translateY(-50%) rotate(0deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--divider-color);
	padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***    17. Our Appointment css	  ***/
/************************************/

.our-appointment {
	background-image: url('../images/section-bg-imgae.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.appointment-form form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 17px 20px;
	border: none;
	outline: none;
	box-shadow: none;
}

.appointment-form form .form-control::placeholder {
	text-transform: capitalize;
	color: var(--text-color);
}

.appointment-form form .form-group select {
	padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option {
	color: var(--primary-color);
}

.appointment-form .contact-form-btn {
	margin-top: 20px;
}

.our-appointment-image {
	position: relative;
	border-radius: 20px;
	margin-left: 15px;
	overflow: hidden;
}

.our-appointment-image figure {
	display: block;
}

.our-appointment-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(32, 41, 110, 0) 37.07%, rgba(32, 41, 110, 0.8) 100%);
	width: 100%;
	height: 100%;
}

.our-appointment-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
}

.open-time-box {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	z-index: 1;
}

.open-time-box .icon-box {
	background: var(--white-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.our-appointment-image:hover .open-time-box .icon-box {
	background: var(--accent-color);
}

.open-time-box .icon-box img {
	width: 100%;
	max-width: 35px;
}

.open-time-box-content {
	width: calc(100% - 80px);
}

.open-time-box-content p {
	color: var(--white-color);
	margin-bottom: 2px;
}

.open-time-box-content p:last-child {
	margin-bottom: 0;
}

/************************************/
/***      18. 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 {
	width: 100%;
	aspect-ratio: 1 / 0.695;
	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-body {
	margin: 0 15px;
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/*** 	   19. Footer css		  ***/
/************************************/

.main-footer-box {
	padding: 80px 0;
}

.footer-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title {
	width: calc(70% - 15px);
	margin: 0;
}

.footer-header .book-consult-circle {
	width: calc(30% - 15px);
	text-align: right;
}

.about-footer {
	margin-right: 4.688vw;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	max-width: 152px;
}

.about-footer-content {
	margin-bottom: 30px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	width: 38px;
	height: 38px;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	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-newsletter-form .form-group {
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
	width: 70%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default {
	width: 30%;
	padding: 17px 20px;
}

.footer-newsletter-form .form-group .btn-default::before {
	display: none;
}

.footer-privacy-policy ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-links.footer-privacy-policy ul li {
	position: relative;
	margin: 0;
}

.footer-privacy-policy ul li::before {
	content: '/';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -18px;
	font-size: 12px;
	color: var(--white-color);
}

.footer-privacy-policy ul li:last-child:before {
	display: none;
}

.footer-privacy-policy ul li a {
	color: inherit;
}

.footer-copyright-text {
	text-align: center;
	padding: 10px 0;
}

.footer-copyright-text p {
	margin-bottom: 0;
}

/************************************/
/*** 	20. About Us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 205px 0 90px;
	margin-top: -114px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 90%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	font-size: 70px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.page-header-box h1 span {
	color: var(--accent-color);
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
	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 {
	background: url('../images/section-bg-imgae.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-approach-image {
	margin-right: 15px;
}

.our-approach-image figure {
	display: block;
	border-radius: 20px;
}

.our-approach-image img {
	width: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
	border-radius: 20px;
}

.approach-item-box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.approach-item {
	width: 100%;
	background: var(--primary-color);
	border-radius: 20px;
	padding: 30px;
}

.approach-item-box .approach-item:nth-child(even) {
	background: var(--accent-color);
}

.approach-item .icon-box {
	margin-bottom: 50px;
}

.approach-item .icon-box img {
	max-width: 50px;
}

.approach-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.approach-item-content p {
	color: var(--white-color);
	margin: 0;
}

.our-benefits {
	padding: 100px 0;
}

.benefits-item-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.benefits-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.benefits-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.benefits-item.active::after,
.benefits-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.benefits-item .icon-box {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.benefits-item .icon-box img {
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.benefits-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.benefits-item-content {
	position: relative;
	z-index: 1;
}

.benefits-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.benefits-item-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.benefits-item:hover .benefits-item-content h3,
.benefits-item:hover .benefits-item-content p {
	color: var(--white-color);
}

.benefits-image {
	background: url('../images/benefits-image-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	text-align: center;
	padding: 0 80px;
	margin-left: 30px;
}

.benefits-image figure {
	display: block;
	border-radius: 999px 999px 60px 60px;
}

.benefits-image img {
	width: 100%;
	border-radius: 999px 999px 60px 60px;
	aspect-ratio: 1 / 1.378;
	object-fit: cover;
}

.our-values {
	padding: 100px 0;
}

.values-counter-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.values-counter-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px 20px 30px 30px;
	overflow: hidden;
}

.values-counter-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.values-counter-item.active::after,
.values-counter-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.values-counter-item-content {
	position: relative;
	width: calc(100% - 60px);
	align-content: center;
	padding-top: 10px;
	z-index: 1;
}

.values-counter-item-content h2 {
	font-size: 48px;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.values-counter-item-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.values-counter-item:hover .values-counter-item-content h2,
.values-counter-item:hover .values-counter-item-content p {
	color: var(--white-color);
}

.values-counter-item .icon-box {
	position: relative;
	z-index: 1;
}

.values-counter-item .icon-box img {
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.values-counter-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.values-image-content {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 30px;
}

.values-image,
.values-content {
	width: calc(50% - 15px);
}

.values-content {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.values-content p {
	margin-bottom: 30px;
}

.values-image figure {
	display: block;
	border-radius: 20px;
}

.values-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	border-radius: 20px;
}

.who-we-are {
	background: var(--secondary-color);
	padding: 100px 0;
}

.who-we-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.who-we-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.who-we-list ul li:last-child {
	margin-bottom: 0;
}

.who-we-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.who-we-btn {
	margin-top: 40px;
}

.who-we-image {
	position: relative;
	padding: 0 55px 0 90px;
	margin-left: 15px;
}

.who-we-image figure {
	position: relative;
	display: block;
}

.who-we-image figure::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-41%);
	border: 2px solid var(--accent-color);
	width: 440px;
	height: 440px;
	border-radius: 50%;
	z-index: 0;
}

.who-we-image figure img {
	position: relative;
	width: 100%;
	z-index: 1;
}

.years-expertise-box {
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translateY(100%);
	display: inline-block;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 15px 30px 15px 15px;
	animation: yearsbox 2s infinite linear alternate;
	z-index: 1;
}

@keyframes yearsbox {
	50% {
		left: 30px;
	}
}

.years-expertise-box h2 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.years-expertise-box p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 21. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/*** 	22. Service Single css	  ***/
/************************************/

/* .page-service-single {
	padding: 100px 0;
} */

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin: 20px;
}

.page-catagory-list {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.page-catagory-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 25px 30px;
}

.page-catagory-list ul {
	list-style: none;
	margin: 0;
	padding: 20px;
}

.page-catagory-list ul li {
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.page-catagory-list ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.page-catagory-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: var(--text-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.page-catagory-list ul li a:hover {
	color: var(--primary-color);
}

.page-catagory-list ul li a::before {
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	right: 0;
	font-size: 18px;
	color: var(--text-color);
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.page-catagory-list ul li a:hover:before {
	color: var(--primary-color);
	transform: rotate(0);
}

.faqs-contact-box.sidebar-cta-box {
	max-width: 100%;
}

.faqs-contact-box.sidebar-cta-box .cta-contact-item {
	width: 100%;
	border-right: none;
	border-bottom: 1px solid var(--dark-divider-color);
	margin: 0;
	padding: 0 0 20px 0;
}

.faqs-contact-box.sidebar-cta-box .cta-contact-item:last-child {
	padding: 0;
	border-bottom: none;
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.574;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-expert-box,
.service-path-box,
.service-step-box {
	margin-top: 60px;
}

.service-expert-image-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 10px 0 0 60px;
	margin-top: 40px;
	overflow: hidden;
}

.service-expert-list {
	width: calc(100% - 15px);
	align-content: center;
	padding: 20px 0 30px 0;
}

.service-expert-item {
	margin-bottom: 40px;
}

.service-expert-item:last-child {
	margin-bottom: 0;
}

.service-expert-item h3 {
	position: relative;
	font-size: 20px;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-expert-item h3::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.service-expert-item p {
	position: relative;
	font-size: 15px;
	padding-left: 30px;
	margin-bottom: 15px;
	line-height: 30px;
}

.service-expert-item p::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.service-expert-item p {
	margin-bottom: 0;
}

.service-expert-image {
	width: calc(38% - 15px);
	align-content: end;
}

.service-expert-image figure {
	display: block;
}

.service-expert-image img {
	width: 100%;
	aspect-ratio: 1 / 1.23;
	object-fit: cover;
}

.service-entry-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-entry-image,
.service-entry-content {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.576;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry-content {
	border: 1px solid var(--divider-color);
	align-content: center;
	border-radius: 20px;
	padding: 40px;
}

.service-entry-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.service-entry-content p {
	margin-bottom: 0;
}

.service-path-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-top: 40px;
}

.service-path-item {
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.service-path-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-path-item:hover::before {
	border-radius: 0;
	height: 100%;
}

.service-path-item .icon-box,
.service-path-item-content {
	position: relative;
	z-index: 1;
}

.service-path-item .icon-box {
	margin-bottom: 60px;
}

.service-path-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.service-path-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.service-path-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.service-path-item-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-path-item:hover .service-path-item-content h3,
.service-path-item:hover .service-path-item-content p {
	color: var(--white-color);
}

.service-step-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}

.service-step-list,
.service-step-image {
	width: calc(50% - 15px);
}

.service-step-list {
	padding-left: 45px;
}

.service-step-list .work-step-item h3,
.service-step-list .work-step-item p {
	color: var(--text-color);
}

.service-step-list .work-step-item h2 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.service-step-image figure {
	display: block;
	border-radius: 20px;
}

.service-step-image img {
	width: 100%;
	aspect-ratio: 1 / 1.101;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 23. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination {
	margin-top: 20px;
	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: 600;
	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-color);
	color: var(--white-color);
}

/************************************/
/*** 	 24. Blog Single css	  ***/
/************************************/

.page-single-post {
	position: relative;
	padding: 100px 0;
	z-index: 1;
}

.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: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {

	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: 70px;
}

.post-entry h2 {
	font-size: 48px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.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: 16px;
	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(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	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-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 100px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***   25. Case Study Page css	  ***/
/************************************/

.page-case-study {
	padding: 100px 0 60px;
}

.case-study-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.case-study-image {
	position: relative;
	margin-bottom: 20px;
}

.case-study-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.case-study-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-image figure::before {
	opacity: 80%;
	visibility: visible;
	transform: scale(1.1);
}

.case-study-image img {
	width: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
	transform: scale(1.1);
}

.case-study-btn {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-btn {
	top: 50%;
	opacity: 1;
	visibility: visible;
}

.case-study-btn a {
	background: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.case-study-btn a i {
	font-size: 24px;
	color: var(--white-color);
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.case-study-btn a:hover i {
	transform: rotate(0deg);
}

.case-study-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
}

.case-study-item-content h3 a {
	color: inherit;
}

/************************************/
/***  26. Case Study Details css  ***/
/************************************/

.page-case-study-single {
	padding: 100px 0;
}

.case-study-category-list {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 60px;
	padding: 30px;
}

.case-study-category-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.case-study-category-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.case-study-category-item .icon-box {
	margin-right: 20px;
}

.case-study-category-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.case-study-category-content {
	width: calc(100% - 50px);
}

.case-study-category-content h3 {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.case-study-category-content p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.case-study-entry {
	margin-bottom: 60px;
}

.case-study-entry p {
	margin-bottom: 20px;
}

.case-study-entry p:last-child {
	margin-bottom: 0;
}

.case-study-entry h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.case-study-entry h2 span {
	color: var(--accent-color);
}

.case-study-entry ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.case-study-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.case-study-entry ul li:last-child {
	margin-bottom: 0;
}

.case-study-entry ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.case-study-success-box,
.case-study-fertility-box,
.case-study-guide-box {
	margin-top: 60px;
}

.case-study-success-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.case-study-success-item {
	width: calc(50% - 15px);
}

.case-study-success-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.case-study-success-header img {
	width: 100%;
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-success-item:hover .case-study-success-header img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(0);
}

.case-study-success-header h3 {
	font-size: 20px;
}

.case-study-fertility-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fertility-image,
.fertility-content {
	width: calc(50% - 15px);
}

.fertility-image figure {
	display: block;
	border-radius: 20px;
}

.fertility-image img {
	width: 100%;
	aspect-ratio: 1 / 1.245;
	object-fit: cover;
	border-radius: 20px;
}

.fertility-content ul {
	margin: 40px 0;
}

.fertility-item-box {
	display: flex;
	position: relative;
	padding: 20px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.fertility-item-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 500px 500px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.fertility-item-box:hover::before {
	border-radius: 0;
	height: 100%;
}

.fertility-item-box .icon-box {
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.fertility-item-box .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.fertility-item-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.fertility-item-conetnt {
	position: relative;
	width: calc(100% - 60px);
	z-index: 1;
}

.fertility-item-conetnt h3 {
	font-size: 20px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.fertility-item-conetnt p {
	transition: all 0.4s ease-in-out;
}

.fertility-item-box:hover .fertility-item-conetnt h3,
.fertility-item-box:hover .fertility-item-conetnt p {
	color: var(--white-color);
}

.case-study-guide-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.case-study-guide-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.case-study-guide-item img {
	width: 100%;
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-guide-item:hover img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(0);
}

.case-study-guide-item h3 {
	font-size: 20px;
	line-height: 1.4em;
}

/************************************/
/*** 	 27.  Team Page css		  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 28. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-member-about,
.team-personal-info {
	margin-bottom: 100px;
}

.team-member-about {
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	padding: 60px;
}

.team-member-image {
	width: calc(27% - 30px);
	align-content: end;
}

.team-member-image figure {
	display: block;
}

.team-member-image img {
	width: 100%;
	aspect-ratio: 1 / 1.467;
	object-fit: cover;
	margin-bottom: -60px;
}

.team-member-content {
	width: calc(73% - 30px);
}

.member-content-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-content-body ul li {
	display: flex;
	width: calc(50% - 15px);
	justify-content: space-between;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
}

.member-content-body ul li span {
	width: 56%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
}

.member-social-list {
	display: flex;
	align-items: center;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.member-social-list span {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.member-social-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child {
	margin: 0;
}

.member-social-list ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
	color: var(--white-color);
	background: var(--accent-color);
}

.team-personal-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-personal-item {
	position: relative;
	width: calc(33.33% - 20px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.team-personal-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.team-personal-item:hover::before {
	height: 100%;
}

.team-personal-item-header,
.team-personal-item-body {
	position: relative;
	z-index: 1;
}

.team-personal-item-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.team-personal-item-header img {
	width: 100%;
	max-width: 28px;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.team-personal-item:hover .team-personal-item-header img {
	filter: brightness(0) invert(1);
}

.team-personal-item-header h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.team-personal-item-body p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.team-personal-item:hover .team-personal-item-header h3,
.team-personal-item:hover .team-personal-item-body p {
	color: var(--white-color);
}

.team-member-expertise-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-expertise {
	width: calc(50% - 30px);
}

.member-expertise-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-expertise-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.member-expertise-list ul li:last-child {
	margin-bottom: 0;
}

.member-expertise-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	top: 0;
	left: 0;
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
}

.team-skills-list {
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
}

.skills-progress-bar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 100px;
}

/************************************/
/*** 	 29. Pricing Page css	  ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***  30. Testimonials Page css	  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item:hover::before {
	top: 0;
}

.page-testimonials .testimonial-item .testimonial-header {
	border-color: var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .testimonial-header {
	border-color: var(--dark-divider-color);
}

.page-testimonials .testimonial-item .author-content h3,
.page-testimonials .testimonial-item .testimonial-content h3 {
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p {
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .testimonial-content h3,
.page-testimonials .testimonial-item:hover .author-content p,
.page-testimonials .testimonial-item:hover .testimonial-content p {
	color: var(--white-color);
}

.page-testimonials .testimonial-item .testimonial-quote img {
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .testimonial-quote img {
	filter: brightness(0) invert(1);
}

/************************************/
/*** 	 31. 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.83;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 32. 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-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 {
	width: 100%;
	aspect-ratio: 1 / 0.83;
	/* object-fit: cover; */
	border-radius: 20px;
}

/************************************/
/*** 	  33. 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;
}

/************************************/
/***   34. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-form-section {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	margin-top: 100px;
}

.google-map-iframe {
	width: calc(50% - 30px);
	border-radius: 20px;
	overflow: hidden;
}

.google-map-iframe iframe {
	width: 100%;
	height: 100%;
}

.contact-us-form {
	width: calc(50% - 30px);
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: none;
	border-radius: 20px;
	padding: 18px 20px;
	box-shadow: inset 1px 1px 1px 1px #f29ab9;;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

/************************************/
/***   35. Book Appointment css	  ***/
/************************************/

.page-book-appointment {
	padding: 100px 0;
}

.page-book-appointment .appointment-form form .form-control {
	border: 1px solid var(--divider-color);
}

/************************************/
/***   36. 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: 60%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p {
	margin-bottom: 20px;
}

/************************************/
/***      37. Responsive css      ***/
/************************************/

/* Responsive rules moved to css/responsive.css */


/* ============================= */
/* Doctor Carousel Wrapper */
.custom-doctor-carousel {
	overflow: hidden;
	/* prevents shadow/hover from peeking outside */
	padding: 20px 0;
	/* spacing around carousel */
	display: flex;
	gap: 20px;
	/* space between items */
}

/* ============================= */
/* Individual Doctor Card */
.custom-doctor-carousel .item {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	margin: 20px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	/* makes shadow relative */
}

.custom-doctor-carousel .item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* Doctor Image */
.custom-doctor-carousel .item img {
	width: 170px;
	height: 170px;
	object-fit: cover;
	border-radius: 10% 30% 10% 30%;
	border: 4px solid var(--primary-color);
	box-shadow: 10px 10px 10px var(--primary-color);
	margin-bottom: 25px;
	display: block;
	transition: transform 0.3s ease, border 0.3s ease;
}

.custom-doctor-carousel .item img:hover {

	border-color: var(--primary-color);
	box-shadow: 10px 10px 10px #3c5c72;
	transition: transform 0.5s ease, border 0.s ease;
	/* blue on hover */
}

/* ============================= */
/* Doctor Name */
.custom-doctor-carousel .item h3 {
	font-size: 1.2rem;
	color: #ff6ec7;
	/* pink text */
	margin-bottom: 5px;
	font-weight: 600;
}

/* Doctor Specialty */


/* ============================= */
/* Social Icons Container */
.custom-doctor-carousel .item .social-icons {
	display: flex;
	justify-content: center;
	gap: 12px;
}

/* Social Icons */
.custom-doctor-carousel .item .social-icons a {
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ff6ec7;
	/* pink background */
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.custom-doctor-carousel .item .social-icons a:hover {
	background: var(--primary-color);
	/* blue on hover */
	color: #fff;
	transform: scale(1.1);
}

/* Active carousel card */
.custom-doctor-carousel .owl-item.active .item {
	background: var(--accent-color);
	/* pink background for active card */
	color: #fff;
	/* optional: change text color to white for contrast */
}

/* If you want hover effects to work on active too */
.custom-doctor-carousel .owl-item.active .item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Change text color inside active card */
.custom-doctor-carousel .owl-item.active .item h3,
.custom-doctor-carousel .owl-item.active .item p {
	color: #fff;
	/* ensures text is readable on pink background */
}

/* Change social icon background for active card */
.custom-doctor-carousel .owl-item.active .item .social-icons a {
	background: #20296E;
	/* blue for social icons inside active card */
}




/* ============================= */
/* Responsive Adjustments moved to css/responsive.css */

/* Common Style */
.float-container {
	position: fixed;
	z-index: 9999;
}

.float-btn {
	width: 55px;
	height: 55px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8px 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	transition: 0.3s;
	color: white;
	font-size: 25px;
	animation: floatUp 2s ease-in-out infinite;
}

/* Float Animation */
@keyframes floatUp {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}

	100% {
		transform: translateY(0);
	}
}

.float-btn:hover {
	transform: scale(1.2);
}

/* Colors */
.whatsapp {
	background: #25D366;
}

.regular{
    background:;
}

.regular {
	background:  #f29ab9;
}

.call {
	background: #20296e;
}

.location {
	background: #FF3B30;
}

/* Position */
.float-container.bottom-right {
	bottom: 20px;
	left: 20px !important;
}


#topBtn {
	position: fixed;
	top: 25px;
	right: 25px;
	width: 55px;
	height: 55px;
	background: #20296e;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	animation: floatUp 2.2s ease-in-out infinite;
}

/* Animation */
@keyframes floatUp {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

/* Show button when active */
#topBtn.show {
	opacity: 1;
	visibility: visible;
}




.testimonial-content p {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	/* number of lines you want to show */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}







/* Styling only for ul inside .work-step-item */
.work-step-item ul {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
	padding: 30px 30px 30px 30px;
	border-radius: 15px;
	list-style: none;
	color: var(--text-color);
	font-family: var(--default-font);
	line-height: 1.8;
	margin: 25px 0;
	border-left: 4px solid var(--accent-color);
	box-shadow: 0 5px 15px rgba(77, 83, 127, 0.05);
}

/* Styling the <li> items inside .work-step-item */
.work-step-item ul li {
	margin-bottom: 20px;
	padding-left: 35px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.work-step-item ul li:hover {
	transform: translateX(5px);
}

.work-step-item ul li::before {
	content: '\f058';
	position: absolute;
	left: 0;
	top: 2px;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 18px;
	color: var(--accent-color);
}

/* Making the <strong> elements inside .work-step-item stand out */
.work-step-item ul li strong {
	color: var(--primary-color);
	font-weight: 700;
	display: inline;
}

















.btn-ebrochure {


	position: relative;
	display: inline-block;
	background: var(--accent-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	color: var(--white-color);
	border: none;
	padding: 10px 17px;
	text-decoration: none;
	text-transform: capitalize;
	overflow: hidden;
	z-index: 0;
	transition: all 0.5s ease-in-out;
}

.btn-ebrochure img {
	width: 20px;
	height: 20px;
	margin-right: 10px;

}

.btn-ebrochure::before {

	position: absolute;
	top: 16px;
	right: 30px;
	width: 18px;
	height: 18px;
	border-right: 2px solid var(--white-color);
	border-top: 2px solid var(--white-color);
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.btn-ebrochure:hover::before {
	transform: rotate(0deg);
}

.btn-ebrochure::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(30deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-ebrochure:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-ebrochure:hover {
	color: var(--white-color);
	/* Text color stays white */
}
















/* Topbar Social Links Container */
.topbar-social-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	gap: 10px;
	/* space between items */
}

/* Each list item */
.topbar-social-links ul li {
	display: inline-block;
}

/* E-Brochures button style */
.topbar-social-links .btn-ebrochure {
	display: inline-flex;
	align-items: center;
	padding: 8px 15px;
	background-color: var(--accent-color);
	color: #ffffff;
	border-radius: 6px;
	width: auto;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	font-size: 14px;
}

.topbar-social-links .btn-ebrochure img {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	transition: transform 0.3s ease;
}



.topbar-social-links .btn-ebrochure:hover img {
	transform: translateX(4px);
	/* icon slides slightly on hover */
}

/* Social media icons style */


.topbar-social-links ul li a:hover i {
	color: var(--accent-color);
	transform: scale(1.2);
	/* slightly enlarge on hover */
}








.mobile-extra {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	background-color: #f8f8f8;
	border-radius: 10px;
	margin: 10px 0 20px 0;
}

/* Mobile Button */
.btn-mobile {
	background-color: #ff6b6b;
	color: #fff;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s;
}

.btn-mobile:hover {
	background-color: #ff4c4c;
}

/* Social Icons */
.mobile-extra .social-icons a {
	color: #555;
	font-size: 18px;
	margin-left: 12px;
	transition: color 0.3s;
}

.mobile-extra .social-icons a:hover {
	color: #ff6b6b;
}

/* Hide mobile section on larger screens */
@media (min-width: 768px) {
	.mobile-extra {
		display: none !important;
	}
}








.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.card-container .card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: calc(33.33% - 20px);
	/* तीन कार्ड एक लाइन में */
	overflow: hidden;
	transition: transform 0.3s;
}

.card:hover {
	transform: translateY(-5px);
}

.card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.card-content {
	padding: 15px;
}

.card-content h3 {
	margin: 0 0 10px 0;
	color: #2c3e50;
}

.card-content p {
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
	.card {
		width: calc(50% - 20px);
		/* दो कार्ड एक लाइन में */
	}
}

@media (max-width: 600px) {
	.card {
		width: 100%;
		/* मोबाइल पर एक कार्ड एक लाइन में */
	}
}


.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 60px;
}














/*.footer-address-box h3 {*/
/*    color: #fff  !important;*/
/*    margin-bottom: 10px  !important;*/
/*}*/

/*.footer-address-box p {*/
/*    color: #ccc  !important;*/
/*    margin-bottom: 15px  !important;*/
/*    line-height: 1.6  !important;*/
/*}*/

/*.footer-address-section iframe {*/
/*    border-radius: 8px  !important;*/
/*}*/











/* Main container */
.iui-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Left content styling */
.iui-left {
    flex: 1;
}

/* Right image section */
.iui-right {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: -webkit-fill-available;
}

/* Image styling */
.iui-image {
    max-width: 250px;
    width: 100%;
    border-radius: 8px;
}



.footer-two-images {
    display: flex;
    gap: 12px;          /* images ke beech space */
    margin: 0px 0px 20px 0px;
}

.footer-two-images img {
    width: 50%;        /* size adjust kar sakte ho */
    height: auto;
}





