/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Lenity - Charity & Donation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. What We Do css
08. Our Causes css
09. Why Choose Us css
10. Our Program css
11. Scrolling Ticker css
12. Our Features css
13. Donate Now css
14. How It Work css
15. Our Testimonials css
16. Our Gallery css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Projects Page css
25. Project Single css
26. Team Page css
27. Team Single css
28. Testimonial Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. Donation Page css
34. 404 Error Page css
35. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #020D19;
	--secondary-color: #F8F8F8;
	--text-color: #828282;
	--accent-color: #669347;
	--white-color: #FFFFFF;
	--divider-color: #020D1914;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Inter", serif;
	--accent-font: "Onest", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	background-color: var(--white-color);
	color: var(--text-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
}

p {
	line-height: 1.8em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	font-family: var(--accent-font);
	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>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--accent-color);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 12px 54px 12px 24px;
	border-radius: 100px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-24px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-21px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.readmore-btn {
	position: relative;
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 40px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
	content: '\f061';
	position: absolute;
	right: 0;
	top: 50%;
	font-family: 'Font Awesome 6 Free';
	font-size: 14px;
	line-height: normal;
	color: var(--white-color);
	width: 30px;
	height: 30px;
	background-color: var(--accent-color);
	background-position: center center;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::before {
	background-color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #2f3c26;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	width: 100%;
	max-width: 765px;
	margin-bottom: 0;
	margin: 0 auto;
	text-align: center;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 34px;
	margin-bottom: 15px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 20px;
	height: 20px;
}

.section-title h1 {
	font-size: 63px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 50px;
	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;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 20px 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: 15px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 14px 10px !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: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: rgba(2, 13, 25, 0.72);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.main-menu ul ul {
		background: rgba(2, 13, 25, 0.94);
	}
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 8px 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 {
	position: relative;
	display: block;
	color: var(--white-color);
	padding: 10px 22px !important;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
	border-left: 3px solid transparent;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--white-color);
	background-color: rgba(102, 147, 71, 0.32);
	border-left-color: var(--accent-color);
	padding: 10px 22px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
	.main-menu .nav-menu-wrapper {
		margin: 0 10px;
	}

	.main-menu ul li a {
		font-size: 14px;
		padding: 14px 9px !important;
	}

	.main-menu ul li.submenu>a:after {
		margin-left: 5px;
	}
}

.contact-now-box {
	display: flex;
	align-items: center;
}

#about-us,
#our-story,
#why-established,
#mission,
#vision,
#core-values,
#legal-registration,
#governance,
#services,
#spectrum-hearts,
#get-involved,
#impact,
#success-stories,
#tribute-benny,
#vision-timeline,
#future-strategic-goals,
#gallery,
#our-team,
#faq,
#founder-humble-beginnings,
#founder-business-journey,
#founder-journey-changed-everything,
#founder-personal-to-public-service,
#founder-why-spectrum-hearts,
#founder-humanitarian-service,
#founder-leadership-philosophy,
#founder-future-vision,
#founder-personal-message,
#humble-beginnings,
#message-from-founder,
#business-journey,
#journey-changed-everything,
#personal-to-public-service,
#why-spectrum-hearts,
#humanitarian-service,
#leadership-philosophy,
#future-vision,
#contact {
	scroll-margin-top: 100px;
}

.contact-now-box .icon-box {
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding-bottom: 5px;
}

.contact-now-box .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 22px;
	height: 22px;
	z-index: 0;
}

.contact-now-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
}

.contact-now-box-content {
	width: calc(100% - 46px);
}

.contact-now-box-content p {
	color: var(--white-color);
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3 {
	color: var(--accent-color);
	font-size: 20px;
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--white-color);
}

.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;
	border-radius: 8px;
	margin: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
	background: rgba(255, 255, 255, 0.08);
	border-left: 3px solid rgba(163, 207, 64, 0.55);
}

.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;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.slicknav_menu ul ul li a:hover,
.slicknav_menu ul ul li a:focus {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white-color);
}

.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: 10px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 260px 0 160px;
}

.hero::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.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-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 260px 0 160px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
	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: 70px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-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-content {
	position: relative;
	margin-right: 100px;
	z-index: 2;
}

.hero-content .section-title {
	margin-bottom: 60px;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p {
	color: var(--white-color);
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}

.video-play-button {
	display: flex;
	align-items: center;
}

.video-play-button p {
	color: var(--white-color);
	font-weight: 700;
	text-transform: capitalize;
	margin: 0 10px 0 0;
}

.video-play-button a {
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover {
	background-color: var(--primary-color);
}

.video-play-button a i {
	font-size: 22px;
	color: var(--white-color);
}

.hero-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 40px;
}

.hero-list {
	position: relative;
}

.hero-list:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -20px;
	height: 100%;
	width: 1px;
	background: var(--dark-divider-color);
}

.hero-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-list ul li {
	background: url('../images/icon-check.svg') no-repeat;
	background-position: left center;
	background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 35px;
	margin-bottom: 20px;
}

.hero-list ul li:last-child {
	margin-bottom: 0;
}

.hero-help-families {
	max-width: 260px;
}

.hero-help-families h3 {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.hero-help-families p {
	color: var(--white-color);
	line-height: 1.4em;
	margin: 0;
}

/************************************/
/***      	05. About Us css      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding: 0 0 250px 110px;
	margin-right: 30px;
}

.about-img-1,
.about-img-2 {
	border-radius: 30px;
	overflow: hidden;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img,
.about-img-2 img {
	width: 100%;
	object-fit: cover;
}

.about-img-1 img {
	aspect-ratio: 1 / 0.95;
}

.about-img-2 {
	position: absolute;
	max-width: 380px;
	bottom: 75px;
	left: 0;
	border: 15px solid var(--white-color);
	z-index: 1;
	overflow: hidden;
}

/* .about-img-2 img{
	aspect-ratio: 1 / 0.86;
} */

.about-stat-boxes {
	position: absolute;
	right: 0;
	bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 210px;
	z-index: 2;
}

.need-fund-box {
	position: absolute;
	right: 0;
	bottom: 15px;
	max-width: 165px;
	background-color: var(--accent-color);
	border-radius: 13px;
	padding: 18px;
	text-align: center;
	overflow: hidden;
}

.about-stat-boxes .need-fund-box {
	position: relative;
	right: auto;
	bottom: auto;
	max-width: 100%;
}

.waiting-list-box {
	background-color: #696161;
}

.waiting-list-box:before {
	background: var(--accent-color);
}

.need-fund-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.need-fund-box:hover:before {
	top: auto;
	height: 100%;
}

.need-fund-box img,
.waiting-list-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 60px;
	margin-bottom: 10px;
	z-index: 1;
}

.waiting-list-icon svg {
	width: 42px;
	height: 42px;
	color: var(--white-color);
}

.need-fund-box p {
	position: relative;
	text-transform: capitalize;
	color: var(--white-color);
	font-weight: 600;
	margin: 0;
	z-index: 1;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.about-us-body-content {
	width: calc(55% - 30px);
}

.about-support-box {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-support-box .icon-box {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.about-support-box .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.about-support-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.about-support-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-support-content p {
	margin: 0;
}

.helped-fund-item {
	position: relative;
	width: calc(45% - 30px);
	padding: 0 30px 30px;
	text-align: center;
}

.helped-fund-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
	display: inline-block;
	mask-image: url('../images/helped-fund-box-mask.svg');
	mask-size: contain;
	mask-position: bottom center;
	mask-repeat: no-repeat;
	z-index: 0;
}

.helped-fund-img {
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.helped-fund-img figure {
	max-width: 120px;
	display: inline-block;
	border-radius: 100px;
}

.helped-fund-img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.helped-fund-content {
	position: relative;
	z-index: 1;
}

.helped-fund-content h2 {
	color: var(--accent-color);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.helped-fund-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.helped-fund-content p {
	font-size: 14px;
	margin: 0;
}

/************************************/
/***      06. Our Service css     ***/
/************************************/

.our-services {
	background: url('../images/our-service-bg.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.service-item {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 40px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-content {
	margin-bottom: 30px;
}

.service-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	margin: 0;
}

.service-image {
	margin-bottom: 30px;
}

.service-image figure {
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

.service-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover img {
	transform: scale(1.1);
}

.section-footer-text {
	margin-top: 30px;
}

.section-footer-text p {
	font-family: var(--accent-font);
	text-align: center;
	margin-bottom: 0;
}

.section-footer-text p span {
	font-weight: 600;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 5px 10px;
	margin-right: 5px;
}

.section-footer-text p a {
	font-weight: 700;
	text-decoration: underline;
	text-transform: capitalize;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do {
	padding: 100px 0;
}

.what-we-item {
	display: flex;
	align-items: start;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.what-we-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.what-we-item .icon-box {
	position: relative;
	padding-bottom: 8px;
	margin-right: 25px;
}

.what-we-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	z-index: 0;
}

.what-we-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 72px;
	z-index: 1;
}

.what-we-item-content {
	width: calc(100% - 97px);
}

.what-we-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.what-we-item-content p {
	margin: 0;
}

.what-we-do-transparency {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--divider-color);
}

.what-we-do-transparency>p {
	margin-bottom: 20px;
}

.what-we-do-transparency-link {
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.what-we-pillars {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 8px;
}

.what-we-pillar-item {
	display: flex;
	gap: 20px;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-pillar-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.what-we-pillar-item:nth-child(1).is-visible {
	transition-delay: 0s;
}

.what-we-pillar-item:nth-child(2).is-visible {
	transition-delay: 0.12s;
}

.what-we-pillar-item:nth-child(3).is-visible {
	transition-delay: 0.24s;
}

.what-we-pillar-marker {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 32px;
}

.what-we-pillar-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--white-color);
	border: 3px solid var(--accent-color);
	box-shadow: 0 0 0 4px rgba(102, 147, 71, 0.15);
	transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	z-index: 1;
}

.what-we-pillar-line {
	flex: 1;
	width: 2px;
	margin-top: 8px;
	background: linear-gradient(180deg, var(--accent-color) 0%, rgba(102, 147, 71, 0.2) 100%);
	transform-origin: top;
	transform: scaleY(0);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.what-we-pillar-item.is-visible .what-we-pillar-line {
	transform: scaleY(1);
}

.what-we-pillar-card {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 22px;
	padding: 24px 26px;
	background: var(--white-color);
	border: 1px solid rgba(102, 147, 71, 0.14);
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(2, 13, 25, 0.04);
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.what-we-pillar-item:last-child .what-we-pillar-card {
	margin-bottom: 0;
}

.what-we-pillar-card:hover {
	transform: translateX(8px);
	border-color: rgba(102, 147, 71, 0.35);
	box-shadow: 0 14px 36px rgba(2, 13, 25, 0.09);
}

.what-we-pillar-item:hover .what-we-pillar-dot {
	transform: scale(1.2);
	background: var(--accent-color);
	box-shadow: 0 0 0 6px rgba(102, 147, 71, 0.2);
}

.what-we-pillar-icon {
	position: relative;
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.what-we-pillar-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(102, 147, 71, 0.12);
	transition: transform 0.35s ease, background 0.35s ease;
}

.what-we-pillar-card:hover .what-we-pillar-icon::before {
	transform: scale(1.12);
	background: rgba(102, 147, 71, 0.2);
}

.what-we-pillar-icon img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: transform 0.35s ease;
}

.what-we-pillar-card:hover .what-we-pillar-icon img {
	transform: scale(1.08);
}

.what-we-pillar-body {
	flex: 1;
	min-width: 0;
}

.what-we-pillar-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent-color);
	background: rgba(102, 147, 71, 0.1);
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.what-we-pillar-body h3 {
	font-size: 21px;
	font-weight: 600;
	text-transform: none;
	line-height: 1.4em;
	margin-bottom: 8px;
	color: var(--primary-color);
}

.what-we-pillar-body h3 em {
	font-style: normal;
	color: var(--accent-color);
	font-weight: 700;
}

.what-we-pillar-body p {
	font-size: 15px;
	line-height: 1.65em;
	color: rgba(2, 13, 25, 0.68);
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.what-we-pillar-item {
		opacity: 1;
		transform: none;
	}

	.what-we-pillar-line {
		transform: scaleY(1);
	}

	.what-we-pillar-card:hover {
		transform: none;
	}
}

.what-we-brands {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 50px;
}

.what-we-brand-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 15px 15px 15px;
	background: linear-gradient(160deg, rgba(102, 147, 71, 0.07) 0%, #ffffff 45%);
	border: 1px solid rgba(102, 147, 71, 0.16);
	border-radius: 22px;
	box-shadow: 0 10px 34px rgba(2, 13, 25, 0.05);
	overflow: hidden;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.what-we-brand-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 72%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
	opacity: 0;
	transition: opacity 0.35s ease, width 0.35s ease;
}

.what-we-brand-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.what-we-brand-col:nth-child(1) .what-we-brand-card.is-visible {
	transition-delay: 0.05s;
}

.what-we-brand-col:nth-child(2) .what-we-brand-card.is-visible {
	transition-delay: 0.2s;
}

.what-we-brand-card:hover {
	transform: translateY(-6px);
	border-color: rgba(102, 147, 71, 0.35);
	box-shadow: 0 18px 42px rgba(2, 13, 25, 0.1);
}

.what-we-brand-card.is-visible:hover {
	transform: translateY(-6px);
}

.what-we-brand-card:hover::before {
	opacity: 1;
	width: 88%;
}

.what-we-brand-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-brand-card:hover .what-we-brand-logo {
	transform: scale(1.03);
}

.what-we-brand-logo img {
	max-width: 200px;
	max-height: 88px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.what-we-brand-card-spectrum .what-we-brand-logo img {
	max-width: 230px;
	max-height: 96px;
}

.what-we-brand-card:hover .what-we-brand-logo img {
	transform: scale(1.02);
}

.what-we-brand-name {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35em;
	color: var(--primary-color);
	margin-bottom: 10px;
	transition: color 0.35s ease;
}

.what-we-brand-card:hover .what-we-brand-name {
	color: var(--accent-color);
}

.what-we-brand-sub {
	font-size: 13px;
	line-height: 1.5em;
	color: rgba(2, 13, 25, 0.6);
	margin: -4px 0 12px;
}

.what-we-brand-tagline {
	font-size: 15px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.65em;
	color: var(--accent-color);
	margin: 0;
	padding: 0;
	border: none;
	position: relative;
}

.what-we-brand-tagline::before,
.what-we-brand-tagline::after {
	content: '';
}

@media (prefers-reduced-motion: reduce) {
	.what-we-brand-card {
		opacity: 1;
		transform: none;
	}

	.what-we-brand-card:hover {
		transform: none;
	}
}

.what-we-do-images {
	position: relative;
	padding-left: 165px;
}

.what-we-do-img-1 figure {
	display: block;
	border-radius: 30px;
}

.what-we-do-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 1.5;
	object-fit: cover;
	border-radius: 30px;
}

.what-we-do-img-2 {
	position: absolute;
	bottom: 70px;
	left: 0;
	width: 100%;
	max-width: 272px;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	z-index: 1;
}

.what-we-do-img-2 figure {
	display: block;
	border-radius: 50%;
}

.what-we-do-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.donate-now-box {
	position: absolute;
	top: 60px;
	left: 80px;
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
}

.donate-now-box a {
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: var(--accent-color);
	border-radius: 10px;
	color: var(--white-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 40px 15px;
	transition: all 0.4s ease-in-out;
}

.donate-now-box a:hover {
	background: var(--primary-color);
}

.donate-now-box a img {
	width: 100%;
	max-width: 25px;
	transform: rotate(90deg);
	transition: all 0.3s ease-in-out;
}

.donate-now-box a:hover img {
	filter: brightness(0) invert(1);
}

/************************************/
/***      08. Our Causes css      ***/
/************************************/

.our-causes {
	background: url(../images/our-service-bg.svg), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0 70px;
}

.causes-item {
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	margin-bottom: 30px;
}

.causes-image {
	margin-bottom: 30px;
}

.causes-image figure {
	display: block;
	border-radius: 30px;
}

.causes-image img {
	width: 100%;
	aspect-ratio: 1 / 0.822;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.causes-item:hover .causes-image img {
	transform: scale(1.1);
}

.causes-content {
	text-align: center;
	margin-bottom: 30px;
}

.causes-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.causes-content p {
	margin-bottom: 0;
}

.causes-button .btn-default {
	display: block;
	text-align: center;
	padding: 20px;
}

.causes-button .btn-default::before {
	display: none;
}

/************************************/
/***     09. Why Choose Us css     ***/
/************************************/

.why-choose-us {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.why-choose-particles {
	position: absolute;
	inset: 0;
	z-index: 0;
	min-height: 100%;
	pointer-events: auto;
}

.why-choose-particles canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.why-choose-us .container {
	position: relative;
	z-index: 1;
}

.why-choose-images {
	position: relative;
	padding: 0 65px 45px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure {
	display: block;
	overflow: hidden;
	border-radius: 50%;
}

.why-choose-image-1 img,
.why-choose-image-2 img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-image-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 265px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
}

.why-choose-content {
	margin-left: 15px;
}

.why-choose-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.why-choose-list ul li {
	width: calc(50% - 10px);
	background: url('../images/icon-check-dark.svg') no-repeat;
	background-position: left center;
	background-size: 26px auto;
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 35px;
}

.why-choose-counters {
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-counter-item {
	position: relative;
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.why-choose-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(3n + 3):before,
.why-choose-counter-item:last-child:before {
	display: none;
}

.why-choose-counter-item h2 {
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.why-choose-counter-item p {
	margin-bottom: 0;
}

/************************************/
/***      10. Our Program css     ***/
/************************************/

.our-program {
	position: relative;
	/* background-image: linear-gradient(180deg, transparent 80%, var(--white-color) 20%), url(../images/our-program-bg-image.jpg); */
	background-image: linear-gradient(180deg, transparent 80%, var(--white-color) 20%), url(../images/nihal_bg_1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-program::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(2, 13, 25, 0.5) 17.67%, #FFFFFF 70%);
	height: 100%;
	width: 100%;
	z-index: 0;
}

.our-program .section-row {
	position: relative;
	z-index: 1;
}

.our-program .section-title h3,
.our-program .section-title h2,
.our-program .section-title p {
	color: var(--white-color);
}

.program-item {
	position: relative;
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
	z-index: 1;
}

.program-image {
	margin-bottom: 30px;
}

.program-image a {
	display: block;
	cursor: none;
}

.program-image figure {
	display: block;
	border-radius: 20px;
}

.program-image img {
	width: 100%;
	aspect-ratio: 1 / 0.701;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img {
	transform: scale(1.1);
}

.program-body {
	text-align: center;
}

.program-content {
	margin-bottom: 30px;
}

.program-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.program-content h3 a {
	color: inherit;
}

.program-content p {
	margin-bottom: 0;
}

.our-program .section-footer-text {
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 30px auto 0;
	z-index: 1;
}

/************************************/
/***   11. Scrolling Ticker css   ***/
/************************************/

.scrolling-ticker-box {
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span {
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-family: var(--accent-font);
	font-size: 100px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--white-color);
	background: var(--accent-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 4px transparent;
}

.scrolling-ticker-box .scrolling-content span img {
	width: 44px;
	margin-right: 40px;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features {
	padding: 100px 0;
}

.our-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-features-item {
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-features-item:nth-child(even) {
	flex-direction: column-reverse;
}

.our-features-image figure {
	display: block;
	border-radius: 30px;
}

.our-features-image img {
	width: 100%;
	aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 30px;
}

.our-features-content {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 15px;
}

.our-features-body {
	width: calc(100% - 87px);
}

.our-features-body h2 {
	color: var(--accent-color);
	font-size: 50px;
	margin-bottom: 25px;
}

.our-features-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-features-body p {
	margin: 0;
}

.our-features-content .icon-box {
	position: relative;
	display: inline-block;
	padding-bottom: 7px;
}

.our-features-content .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 43px;
	height: 43px;
	z-index: 0;
}

.our-features-content .icon-box img {
	position: relative;
	width: 100%;
	max-width: 72px;
	z-index: 1;
}

/************************************/
/***      13. Donate Now css      ***/
/************************************/

.donate-now {
	position: relative;
	background: url('../images/donate-now-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 150px 0;
}

.donate-now::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 30%;
	height: 100%;
	width: 100%;
}

.intro-video-box {
	text-align: center;
	margin-right: 30px;
}

.intro-video-box .video-play-button {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.intro-video-box .video-play-button a {
	width: 74px;
	height: 74px;
	margin: 0;
}

.intro-video-box .video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.intro-video-box .video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.intro-video-box .video-play-button a i {
	font-size: 30px;
}

.donar-company-slider {
	margin-top: 120px;
}

.donar-company-slider .swiper-wrapper {
	cursor: none;
	align-items: center;
}

.donar-company-logo img {
	width: 100%;
	max-width: 200px;
	max-height: 40px;
}

.donate-box {
	position: relative;
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 40px;
	z-index: 1;
}

.donate-value-box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.donate-form .donate-value {
	width: calc(33.33% - 6.66px);
}

.donate-form .form-control {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	box-shadow: none;
	outline: none;
	padding: 17px 30px;
}

.donate-form .form-control::placeholder {
	color: var(--primary-color);
	font-weight: 700;
}

.donate-value-box .donate-value input {
	position: absolute;
	left: -9999px;
}

.donate-value-box .donate-value label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 400;
	line-height: 1.2em;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box .donate-value input[type="radio"]:hover+label,
.donate-value-box .donate-value input[type="radio"]:focus+label,
.donate-value-box .donate-value input[type="radio"]:checked+label {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donate-box .donate-form .form-group-btn .btn-default {
	width: 100%;
	display: block;
	text-align: center;
	padding: 20px;
}

.donate-box .donate-form .form-group-btn .btn-default::before {
	display: none;
}

/************************************/
/***      14. How It Work css     ***/
/************************************/

.how-it-work {
	padding: 100px 0;
}

.how-it-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item {
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item:nth-child(even) {
	flex-direction: column-reverse;
}

.how-it-work-image,
.how-it-work-content {
	width: 100%;
}

.how-it-work-image figure {
	display: block;
	border-radius: 30px;
}

.how-it-work-image img {
	width: 100%;
	aspect-ratio: 1 / 0.866;
	object-fit: cover;
	border-radius: 30px;
}

.how-it-work-content {
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.how-it-work-content .icon-box {
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 30px;
	z-index: 1;
}

.how-it-work-content .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	z-index: 0;
}

.how-it-work-content .icon-box img {
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-it-work-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-it-work-body p {
	margin: 0;
}

.section-footer-text.how-work-footer-text {
	margin-top: 60px;
}

/************************************/
/***     14b. Nihal Journey css   ***/
/************************************/

.nihal-journey {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.nihal-journey-bg {
	position: absolute;
	inset: 0;
	background: url('../images/nihal_journey_bg.png') center center / cover no-repeat;
	opacity: 0.12;
	pointer-events: none;
	z-index: 0;
}

.nihal-journey-overlay {
	position: absolute;
	inset: 0;
	background: rgb(255 255 255 / 45%);
	pointer-events: none;
	z-index: 1;
}

.nihal-journey-flowers {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 2;
}

.nihal-flower-petal {
	position: absolute;
	top: 0;
	left: 0;
	width: 35px;
	height: 35px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	will-change: transform;
	opacity: 0.85;
}

.nihal-flower-petal--1 {
	background-image: url('../images/flower-petal-1.svg');
}

.nihal-flower-petal--2 {
	background-image: url('../images/flower-petal-2.svg');
}

.nihal-flower-petal--3 {
	background-image: url('../images/flower-petal-3.svg');
}

.nihal-journey .container {
	position: relative;
	z-index: 3;
}

.nihal-journey-hero-portrait {
	display: block;
	margin: 0;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(2, 13, 25, 0.18);
}

.nihal-journey-hero-portrait img {
	width: 100%;
	aspect-ratio: unset;
	object-fit: cover;
	display: block;
}

.nihal-journey-page .page-header {
	display: flex;
	align-items: flex-end;
	width: 100%;
	aspect-ratio: 1920 / 768;
	min-height: 280px;
	padding: 0;
	background: none;
	background-image: none;
	overflow: hidden;
}

.nihal-journey-page .nihal-journey-page-header-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 0;
}

.nihal-journey-page .page-header .container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: clamp(88px, 12vw, 140px);
	padding-bottom: clamp(20px, 3.5vw, 40px);
}

.nihal-journey-page .page-header-box {
	text-align: left;
}

.nihal-journey-page .nihal-journey-hero .section-title {
	text-align: left;
	margin-bottom: 24px;
}

.nihal-journey-page .nihal-journey-hero .col-lg-7 {
	padding-left: 40px;
}

.nihal-journey-page .nihal-journey-readmore-wrap {
	text-align: left;
}

.nihal-journey .section-title {
	margin-bottom: 40px;
}

.nihal-journey .section-title h2,
.nihal-journey-title {
	font-family: 'Tangerine', cursive;
	font-weight: 700;
	font-size: clamp(64px, 9vw, 96px);
	line-height: 1.1em;
	text-transform: none;
}

.nihal-journey-content p {
	font-size: 17px;
	line-height: 1.8em;
	color: rgba(2, 13, 25, 0.82);
	margin-bottom: 8px;
}

.nihal-journey-content blockquote {
	font-size: 18px;
	font-style: italic;
	line-height: 1.75em;
	color: var(--primary-color);
	margin: 28px 0;
	padding: 0 0 0 20px;
	border-left: 3px solid var(--accent-color);
}

.nihal-journey-readmore-wrap {
	margin-top: 24px;
	text-align: center;
}

.nihal-journey-readmore-btn {
	background: none;
	border: none;
	cursor: pointer;
}

.nihal-journey-more[hidden] {
	display: none;
}

.nihal-journey-more {
	margin-top: 8px;
}

.nihal-journey-signature {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--divider-color);
	text-align: center;
}

.nihal-journey-signature p {
	margin-bottom: 10px;
}

.nihal-journey-signature blockquote {
	border-left: none;
	padding: 0;
	margin: 12px 0;
	font-size: 17px;
	color: var(--accent-color);
}

@media (prefers-reduced-motion: reduce) {
	.nihal-journey-flowers {
		display: none;
	}
}

.nihal-journey-subtitle {
	font-size: 18px;
	font-style: italic;
	color: var(--primary-color);
	margin-top: 12px;
}

.nihal-journey-teaser {
	padding: 100px 0;
}

.nihal-journey-teaser-image {
	border-radius: 30px;
	overflow: hidden;
}

.nihal-journey-teaser-image img {
	width: 100%;
	aspect-ratio: unset;
	object-fit: cover;
	border-radius: 30px;
}

.nihal-journey-teaser-content p {
	margin-bottom: 16px;
}

.nihal-journey-teaser-link {
	margin-top: 24px;
	margin-bottom: 0;
}

.nihal-journey-chapter-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 20px 0;
	background: rgb(255 255 255 / 92%);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--divider-color);
}

.nihal-journey-chapter-nav-list {
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.nihal-journey-chapter-nav-list li {
	flex-shrink: 0;
}

.nihal-journey-chapter-pill {
	white-space: nowrap;
}

.nihal-journey-chapter {
	padding: 45px 0;
}

.nihal-journey-chapter:nth-child(even) {
	background-color: var(--secondary-color);
}

.nihal-journey-chapter--alt {
	background-color: var(--secondary-color);
}

.nihal-journey-chapter-image {
	border-radius: 30px;
	overflow: hidden;
	margin: 0;
	box-shadow: 0 16px 40px rgba(2, 13, 25, 0.12);
}

.nihal-journey-chapter-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 30px;
	transition: transform 0.5s ease;
}

.nihal-journey-chapter-image img.nihal-journey-chapter-image--natural {
	aspect-ratio: unset;
}

.nihal-journey-chapter:hover .nihal-journey-chapter-image img {
	transform: scale(1.04);
}

.nihal-journey-gallery {
	padding: 100px 0;
	background: var(--secondary-color);
}

.nihal-journey-gallery-grid {
	margin-top: 10px;
}

.nihal-journey-gallery-item {
	margin-bottom: 30px;
}

.nihal-journey-gallery-item figure {
	display: block;
	margin: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(2, 13, 25, 0.1);
}

.nihal-journey-gallery-item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.nihal-journey-gallery-item:hover img {
	transform: scale(1.06);
}

.nihal-journey-chapter-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 20px;
}

.nihal-journey-chapter-title {
	font-size: clamp(28px, 4vw, 36px);
	margin-bottom: 20px;
	text-transform: capitalize;
}

.nihal-journey-chapter-body p {
	margin-bottom: 0;
	line-height: 1.8em;
}

.nihal-journey-page .nihal-journey-chapter-title {
	font-size: clamp(28px, 4vw, 38px);
	text-transform: none;
	line-height: 1.25em;
}

.nihal-journey-beats {
	margin: 20px 0 24px;
	padding-left: 20px;
	border-left: 3px solid var(--accent-color);
}

.nihal-journey-beat {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6em;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.nihal-journey-beat:last-child {
	margin-bottom: 0;
}

.nihal-journey-reflection {
	margin: 24px 0;
	padding: 28px 24px;
	background-color: var(--white-color);
	border-radius: 20px;
}

.nihal-journey-reflection-item {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 16px;
}

.nihal-journey-reflection-item:last-child {
	margin-bottom: 0;
}

.nihal-journey-reflection-item--shift {
	color: var(--accent-color);
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--divider-color);
}

.nihal-journey-paragraph--emphasis {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
	color: var(--accent-color);
	margin: 8px 0 12px;
	padding-left: 16px;
	border-left: 3px solid var(--accent-color);
}

.nihal-journey-highlight {
	font-family: var(--accent-font);
	font-size: clamp(32px, 5vw, 37px);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--accent-color);
	margin: 12px 0 20px;
}

.nihal-journey-parent-message {
	padding: 80px 0;
	background-color: var(--secondary-color);
}

.nihal-journey-parent-message-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.nihal-journey-parent-message-title {
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.25em;
	margin-bottom: 24px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.nihal-journey-parent-message-inner p {
	font-size: 17px;
	line-height: 1.8em;
	margin-bottom: 14px;
	color: rgba(2, 13, 25, 0.82);
}

.nihal-journey-parent-message-highlight {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 600;
	font-style: italic;
	color: var(--accent-color);
	margin: 8px 0 16px;
}

.nihal-journey-parent-message-list {
	list-style: none;
	margin: 24px 0 28px;
	padding: 0;
	text-align: left;
	display: inline-block;
}

.nihal-journey-parent-message-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 1.7em;
	color: var(--text-color);
}

.nihal-journey-parent-message-list li::before {
	content: '\f004';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--accent-color);
	font-size: 14px;
}

.nihal-journey-parent-message-truth {
	font-family: var(--accent-font);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 700;
	color: var(--primary-color);
	margin: 28px 0 20px;
}

.nihal-journey-chapter-quote {
	margin: 24px 0 0;
	padding: 24px 28px;
	border-left: 4px solid var(--accent-color);
	background-color: var(--white-color);
	border-radius: 0 20px 20px 0;
}

.nihal-journey-chapter:nth-child(even) .nihal-journey-chapter-quote {
	background-color: var(--white-color);
}

.nihal-journey-signature-block {
	padding: 80px 0 40px;
}

.nihal-journey-encouragement {
	margin-top: 0;
}

/************************************/
/***   14c. Beny Tribute css      ***/
/************************************/

.beny-tribute-section {
	position: relative;
	padding: 100px 0;
	background-color: var(--secondary-color);
	border-top: 1px solid var(--divider-color);
}

.beny-tribute-title-icon {
	color: var(--accent-color);
	margin-right: 8px;
	font-size: 0.9em;
}

.beny-tribute-portrait {
	position: sticky;
	top: 120px;
	text-align: center;
}

.beny-tribute-portrait figure {
	display: block;
	margin: 0 0 18px;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(2, 13, 25, 0.12);
}

.beny-tribute-portrait img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.beny-tribute-portrait-caption h3 {
	font-size: 22px;
	margin-bottom: 6px;
	text-transform: capitalize;
}

.beny-tribute-portrait-caption p {
	margin: 0;
	font-size: 15px;
	color: var(--text-color);
}

.beny-tribute-highlight {
	height: 100%;
	padding: 40px 32px;
	border-radius: 24px;
	background-color: var(--white-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.beny-tribute-highlight:hover {
	transform: translateY(-6px);
	box-shadow: 0px 16px 36px 0px #00000012;
}

.beny-tribute-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: var(--accent-color);
	margin-bottom: 20px;
	transition: transform 0.35s ease;
}

.beny-tribute-icon i {
	font-size: 28px;
	color: var(--primary-color);
}

.beny-tribute-highlight:hover .beny-tribute-icon {
	transform: scale(1.08);
}

.beny-tribute-highlight h4 {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	line-height: 1.1em;
}

.beny-tribute-highlight p {
	font-size: 16px;
	line-height: 1.6em;
	color: var(--text-color);
	margin: 0;
}

.beny-tribute-content p {
	font-size: 17px;
	line-height: 1.8em;
	color: rgba(2, 13, 25, 0.82);
	margin-bottom: 14px;
}

.beny-tribute-quote {
	font-size: 20px;
	font-style: italic;
	line-height: 1.75em;
	color: var(--primary-color);
	margin: 32px 0;
	padding: 0 0 0 20px;
	border-left: 4px solid var(--accent-color);
}

.beny-tribute-closing {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--divider-color);
	text-align: center;
}

.beny-tribute-closing p {
	font-size: 18px;
	font-style: italic;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

@media (max-width: 991px) {
	.beny-tribute-section {
		padding: 70px 0;
	}

	.beny-tribute-portrait {
		position: static;
		max-width: 360px;
		margin: 0 auto 20px;
	}

	.beny-tribute-portrait figure {
		border-radius: 20px;
	}

	.beny-tribute-highlight {
		margin-bottom: 10px;
	}
}

@media (max-width: 575px) {
	.beny-tribute-section {
		padding: 50px 0;
	}

	.beny-tribute-section .section-title {
		margin-bottom: 36px;
	}

	.beny-tribute-highlight {
		padding: 28px 22px;
	}

	.beny-tribute-highlight h4 {
		font-size: 30px;
	}

	.beny-tribute-quote {
		font-size: 18px;
		margin: 24px 0;
	}
}

/************************************/
/***   15. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: url('../images/testimonial-bg-image.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	padding: 100px 0;
}

.testimonials-image {
	position: relative;
	padding-right: 90px;
}

.testimonials-img figure {
	display: block;
	border-radius: 30px;
}

.testimonials-img img {
	width: 100%;
	aspect-ratio: 1 / 1.344;
	object-fit: cover;
	border-radius: 30px;
}

.helthcare-support-circle {
	position: absolute;
	top: 60px;
	right: 0;
	z-index: 1;
}

.helthcare-support-circle a {
	display: inline-block;
}

.helthcare-support-circle img {
	width: 100%;
	max-width: 180px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.client-review-box {
	position: absolute;
	right: 0;
	bottom: 40px;
	background: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 20px 0px #0000000D;
	overflow: hidden;
	animation: clientreviewobject 3s infinite linear alternate;
	z-index: 1;
}

@keyframes clientreviewobject {
	50% {
		right: 45px;
	}
}

.client-review-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.client-review-box:hover:before {
	top: auto;
	height: 100%;
}

.client-review-box h2 {
	position: relative;
	color: var(--accent-color);
	font-size: 50px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.client-review-box p {
	position: relative;
	text-transform: uppercase;
	margin: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.client-review-box:hover h2,
.client-review-box:hover p {
	color: var(--white-color);
}

.testimonials-content {
	margin-left: 20px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	background-color: var(--white-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.author-info {
	display: flex;
	align-items: center;
}

.author-image {
	margin-right: 20px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image img {
	max-width: 60px;
	border-radius: 50%;
}

.author-content {
	width: calc(100% - 80px);
}

.author-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating {
	text-align: right;
}

.testimonial-rating i {
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-content p {
	margin: 0;
}

.testimonial-content-full {
	max-height: 460px;
	overflow-y: auto;
	padding-right: 12px;
}

.testimonial-content-full p {
	margin-bottom: 1em;
	line-height: 1.7;
}

.testimonial-content-full p:last-child {
	margin-bottom: 0;
}

.testimonial-content-full .testimonial-salutation {
	margin-bottom: 1.25em;
}

.testimonial-content-full blockquote {
	margin: 1.25em 0 1.5em;
	padding: 1em 1.25em;
	border-left: 4px solid var(--accent-color);
	background: rgba(242, 76, 44, 0.06);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--primary-color);
}

.testimonial-signature {
	margin-top: 1.5em;
	padding-top: 1.25em;
	border-top: 1px solid var(--divider-color);
}

.testimonial-signature p {
	margin-bottom: 0.35em;
}

.testimonial-signature-name {
	font-weight: 600;
	font-size: 1.05em;
	color: var(--primary-color);
}

.testimonial-signature-tagline {
	margin-top: 0.75em;
	font-style: italic;
	color: var(--accent-color);
}

@media (max-width: 767px) {
	.testimonial-content-full {
		max-height: 320px;
	}
}

.testimonial-slider .testimonial-pagination {
	text-align: center;
	margin-top: 40px;
	padding-bottom: 4px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	position: relative;
	height: 12px;
	width: 12px;
	background: var(--divider-color);
	opacity: 1;
	margin: 0 8px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid transparent;
	height: 0;
	width: 0;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
	border-color: var(--accent-color);
	height: 24px;
	width: 24px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
}

/************************************/
/***      16. Our Gallery css     ***/
/************************************/

.our-gallery {
	padding: 100px 0 0;
}

.our-gallery .container-fluid {
	padding: 0;
}

.our-gallery-nav {
	text-align: center;
	margin-bottom: 80px;
}

.our-gallery-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 13px 16px;
	padding: 0;
	margin: 0;
}

.our-gallery-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--text-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-gallery-nav ul li a:before {
	content: '';
	position: absolute;
	top: 5px;
	right: -34px;
	background-color: var(--divider-color);
	border-radius: 50%;
	height: 8px;
	width: 8px;
}

.our-gallery-nav ul li:last-child a:before {
	display: none;
}

.our-gallery-nav ul li a.active-btn,
.our-gallery-nav ul li a:hover {
	color: var(--accent-color);
}

.gallery-item-boxes {
	display: flex;
	flex-wrap: wrap;
	left: 1px;
}

.gallery-item-box {
	width: calc(20% - 0.2px);
}

.gallery-item-box figure {
	display: block;
	width: 100%;
}

.gallery-item-box img {
	width: 100%;
	aspect-ratio: 1 / 0.921;
	object-fit: cover;
}

/************************************/
/***       17. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 50px 0 70px;
}

.post-item {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-item-header {
	margin-bottom: 30px;
}

.post-item-meta {
	margin-bottom: 15px;
}

.post-item-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-item-meta ul li {
	color: var(--accent-color);
	text-transform: capitalize;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.3em;
}

.post-item-content h2 a {
	color: inherit;
}

.post-featured-image {
	margin-bottom: 30px;
}

.post-featured-image a {
	display: block;
	border-radius: 20px;
	overflow: hidden;
	cursor: none;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-meta-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin-bottom: 12px;
}

.post-type-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.post-type-badge--news {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.post-type-badge--event {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.post-item-meta--single {
	margin-bottom: 30px;
}

.post-item-meta--single .post-item-date {
	margin: 12px 0 0;
}

.news-events-filter {
	margin-bottom: 40px;
}

.news-events-card.is-filtered-out {
	display: none;
}

.event-registration-box {
	margin-top: 50px;
}

.event-registration-box .contact-form-box {
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 50px;
}

/************************************/
/***        18. Footer css        ***/
/************************************/

.main-footer {
	background: url(../images/footer-bg.png), var(--primary-color);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: auto;
	padding: 100px 0 0;
}

.main-footer-box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 100px;
}

.footer-about {
	position: relative;
	width: calc(45% - 50px);
}

.footer-about::before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.footer-logo {
	margin-bottom: 50px;
}

.footer-logo img {
	width: 100%;
	max-width: 161px;
}

.footer-contact-detail {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.footer-contact-item {
	width: calc(50% - 15px);
}

.footer-contact-item p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 15px;
}

.footer-contact-item h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-contact-item h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item h3 a:hover {
	color: var(--accent-color);
}

.footer-social-links {
	margin-top: 50px;
}

.footer-social-links h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-social-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--primary-color);
	background: var(--white-color);
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-links-box {
	width: calc(55% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.newsletter-form {
	width: 100%;
}

.newsletter-form .form-group {
	display: flex;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 56px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--accent-color);
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i {
	font-size: 24px;
	padding: 0 2px 2px 0;
	transition: all 0.4s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover i {
	transform: rotate(25deg);
}

.footer-links {
	width: calc(30% - 33.33px);
}

.footer-links.footer-service-links {
	width: calc(40% - 33.33px);
}

.footer-links h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
}

.footer-copyright {
	background-color: var(--dark-divider-color);
	padding: 7px 0;
	margin-top: 80px;
}

.copyright-text {
	text-align: center;
}

.copyright-text p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 0;
}

.whatsapp-sticky {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #25D366;
	color: var(--white-color);
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-sticky:hover,
.whatsapp-sticky:focus {
	color: var(--white-color);
	background-color: #1ebe57;
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
	.whatsapp-sticky {
		bottom: 18px;
		left: 18px;
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
}

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 235px 0 135px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, rgba(2, 13, 25, 0) 23.01%, rgba(2, 13, 25, 0.8) 92.29%), linear-gradient(360deg, rgba(2, 13, 25, 0) 70.82%, #020D19 101.14%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.page-header-box {
	position: relative;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 63px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span {
	font-weight: 700;
	color: var(--accent-color);
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	align-items: 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.active {
	color: var(--accent-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	content: "\f111";
	font-family: "FontAwesome";
	font-size: 6px;
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0;
	background: url('../images/our-service-bg.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
}

.our-approach-box-content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 100px;
}

.our-approach-content {
	width: calc(50% - 15px);
	padding-bottom: 200px;
}

.our-approach-image {
	width: calc(50% - 15px);
}

.our-approach-image figure {
	display: block;
	border-radius: 30px;
}

.our-approach-image img {
	width: 100%;
	aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.mission-vision-box {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 970px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px -10px 40px 5px #00000005;
	padding: 50px;
	overflow: hidden;
	z-index: 2;
}

.mission-vision-item {
	position: relative;
	width: calc(33.33% - 53.33px);
}

.mission-vision-item:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	bottom: 0;
	right: -40px;
	height: calc(100% - 30px);
	width: 1px;
	background: var(--divider-color);
}

.mission-vision-item:nth-child(3n + 3):before {
	display: none;
}

.mission-vision-box--two .mission-vision-item {
	width: calc(50% - 40px);
}

.mission-vision-box--two .mission-vision-item:last-child:before {
	display: none;
}

.mission-vision-item .icon-box {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.mission-vision-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.mission-vision-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p {
	margin: 0;
}

.our-approach--split {
	background: url('../images/testimonial-bg-image.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	padding: 100px 0;
}

.our-approach--split .row {
	align-items: stretch;
}

.our-approach--split .mission-vision-box--single {
	position: relative;
	bottom: auto;
	left: auto;
	max-width: none;
	width: 100%;
	height: 100%;
	display: block;
	padding: 40px;
}

.our-approach--split .mission-vision-box--single .mission-vision-item {
	width: 100%;
}

.our-approach--split .mission-vision-box--single .mission-vision-item:before {
	display: none;
}

.how-we-help {
	position: relative;
	padding: 100px 0;
}

.how-we-help:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 0 30px 30px 0;
	height: 100%;
	width: 55%;
	z-index: -1;
}

.how-we-help-content .section-title h3,
.how-we-help-content .section-title h2,
.how-we-help-content .section-title p {
	color: var(--white-color);
}

.how-we-help-body {
	margin-bottom: 40px;
}

.how-we-help-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.how-we-help-body ul li {
	background: url('../images/icon-check.svg') no-repeat;
	background-position: left center;
	background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.how-we-help-body ul li:last-child {
	margin-bottom: 0;
}

.how-we-help-btn .btn-default:after {
	background: var(--white-color);
}

.how-we-help-btn .btn-default:hover:before {
	filter: brightness(0) invert(0);
}

.how-we-help-btn .btn-default:hover {
	color: var(--primary-color);
}

.how-help-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-help-item {
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	text-align: center;
}

.how-help-item .icon-box {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.how-help-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.how-help-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-help-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-help-item-content p {
	margin: 0;
}

.our-fact {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.our-fact-image figure {
	display: block;
	border-radius: 30px;
}

.our-fact-image img {
	width: 100%;
	aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.our-fact-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fact-counter-list,
.fact-body-image {
	width: calc(50% - 15px);
}

.fact-counter-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 35px 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.fact-counter-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.fact-counter-item:hover:before {
	top: auto;
	height: 100%;
}

.fact-counter-item:last-child {
	margin-bottom: 0;
}

.fact-counter-item h2 {
	position: relative;
	width: calc(58% - 5px);
	font-size: 48px;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
	z-index: 1;

}

.fact-counter-item:hover h2 {
	color: var(--white-color);
}

.fact-counter-item p {
	position: relative;
	width: calc(42% - 5px);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	margin: 0;
	z-index: 1;
	;
	margin: 0;
	z-index: 1;
	line-height: 23px;
}

.fact-counter-item:hover p {
	color: var(--white-color);
}

.fact-body-image figure {
	display: block;
	height: 100%;
	border-radius: 30px;
}

.fact-body-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 30px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	display: flex;
	flex-direction: column;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.team-image {
	margin-bottom: 20px;
}

.team-image a,
.team-image a figure {
	display: block;
	border-radius: 20px;
	cursor: none;
}

.team-image a img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image a img {
	transform: scale(1.1);
}

.team-content {
	text-align: center;
	margin-bottom: 15px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 19px;
}

.team-view-btn {
	text-align: center;
	margin-top: auto;
}

.team-view-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 28px;
	border-radius: 50px;
	background-color: var(--accent-color);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: all 0.3s ease-in-out;
}

.team-view-link i {
	font-size: 12px;
}

.team-view-link:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

/* Vision timeline — About page roadmap */
.vision-timeline-section {
	position: relative;
	padding: 100px 0;
	background-color: var(--secondary-color);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vision-timeline-track {
	position: relative;
	max-width: 960px;
	margin: 50px auto 0;
	padding: 8px 0 20px;
}

.vision-timeline-spine {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	transform: translateX(-50%);
	background: rgba(26, 77, 46, 0.12);
	border-radius: 3px;
	overflow: hidden;
	z-index: 0;
}

.vision-timeline-spine-fill {
	display: block;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
	border-radius: 3px;
	transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-timeline-section.is-active .vision-timeline-spine-fill {
	height: 100%;
}

.vision-timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0 28px;
	align-items: center;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
	z-index: 1;
}

.vision-timeline-item:last-child {
	margin-bottom: 0;
}

.vision-timeline-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.vision-timeline-item:nth-child(2).is-visible {
	transition-delay: 0s;
}

.vision-timeline-item:nth-child(3).is-visible {
	transition-delay: 0.08s;
}

.vision-timeline-item:nth-child(4).is-visible {
	transition-delay: 0.16s;
}

.vision-timeline-item:nth-child(5).is-visible {
	transition-delay: 0.24s;
}

.vision-timeline-item:nth-child(6).is-visible {
	transition-delay: 0.32s;
}

.vision-timeline-item:nth-child(7).is-visible {
	transition-delay: 0.4s;
}

.vision-timeline-item:nth-child(8).is-visible {
	transition-delay: 0.48s;
}

.vision-timeline-item:nth-child(9).is-visible {
	transition-delay: 0.56s;
}

.vision-timeline-item:nth-child(10).is-visible {
	transition-delay: 0.64s;
}

.vision-timeline-item--left .vision-timeline-card {
	grid-column: 1;
	grid-row: 1;
	justify-self: end;
	width: 100%;
	max-width: 380px;
}

.vision-timeline-item--left .vision-timeline-dot {
	grid-column: 2;
	grid-row: 1;
}

.vision-timeline-item--right .vision-timeline-dot {
	grid-column: 2;
	grid-row: 1;
}

.vision-timeline-item--right .vision-timeline-card {
	grid-column: 3;
	grid-row: 1;
	justify-self: start;
	width: 100%;
	max-width: 380px;
}

.vision-timeline-dot {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--accent-color);
	border: 3px solid var(--white-color);
	box-shadow: 0 0 0 3px rgba(102, 147, 71, 0.25);
	flex-shrink: 0;
	z-index: 2;
}

.vision-timeline-item--achieved .vision-timeline-dot {
	background: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(102, 147, 71, 0.35);
}

.vision-timeline-item--future .vision-timeline-dot {
	background: rgba(102, 147, 71, 0.45);
	box-shadow: 0 0 0 3px rgba(102, 147, 71, 0.15);
	animation: visionTimelinePulse 2.4s ease-in-out infinite;
}

.vision-timeline-item--longterm .vision-timeline-dot {
	background: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.2), 0 0 20px rgba(102, 147, 71, 0.45);
}

@keyframes visionTimelinePulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 3px rgba(102, 147, 71, 0.15);
	}

	50% {
		transform: scale(1.12);
		box-shadow: 0 0 0 8px rgba(102, 147, 71, 0.08);
	}
}

.vision-timeline-card {
	padding: 28px 26px 30px;
	border-radius: 20px;
	background: var(--white-color);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vision-timeline-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
	border-color: rgba(102, 147, 71, 0.25);
}

.vision-timeline-item--longterm .vision-timeline-card {
	border-color: rgba(102, 147, 71, 0.35);
	box-shadow: 0 12px 36px rgba(102, 147, 71, 0.12), 0 0 0 1px rgba(102, 147, 71, 0.08);
}

.vision-timeline-item--longterm .vision-timeline-card:hover {
	box-shadow: 0 20px 48px rgba(102, 147, 71, 0.18), 0 0 24px rgba(102, 147, 71, 0.12);
}

.vision-timeline-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.vision-timeline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(102, 147, 71, 0.12);
	color: var(--primary-color);
	font-size: 18px;
	flex-shrink: 0;
}

.vision-timeline-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.3;
	white-space: nowrap;
}

.vision-timeline-badge--achieved {
	background: rgba(34, 139, 34, 0.12);
	color: #1e7a1e;
}

.vision-timeline-badge--future {
	background: rgba(26, 77, 46, 0.08);
	color: var(--primary-color);
}

.vision-timeline-badge--longterm {
	background: linear-gradient(135deg, rgba(102, 147, 71, 0.2) 0%, rgba(26, 77, 46, 0.15) 100%);
	color: var(--primary-color);
}

.vision-timeline-label {
	display: inline-block;
	margin-bottom: 6px;
	padding: 4px 12px;
	border-radius: 6px;
	background: var(--secondary-color);
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: 0.02em;
}

.vision-timeline-card h3 {
	font-size: 22px;
	line-height: 1.35;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.vision-timeline-card h3 .counter {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-color);
}

.vision-timeline-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-color);
}

@media only screen and (max-width: 991px) {
	.vision-timeline-section {
		padding: 70px 0;
	}

	.vision-timeline-track {
		margin-top: 36px;
		padding-left: 28px;
	}

	.vision-timeline-spine {
		left: 8px;
		transform: none;
	}

	.vision-timeline-item {
		display: block;
		margin-bottom: 32px;
		padding-left: 24px;
	}

	.vision-timeline-dot {
		position: absolute;
		left: -20px;
		top: 28px;
	}

	.vision-timeline-item--left .vision-timeline-card,
	.vision-timeline-item--right .vision-timeline-card {
		max-width: none;
		justify-self: stretch;
	}
}

@media only screen and (max-width: 767px) {
	.vision-timeline-card {
		padding: 22px 20px 24px;
	}

	.vision-timeline-card h3 {
		font-size: 19px;
	}

	.vision-timeline-card h3 .counter {
		font-size: 24px;
	}

	.vision-timeline-card-head {
		flex-wrap: wrap;
	}
}

.our-faqs {
	padding: 100px 0;
}

.faq-accordion .accordion-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 40px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	background: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f107';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 900;
	line-height: normal;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: translateY(-50%) rotate(-90deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 18px 40px 18px 20px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin: 0;
}

.faqs-image {
	position: relative;
	padding-right: 145px;
	margin-left: 30px;
}

.faqs-image:before {
	content: '';
	position: absolute;
	right: 80px;
	bottom: 40px;
	width: 30px;
	height: 185px;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.faqs-img-1,
.faqs-img-2 {
	border-radius: 30px;
	overflow: hidden;
}

.faqs-img-1 figure,
.faqs-img-2 figure {
	display: block;
}

.faqs-img-1 img,
.faqs-img-2 img {
	width: 100%;
	object-fit: cover;
}

.faqs-img-2 {
	max-width: 302px;
	position: absolute;
	top: 140px;
	right: 0;
	border: 8px solid var(--white-color);
	border-radius: 30px;
	z-index: 1;
}

.faqs-img-1 img {
	aspect-ratio: 1 / 1.614;
}

.faqs-img-2 img {
	aspect-ratio: 1 / 1.1;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item .service-image {
	margin-bottom: 0;
}

.why-choose-us.service-why-choose-us {
	background-color: var(--secondary-color);
}

.home-partner-section {
	padding: 100px 0;
	scroll-margin-top: 120px;
}

.home-partner-grid {
	margin-top: 8px;
}

.home-partner-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 24px;
	box-shadow: 0 14px 44px rgba(2, 13, 25, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 36px 30px 32px;
	position: relative;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-partner-card::before {
	background: linear-gradient(90deg, var(--accent-color), rgba(102, 147, 71, 0.35));
	border-radius: 24px 24px 0 0;
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.home-partner-card:hover {
	border-color: rgba(102, 147, 71, 0.35);
	box-shadow: 0 20px 50px rgba(2, 13, 25, 0.1);
	transform: translateY(-6px);
}

.home-partner-card-icon {
	align-items: center;
	background: rgba(102, 147, 71, 0.12);
	border-radius: 16px;
	color: var(--accent-color);
	display: inline-flex;
	font-size: 26px;
	height: 56px;
	justify-content: center;
	margin-bottom: 22px;
	width: 56px;
}

.home-partner-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

.home-partner-card p {
	color: rgba(2, 13, 25, 0.78);
	flex-grow: 1;
	font-size: 15px;
	line-height: 1.75em;
	margin-bottom: 22px;
}

.home-partner-card-link {
	align-items: center;
	color: var(--primary-color);
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	gap: 8px;
	margin-top: auto;
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.home-partner-card-link:hover,
.home-partner-card-link:focus {
	color: var(--accent-color);
	gap: 12px;
}

.home-partner-footer {
	margin-top: 48px;
}

.home-partner-footer p {
	color: rgba(2, 13, 25, 0.78);
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.home-partner-section {
		padding: 60px 0;
		scroll-margin-top: 100px;
	}

	.home-partner-footer {
		margin-top: 32px;
	}
}

.impact-proof-section {
	padding: 100px 0 80px;
	scroll-margin-top: 120px;
}

.impact-proof-section .impact-waiting-note {
	display: inline-flex;
	align-items: center;
	margin: 0 0 14px;
	padding: 8px 14px;
	background: rgba(102, 147, 71, 0.12);
	border: 1px solid rgba(102, 147, 71, 0.28);
	border-radius: 999px;
	color: var(--accent-color);
	font-size: 15px;
	line-height: 1.2;
}

.impact-proof-section .impact-waiting-note strong {
	color: var(--accent-color);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.impact-proof-highlights {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 24px;
}

.impact-proof-highlight {
	align-items: center;
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(2, 13, 25, 0.06);
	display: flex;
	gap: 18px;
	padding: 24px 22px;
}

.impact-proof-highlight-icon {
	align-items: center;
	background: rgba(102, 147, 71, 0.12);
	border-radius: 16px;
	color: var(--accent-color);
	display: inline-flex;
	font-size: 24px;
	height: 56px;
	justify-content: center;
	min-width: 56px;
}

.impact-proof-highlight-value strong {
	color: var(--primary-color);
	display: block;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 4px;
}

.impact-proof-highlight-value span {
	color: rgba(2, 13, 25, 0.78);
	font-size: 15px;
	font-weight: 600;
}

.impact-proof-disciplines {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.impact-proof-disciplines li {
	background: rgba(102, 147, 71, 0.1);
	border: 1px solid rgba(102, 147, 71, 0.22);
	border-radius: 999px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
}

.impact-proof-photos {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-bottom: 40px;
}

.impact-proof-photo {
	border-radius: 18px;
	margin: 0;
	overflow: hidden;
}

.impact-proof-photo img {
	aspect-ratio: 4 / 3;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.impact-proof-proof-row {
	margin-bottom: 48px;
}

.impact-proof-testimonial {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-left: 4px solid var(--accent-color);
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(2, 13, 25, 0.06);
	height: 100%;
	margin: 0;
	padding: 28px 26px;
}

.impact-proof-testimonial-header {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 18px;
}

.impact-proof-testimonial-avatar {
	border-radius: 50%;
	flex-shrink: 0;
	height: 56px;
	margin: 0;
	overflow: hidden;
	width: 56px;
}

.impact-proof-testimonial-avatar img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.impact-proof-testimonial cite {
	color: var(--primary-color);
	display: block;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
}

.impact-proof-testimonial-header p {
	color: rgba(2, 13, 25, 0.68);
	font-size: 13px;
	margin: 4px 0 0;
}

.impact-proof-testimonial>p {
	color: rgba(2, 13, 25, 0.82);
	font-size: 16px;
	line-height: 1.75em;
	margin-bottom: 18px;
}

.impact-proof-testimonial-link {
	align-items: center;
	color: var(--primary-color);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	text-decoration: none;
}

.impact-proof-testimonial-link:hover,
.impact-proof-testimonial-link:focus {
	color: var(--accent-color);
}

.impact-proof-testimonial-kicker {
	background: rgba(102, 147, 71, 0.12);
	border-radius: 999px;
	color: var(--accent-color);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 6px 12px;
	text-transform: uppercase;
}

.impact-proof-testimonial-kicker i {
	font-size: 11px;
}

.impact-proof-monthly {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(2, 13, 25, 0.06);
	height: 100%;
	padding: 28px 26px;
}

.impact-proof-monthly-kicker {
	background: rgba(102, 147, 71, 0.12);
	border-radius: 999px;
	color: var(--accent-color);
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	padding: 6px 12px;
	text-transform: uppercase;
}

.impact-proof-monthly-head {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 8px;
}

.impact-proof-monthly-title {
	font-size: 22px;
	margin-bottom: 0;
}

.impact-proof-monthly-update {
	color: rgba(2, 13, 25, 0.62);
	font-size: 12px;
	font-weight: 600;
}

.impact-proof-monthly-note {
	color: rgba(2, 13, 25, 0.65);
	font-size: 13px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

.impact-proof-monthly-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-proof-monthly-stat {
	align-items: flex-start;
	background: rgba(102, 147, 71, 0.06);
	border: 1px solid rgba(102, 147, 71, 0.1);
	border-radius: 14px;
	display: flex;
	gap: 12px;
	padding: 14px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-proof-monthly-stat:hover {
	box-shadow: 0 8px 20px rgba(2, 13, 25, 0.08);
	transform: translateY(-2px);
}

.impact-proof-monthly-icon {
	align-items: center;
	background: rgba(102, 147, 71, 0.14);
	border-radius: 10px;
	color: var(--accent-color);
	display: inline-flex;
	font-size: 16px;
	height: 36px;
	justify-content: center;
	min-width: 36px;
}

.impact-proof-monthly-stat strong {
	color: var(--primary-color);
	display: block;
	font-size: 22px;
	line-height: 1.1;
	margin-bottom: 4px;
}

.impact-proof-monthly-label {
	color: rgba(2, 13, 25, 0.72);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45em;
}

.impact-proof-team {
	margin-top: 8px;
}

.impact-proof-team-header h3 {
	font-size: 28px;
	margin-bottom: 10px;
}

.impact-proof-team-header p {
	color: rgba(2, 13, 25, 0.72);
	margin: 0;
	max-width: 520px;
}

.impact-proof-team-image {
	border-radius: 20px;
	margin: 0;
	overflow: hidden;
}

.impact-proof-team-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.impact-proof-team-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(2, 13, 25, 0.05);
	height: 100%;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-proof-team-card:hover {
	box-shadow: 0 16px 36px rgba(2, 13, 25, 0.1);
	transform: translateY(-4px);
}

.impact-proof-team-card-link {
	color: inherit;
	display: block;
	padding: 18px 18px 20px;
	text-decoration: none;
}

.impact-proof-team-photo {
	border-radius: 14px;
	margin: 0 0 14px;
	overflow: hidden;
}

.impact-proof-team-photo img {
	aspect-ratio: 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.impact-proof-team-card h4 {
	font-size: 17px;
	margin-bottom: 4px;
}

.impact-proof-team-card p {
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
}

.impact-proof-team-specialty {
	color: rgba(2, 13, 25, 0.68);
	display: block;
	font-size: 12px;
	line-height: 1.5em;
}

.impact-proof-team-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

@media (max-width: 991px) {
	.impact-proof-section {
		padding: 60px 0 50px;
	}

	.impact-proof-highlights {
		grid-template-columns: 1fr;
	}

	.impact-proof-photos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.impact-proof-monthly-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.impact-proof-photos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.impact-proof-highlight-value strong {
		font-size: 28px;
	}
}

.impact_section {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background: linear-gradient(135deg, #0a1f12 0%, #153d24 45%, #1a4d2e 100%);
}

.impact-dashboard {
	position: relative;
	z-index: 1;
}

.impact-dashboard-particles {
	position: absolute;
	inset: 0;
	z-index: 0;
	min-height: 100%;
	pointer-events: auto;
}

.impact-dashboard-particles canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.section-title-light h3,
.section-title-light h2,
.section-title-light p {
	color: var(--white-color);
}

.section-title-light h3 {
	opacity: 0.9;
}

.section-title-light p {
	opacity: 0.85;
}

.impact-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
}

.impact-dashboard-card {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.impact-dashboard-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.impact-dashboard-card:nth-child(1).is-visible {
	transition-delay: 0s;
}

.impact-dashboard-card:nth-child(2).is-visible {
	transition-delay: 0.08s;
}

.impact-dashboard-card:nth-child(3).is-visible {
	transition-delay: 0.16s;
}

.impact-dashboard-card:nth-child(4).is-visible {
	transition-delay: 0.24s;
}

.impact-dashboard-card:nth-child(5).is-visible {
	transition-delay: 0.32s;
}

.impact-dashboard-card:nth-child(6).is-visible {
	transition-delay: 0.4s;
}

.impact-dashboard-card:nth-child(7).is-visible {
	transition-delay: 0.48s;
}

.impact-dashboard-card--featured {
	grid-column: span 2;
}

.impact-dashboard-card-inner {
	position: relative;
	height: 100%;
	padding: 32px 28px 36px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	overflow: hidden;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.impact-dashboard-card:hover .impact-dashboard-card-inner {
	transform: translateY(-6px);
	border-color: rgba(163, 207, 64, 0.55);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.impact-dashboard-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--accent-color);
	margin-bottom: 22px;
	transition: transform 0.35s ease;
}

.impact-dashboard-icon i {
	font-size: 22px;
	color: var(--primary-color);
}

.impact-dashboard-card:hover .impact-dashboard-icon {
	transform: scale(1.08) rotate(-4deg);
}

.impact-dashboard-value h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--white-color);
	margin-bottom: 10px;
}

.impact-dashboard-card--featured .impact-dashboard-value h2 {
	font-size: 64px;
}

.impact-dashboard-card-inner p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	line-height: 1.5em;
	margin: 0;
	text-transform: capitalize;
}

.impact-dashboard-bar {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg, var(--accent-color), #7ab82e);
	transition: width 0.9s ease 0.2s;
}

.impact-dashboard-card.is-visible .impact-dashboard-bar {
	width: 100%;
}

@media (max-width: 991px) {
	.impact-dashboard-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-dashboard-card--featured {
		grid-column: span 2;
	}

	.impact-dashboard-value h2 {
		font-size: 40px;
	}

	.impact-dashboard-card--featured .impact-dashboard-value h2 {
		font-size: 52px;
	}
}

@media (max-width: 575px) {
	.impact_section {
		padding: 60px 0;
	}

	.impact-dashboard-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 36px;
	}

	.impact-dashboard-card--featured {
		grid-column: span 1;
	}

	.impact-dashboard-card-inner {
		padding: 24px 22px 30px;
	}

	.impact-dashboard-value h2 {
		font-size: 36px;
	}

	.impact-dashboard-card--featured .impact-dashboard-value h2 {
		font-size: 42px;
	}
}

.founder-philosophy-quote {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 16px;
	color: var(--primary-color);
	border-left: 4px solid var(--accent-color);
	padding-left: 16px;
}

.founder-page-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0 70px;
}

.founder-page-hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/green_bg.jpg') center center / cover no-repeat;
	z-index: 0;
}

.founder-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.88) 0%,
			rgba(255, 255, 255, 0.78) 45%,
			rgba(102, 147, 71, 0.14) 100%);
	z-index: 1;
}

.founder-page-hero-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	min-height: 100%;
	pointer-events: auto;
}

.founder-page-hero-particles canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.founder-page-hero .container-fluid {
	position: relative;
	z-index: 3;
}

.founder-page-hero .founder-intro-box {
	padding: 40px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(102, 147, 71, 0.16);
	border-radius: 28px;
	box-shadow: 0 24px 60px rgba(2, 13, 25, 0.1);
	backdrop-filter: blur(8px);
}

.founder-intro-portrait {
	position: relative;
}

.founder-intro-portrait::before {
	content: '';
	position: absolute;
	inset: -10px;
	border: 2px solid rgba(102, 147, 71, 0.28);
	border-radius: 30px;
	z-index: 0;
}

.founder-intro-portrait img {
	position: relative;
	z-index: 1;
	box-shadow: 0 18px 40px rgba(2, 13, 25, 0.16);
}

.founder-page-hero .founder-intro .section-title {
	margin-bottom: 24px;
}

.founder-page-hero .founder-intro .section-title h3 {
	margin-bottom: 10px;
}

.founder-page-hero .founder-intro .section-title h2,
.founder-page-hero .founder-intro .section-title .founder-intro-title {
	font-family: 'Tangerine', cursive;
	font-size: 66px;
	font-weight: 700;
	line-height: 1.08;
	text-transform: none;
	color: var(--primary-color);
	margin-bottom: 18px;
}

.founder-page-hero .founder-intro .section-title p {
	font-size: 17px;
	line-height: 1.75em;
}

.founder-page-hero .founder-intro .founder-intro-signature {
	margin-top: 28px;
	margin-bottom: 0;
	padding-top: 22px;
}

.founder-page-hero .founder-intro .section-title .founder-intro-signature p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--text-color);
	margin-top: 0;
	margin-bottom: 4px;
}

.founder-page-hero .founder-intro .section-title .founder-intro-signature p:last-child {
	margin-bottom: 0;
}

.founder-page-hero .founder-intro .section-title .founder-intro-signature .testimonial-signature-name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.founder-intro-box {
	margin-bottom: 0;
}

.founder-intro-layout {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 48px;
}

.founder-intro-layout .team-member-image {
	position: relative;
	flex: 0 0 38%;
	width: 38%;
	max-width: 480px;
	align-self: stretch;
}

.founder-intro-layout .team-member-image figure,
.founder-intro-layout .founder-intro-portrait {
	position: absolute;
	inset: 10px;
	display: block;
	width: auto;
	height: auto;
	margin: 0;
	border-radius: 24px;
}

.founder-intro-layout .team-member-image figure,
.founder-intro-layout .team-member-image img {
	border-radius: 24px;
}

.founder-intro-layout .team-member-image img {
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: unset;
	object-fit: cover;
	object-position: center 18%;
}

.founder-intro-layout .team-member-content {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
}

.founder-role-card {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white-color) 100%);
	border: 1px solid var(--divider-color);
	border-left: 4px solid var(--accent-color);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
	max-width: 480px;
}

.founder-role-card-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 22px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.founder-role-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.founder-role-card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-color);
}

.founder-role-card-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35em;
	color: var(--primary-color);
}

.founder-role-card-org {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
	opacity: 0.85;
}

.founder-page-main {
	padding-top: 20px;
	padding-bottom: 100px;
}

.founder-page-entry ul {
	flex-direction: column;
}

.founder-page-entry ul li {
	width: 100%;
}

.founder-belief {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
	margin: 16px 0 20px;
	font-style: italic;
}

.founder-quote-intro {
	font-size: 16px;
	margin: 8px 0 12px;
	color: var(--text-color);
}

.founder-highlights {
	margin: 20px 0 0;
	padding-left: 20px;
}

.founder-highlights li {
	margin-bottom: 10px;
}

.founder-section-link {
	margin-top: 16px;
}

.founder-personal-message-quote {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--primary-color);
	border-left: 4px solid var(--accent-color);
	padding-left: 20px;
	margin: 24px 0;
}

.founder-personal-message .testimonial-signature {
	margin-bottom: 0;
	padding-bottom: 0;
}

.founder-personal-message .testimonial-signature p {
	margin-bottom: 0.35em;
}

.founder-personal-message .testimonial-signature p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.founder-founder-message-body p {
	margin-bottom: 1em;
	line-height: 1.8;
}

.founder-founder-message-body blockquote {
	margin: 1.25em 0 1.5em;
	padding: 1em 1.25em;
	border-left: 4px solid var(--accent-color);
	background: rgba(242, 76, 44, 0.06);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--primary-color);
}

.founder-founder-message-body .testimonial-signature {
	margin-top: 1.5em;
	padding-top: 1.25em;
	border-top: 1px solid var(--divider-color);
}

.founder-page-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

.founder-page-cta .btn-default {
	text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
	.founder-page-hero {
		padding: 60px 0 30px;
	}

	.founder-page-hero .founder-intro-box {
		padding: 24px 20px;
	}

	.founder-page-hero .founder-intro .section-title h2,
	.founder-page-hero .founder-intro .section-title .founder-intro-title {
		font-size: 48px;
	}

	.founder-intro-layout {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
		gap: 24px;
	}

	.founder-intro-layout .team-member-image {
		flex: none;
		width: 100%;
		max-width: 400px;
		aspect-ratio: 3 / 4;
		margin: 0 auto;
	}

	.founder-intro-layout .team-member-image img {
		min-height: 0;
	}

	.founder-personal-message-quote {
		font-size: 19px;
	}

	.founder-role-card {
		max-width: none;
		padding: 18px 20px;
		gap: 16px;
	}

	.founder-role-card-icon {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.founder-role-card-title {
		font-size: 16px;
	}
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.page-sidebar-catagery-list {
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	margin-bottom: 60px;
	box-shadow: 0px -10px 40px 5px #00000005;
	overflow: hidden;
}

.page-sidebar-catagery-list h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 20px 30px;
}

.page-sidebar-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 30px;
}

.page-sidebar-catagery-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-sidebar-catagery-list ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.page-sidebar-catagery-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-sidebar-catagery-list ul li a:hover {
	color: var(--primary-color);
}

.page-sidebar-catagery-list ul li a.active,
.page-sidebar-catagery-list ul li a.active:hover {
	color: var(--primary-color);
	font-weight: 600;
}

.page-sidebar-catagery-list ul li a.active::before {
	filter: brightness(0) invert(0);
}

.page-sidebar-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url(../images/arrow-text.svg) no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.page-sidebar-catagery-list ul li a:hover:before {
	filter: brightness(0) invert(0);
}

.sidebar-cta-box {
	position: relative;
	background-image: url(../images/sidebar-cta-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	text-align: center;
	padding: 40px;
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.sidebar-cta-box .icon-box,
.sidebar-cta-content {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.sidebar-cta-box .icon-box img {
	width: 100%;
	max-width: 92px;
}

.sidebar-cta-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
	border-radius: 30px;
}

.service-feature-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.598;
	border-radius: 30px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 50px;
	margin-bottom: 20px;
}

.service-entry ul {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 30px;
	list-style: none;
	padding: 40px;
	margin: 40px 0;
}

.service-entry ul li {
	background: url(../images/icon-check-dark.svg) no-repeat center left;
	background-size: 26px auto;
	width: calc(33.33% - 20px);
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-left: 30px;
}

.bringing-quality-box,
.service-entry-content-list,
.service-entry-steps {
	margin-top: 60px;
}

.service-entry-content-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-entry-content-item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-content-item:nth-child(even) {
	flex-direction: row-reverse;
}

.service-entry-image,
.service-entry-content-box {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
	border-radius: 30px;
}

.service-entry-image img {
	width: 100%;
	border-radius: 30px;
	aspect-ratio: 1 / 0.66;
	border-radius: 30px;
}

.service-entry-content-box .icon-box {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.service-entry-content-box .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.service-entry-content-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.service-entry-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-entry-step-list {
	margin-top: 40px;
}

.service-entry-step-item {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.service-entry-step-item::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-entry-step-item.active::before,
.service-entry-step-item:hover::before {
	height: 100%;
	top: 0;
	bottom: auto;
}

.service-entry-step-item:last-child {
	margin-bottom: 0;
}

.service-entry-step-box {
	position: relative;
	width: calc(100% - 70px);
	display: flex;
	z-index: 1;
}

.service-entry-step-no {
	margin-right: 30px;
}

.service-entry-step-no h2 {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-entry-step-item.active .service-entry-step-content p,
.service-entry-step-item:hover .service-entry-step-content p,
.service-entry-step-item.active .service-entry-step-no h2,
.service-entry-step-item:hover .service-entry-step-no h2,
.service-entry-step-item.active .service-entry-step-content h3,
.service-entry-step-item:hover .service-entry-step-content h3 {
	color: var(--white-color);
}

.service-entry-step-item .icon-box {
	position: relative;
	display: inline-block;
	margin-left: 15px;
	padding-bottom: 5px;
}

.service-entry-step-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-item.active .icon-box:before,
.service-entry-step-item:hover .icon-box:before {
	background: var(--white-color);
	opacity: 50%;
}

.service-entry-step-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

/************************************/
/***     22. Blog Archive css     ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 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);
}

/************************************/
/***      23. Blog Single css     ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.455em;
}

.post-entry h1 {
	font-size: 63px;
}

.post-entry h2 {
	font-size: 50px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 25px;
	background-size: 55px;
	border-radius: 30px;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	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);
	color: var(--white-color);
	border-radius: 10px;
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     24. Projects Page css    ***/
/************************************/

.page-programs {
	padding: 100px 0 70px;
}

/************************************/
/***    25. Project Single css    ***/
/************************************/

.page-program-single {
	padding: 100px 0;
}

.program-feature-image {
	margin-bottom: 40px;
}

.program-feature-image figure {
	display: block;
	border-radius: 30px;
}

.program-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry {
	margin-bottom: 60px;
}

.program-entry h2 {
	font-size: 38px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.program-entry p {
	margin-bottom: 20px;
}

.program-entry p:last-child {
	margin-bottom: 0;
}

.program-entry ul {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.program-entry ul li {
	width: calc(50% - 15px);
	background: url(../images/icon-check-dark.svg) no-repeat;
	background-position: center left;
	background-size: 26px auto;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-left: 30px;
}

.building-stability-box,
.program-why-choose {
	margin-top: 60px;
}

.program-entry-video {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	text-align: left;
	margin: 40px 0;
}

.program-entry-video-item {
	position: relative;
	width: calc(50% - 15px);
}

.program-entry-video-image figure {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.program-entry-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 30%;
	z-index: 1;
}

.program-entry-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 30px;
}

.program-entry-video-item .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.program-entry-video.intro-video-box .video-play-button a:before,
.program-entry-video.intro-video-box .video-play-button a:after {
	top: -35%;
	left: -35%;
}

.program-entry-video-item .video-play-button a {
	height: 60px;
	width: 60px;
}

.program-entry-video-item .video-play-button a i {
	font-size: 26px;
}

.program-why-choose-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.program-why-choose-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.program-why-choose-item .icon-box {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.program-why-choose-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.program-why-choose-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.program-why-choose-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.program-why-choose-content p {
	margin: 0;
}

.section-footer-text.program-why-choose-footer {
	margin-top: 40px;
}

/************************************/
/***      26. Team Page css       ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***      27. Team Single css     ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.page-team-single-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 100px 60px;
}

.team-member-info-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-member-image,
.team-member-content {
	width: calc(50% - 30px);
}

.team-member-image figure {
	display: block;
	border-radius: 20px;
}

.team-member-image img {
	width: 100%;
	aspect-ratio: 1 / 1.06;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-image img.team-member-photo--square {
	aspect-ratio: unset;
}

.team-member-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.team-member-info .section-title {
	margin-bottom: 0;
}

.team-member-info .section-title p {
	text-transform: capitalize;
	margin-top: 10px;
}

.member-social-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.member-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child {
	margin-right: 0;
}

.member-social-list ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
	background: var(--primary-color);
}

.member-social-list ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-single-profile-layout .team-member-info {
	align-items: flex-start;
	flex-direction: column;
}

.team-single-profile-layout .team-member-info .section-title p.team-member-role {
	text-transform: capitalize;
	margin-top: 10px;
	margin-bottom: 0;
}

.team-role-subtitle {
	font-size: 15px;
	line-height: 1.6em;
	color: var(--text-color);
	margin-top: 8px;
	margin-bottom: 0;
	text-transform: none;
}

.team-professional-credentials {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-top: 10px;
}

.team-professional-credentials .section-title {
	margin-bottom: 20px;
}

.team-credentials-list {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 20px 30px;
	margin: 0;
}

.team-credentials-item {
	margin: 0;
}

.team-credentials-item dt {
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--accent-color);
	margin-bottom: 6px;
}

.team-credentials-item dd {
	font-size: 16px;
	line-height: 1.6em;
	color: var(--text-color);
	margin: 0;
}

.team-short-message {
	margin-top: 30px;
	padding-top: 10px;
}

.team-short-message .section-title {
	margin-bottom: 16px;
}

.team-short-message-text {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7em;
	color: var(--primary-color);
	background: transparent;
	border-left: 4px solid var(--accent-color);
	padding: 8px 0 8px 24px;
	margin: 0;
}

.team-extended-message {
	margin-top: 60px;
}

.team-extended-message .testimonial-content-full {
	max-height: none;
}

.member-content-body {
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 30px;
}

.member-content-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.member-content-body ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.member-content-body ul li:last-child {
	margin-bottom: 0;
}

.member-content-body ul li span {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
	display: inline-block;
	width: 80%;
}

.member-about-nav {
	margin-bottom: 30px;
}

.member-about-nav ul {
	list-style: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 0;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid var(--divider-color);
}

.member-about-nav ul li {
	display: inline-block;
	width: 33.33%;
}

.member-about-nav ul li .nav-link {
	position: relative;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--text-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	padding: 0 5px 20px 5px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.member-about-nav ul li .nav-link.active,
.member-about-nav ul li .nav-link:hover {
	background: transparent;
	color: var(--accent-color);
}

.member-about-nav ul li .nav-link::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	background: var(--accent-color);
	width: 0;
	height: 3px;
	transition: all 0.4s ease-in-out;
}

.member-about-nav ul li .nav-link.active:before,
.member-about-nav ul li .nav-link:hover:before {
	width: 100%;
	left: 0;
	right: auto;
}

.member-about-content .section-title {
	margin-bottom: 0;
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
}

.skill-data .skill-no {
	color: var(--primary-color);
	font-size: 16px;
	margin-left: 25px;
}

.skill-progress {
	position: relative;
	background: var(--secondary-color);
	border-radius: 99px;
	width: 100%;
	height: 16px;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.team-member-experience {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.team-experience-box,
.team-contact-form {
	width: calc(50% - 15px);
}

.team-experience-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-experience-body ul li {
	background: url('../images/icon-check-dark.svg') no-repeat;
	background-position: left center;
	background-size: 26px auto;
	width: calc(50% - 15px);
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
}

.team-contact-form {
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 40px;
}

/************************************/
/***   28. Testimonial Page css   ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

/************************************/
/***    29. 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.81;
	object-fit: cover;
	border-radius: 20px;
}

.page-gallery .our-gallery-nav {
	margin-bottom: 0;
}

.gallery-album-nav {
	background: linear-gradient(180deg, rgba(102, 147, 71, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	margin-bottom: 48px;
	padding: 28px 28px 24px;
}

.gallery-album-nav-head {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: space-between;
	margin-bottom: 20px;
}

.gallery-album-nav-label {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gallery-album-nav-total {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.12);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
}

.gallery-album-nav .our-gallery-nav {
	margin-bottom: 0;
	text-align: left;
}

.gallery-album-nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gallery-album-nav-list li {
	margin: 0;
}

.gallery-album-nav-list li a:before {
	display: none !important;
}

.gallery-album-pill {
	align-items: center;
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.14);
	border-radius: 50px;
	color: var(--primary-color);
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 8px;
	line-height: 1.2;
	padding: 10px 16px;
	text-decoration: none;
	text-transform: none;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-album-pill i {
	color: var(--accent-color);
	font-size: 14px;
	transition: color 0.25s ease;
}

.gallery-album-pill em {
	background: rgba(102, 147, 71, 0.12);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	min-width: 24px;
	padding: 4px 8px;
	text-align: center;
}

.gallery-album-pill:hover {
	border-color: var(--accent-color);
	box-shadow: 0 8px 24px rgba(102, 147, 71, 0.12);
	color: var(--primary-color);
	transform: translateY(-1px);
}

.gallery-album-pill.active-btn,
.gallery-album-pill.active-btn:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	box-shadow: 0 10px 28px rgba(2, 13, 25, 0.18);
	color: var(--white-color);
}

.gallery-album-pill.active-btn i {
	color: var(--white-color);
}

.gallery-album-pill.active-btn em {
	background: rgba(255, 255, 255, 0.16);
	color: var(--white-color);
}

.page-gallery .section-title p {
	margin-bottom: 0;
}

.gallery-active-album-title {
	align-items: center;
	display: flex;
	gap: 12px;
	position: relative;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	margin: 36px 0 0px;
	padding-bottom: 13px;
	text-transform: uppercase;
}

.gallery-active-album-title::before {
	background: var(--accent-color);
	border-radius: 2px;
	content: "";
	height: 28px;
	width: 5px;
}

/* .gallery-active-album-title::after {
	background: var(--divider-color);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
} */

.page-gallery .gallery-item-boxes {
	gap: 0;
}

.page-gallery .gallery-item-box {
	width: calc(33.333% - 0.2px);
}

.page-gallery .gallery-category-heading {
	align-items: center;
	background: linear-gradient(90deg, rgba(163, 207, 64, 0.14), rgba(163, 207, 64, 0));
	border-bottom: 1px solid rgba(15, 76, 129, 0.14);
	display: flex;
	min-height: 58px;
	width: 100%;
	margin: 0px 0 12px;
	padding: 10px 15px;
	position: relative;
}

.page-gallery .gallery-category-heading h3 {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0;
	padding-left: 16px;
	position: relative;
	text-transform: capitalize;
}

.page-gallery .gallery-category-heading h3::before {
	background: var(--accent-color);
	border-radius: 3px;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
}

.page-gallery .gallery-item-box a {
	display: block;
	cursor: none;
	padding: 0 15px 30px;
}

.page-gallery .gallery-item-box figure {
	border-radius: 20px;
	overflow: hidden;
}

.page-gallery .gallery-item-box img {
	border-radius: 20px;
	aspect-ratio: 1 / 0.81;
}

@media (max-width: 991px) {
	.page-gallery .gallery-item-box {
		width: calc(50% - 0.2px);
	}
}

@media (max-width: 767px) {
	.gallery-album-nav {
		border-radius: 16px;
		margin-bottom: 32px;
		padding: 20px 16px 16px;
	}

	.gallery-album-nav .our-gallery-nav {
		margin-left: -16px;
		margin-right: -16px;
		overflow-x: auto;
		padding: 0 16px 4px;
		-webkit-overflow-scrolling: touch;
	}

	.gallery-album-nav-list {
		flex-wrap: nowrap;
		min-width: min-content;
		padding-bottom: 4px;
	}

	.gallery-album-pill {
		flex-shrink: 0;
		font-size: 13px;
		padding: 9px 14px;
	}

	.page-gallery .gallery-item-box {
		width: 100%;
	}

	.page-gallery .gallery-item-box a {
		padding: 0 0 20px;
	}
}

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.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: 50%;
	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.81;
	object-fit: cover;
	border-radius: 20px;
}

.success-story-video-popup {
	position: relative;
}

.success-story-video-popup video {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 80vh;
	margin: 0 auto;
	background: #000;
	border-radius: 12px;
	object-fit: contain;
}

.mfp-success-video .mfp-content {
	max-width: 960px;
	width: 90%;
	margin: 40px auto;
}

.mfp-success-video button.mfp-close,
.success-story-video-popup .mfp-close {
	position: fixed;
	top: 18px;
	right: 18px;
	width: 48px;
	height: 48px;
	line-height: 44px;
	padding: 0;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	opacity: 1;
	font-size: 32px;
	font-weight: 400;
	z-index: 1050;
	cursor: pointer;
}

.mfp-success-video button.mfp-close:hover,
.mfp-success-video button.mfp-close:focus,
.success-story-video-popup .mfp-close:hover,
.success-story-video-popup .mfp-close:focus {
	background: var(--primary-color);
	color: var(--white-color);
	opacity: 1;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-accordion {
	margin-bottom: 60px;
}

.page-faqs-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.page-contact-us {
	background: url('../images/testimonial-bg-image.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	padding: 100px 0;
}

.volunteer-audience-section {
	margin-bottom: 60px;
}

/* .volunteer-audience-grid > [class*="col-"]{
	margin-bottom: 30px;
} */

.volunteer-audience-card {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 32px 28px;
	height: calc(100% - 30px);
	box-shadow: 0px 0px 40px 5px #00000005;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-audience-card:hover {
	border-color: var(--accent-color);
	box-shadow: 0px 12px 40px 5px #0000000a;
}

.volunteer-audience-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 20px;
}

.volunteer-audience-card h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 12px;
}

.volunteer-audience-card p {
	margin-bottom: 2em;
	line-height: 1.7em;
}

.volunteer-application-box {
	margin-top: 20px;
}

.volunteer-contact-fallback {
	margin: 24px 0 0;
	font-size: 14px;
}

.request-therapy-intro {
	max-width: 820px;
	margin: 0 auto 10px;
	text-align: center;
}

.request-therapy-intro p {
	margin-bottom: 1.25em;
	line-height: 1.75em;
	text-align: justify;
}

.request-therapy-intro p:last-of-type {
	margin-bottom: 1.75em;
}

.request-therapy-highlights {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: inline-grid;
	grid-template-columns: 1fr;
	gap: 12px;
	text-align: left;
}

.request-therapy-highlights li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.6em;
}

.request-therapy-highlights li i {
	color: var(--accent-color);
	margin-top: 3px;
	flex-shrink: 0;
}

.request-therapy-steps-section {
	margin-bottom: 50px;
}

/* Intake hub page */
.intake-hub-page .intake-hub {
	padding-bottom: 0;
}

.intake-hub-intro {
	max-width: 820px;
	margin: 0 auto 28px;
	text-align: center;
}

.intake-hub-intro p {
	margin-bottom: 1.1em;
	line-height: 1.75em;
}

.intake-hub-intro p:last-child {
	margin-bottom: 0;
}

.intake-jump-nav {
	position: sticky;
	top: 88px;
	z-index: 50;
	margin: 0 auto 40px;
	padding: 12px 0;
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.intake-jump-nav.is-stuck {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 30px rgba(2, 13, 25, 0.08);
	border-radius: 50px;
	padding: 12px 20px;
}

.intake-jump-nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.intake-jump-nav-list li {
	margin: 0;
}

.intake-pathway-grid {
	margin-bottom: 50px;
}

.intake-pathway-card {
	display: block;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 28px;
	padding: 36px 32px;
	height: 100%;
	text-decoration: none;
	color: inherit;
	box-shadow: 0px 0px 40px 5px #00000005;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.intake-pathway-card:hover {
	border-color: var(--accent-color);
	box-shadow: 0px 16px 48px 8px #0000000d;
	transform: translateY(-6px);
	color: inherit;
}

.intake-pathway-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 22px;
	transition: transform 0.35s ease;
}

.intake-pathway-card:hover .intake-pathway-card-icon {
	transform: scale(1.08);
}

.intake-pathway-card h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--primary-color);
}

.intake-pathway-card p {
	margin-bottom: 20px;
	line-height: 1.65em;
	color: inherit;
	opacity: 0.9;
}

.intake-pathway-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-color);
	transition: gap 0.25s ease;
}

.intake-pathway-card:hover .intake-pathway-cta {
	gap: 12px;
}

.intake-steps-section {
	margin-bottom: 20px;
}

.intake-section {
	padding: 80px 0;
	scroll-margin-top: 120px;
}

.intake-section--register {
	background-color: var(--grey-color, #f5f5f5);
}

.intake-section--therapy {
	background-color: var(--white-color);
}

.intake-form-panel {
	border-radius: 30px;
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.intake-form-panel--accent {
	border: 2px solid rgba(102, 147, 71, 0.25);
}

.intake-form-panel.is-inview {
	animation: intakePanelIn 0.6s ease forwards;
}

@keyframes intakePanelIn {
	from {
		opacity: 0.85;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.intake-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.6em;
	cursor: pointer;
	margin-bottom: 0;
}

.intake-consent-label input[type="checkbox"] {
	margin-top: 4px;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	accent-color: var(--accent-color);
}

.register-request-therapy {
	padding: 80px 0;
	scroll-margin-top: 120px;
}

.intake-hub-tabs {
	border-bottom: 2px solid rgba(15, 76, 129, 0.12);
	flex-wrap: nowrap;
	gap: 8px;
	margin-bottom: 0;
}

.intake-hub-tabs .nav-item {
	flex-shrink: 0;
}

.intake-hub-tabs .nav-link {
	align-items: center;
	border: none;
	border-bottom: 3px solid transparent;
	border-radius: 12px 12px 0 0;
	color: rgba(2, 13, 25, 0.72);
	display: inline-flex;
	font-size: 16px;
	font-weight: 600;
	gap: 10px;
	margin-bottom: -2px;
	padding: 14px 22px;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.intake-hub-tabs .nav-link i {
	color: var(--accent-color);
	font-size: 18px;
}

.intake-hub-tabs .nav-link:hover,
.intake-hub-tabs .nav-link:focus {
	border-bottom-color: rgba(102, 147, 71, 0.45);
	color: var(--primary-color);
}

.intake-hub-tabs .nav-link.active {
	background-color: rgba(102, 147, 71, 0.08);
	border-bottom-color: var(--accent-color);
	color: var(--primary-color);
}

.intake-hub-tabs-content {
	margin-top: 32px;
}

.intake-hub-tabs-content .tab-pane {
	padding-top: 4px;
}

.register-request-therapy .intake-desc-block,
.register-request-therapy .intake-form-panel {
	animation: none;
	opacity: 1;
	transform: none;
	visibility: visible;
}

.register-request-therapy-copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.intake-desc-block {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(2, 13, 25, 0.06);
	padding: 28px 26px;
	position: relative;
}

.intake-desc-block::before {
	background: linear-gradient(90deg, var(--accent-color), rgba(102, 147, 71, 0.35));
	border-radius: 20px 20px 0 0;
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.intake-desc-block-icon {
	align-items: center;
	background: rgba(102, 147, 71, 0.12);
	border-radius: 14px;
	color: var(--accent-color);
	display: inline-flex;
	font-size: 22px;
	height: 48px;
	justify-content: center;
	margin-bottom: 16px;
	width: 48px;
}

.intake-desc-block h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.intake-desc-block-lead {
	font-weight: 600;
	margin-bottom: 12px;
}

.intake-desc-block p {
	font-size: 15px;
	line-height: 1.75em;
	margin-bottom: 10px;
}

.intake-desc-block p:last-of-type {
	margin-bottom: 0;
}

.intake-desc-steps {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.intake-desc-steps li {
	font-size: 14px;
	line-height: 1.6em;
	padding: 6px 0 6px 22px;
	position: relative;
}

.intake-desc-steps li::before {
	color: var(--accent-color);
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	left: 0;
	position: absolute;
}

.intake-desc-link {
	align-items: center;
	color: var(--primary-color);
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	gap: 8px;
	margin-top: 18px;
	text-decoration: none;
	transition: gap 0.2s ease, color 0.2s ease;
}

.intake-desc-link:hover,
.intake-desc-link:focus {
	color: var(--accent-color);
	gap: 12px;
}

.register-request-therapy-forms {
	display: block;
}

.register-request-therapy-forms .intake-form-panel {
	padding: 32px 28px;
}

@media (max-width: 991px) {
	.intake-jump-nav {
		top: 72px;
	}

	.intake-section {
		padding: 60px 0;
		scroll-margin-top: 100px;
	}

	.register-request-therapy {
		padding: 60px 0;
		scroll-margin-top: 100px;
	}
}

@media (max-width: 767px) {
	.intake-jump-nav-list {
		flex-direction: column;
		align-items: stretch;
	}

	.intake-jump-nav-list .gallery-album-pill {
		justify-content: center;
	}

	.intake-pathway-card {
		padding: 28px 24px;
	}
}

@media (min-width: 768px) {
	.request-therapy-highlights {
		grid-template-columns: 1fr 1fr;
		column-gap: 28px;
	}
}

.contact-info-box {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 80px;
	box-shadow: 0px -10px 40px 5px #00000005;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
}

.contact-info-item {
	width: calc(33.33% - 66.66px);
	position: relative;
	display: flex;
	align-items: start;
}

.contact-info-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -50px;
	height: 100%;
	width: 1px;
	background-color: var(--divider-color);
}

.contact-info-item:last-child:before {
	display: none;
}

.contact-info-item .icon-box {
	position: relative;
	margin-right: 20px;
	padding-bottom: 5px;
}

.contact-info-item .icon-box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.contact-info-content {
	width: calc(100% - 70px);
}

.contact-info-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin: 0;
}

.contact-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover {
	color: var(--primary-color);
}

.contact-form-section .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 100%;
}

.contact-info-box--single {
	justify-content: center;
}

.contact-info-box--single .contact-info-item {
	width: auto;
	max-width: 480px;
	justify-content: center;
}

.contact-info-box--single .contact-info-item::before {
	display: none;
}

.contact-cards-section {
	width: 100%;
}

.contact-cards-grid>[class*="col-"] {
	margin-bottom: 24px;
}

.contact-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(2, 13, 25, 0.06);
	height: 100%;
	overflow: hidden;
	padding: 32px 28px 28px;
	position: relative;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card::before {
	background: linear-gradient(90deg, var(--accent-color), rgba(102, 147, 71, 0.35));
	content: '';
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.contact-card:hover,
.contact-card:focus-within {
	border-color: rgba(102, 147, 71, 0.35);
	box-shadow: 0 20px 48px rgba(2, 13, 25, 0.12);
	transform: translateY(-6px);
}

.contact-card-icon {
	align-items: center;
	background: rgba(102, 147, 71, 0.12);
	border-radius: 50%;
	color: var(--accent-color);
	display: inline-flex;
	height: 56px;
	justify-content: center;
	margin-bottom: 20px;
	transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
	width: 56px;
}

.contact-card-icon i {
	font-size: 22px;
	line-height: 1;
}

.contact-card:hover .contact-card-icon,
.contact-card:focus-within .contact-card-icon {
	background: var(--accent-color);
	color: var(--white-color);
	transform: scale(1.08);
}

.contact-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	text-transform: capitalize;
}

.contact-card-body p {
	margin: 0;
}

.contact-card-body a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.contact-card-body a:hover {
	color: #ffffff;
	text-underline-offset: 3px;
}

.contact-card-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.contact-card-social-link {
	align-items: center;
	background: rgba(102, 147, 71, 0.1);
	border: 1px solid rgba(102, 147, 71, 0.2);
	border-radius: 50%;
	color: var(--accent-color);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
	width: 44px;
}

.contact-card-social-link:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
	transform: translateY(-3px);
}

.contact-card-social-labels {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-card-social-labels li {
	margin-bottom: 6px;
}

.contact-card-social-labels li:last-child {
	margin-bottom: 0;
}

.contact-card-hours {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-card-hours li {
	border-bottom: 1px solid rgba(15, 76, 129, 0.08);
	font-size: 15px;
	padding: 10px 0;
}

.contact-card-hours li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {

	.contact-card,
	.contact-card-icon,
	.contact-card-social-link {
		transition: none;
	}

	.contact-card:hover,
	.contact-card:focus-within {
		transform: none;
	}

	.contact-card:hover .contact-card-icon,
	.contact-card:focus-within .contact-card-icon {
		transform: none;
	}

	.contact-card-social-link:hover {
		transform: none;
	}
}

@media (max-width: 767px) {
	.contact-card {
		padding: 24px 20px 20px;
	}
}

.contact-intro-panel {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 500px;
	background: var(--primary-color);
}

.contact-intro-image {
	flex: 1;
	min-height: 240px;
	overflow: hidden;
}

.contact-intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-intro-content {
	padding: 40px 6.25vw;
	color: var(--white-color);
}

.contact-intro-content h3 {
	color: var(--white-color);
	margin-bottom: 16px;
}

.contact-intro-content p {
	margin-bottom: 12px;
}

.contact-intro-content p:last-child {
	margin-bottom: 0;
}

.contact-form-box {
	background: var(--secondary-color);
	padding: 6.25vw;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.video-popup-inline video {
	display: block;
	width: 100%;
	max-width: 900px;
	height: auto;
	background: #000;
}

.spectrum-page-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding: 140px 0 100px;
	overflow: hidden;
}

.spectrum-page-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.spectrum-page-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spectrum-page-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(15, 35, 20, 0.88) 0%, rgba(30, 70, 40, 0.72) 50%, rgba(10, 25, 15, 0.85) 100%);
}

.spectrum-page-hero-content {
	position: relative;
	z-index: 2;
	color: var(--white-color);
}

.spectrum-page-hero-logo img {
	max-width: 180px;
	margin-bottom: 20px;
}

.spectrum-page-hero-tagline {
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
}

.spectrum-page-hero-title {
	color: var(--white-color);
	margin-bottom: 20px;
}

.spectrum-page-hero-title span {
	display: block;
}

.spectrum-page-hero-text {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	max-width: 720px;
	margin-bottom: 32px;
}

.spectrum-page-hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.spectrum-page-philosophy {
	padding: 100px 0;
}

.spectrum-page-cta {
	padding: 100px 0;
	background: var(--secondary-color);
}

.spectrum-page-cta-quote {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--primary-color);
	margin-bottom: 24px;
	border: none;
	padding: 0;
}

.spectrum-page-cta p {
	max-width: 720px;
	margin: 0 auto 32px;
	color: #000;
}

.spectrum-page-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

@media only screen and (max-width: 767px) {
	.spectrum-page-hero {
		min-height: auto;
		padding: 120px 0 80px;
	}

	.spectrum-page-hero-tagline,
	.spectrum-page-hero-text {
		font-size: 16px;
	}

	.spectrum-page-cta-quote {
		font-size: 22px;
	}

	.spectrum-page-hero-btns,
	.spectrum-page-cta-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Spectrum Hearts microsite — spectrum-hearts.php */
.spectrum-microsite-hero {
	position: relative;
	min-height: auto;
	display: flex;
	align-items: center;
	padding: 100px 0 80px;
	overflow: hidden;
	background-color: #e8f4fc;
}

.spectrum-microsite-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.spectrum-microsite-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.spectrum-microsite-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.35) 100%);
}

.spectrum-microsite-hero-content {
	position: relative;
	z-index: 2;
	color: var(--primary-color);
}

.spectrum-microsite-hero-logo img {
	max-width: 200px;
	margin-bottom: 20px;
}

.spectrum-microsite-hero-tagline {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.spectrum-microsite-hero-title {
	font-size: clamp(42px, 6vw, 64px);
	line-height: 1.1em;
	margin-bottom: 16px;
	color: var(--primary-color);
}

.spectrum-microsite-hero-text {
	font-size: 17px;
	line-height: 1.75em;
	color: var(--text-color);
	max-width: 640px;
	margin-bottom: 28px;
}

.spectrum-microsite-hero .btn-default-outline {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.spectrum-microsite-hero .btn-default-outline:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.spectrum-microsite-hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.spectrum-microsite-nav {
	position: sticky;
	top: 80px;
	z-index: 100;
	padding: 16px 0;
	background: rgb(255 255 255 / 94%);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--divider-color);
}

.spectrum-microsite-nav-list {
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.spectrum-microsite-nav-list li {
	flex-shrink: 0;
}

.spectrum-microsite-nav-pill {
	white-space: nowrap;
}

.spectrum-microsite-section {
	padding: 90px 0;
}

.spectrum-microsite-section--alt {
	background-color: var(--secondary-color);
}

.spectrum-microsite-section-header {
	margin-bottom: 32px;
}

.spectrum-microsite-belief {
	font-family: var(--accent-font);
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 600;
	line-height: 1.6em;
	color: var(--primary-color);
	border-left: 4px solid var(--accent-color);
	padding: 8px 0 8px 24px;
	margin: 0 0 28px;
}

.spectrum-microsite-section p {
	font-size: 17px;
	line-height: 1.8em;
	margin-bottom: 16px;
	color: rgba(2, 13, 25, 0.82);
}

.spectrum-microsite-section-closing {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-top: 24px;
}

.spectrum-microsite-room-grid {
	margin-top: 32px;
	margin-bottom: 48px;
	padding-bottom: 8px;
}

.spectrum-microsite-room-grid>[class*="col-"] {
	margin-bottom: 8px;
}

.spectrum-microsite-room-card {
	position: relative;
	background: linear-gradient(145deg, var(--white-color) 0%, rgba(255, 255, 255, 0.92) 100%);
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 24px;
	padding: 32px 28px 36px;
	height: 100%;
	overflow: hidden;
	box-shadow: 0 10px 36px rgba(15, 76, 129, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.spectrum-microsite-room-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
	opacity: 0.85;
	transition: opacity 0.35s ease;
}

.spectrum-microsite-room-card:hover {
	transform: translateY(-8px);
	border-color: rgba(15, 76, 129, 0.18);
	box-shadow: 0 20px 48px rgba(15, 76, 129, 0.12);
}

.spectrum-microsite-room-card:hover .spectrum-microsite-room-accent {
	opacity: 1;
}

.spectrum-microsite-room-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 26px;
	box-shadow: 0 10px 24px rgba(15, 76, 129, 0.2);
	transition: transform 0.35s ease;
}

.spectrum-microsite-room-card:hover .spectrum-microsite-room-icon {
	transform: scale(1.06);
}

.spectrum-microsite-room-label {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.45em;
	text-transform: capitalize;
}

.spectrum-microsite-services-list {
	margin-top: 20px;
}

.spectrum-microsite-services-switcher {
	margin-top: 30px;
	padding: 0;
}

.spectrum-microsite-services-switcher .page-single-sidebar {
	margin-bottom: 30px;
}

.spectrum-service-panel.is-hidden {
	display: none;
}

.spectrum-microsite-service {
	padding: 50px 0;
	border-top: 1px solid var(--divider-color);
}

.spectrum-microsite-service:first-child {
	border-top: none;
	padding-top: 10px;
}

.spectrum-microsite-service-image {
	border-radius: 20px;
	overflow: hidden;
	margin: 0;
}

.spectrum-microsite-service-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}

.spectrum-microsite-service-title {
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.25em;
	margin-bottom: 16px;
	color: var(--primary-color);
	text-transform: capitalize;
}

.spectrum-microsite .spectrum-sub-list {
	list-style: disc;
	margin: 16px 0 24px;
	padding-left: 1.35rem;
}

.spectrum-microsite .spectrum-sub-list li {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.65em;
	color: var(--text-color);
}

.spectrum-microsite .spectrum-sub-list li::marker {
	color: var(--accent-color);
}

.spectrum-microsite .spectrum-sub-list li:last-child {
	margin-bottom: 0;
}

.spectrum-microsite-readmore {
	margin-top: 8px;
	margin-bottom: 0;
}

.spectrum-microsite-panel {
	background: var(--white-color);
	border-radius: 20px;
	padding: 32px 28px;
	border: 1px solid var(--divider-color);
}

.spectrum-microsite-section--alt .spectrum-microsite-panel,
.spectrum-microsite-assessment .spectrum-microsite-panel {
	background: var(--white-color);
}

.spectrum-microsite-highlight-list {
	margin-top: 8px;
}

.spectrum-microsite-gallery-nav {
	margin-bottom: 28px;
}

.spectrum-microsite-gallery-boxes {
	gap: 0;
	margin-top: 8px;
}

.spectrum-microsite-gallery-boxes .gallery-item-box {
	width: calc(25% - 0.2px);
}

.spectrum-microsite-gallery-boxes .gallery-item-box a {
	display: block;
	padding: 0 12px 24px;
}

.spectrum-microsite-gallery-boxes .gallery-item-box figure {
	border-radius: 16px;
	overflow: hidden;
}

.spectrum-microsite-gallery-boxes .gallery-item-box img {
	border-radius: 16px;
	aspect-ratio: 1 / 0.85;
}

@media (max-width: 991px) {
	.spectrum-microsite-gallery-boxes .gallery-item-box {
		width: calc(33.333% - 0.2px);
	}
}

@media (max-width: 767px) {
	.spectrum-microsite-gallery-boxes .gallery-item-box {
		width: calc(50% - 0.2px);
	}

	.spectrum-microsite-gallery-boxes .gallery-item-box a {
		padding: 0 8px 16px;
	}
}

.spectrum-microsite-video-grid {
	margin-top: 8px;
}

.spectrum-microsite-promise .spectrum-microsite-section-header {
	margin-bottom: 24px;
}

.spectrum-microsite-signoff {
	font-family: var(--accent-font);
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 600;
	line-height: 1.65em;
	color: var(--accent-color);
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--divider-color);
}

.spectrum-microsite-cta {
	position: relative;
	margin-top: 0;
	overflow: hidden;
}

.spectrum-microsite-cta-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.22;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.spectrum-microsite-cta .container {
	position: relative;
	z-index: 1;
}

.spectrum-microsite-cta .btn-default-outline {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.spectrum-microsite-cta .btn-default-outline:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

@media only screen and (max-width: 991px) {
	.spectrum-microsite-hero {
		min-height: auto;
		padding: 80px 0 70px;
	}

	.spectrum-microsite-nav {
		top: 70px;
	}

	.spectrum-microsite-section {
		padding: 60px 0;
	}

	.spectrum-microsite-service {
		padding: 40px 0;
	}

	.spectrum-microsite-hero-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Spectrum Hearts section — hub, detail pages, services cross-links */
.spectrum-hub-grid {
	padding: 100px 0;
}

.spectrum-hub-grid .section-title {
	margin-bottom: 50px;
}

.spectrum-page-media {
	margin-top: 40px;
	margin-bottom: 20px;
}

.spectrum-page-media h2 {
	margin-bottom: 24px;
}

.spectrum-photo-item {
	margin-bottom: 24px;
}

.spectrum-photo-item figure {
	border-radius: 16px;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 4 / 3;
}

.spectrum-photo-item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.spectrum-photo-link {
	display: block;
	height: 100%;
}

.spectrum-gallery-cta {
	margin-top: 8px;
	margin-bottom: 0;
}

.spectrum-video-caption {
	margin-top: 12px;
	font-size: 15px;
	color: var(--text-color);
}

.service-entry ul.spectrum-sub-list {
	flex-direction: column;
	margin: 0 0 24px !important;
}

.service-entry ul.spectrum-sub-list li {
	width: 100%;
}

.spectrum-services-banner {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 24px 32px;
	margin-bottom: 40px;
	text-align: center;
}

.spectrum-services-banner p {
	margin: 0;
}

.spectrum-services-banner a {
	color: var(--accent-color);
	font-weight: 600;
}

a.service-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

a.service-item-link:hover .service-item {
	transform: translateY(-4px);
}

/* Success Stories — family journeys */
.success-stories-family {
	padding: 100px 0;
	background: var(--secondary-color);
}

.success-stories-intro {
	max-width: 820px;
	margin: 0 auto 60px;
}

.success-stories-subheading {
	font-size: 18px;
	color: var(--accent-color);
	font-weight: 600;
}

.success-stories-consent {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 20px 24px;
	margin-top: 24px;
	text-align: left;
}

.success-stories-consent i {
	color: var(--accent-color);
	font-size: 22px;
	margin-top: 2px;
	flex-shrink: 0;
}

.success-stories-consent p {
	margin: 0;
}

.success-story-block {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 48px;
	margin-bottom: 48px;
}

.success-story-block--alt {
	background: transparent;
	border-color: transparent;
}

.success-story-hero {
	border-radius: 20px;
	overflow: hidden;
	margin: 0;
}

.success-story-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	display: block;
}

.success-story-intro h2 {
	margin-bottom: 16px;
}

.story-therapy-tag {
	display: inline-block;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.success-story-consent-note {
	font-size: 14px;
	color: var(--text-color);
	opacity: 0.85;
	margin-top: 16px;
	margin-bottom: 0;
}

.success-story-consent-note i {
	color: var(--accent-color);
	margin-right: 6px;
}

.before-after-grid {
	margin: 40px 0;
}

.before-after-card {
	height: 100%;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 28px 32px;
}

.before-after-card--before {
	border-left: 4px solid #d4d4d4;
}

.before-after-card--after {
	border-left: 4px solid var(--accent-color);
}

.before-after-card h3 {
	margin-bottom: 12px;
	font-size: 22px;
}

.before-after-card p {
	margin-bottom: 16px;
}

.before-after-card ul {
	margin: 0;
	padding-left: 20px;
}

.before-after-card ul li {
	margin-bottom: 8px;
}

.success-story-testimonial {
	height: 100%;
	margin: 0;
}

.story-achievements {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 28px 32px;
	height: 100%;
}

.story-achievements h3 {
	margin-bottom: 20px;
}

.story-achievements ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.story-achievements ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}

.story-achievements ul li i {
	color: var(--accent-color);
	margin-top: 4px;
	flex-shrink: 0;
}

.story-milestones {
	margin: 40px 0 0;
}

.story-milestones h3 {
	margin-bottom: 24px;
}

.story-milestones-track {
	position: relative;
	padding-left: 28px;
}

.story-milestones-track::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: var(--divider-color);
}

.story-milestone-item {
	position: relative;
	padding-bottom: 24px;
}

.story-milestone-item:last-child {
	padding-bottom: 0;
}

.story-milestone-dot {
	position: absolute;
	left: -28px;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--accent-color);
	border: 3px solid var(--white-color);
	box-shadow: 0 0 0 2px var(--accent-color);
}

.success-story-block--alt .story-milestone-dot {
	border-color: var(--secondary-color);
}

.story-milestone-card {
	background: var(--secondary-color);
	border-radius: 16px;
	padding: 20px 24px;
}

.success-story-block--alt .story-milestone-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
}

.story-milestone-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.story-milestone-card h4 {
	margin-bottom: 8px;
	font-size: 18px;
}

.story-milestone-card p {
	margin: 0;
}

.success-story-media {
	margin-top: 32px;
}

.success-story-media h3 {
	margin-bottom: 20px;
}

.success-stories-cta {
	margin-top: 20px;
	padding-top: 20px;
}

.success-stories-cta p {
	max-width: 640px;
	margin: 0 auto 24px;
}

.success-stories-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

@media only screen and (max-width: 767px) {
	.success-stories-family {
		padding: 70px 0;
	}

	.success-story-block {
		padding: 28px 20px;
	}

	.success-stories-cta-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Parents' Resource Centre */
.parent-resources-intro {
	padding: 80px 0 40px;
}

.parent-resources-topic-grid {
	margin-bottom: 20px;
}

a.parent-resources-topic-card {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

a.parent-resources-topic-card:hover {
	color: inherit;
}

.parent-resources-main {
	padding-top: 40px;
}

.parent-resource-tips {
	margin: 20px 0 0;
	padding-left: 20px;
}

.parent-resource-tips li {
	margin-bottom: 10px;
}

.page-faqs-accordion .section-title h2 i {
	margin-right: 10px;
	color: var(--accent-color);
}

.parent-resource-downloads .row {
	margin-top: 24px;
}

.parent-resource-download-card {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.parent-resource-download-card.is-coming-soon {
	opacity: 0.92;
}

.parent-resource-download-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.parent-resource-download-icon i {
	font-size: 24px;
	color: var(--accent-color);
}

.parent-resource-download-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.parent-resource-download-card p {
	flex-grow: 1;
	margin-bottom: 20px;
}

.parent-resource-download-card .btn-default,
.parent-resource-download-card .btn-coming-soon {
	align-self: flex-start;
}

.btn-coming-soon {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

.parent-resources-videos {
	margin-top: 0;
}

.parent-resources-cta {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--divider-color);
	text-align: center;
}

.parent-resources-cta p {
	margin-bottom: 24px;
}

.parent-resources-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.page-single-sidebar .sidebar-cta-btn+.sidebar-cta-btn {
	margin-top: 12px;
}

@media only screen and (max-width: 767px) {
	.parent-resources-intro {
		padding: 60px 0 30px;
	}

	.parent-resources-cta-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Training & Research */
.training-research-intro {
	padding: 80px 0 40px;
}

.training-research-pillar-grid {
	margin-bottom: 20px;
}

a.training-research-pillar-card {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

a.training-research-pillar-card:hover {
	color: inherit;
}

.training-research-main {
	padding-top: 40px;
}

.page-faqs-accordion .section-title h2 i {
	margin-right: 10px;
	color: var(--accent-color);
}

.training-research-highlights {
	margin: 20px 0 0;
	padding-left: 20px;
}

.training-research-highlights li {
	margin-bottom: 10px;
}

.training-event-card {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 28px 32px;
}

.training-event-card--upcoming {
	border-left: 4px solid var(--accent-color);
}

.training-event-card--past {
	border-left: 4px solid #d4d4d4;
	opacity: 0.92;
}

.training-event-card-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.training-event-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--white-color);
	color: var(--accent-color);
}

.training-event-card--past .training-event-badge {
	color: var(--text-color);
	opacity: 0.8;
}

.training-event-date {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-color);
}

.training-event-card h3 {
	margin-bottom: 8px;
	font-size: 20px;
}

.training-event-location {
	font-size: 14px;
	margin-bottom: 12px;
}

.training-event-location i {
	margin-right: 6px;
	color: var(--accent-color);
}

.training-event-card p:last-child {
	margin-bottom: 0;
}

.training-research-cta {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--divider-color);
	text-align: center;
}

.training-research-cta p {
	max-width: 680px;
	margin: 0 auto 24px;
}

.training-research-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

@media only screen and (max-width: 767px) {
	.training-research-intro {
		padding: 60px 0 30px;
	}

	.training-research-cta-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Transparency */
.transparency-intro {
	padding: 80px 0 40px;
}

.transparency-main {
	padding-top: 40px;
	padding-bottom: 80px;
}

.transparency-highlights {
	margin: 20px 0 0;
	padding-left: 20px;
}

.transparency-highlights li {
	margin-bottom: 10px;
}

.transparency-section-link {
	margin-top: 24px;
}

.transparency-board-summary {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.transparency-board-item {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 20px 24px;
}

.transparency-board-role {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.transparency-board-item h3 {
	font-size: 18px;
	margin-bottom: 0;
}

.transparency-registration .about-legal-card {
	margin-top: 24px;
}

.transparency-cta {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--divider-color);
	text-align: center;
}

.transparency-cta p {
	max-width: 680px;
	margin: 0 auto 24px;
}

.transparency-cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

@media only screen and (max-width: 767px) {
	.transparency-intro {
		padding: 60px 0 30px;
	}

	.transparency-board-summary {
		grid-template-columns: 1fr;
	}

	.transparency-cta-btns {
		flex-direction: column;
		align-items: stretch;
	}

	.what-we-do-transparency-link {
		flex-direction: column;
		align-items: stretch;
	}
}

/************************************/
/***     33. Donation Page css    ***/
/************************************/

.page-donation {
	padding: 100px 0;
}

.donation-box {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	padding: 120px;
}

.campaign-donate-form .form-control {
	color: var(--text-color);
	font-weight: 400;
}

.campaign-donate-form .form-control::placeholder {
	color: var(--text-color);
	font-weight: 400;
}

.campaign-donate-value .donate-value-box {
	gap: 15px;
}

.campaign-donate-form .donate-value {
	width: calc(16.66% - 12.5px);
}

.donate-payment-method {
	margin-bottom: 40px;
}

/* .donate-payment-method .section-title,
.donar-personal-info .section-title{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
} */

.donate-payment-type {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.donate-payment-type .payment-method {
	display: flex;
	align-items: center;
}

.donate-payment-type .payment-method input {
	height: 24px;
	width: 24px;
}

.payment-method label {
	text-transform: capitalize;
	padding-left: 10px;
}

/************************************/
/***    34. 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: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      35. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 16px 50px 16px 20px;
	}

	.btn-default::before {
		transform: translate(-20px, -50%);
	}

	.btn-default:hover::before {
		transform: translate(-17px, -50%);
	}

	.readmore-btn {
		padding-right: 35px;
	}

	.readmore-btn::before {
		width: 26px;
		height: 26px;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.contact-now-box {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 46px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
		margin-left: 0;
	}

	.hero-content {
		margin-right: 0px;
	}

	.hero {
		padding: 150px 0 60px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 150px 0 80px;
	}

	.hero.hero-slider-layout .hero-pagination {
		bottom: 30px;
		padding-left: 15px;
	}

	.hero-content .section-title,
	.hero-body {
		margin-bottom: 40px;
	}

	.hero-list ul li {
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 30px;
	}

	.hero-help-families {
		max-width: 100%;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		max-width: 76%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-img-2 {
		border-width: 10px;
	}

	.about-stat-boxes,
	.need-fund-box {
		max-width: 135px;
		padding: 15px;
		bottom: 10px;
	}

	.about-stat-boxes {
		padding: 0;
	}

	.about-stat-boxes .need-fund-box {
		padding: 15px;
	}

	.need-fund-box img,
	.waiting-list-icon {
		max-width: 50px;
	}

	.waiting-list-icon svg {
		width: 34px;
		height: 34px;
	}

	.need-fund-box p {
		font-size: 14px;
	}

	.about-support-box .icon-box img {
		max-width: 45px;
	}

	.helped-fund-img {
		margin-bottom: 15px;
	}

	.helped-fund-img figure {
		max-width: 100px;
	}

	.helped-fund-content h2 {
		font-size: 24px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		border-radius: 20px;
		padding: 30px;
	}

	.service-content,
	.service-image {
		margin-bottom: 20px;
	}

	.service-content h3 {
		margin-bottom: 10px;
	}

	.service-image figure {
		max-width: 160px;
	}

	.section-footer-text {
		margin-top: 20px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-content {
		margin-bottom: 30px;
	}

	.what-we-item {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.what-we-item .icon-box {
		margin-right: 20px;
	}

	.what-we-item .icon-box:before {
		width: 32px;
		height: 32px;
	}

	.what-we-item .icon-box img {
		max-width: 60px;
	}

	.what-we-item-content {
		width: calc(100% - 80px);
	}

	.what-we-pillar-card {
		padding: 20px 22px;
	}

	.what-we-pillar-body h3 {
		font-size: 19px;
	}

	.what-we-brands {
		gap: 18px;
		margin-top: 28px;
	}

	.what-we-brand-card {
		padding: 28px 20px 24px;
	}

	.what-we-do-images {
		padding-left: 110px;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.05;
	}

	.what-we-do-img-2 {
		max-width: 220px;
	}

	.donate-now-box {
		left: 30px;
	}

	.our-causes {
		padding: 50px 0 20px;
	}

	.causes-item {
		border-radius: 20px;
	}

	.causes-image,
	.causes-content {
		margin-bottom: 20px;
	}

	.causes-image figure {
		border-radius: 20px;
	}

	.causes-image img {
		aspect-ratio: 1 / 0.75;
		border-radius: 20px;
	}

	.causes-button .btn-default {
		padding: 16px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-images {
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}

	.why-choose-image-2 {
		max-width: 220px;
	}

	.why-choose-content {
		margin-left: 0px;
	}

	.why-choose-list ul {
		gap: 20px;
	}

	.why-choose-list ul li {
		width: calc(50% - 10px);
		background-size: 22px auto;
		padding-left: 30px;
	}

	.why-choose-counters {
		gap: 30px 40px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.why-choose-counter-item {
		width: calc(33.33% - 26.67px);
	}

	.why-choose-counter-item::before {
		right: -20px;
	}

	.why-choose-counter-item h2 {
		font-size: 38px;
	}

	.our-program {
		padding: 50px 0;
	}

	.program-item {
		border-radius: 20px;
		padding: 30px;
	}

	.program-image,
	.program-content {
		margin-bottom: 20px;
	}

	.our-program .section-footer-text {
		margin-top: 20px;
	}

	.scrolling-ticker-box {
		--gap: 30px;
	}

	.scrolling-ticker-box .scrolling-content span img {
		margin-right: 30px;
	}

	.scrolling-ticker-box .scrolling-content span {
		font-size: 70px;
	}

	.our-features {
		padding: 50px 0;
	}

	.our-features-item {
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.our-features-image,
	.our-features-content {
		width: calc(50% - 15px);
	}

	.our-features-image figure {
		border-radius: 20px;
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.72;
		border-radius: 20px;
	}

	.our-features-body {
		width: calc(100% - 75px);
	}

	.our-features-body h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.our-features-content .icon-box:before {
		width: 33px;
		height: 33px;
	}

	.our-features-content .icon-box img {
		max-width: 60px;
	}

	.donate-now {
		padding: 80px 0;
	}

	.intro-video-box {
		margin: 0 0 50px 0;
	}

	.donar-company-slider {
		margin-top: 80px;
	}

	.donar-company-logo img {
		max-width: 180px;
	}

	.donate-box {
		border-radius: 20px;
		padding: 30px;
	}

	.donate-value-box .form-control {
		padding: 14px 25px;
	}

	.donate-value-box .donate-value label {
		padding: 16px;
	}

	.donate-box .donate-form .form-group-btn .btn-default {
		padding: 16px;
	}

	.how-it-work {
		padding: 50px 0;
	}

	.how-it-work-item {
		width: 100%;
	}

	.how-it-work-image,
	.how-it-work-content {
		width: calc(50% - 15px);
	}

	.how-it-work-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.how-it-work-image figure {
		border-radius: 20px;
	}

	.how-it-work-image img {
		aspect-ratio: 1 / 0.625;
		border-radius: 20px;
	}

	.how-it-work-content {
		border-radius: 20px;
	}

	.how-it-work-content .icon-box {
		margin-bottom: 20px;
	}

	.how-it-work-content .icon-box img {
		max-width: 50px;
	}

	.how-it-work-content .icon-box:before {
		width: 30px;
		height: 30px;
	}

	.section-footer-text.how-work-footer-text {
		margin-top: 40px;
	}

	.nihal-journey {
		padding: 50px 0;
	}

	.nihal-journey-teaser {
		padding: 50px 0;
	}

	.nihal-journey-chapter {
		padding: 50px 0;
	}

	.nihal-journey-gallery {
		padding: 50px 0;
	}

	.nihal-journey-hero-portrait {
		border-radius: 20px;
		max-width: 420px;
		margin: 0 auto 20px;
	}

	.nihal-journey-page .page-header {
		padding: 0;
		aspect-ratio: 1920 / 768;
		min-height: 280px;
	}

	.nihal-journey-page .nihal-journey-hero .section-title {
		text-align: center;
	}

	.nihal-journey-page .nihal-journey-hero .col-lg-7 {
		padding-left: 15px;
	}

	.nihal-journey-page .nihal-journey-readmore-wrap {
		text-align: center;
	}

	.nihal-journey-chapter-nav {
		top: 70px;
	}

	.nihal-journey-chapter-nav-list {
		justify-content: flex-start;
	}

	.nihal-journey-parent-message {
		padding: 50px 0;
	}

	.nihal-journey-beat {
		font-size: 16px;
	}

	.nihal-journey-reflection-item {
		font-size: 18px;
	}

	.nihal-journey-content p {
		font-size: 16px;
	}

	.our-testimonials {
		background-position: bottom center;
		padding: 50px 0;
	}

	.testimonials-image {
		max-width: 80%;
		margin: 0 auto;
		padding-right: 70px;
		margin-bottom: 30px;
	}

	.testimonials-img figure,
	.testimonials-img img {
		border-radius: 20px;
	}

	.testimonials-img img {
		aspect-ratio: 1 / 1.1;
	}

	.helthcare-support-circle img {
		max-width: 140px;
	}

	.client-review-box {
		padding: 15px;
	}

	.client-review-box h2 {
		font-size: 38px;
	}

	.client-review-box p {
		font-size: 14px;
	}

	.testimonials-content {
		margin-left: 0px;
	}

	.testimonial-item {
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.author-image {
		margin-right: 10px;
	}

	.author-content {
		width: calc(100% - 70px);
	}

	.testimonial-slider .testimonial-pagination {
		margin-top: 30px;
	}

	.our-gallery {
		padding: 50px 0 25px;
	}

	.our-gallery-nav {
		margin-bottom: 40px;
	}

	.our-gallery-nav ul {
		gap: 10px 50px;
	}

	.our-gallery-nav ul li a:before {
		right: -29px;
	}

	.gallery-item-box img {
		width: 100%;
		aspect-ratio: 1 / 0.88;
		object-fit: cover;
	}

	.our-blog {
		padding: 25px 0 20px;
	}

	.post-item {
		padding: 30px;
		border-radius: 20px;
	}

	.post-item-header,
	.post-featured-image {
		margin-bottom: 20px;
	}

	.post-item-meta {
		margin-bottom: 10px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-about,
	.footer-links-box {
		width: 100%;
	}

	.footer-about::before {
		display: none;
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.footer-contact-item p,
	.footer-social-links h3 {
		margin-bottom: 10px;
	}

	.footer-social-links {
		margin-top: 30px;
	}

	.footer-links-box {
		gap: 30px;
	}

	.newsletter-form .form-group .form-control {
		width: calc(100% - 46px);
		padding: 10px 20px;
	}

	.newsletter-form .form-group .newsletter-btn {
		width: 46px;
		height: 46px;
	}

	.newsletter-form .form-group .newsletter-btn i {
		font-size: 20px;
	}

	.footer-links {
		width: calc(30% - 20px);
	}

	.footer-links.footer-service-links {
		width: calc(40% - 20px);
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		padding: 15px 0;
		margin-top: 40px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 46px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.our-approach-box-content {
		padding-bottom: 0;
	}

	.our-approach-content {
		padding-bottom: 0;
	}

	.our-approach-content,
	.our-approach-image {
		width: 100%;
	}

	.mission-vision-box {
		position: initial;
		gap: 30px;
		border-radius: 20px;
		padding: 30px;
		margin-top: 30px;
	}

	.mission-vision-item {
		width: calc(33.33% - 20px);
	}

	.mission-vision-box--two .mission-vision-item {
		width: calc(50% - 15px);
	}

	.mission-vision-item:before {
		right: -15px;
	}

	.mission-vision-item .icon-box img {
		max-width: 45px;
	}

	.our-approach-image figure {
		border-radius: 20px;
	}

	.our-approach-image img {
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.our-approach--split {
		background-position: bottom center;
		padding: 50px 0;
	}

	.our-approach--split .mission-vision-box--single {
		border-radius: 20px;
		padding: 30px;
	}

	.how-we-help {
		padding: 50px 0;
	}

	.how-we-help:before {
		border-radius: 0 0px 20px 20px;
		height: 60%;
		width: 100%;
	}

	.how-help-item {
		border-radius: 20px;
	}

	.how-we-help-content {
		margin-bottom: 30px;
	}

	.how-we-help-body {
		margin-bottom: 30px;
	}

	.how-we-help-body ul li {
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.how-help-item .icon-box {
		margin-bottom: 20px;
	}

	.how-help-item .icon-box:before {
		width: 30px;
		height: 30px;
	}

	.how-help-item .icon-box img {
		max-width: 50px;
	}

	.our-fact {
		padding: 50px 0;
	}

	.our-fact-image {
		margin-bottom: 30px;
	}

	.our-fact-image figure {
		border-radius: 20px;
	}

	.our-fact-image img {
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.fact-counter-item {
		padding: 25px 20px;
	}

	.fact-counter-item h2 {
		font-size: 46px;
		width: calc(40% - 5px);
	}

	.fact-counter-item p {
		width: calc(60% - 5px);
	}

	.fact-body-image figure {
		border-radius: 20px;
	}

	.fact-body-image img {
		aspect-ratio: 1 / 0.6;
		border-radius: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-item {
		border-radius: 20px;
	}

	.team-image {
		margin-bottom: 15px;
	}

	.team-content {
		margin-bottom: 10px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-content {
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 14px 35px 14px 14px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 16px;
		right: 14px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 14px 35px 14px 14px;
	}

	.faqs-image {
		max-width: 75%;
		margin: 0 auto;
		padding-right: 100px;
	}

	.faqs-image:before {
		right: 40px;
	}

	.faqs-img-1,
	.faqs-img-2 {
		border-radius: 20px;
	}

	.faqs-img-2 {
		max-width: 252px;
		top: 100px;
	}

	.faqs-img-1 img {
		aspect-ratio: 1 / 1.414;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.our-features.services-our-features {
		padding: 50px 0;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-sidebar-catagery-list {
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-sidebar-catagery-list h3 {
		padding: 15px 20px;
	}

	.page-sidebar-catagery-list ul {
		padding: 20px;
	}

	.sidebar-cta-box {
		border-radius: 20px;
		padding: 30px;
	}

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content {
		margin-bottom: 30px;
	}

	.sidebar-cta-box .icon-box img {
		max-width: 70px;
	}

	.service-feature-image,
	.service-entry {
		margin-bottom: 30px;
	}

	.service-feature-image figure {
		border-radius: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.bringing-quality-box,
	.service-entry-content-list,
	.service-entry-steps {
		margin-top: 30px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 20px;
		border-radius: 20px;
		padding: 30px;
		margin: 30px 0;
	}

	.service-entry ul li {
		width: calc(33.33% - 13.33px);
		background-size: 22px auto;
	}

	.service-entry-image figure,
	.service-entry-image img {
		border-radius: 20px;
	}

	.service-entry-content-box .icon-box img {
		max-width: 40px;
	}

	.service-entry-content-box .icon-box:before {
		width: 24px;
		height: 24px;
	}

	.service-entry-step-list {
		margin-top: 30px;
	}

	.service-entry-step-item {
		border-radius: 20px;
		padding: 20px;
	}

	.service-entry-step-box {
		width: calc(100% - 60px);
	}

	.service-entry-step-no {
		margin-right: 20px;
	}

	.service-entry-step-no h2 {
		margin-bottom: 0;
	}

	.service-entry-step-item .icon-box img {
		max-width: 45px;
	}

	.service-entry-step-item .icon-box:before {
		width: 24px;
		height: 24px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img {
		border-radius: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.417em;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 85px;
		border-radius: 20px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.tag-links {
		font-size: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-programs {
		padding: 50px 0 20px;
	}

	.page-program-single {
		padding: 50px 0;
	}

	.program-feature-image,
	.program-entry {
		margin-bottom: 30px;
	}

	.program-feature-image figure {
		border-radius: 20px;
	}

	.program-feature-image img {
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.building-stability-box,
	.program-why-choose {
		margin-top: 30px;
	}

	.program-entry p {
		margin-bottom: 15px;
	}

	.program-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.program-entry ul {
		gap: 15px 20px;
		border-radius: 20px;
		margin-top: 30px;
	}

	.program-entry ul li {
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.program-entry-video {
		margin: 30px 0;
	}

	.program-entry-video-image figure,
	.program-entry-video-image img {
		border-radius: 20px;
	}

	.program-entry-video-image img {
		aspect-ratio: 1 / 0.74;
	}

	.program-why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.program-why-choose-item .icon-box:before {
		width: 28px;
		height: 28px;
	}

	.program-why-choose-item .icon-box img {
		max-width: 45px;
	}

	.section-footer-text.program-why-choose-footer {
		margin-top: 30px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.page-team-single-box {
		gap: 50px 30px;
	}

	.team-credentials-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.team-short-message-text {
		font-size: 18px;
		padding-left: 18px;
	}

	.team-extended-message {
		margin-top: 40px;
	}

	.team-member-image,
	.team-member-content {
		width: 100%;
	}

	.team-member-image img {
		aspect-ratio: 1 / 0.8;
	}

	.member-content-body {
		padding: 20px;
		margin-bottom: 30px;
	}

	.member-content-body ul li {
		margin-bottom: 10px;
	}

	.member-about-nav ul li .nav-link {
		padding: 0 5px 15px 5px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skillbar .skill-data {
		margin-bottom: 10px;
	}

	.team-experience-box,
	.team-contact-form {
		width: 100%;
	}

	.team-experience-body ul {
		gap: 15px 20px;
	}

	.team-experience-body ul li {
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.team-contact-form {
		padding: 30px;
		border-radius: 20px;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.volunteer-audience-section {
		margin-bottom: 40px;
	}

	.volunteer-audience-card {
		padding: 28px 24px;
	}

	.contact-info-box {
		padding: 40px;
	}

	.contact-info-item {
		width: calc(50% - 50px);
	}

	.contact-info-item:nth-child(2n + 2)::before {
		display: none;
	}

	.contact-info-item .icon-box {
		margin-right: 15px;
	}

	.contact-info-item .icon-box img {
		max-width: 45px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.contact-form-box {
		padding: 50px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.page-donation {
		padding: 50px 0;
	}

	.donation-box {
		padding: 60px 30px;
		border-radius: 20px;
	}

	.campaign-donate-form .form-control {
		padding: 12px 20px;
	}

	.campaign-donate-form .donate-value label {
		padding: 12px;
	}

	.donate-payment-method {
		margin-bottom: 30px;
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.donate-payment-type .payment-method input {
		height: 20px;
		width: 20px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h3 {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.section-title h3::before {
		width: 16px;
		height: 16px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.video-play-button a {
		height: 45px;
		width: 45px;
	}

	.video-play-button a i {
		font-size: 20px;
	}

	.hero::before {
		background: linear-gradient(270deg, rgba(2, 13, 25, 0.3) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
	}

	.hero-body {
		gap: 20px;
		justify-content: space-between;
	}

	.hero-list,
	.hero-help-families {
		width: 100%;
	}

	.hero-list:before {
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.hero-help-families h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.about-us-images {
		max-width: 100%;
		padding: 0 0 185px 70px;
	}

	.about-img-2 {
		border-width: 5px;
		max-width: 210px;
	}

	.about-stat-boxes,
	.need-fund-box {
		max-width: 125px;
		padding: 10px;
		bottom: 5px;
	}

	.about-stat-boxes {
		padding: 0;
		gap: 8px;
	}

	.about-stat-boxes .need-fund-box {
		padding: 10px;
	}

	.need-fund-box img,
	.waiting-list-icon {
		max-width: 35px;
		margin-bottom: 0;
	}

	.waiting-list-icon svg {
		width: 28px;
		height: 28px;
	}

	.about-us-body-content,
	.helped-fund-item {
		width: 100%;
	}

	.about-support-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.helped-fund-item {
		padding: 0 20px 20px;
		max-width: 68%;
	}

	.helped-fund-img figure {
		max-width: 80px;
	}

	.helped-fund-content h2 {
		font-size: 22px;
	}

	.helped-fund-content h3 {
		font-size: 18px;
	}

	.service-item {
		padding: 25px 20px;
	}

	.service-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-image figure {
		max-width: 120px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.section-footer-text p span {
		padding: 3px 8px;
	}

	.what-we-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.what-we-item .icon-box {
		margin-right: 10px;
	}

	.what-we-item .icon-box img {
		max-width: 50px;
	}

	.what-we-item-content {
		width: calc(100% - 60px);
	}

	.what-we-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.what-we-pillar-item {
		gap: 14px;
	}

	.what-we-pillar-marker {
		padding-top: 26px;
		width: 16px;
	}

	.what-we-pillar-dot {
		width: 12px;
		height: 12px;
		border-width: 2px;
	}

	.what-we-pillar-card {
		flex-direction: column;
		gap: 14px;
		padding: 18px 16px;
		margin-bottom: 18px;
	}

	.what-we-pillar-icon {
		width: 46px;
		height: 46px;
	}

	.what-we-pillar-icon img {
		max-width: 30px;
	}

	.what-we-pillar-body h3 {
		font-size: 17px;
	}

	.what-we-pillar-body p {
		font-size: 14px;
	}

	.what-we-brands {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 24px;
	}

	.what-we-brand-logo {
		margin-bottom: 18px;
	}

	.what-we-brand-logo img {
		max-width: 170px;
		max-height: 72px;
	}

	.what-we-brand-card-spectrum .what-we-brand-logo img {
		max-width: 190px;
		max-height: 80px;
	}

	.what-we-brand-name {
		font-size: 18px;
	}

	.what-we-brand-tagline {
		font-size: 14px;
	}

	.what-we-do-images {
		padding-left: 70px;
	}

	.what-we-do-img-1 figure {
		border-radius: 20px;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.5;
		border-radius: 20px;
	}

	.what-we-do-img-2 {
		max-width: 140px;
		bottom: 30px;
	}

	.donate-now-box {
		left: 15px;
		top: 15px;
	}

	.donate-now-box a {
		font-size: 16px;
		gap: 10px;
		padding: 20px 10px;
	}

	.donate-now-box a img {
		max-width: 20px;
	}

	.causes-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-images {
		max-width: 100%;
		padding: 0 40px 30px 0;
	}

	.why-choose-image-2 {
		max-width: 160px;
	}

	.why-choose-list ul {
		gap: 15px;
	}

	.why-choose-list ul li {
		width: 100%;
	}

	.why-choose-counters {
		gap: 20px;
		margin-top: 20px;
		padding-top: 20px;
	}

	.why-choose-counter-item {
		width: calc(33.33% - 13.33px);
	}

	.why-choose-counter-item::before {
		right: -10px;
	}

	.why-choose-counter-item h2 {
		font-size: 26px;
	}

	.why-choose-counter-item p {
		font-size: 14px;
	}

	.program-item {
		padding: 20px;
	}

	.program-content h3 {
		font-size: 18px;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-ticker-box .scrolling-content span img {
		width: 35px;
		margin-right: 20px;
	}

	.scrolling-ticker-box .scrolling-content span {
		font-size: 40px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: column;
	}

	.our-features-image,
	.our-features-content {
		width: 100%;
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.67;
	}

	.our-features-body {
		width: calc(100% - 60px);
	}

	.our-features-body h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.our-features-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-features-content .icon-box img {
		max-width: 45px;
	}

	.our-features-content .icon-box:before {
		width: 25px;
		height: 25px;
	}

	.donate-now {
		padding: 50px 0;
	}

	.intro-video-box {
		margin: 0 0 40px 0;
	}

	.intro-video-box .video-play-button a {
		width: 60px;
		height: 60px;
	}

	.intro-video-box .video-play-button a:before,
	.intro-video-box .video-play-button a::after {
		top: -33%;
		left: -33%;
	}

	.intro-video-box .video-play-button a i {
		font-size: 25px;
	}

	.donar-company-slider {
		margin-top: 40px;
	}

	.donar-company-logo img {
		max-width: 140px;
	}

	.donate-box {
		padding: 20px;
	}

	.donate-form .form-control {
		padding: 10px 25px;
	}

	.donate-form .donate-value label {
		font-size: 14px;
		padding: 10px;
	}

	.how-it-work-item {
		gap: 20px;
	}

	.how-it-work-image,
	.how-it-work-content {
		width: 100%;
	}

	.how-it-work-content .icon-box img {
		max-width: 45px;
	}

	.how-it-work-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.nihal-journey {
		padding: 40px 0;
	}

	.nihal-journey-content p {
		font-size: 15px;
		margin-bottom: 14px;
	}

	.nihal-journey-content blockquote {
		font-size: 16px;
	}

	.testimonials-image {
		max-width: 100%;
		padding-right: 50px;
	}

	.helthcare-support-circle {
		top: 30px;
	}

	.helthcare-support-circle img {
		max-width: 100px;
	}

	.client-review-box {
		padding: 12px;
		bottom: 20px;
	}

	.client-review-box h2 {
		font-size: 26px;
	}

	.testimonial-item {
		padding: 20px;
	}

	.author-info,
	.testimonial-rating {
		width: 100%;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating {
		text-align: left;
	}

	.testimonial-content p {
		font-size: 14px;
	}

	.our-gallery-nav {
		margin-bottom: 30px;
	}

	.our-gallery-nav ul {
		gap: 10px 40px;
	}

	.our-gallery-nav ul li a:before {
		right: -24px;
	}

	.gallery-item-boxes {
		left: 0;
	}

	.gallery-item-box {
		width: calc(50% - 0.2px);
	}

	.post-item {
		padding: 20px;
	}

	.post-item-header,
	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-contact-item {
		width: 100%;
	}

	.footer-social-links h3,
	.footer-contact-item h3 {
		font-size: 18px;
	}

	.footer-links,
	.footer-links.footer-service-links {
		width: 100%;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright {
		padding: 10px 0;
		margin-top: 30px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.mission-vision-box {
		padding: 20px;
	}

	.mission-vision-item {
		width: 100%;
	}

	.mission-vision-item:before {
		width: 100%;
		height: 1px;
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
	}

	.mission-vision-item:nth-child(3n + 3):before {
		display: block;
	}

	.mission-vision-item:last-child:before {
		display: none;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 10px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-approach--split .mission-vision-box--single {
		padding: 20px;
	}

	.how-we-help:before {
		height: 44%;
	}

	.how-help-item {
		width: 100%;
	}

	.how-help-item .icon-box {
		margin-bottom: 15px;
	}

	.how-help-item .icon-box img {
		max-width: 45px;
	}

	.how-help-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-fact-image img {
		aspect-ratio: 1 / 0.947;
	}

	.fact-counter-list,
	.fact-body-image {
		width: 100%;
	}

	.fact-counter-item h2 {
		font-size: 30px;
		width: calc(30% - 5px);
	}

	.fact-counter-item p {
		width: calc(70% - 5px);
	}

	.fact-body-image figure,
	.fact-body-image img {
		height: auto;
	}

	.fact-body-image img {
		aspect-ratio: 1 / 0.98;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.team-content p {
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 30px 12px 12px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		right: 12px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 12px;
	}

	.faq-accordion .accordion-item .accordion-body p {
		font-size: 14px;
	}

	.faqs-image {
		max-width: 100%;
		padding-right: 75px;
	}

	.faqs-image:before {
		right: 30px;
		bottom: 15px;
		width: 20px;
		height: 100px;
	}

	.faqs-img-2 {
		max-width: 170px;
		top: 60px;
		border-width: 4px;
	}

	.page-sidebar-catagery-list h3 {
		font-size: 18px;
	}

	.page-sidebar-catagery-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-sidebar-catagery-list ul li a {
		padding-right: 25px;
	}

	.page-sidebar-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content {
		margin-bottom: 20px;
	}

	.sidebar-cta-box .icon-box img {
		max-width: 60px;
	}

	.sidebar-cta-content p {
		margin-bottom: 10px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.65;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul {
		gap: 15px;
		padding: 20px;
		margin: 20px 0;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-entry-content-item {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-content-box {
		width: 100%;
	}

	.service-entry-content h3 {
		font-size: 18px;
	}

	.service-entry-step-list {
		margin-top: 20px;
	}

	.service-entry-step-item {
		border-radius: 12px;
		padding: 15px;
	}

	.service-entry-step-no {
		margin-right: 10px;
	}

	.service-entry-step-box {
		width: calc(100% - 48px);
	}

	.service-entry-step-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry-step-content p {
		font-size: 14px;
	}

	.service-entry-step-item .icon-box {
		margin-left: 10px;
	}

	.service-entry-step-item .icon-box img {
		max-width: 38px;
	}

	.service-entry-step-item .icon-box:before {
		width: 20px;
		height: 20px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 12px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.program-feature-image {
		margin-bottom: 20px;
	}

	.program-feature-image img {
		aspect-ratio: 1 / 0.65;
	}

	.program-entry h2 {
		font-size: 26px;
	}

	.program-entry ul {
		margin-top: 20px;
	}

	.program-entry ul li {
		width: 100%;
	}

	.program-entry-video {
		margin: 20px 0;
	}

	.program-entry-video-item {
		width: 100%;
	}

	.program-entry-video-image img {
		aspect-ratio: 1 / 0.67;
	}

	.program-why-choose-list {
		gap: 20px;
	}

	.program-why-choose-item {
		width: 100%;
	}

	.program-why-choose-item .icon-box {
		margin-bottom: 15px;
	}

	.program-why-choose-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-member-image img {
		aspect-ratio: 1 / 1.06;
	}

	.team-member-title,
	.member-social-list {
		width: 100%;
	}

	.member-social-list ul {
		text-align: left;
	}

	.member-content-body ul li {
		font-size: 18px;
	}

	.member-content-body ul li span {
		width: 65%;
	}

	.member-about-nav ul li .nav-link {
		padding: 0 16px 16px 16px;
	}

	.team-experience-body ul li {
		width: 100%;
	}

	.contact-info-box {
		padding: 20px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-info-item::before {
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.contact-info-item:nth-child(2n + 2)::before {
		display: block;
	}

	.contact-info-item .icon-box:before {
		width: 25px;
		height: 25px;
	}

	.contact-info-item .icon-box img {
		max-width: 40px;
	}

	.contact-info-content {
		width: calc(100% - 55px);
	}

	.contact-info-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-form-box {
		padding: 30px 20px;
	}

	.donation-box {
		padding: 30px 20px;
	}

	.campaign-donate-form .form-control {
		padding: 12px 15px;
	}

	.campaign-donate-form .donate-value {
		width: calc(33.33% - 10px);
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.donate-payment-type .payment-method input {
		height: 16px;
		width: 16px;
	}
}

.navbar-brand img {
	max-width: 250px;
}

.partner-logo {
	max-width: 200px;
	height: 100%;
	margin-bottom: 10px;
}

.page-team-single .section-title h2 {
	font-size: 28px;
	text-transform: uppercase;
}

.uppercase {
	text-transform: uppercase;
}

/***   Homepage Redesign   ***/

.home-hero-cinematic.hero-slider-layout {
	overflow: hidden;
}

.home-hero-cinematic.hero-slider-layout .swiper {
	height: 120vh;
}

.home-hero-cinematic.hero-slider-layout .swiper-wrapper,
.home-hero-cinematic.hero-slider-layout .swiper-slide,
.home-hero-cinematic.hero-slider-layout .hero-slide {
	height: 100%;
	min-height: 100%;
}

.home-hero-cinematic.hero-slider-layout .hero-slide {
	display: flex;
	align-items: center;
	background-color: #020D19;
	padding-top: clamp(120px, 16vh, 260px);
	padding-bottom: clamp(90px, 10vh, 140px);
	box-sizing: border-box;
}

.home-hero-cinematic.hero-slider-layout .hero-slide .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.home-hero-cinematic.hero-slider-layout .hero-slide .hero-slider-image {
	z-index: 0;
	min-height: 100%;
	height: 100%;
}

.home-hero-cinematic.hero-slider-layout .hero-slide .hero-slider-image img {
	min-width: 100%;
	min-height: 100%;
	object-position: center center;
}

.home-hero-cinematic .hero-slide::before {
	background:
		linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%),
		linear-gradient(360deg, rgba(2, 13, 25, 0) 72%, rgba(2, 13, 25, 0.92) 100%);
	opacity: 1;
	z-index: 1;
}

.hero-slider-image--kenburns {
	overflow: hidden;
}

.hero-slider-image--kenburns img {
	animation: homeKenBurns 18s ease-in-out infinite alternate;
	transform-origin: center center;
}

.swiper-slide-active .hero-slider-image--kenburns img {
	animation-play-state: running;
}

@keyframes homeKenBurns {
	0% {
		transform: scale(1.08) translate(0, 0);
	}

	100% {
		transform: scale(1.18) translate(-1.5%, -1%);
	}
}

.hero-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.btn-default-outline {
	background: transparent;
	border: 2px solid var(--white-color);
	color: var(--white-color);
}

.btn-default-outline:hover {
	background: var(--white-color);
	color: var(--secondary-color);
}

.home-foundation-story-section .home-foundation-story-body p {
	margin-bottom: 18px;
	line-height: 1.75em;
}

.home-foundation-story-section .home-foundation-story-body p:last-child {
	margin-bottom: 0;
}

.home-foundation-story-section .home-foundation-lead {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.home-foundation-story-section .home-foundation-closing {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

@media screen and (max-width: 767px) {
	.home-foundation-story-section figure {
		margin-bottom: 2em;
	}
}


.home-foundation-readmore-wrap {
	margin-top: 8px;
}

.home-foundation-readmore-btn {
	background: none;
	border: none;
	cursor: pointer;
}

.home-foundation-more[hidden] {
	display: none;
}

.home-foundation-more {
	margin-top: 32px;
	padding-top: 8px;
	border-top: 1px solid var(--divider-color);
}

.home-mission-pillars {
	padding: 100px 0 80px;
}

.home-mission-pillar-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 40px 32px;
	height: 100%;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-mission-pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 767px) {
	.home-mission-pillars {
		padding-top: 0;
	}
}
.home-mission-pillar-icon {
	margin-bottom: 22px;
}

.home-mission-pillar-icon img {
	width: 52px;
	height: 52px;
}

.home-mission-pillar-card h3 {
	font-size: 22px;
	margin-bottom: 14px;
	text-transform: capitalize;
}

.home-mission-pillar-card p {
	margin: 0;
}

.home-mission-pillars-row {
	margin-bottom: 20px;
}

.home-mission-pillars-row>[class*="col-"] {
	margin-bottom: 30px;
}

.home-impact-stats {
	padding: 90px 0;
	background: var(--secondary-color);
}

.home-impact-stats .section-title-light h2,
.home-impact-stats .section-title-light h3,
.home-impact-stats .section-title-light p {
	color: var(--white-color);
}

.home-impact-stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 36px 20px;
	margin-bottom: 24px;
	height: calc(100% - 24px);
}

.home-impact-stat-item h2 {
	font-size: 48px;
	color: var(--white-color);
	margin-bottom: 10px;
	line-height: 1.1;
}

.home-impact-stat-item p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	text-transform: capitalize;
}

.home-founder-welcome {
	padding: 100px 0;
}

.home-founder-image figure,
.home-founder-image img {
	border-radius: 24px;
	width: 100%;
}

.home-founder-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.home-founder-btns .btn-default-outline {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.home-founder-btns .btn-default-outline:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.home-placeholder-card {
	opacity: 0.92;
}

.home-coming-soon-badge {
	display: inline-block;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 12px;
	border-radius: 20px;
}

.readmore-btn--disabled {
	opacity: 0.55;
	cursor: default;
	pointer-events: none;
}

.home-news-events .post-item-content h2 {
	font-size: 22px;
}

.home-gallery-preview {
	padding-bottom: 80px;
}

.home-gallery-preview-item {
	border-radius: 16px;
	overflow: hidden;
}

.home-gallery-preview-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-cta-band {
	position: relative;
	padding: 90px 0;
	background: url('../images/page-header-bg.jpg') center center / cover no-repeat;
	overflow: hidden;
}

.home-cta-band-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(102, 147, 71, 0.85));
	z-index: 0;
}

.home-cta-band .container {
	position: relative;
	z-index: 1;
}

.home-cta-band h2,
.home-cta-band p {
	color: var(--white-color);
}

.home-cta-band h2 {
	font-size: 42px;
	margin-bottom: 16px;
}

.home-cta-band p {
	max-width: 640px;
	margin: 0 auto 28px;
}

.home-cta-band-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

@media only screen and (max-width: 991px) {
	.home-hero-cinematic.hero-slider-layout .swiper {
		height: 120vh;
	}

	.home-impact-stat-item h2 {
		font-size: 36px;
	}

	.home-cta-band h2 {
		font-size: 32px;
	}
}

@media only screen and (max-width: 767px) {

	.hero-btn-group,
	.home-founder-btns,
	.home-cta-band-btns {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-btn-group .btn-default,
	.home-founder-btns .btn-default,
	.home-cta-band-btns .btn-default {
		width: 100%;
		text-align: center;
	}
}

.bg-grey {
	background: #f9f9f9;
}

.testimonial-salutation {
	margin-bottom: 0;
}

.test-founder-welcome {
	font-size: 53px;
	text-transform: capitalize;
}

/* About page — foundation sections */
.about-page-nav {
	background: var(--white-color);
	border-bottom: 1px solid rgba(15, 76, 129, 0.1);
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.about-page-nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.about-page-nav-list a {
	border: 1px solid rgba(15, 76, 129, 0.15);
	border-radius: 50px;
	color: var(--primary-color);
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 14px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-page-nav-list a:hover,
.about-page-nav-list a:focus {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}

.about-story-section,
.about-why-section,
.about-mission-section,
.about-vision-section,
.about-core-values-section,
.about-legal-section,
.about-governance-section {
	padding: 80px 0;
}

.about-story-image img,
.about-why-image img {
	border-radius: 12px;
	width: 100%;
}

.about-story-link {
	margin-top: 20px;
}

.about-mission-icon,
.about-vision-icon {
	margin: 0 auto 20px;
	width: 64px;
}

.about-mission-icon img,
.about-vision-icon img {
	width: 100%;
}

.about-vision-motto {
	border-left: 4px solid var(--accent-color);
	color: var(--primary-color);
	font-size: 20px;
	font-style: italic;
	margin: 24px auto 0;
	max-width: 520px;
	padding-left: 20px;
	text-align: left;
}

.about-core-values-grid>[class*="col-"] {
	margin-bottom: 24px;
}

.about-core-value-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.08);
	border-radius: 12px;
	height: 100%;
	padding: 28px 24px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-core-value-card:hover {
	box-shadow: 0 12px 32px rgba(15, 76, 129, 0.1);
	transform: translateY(-4px);
}

.about-core-value-icon {
	margin-bottom: 16px;
	width: 48px;
}

.about-core-value-icon img {
	width: 100%;
}

.about-core-value-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.about-core-value-card p {
	margin-bottom: 0;
}

.about-legal-card {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.12);
	border-radius: 12px;
	padding: 32px;
}

.about-legal-list {
	margin: 0;
}

.about-legal-item {
	border-bottom: 1px solid rgba(15, 76, 129, 0.08);
	display: grid;
	gap: 4px 24px;
	grid-template-columns: 180px 1fr;
	padding: 14px 0;
}

.about-legal-item:last-of-type {
	border-bottom: none;
}

.about-legal-item dt {
	color: var(--primary-color);
	font-weight: 600;
	margin: 0;
}

.about-legal-item dd {
	margin: 0;
}

.about-legal-item--highlight dd {
	color: var(--primary-color);
	font-size: 22px;
	font-weight: 700;
}

.about-legal-note {
	color: rgba(0, 0, 0, 0.55);
	font-size: 14px;
	margin: 20px 0 0;
}

.about-governance-board {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

.about-governance-board-item {
	background: var(--white-color);
	border: 1px solid rgba(15, 76, 129, 0.08);
	border-radius: 12px;
	padding: 24px;
}

.about-governance-board-role {
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.about-governance-board-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.about-governance-board-item p {
	font-size: 14px;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.about-governance-board {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-legal-item {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {

	.about-story-section,
	.about-why-section,
	.about-mission-section,
	.about-vision-section,
	.about-core-values-section,
	.about-legal-section,
	.about-governance-section {
		padding: 60px 0;
	}

	.about-governance-board {
		grid-template-columns: 1fr;
	}

	.about-page-nav-list {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
	}
}

/************************************/
/***     Leadership Page css      ***/
/************************************/

.page-leadership .leadership-intro {
	padding: 80px 0 20px;
}

.about-leadership-teaser {
	padding: 80px 0;
}

.leadership-messages {
	padding: 80px 0 100px;
}

.leadership-messages-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.leadership-message-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 36px 32px;
	box-shadow: 0 12px 40px rgba(2, 13, 25, 0.06);
}

.leadership-message-portrait figure {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

.leadership-message-portrait img {
	width: 100%;
	height: auto;
	display: block;
}

.leadership-message-author h3 {
	font-size: 22px;
	margin-bottom: 8px;
}

.leadership-message-author p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
	color: var(--text-color);
}

.leadership-message-body.testimonial-content-full {
	max-height: none;
	overflow: visible;
	padding-right: 0;
}

.leadership-message-body.testimonial-content-full p {
	font-size: 16px;
	line-height: 1.8;
}

.leadership-message-link {
	margin-top: 28px;
	margin-bottom: 0;
}

.page-leadership .about-governance-section {
	padding-top: 40px;
}

@media (max-width: 991px) {
	.leadership-message-card {
		padding: 28px 24px;
	}
}

@media (max-width: 767px) {

	.page-leadership .leadership-intro,
	.about-leadership-teaser,
	.leadership-messages {
		padding: 60px 0;
	}

	.leadership-messages-list {
		gap: 28px;
	}

	.leadership-message-card {
		padding: 24px 20px;
	}
}