/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Giveon - 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 Services css
07. Why Choose Us css
08. Our Story css
09. Our Causes css
10. Our Features css
11. Our Programs css
12. Donate Now css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Programs Page css
23. Program Single css
24. Volunteers Page css
25. Volunteer Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQ's Page css
30. Contact Us Page css
31.	404 Error Page css
32. Responsive css
33. Home - Version 2 css
34. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #21293B;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F6F6F6;
	--text-color				: #555555;
	--accent-color				: #D53F34;
	--white-color				: #FFFFFF;
	--divider-color				: #21293B1A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Inter Tight", sans-serif;
}

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

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

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

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

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

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

::selection{
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

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

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

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;
}

.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;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 5px;
	padding: 17px 65px 17px 20px;
	border: none;
	outline: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
	background-color: var(--white-color);
	border-radius: 5px;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
	transition: all 0.4s ease-in-out;
}

.btn-default::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

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

.btn-default.btn-highlighted:hover::before{
	background-color: var(--accent-color);
    background-image: url('../images/arrow-white.svg');
}

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

.readmore-btn{
	position: relative;
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 22px;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	width: 12px;
	height: 12px;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

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

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

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

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

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

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

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

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

.light-section{
	background-color: var(--secondary-color);
}

.dark-section{
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-image.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

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

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

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

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

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

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

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

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

.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 10px 16px 10px 32px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
    width: 5px;
    height: 5px;
}

.section-title h1{
	font-size: 60px;
	margin-bottom: 0;
	cursor: none;
}

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

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

.light-section .section-title .section-sub-title{
	background: var(--bg-color);
}

.dark-section .section-title .section-sub-title{
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

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

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

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

header.main-header{
	position: absolute;
	top: 30px;
	left: 15px;
	right: 15px;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	max-width: 1300px;
	top: 0;
	background: var(--white-color);
	border-radius: 20px;
	margin: 0 auto;
	z-index: 100;
}

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

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

.navbar{
	padding: 20px 5px;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
	width: 33%;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

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

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

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--primary-color);
	background: transparent;
	border-radius: 0px;
	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{
	position: absolute;
	top: 100%;
	left: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	width: 235px;
	background: var(--accent-color);
	border-radius: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

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

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

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

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

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

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

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

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

.header-btn{
	line-height: 0;
}

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

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

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

.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;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 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: 7px 20px 7px 30px;
}

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

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

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

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

.hero{
	position: relative;
	background-image: url('../newimg/headbg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: auto;
	min-height: 100vh;
	align-content: end;
	padding: 290px 0 120px;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(33, 41, 59, 0.90) 32.01%, rgba(33, 41, 59, 0.00) 62.16%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero-content-box,
.hero-body{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.hero-content-box{
	min-height: 590px;
	margin-right: 55px;
}

.hero-sub-heading-box{
	/* max-width: 450px; */
	max-width: 48rem;
}

.hero-sub-heading{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 100px;
	padding: 4px 20px 4px 4px;
	margin-bottom: 20px;
}

.satisfy-client-images{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -16px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

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

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image figure img{
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--primary-color);
	line-height: normal;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more img{
	width: 100%;
	max-width: 24px;
}

.satisfy-client-image.add-more h3{
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
}

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

.hero-sub-heading .satisfy-client-image{
	margin-left: -12px;
}

.hero-sub-heading .satisfy-client-image:first-child{
	margin-left: 0;
}

.hero-sub-heading .satisfy-client-image figure img{
	max-width: 30px;
}

.hero-sub-heading-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-content-box .section-title{
	margin-bottom: 0;
}

.hero-body{
	height: 100%;
	flex-wrap: wrap;
	align-items: end;
}

.watch-video-circle a{
	display: block;
	cursor: none;
	border-radius: 50%;
}

.watch-video-circle a img{
	width: 100%;
	max-width: 120px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

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

.watch-video-circle a:hover img{
	animation-play-state: paused;
}

.hero-body .watch-video-circle a{
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero-rating-box{
	max-width: 265px;
	border: 1px solid var(--dark-divider-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 30px;
}

.hero-rating-box h2{
	font-size: 16px;
	color: var(--white-color);
}

.hero-rating-box h2 span{
	font-size: 24px;
}

.hero-rating-box h2 i{
	font-size: 20px;
	margin-left: 5px;
}

.hero-rating-box p{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

/************************************/
/*** 	   05. About Us css	      ***/
/************************************/

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

.about-us-image-box{
	display: flex;
	flex-wrap: wrap;;
	margin-right: 15px;
}

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

.about-us-image figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image.box-1{
	align-content: end;
}

.about-us-image.box-1,
.about-us-image.box-3{
	position: relative;
	width: 16%;
	z-index: 1;
}

.about-us-image.box-1 figure,
.about-us-image.box-3 figure{
	border: 6px solid var(--bg-color);
	border-radius: 26px;
}

.about-us-image.box-1 figure{
	margin-right: -174px;
}

.about-us-image.box-1 figure img{
	aspect-ratio: 1 / 1.12;
}

.about-us-image.box-2{
	width: 68%;
	padding: 70px 0 100px;
}

.about-us-image.box-2 figure{
	background-image: url("../images/about-us-image-bg-shape.svg");
	mask-image: url("../images/about-us-image-bg-shape.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
	width: 100%;
	height: 100%;
}

.about-us-image.box-2 figure img{
	aspect-ratio: 1 / 1.307;
}

.about-us-image.box-3 figure{
	margin-left: -144px;
}

.about-us-image.box-3 figure img{
	aspect-ratio: 1 / 1.04;
}

.about-us-item-list{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.about-us-item{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.about-us-item:last-child{
	border: none;
	padding: 0;
	margin: 0;
}

.about-us-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

.about-us-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content{
	width: calc(100% - 65px);
}

.about-us-item-content h3{
	font-size: 20px;
}

.about-us-item-content p{
	margin: 10px 0 0;
}

.about-content-footer{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
    margin-top: 40px;
}

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

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

.about-us-author-image figure img{
	width: 100%;
    max-width: 50px;
}

.about-us-author-content h3{
	font-size: 20px;
}

.about-us-author-content p{
	margin: 5px 0 0;
}

/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/

.our-services{
	position: relative;
	padding: 120px 0;
	overflow: clip;
}

.our-services::before,
.our-services::after{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 1;
}

.our-services::before{
	top: -20px;
	right: 0;
	background-image: url('../images/section-bg-shape-1.png');
	width: 220px;
	height: 240px;
}

.our-services::after{
	bottom: -30px;
	left: 30px;
	background-image: url('../images/section-bg-shape-2.png');
	width: 220px;
	height: 365px;
}

.our-services .container{
	position: relative;
	z-index: 2;
}

.services-item-list{
	display: flex;
    flex-wrap: wrap;
}

.services-item-list .service-item{
	width: 50%;
    border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
}

.services-item-list .service-item:nth-child(2n + 2){
	border-right: none;
}

.services-item-list .service-item:nth-last-child(2):nth-child(odd),
.services-item-list .service-item:last-child{
	border-bottom: none;
}

.service-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

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

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

.service-item .icon-box img{
	position: relative;
    width: 100%;
    max-width: 24px;
	z-index: 1;
}

.service-item-contant h2{
	font-size: 20px;
}

.service-item-contant h2 a{
	color: inherit;
}

.service-item-contant p{
	margin: 10px 0 0;
}

.service-item-btn{
	margin-top: 20px;
}

.service-cta-box{
	position: sticky;
	top: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--primary-color);
	padding: 40px 40px 0;
	border-radius: 20px;
}

.service-cta-header{
	text-align: center;
}

.service-cta-box .satisfy-client-images{
	justify-content: center;
}

.service-cta-box .satisfy-client-image{
    border: 1px solid var(--primary-color);
}

.service-cta-content{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.service-cta-rating i{
    color: var(--white-color);
}

.service-cta-content{
	margin-top: 20px;
}

.service-cta-content h3{
	font-size: 20px;
	line-height: 1.5em;
	color: var(--white-color);
	margin-top: 20px;
}

.service-cta-btn{
	margin-top: 30px;
}

.service-cta-image figure{
	display: block;
	border-radius: 20px 20px 0 0;
	margin: 0 -20px;
}

.service-cta-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.504;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

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

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

.section-footer-text p span{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 5px 12px;
	margin-right: 10px;
}

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

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

.section-footer-text ul{
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	line-height: normal;
	color: var(--primary-color);
	border-right: 1px solid var(--divider-color);
	margin-right: 15px;
	padding-right: 15px;
}

.section-footer-text ul li:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.section-footer-text ul li b{
	font-weight: 600;
}

.section-footer-text ul li i{
	color: var(--accent-color);
}

.section-footer-text.section-footer-contact{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span{
	width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
	align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img{
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image{
	border-color: var(--bg-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img{
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img{
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul{
	margin: 5px 0 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image{
    border-color: var(--primary-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li,
.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

.dark-section .section-footer-text ul li{
	border-color: var(--dark-divider-color);
}

.our-services .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 120px 0;
	background: white;
}

.why-choose-image-box{
	position: relative;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-left: 60px;
	margin-right: 10px;
}

.why-choose-image.image-1{
	width: 84%;
}

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

.why-choose-image figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image.image-1,
.why-choose-image.image-1 figure,
.why-choose-image.image-1 figure img{
	height: 100%;
}

.why-choose-image.image-1 figure img{
	height: 100%;
	aspect-ratio: 1 / 1.465;
}

.why-choose-image.image-2{
	position: relative;
	width: 16%;
	align-content: end;
	padding-bottom: 60px;
	z-index: 1;
}

.why-choose-image.image-2 figure{
	border: 6px solid var(--bg-color);
	border-radius: 26px;
	margin-left: -160px;
}

.why-choose-image.image-2 figure img{
	aspect-ratio: 1 / 1;
}

.why-choose-volunteer-box{
	position: absolute;
	top: 60px;
	left: 0;
	max-width: 185px;
	background: var(--white-color);
	border: 6px solid var(--bg-color);
	border-radius: 20px;
	padding: 20px;
	z-index: 1;
}

.why-choose-volunteer-item-content h2{
	font-size: 18px;
	line-height: 1.4em;
	margin-bottom: 35px;
}

.why-choose-volunteer-item-content h2 span{
	font-weight: 400;
}

.why-choose-volunteer-box .satisfy-client-image figure img{
	max-width: 40px;
}

.why-choose-content{
	height: 100%;
	align-content: center;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--white-color);
	border-radius: 20px;
	padding: 10px;
}

.why-choose-body-content{
	width: calc(100% - 280px);
	align-content: center;
	padding: 20px;
}

.why-choose-body-content h3{
	font-size: 20px;
}

.why-choose-body-content ul{
	list-style: none;
	border-top: 1px solid var(--divider-color);
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.why-choose-body-content ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 15px;
}

.why-choose-body-content ul li:last-child{
	margin-bottom: 0px;
}

.why-choose-body-content ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.why-choose-body-image{
	max-width: 270px;
}

.why-choose-body-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.why-choose-body-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.841;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

/************************************/
/*** 	   08. Our Story css	  ***/
/************************************/

.our-story{
	position: relative;
	background-image: url('../newimg/storybg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 850px;
	padding: 120px 0;
	overflow: hidden;
}

.our-story::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 40%;
	z-index: 1;
}

.our-story .container{
    position: relative;
    z-index: 2;
}

.our-story .section-row{
	margin-bottom: 0;
}

.our-story-content .watch-video-circle{
	margin-top: 170px;
	text-align: center;
}

.our-story-content .watch-video-circle a{
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.our-story-content .watch-video-circle a.bg-effect::before,
.our-story-content .watch-video-circle a.bg-effect::after{
	content: '';
	position: absolute;
    width: 140%;
    height: 140%;
	border: 55px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.our-story-content .watch-video-circle a.bg-effect::after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

/************************************/
/*** 	  09. Our Causes css	  ***/
/************************************/

.our-causes{
	padding: 120px 0;
	background: white;
}

.our-causes-item{
	position: relative;
	min-height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.our-causes-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.our-causes-image figure{
	position: relative;
	display: block;
	height: 100%;
}

.our-causes-image figure::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(33, 41, 59, 0.90) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}	

.our-causes-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.our-causes-item:hover .our-causes-image figure img{
	transform: scale(1.04);
}

.our-causes-item-tag,
.our-causes-item-body{
	position: relative;
	z-index: 1;
}

.our-causes-item-tag{
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
}

.our-causes-item-tag span{
	font-weight: 500;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 100px;
	padding: 9px 16px;
}

.our-causes-item-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.our-causes-item-button{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.our-causes-item-button .readmore-btn{
	color: var(--white-color);
}

.our-causes-item-button .readmore-btn::before{
	background-image: url('../images/arrow-white.svg');
}

/************************************/
/*** 	 10. Our Features css	  ***/
/************************************/

.our-features{
	position: relative;
	background: linear-gradient(180deg, var(--white-color) 77%, var(--bg-color) 23%);
    padding: 120px 0 0;
	overflow: hidden;
}

.our-features::before{
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	background-image: url('../images/section-bg-shape-1.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 220px;
	height: 240px;
	z-index: 1;
}

.our-features .container{
	position: relative;
	z-index: 2;
}

.feature-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item{
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.feature-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

.feature-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.feature-item-content{
	width: calc(100% - 65px);
}

.feature-item-content h3{
	font-size: 20px;
}

.feature-item-content p{
	margin: 10px 0 0 0;
}

.feature-counter-box{
	margin-top: -200px;
}

.feature-counter-item-list{
	position: relative;
	background: url("../images/feature-counter-box-bg-image.png"), linear-gradient(var(--primary-color), var(--primary-color));
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	padding: 4.167vw;
	margin: 80px 20px 0;
}

.feature-counter-item-list::before{
	content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 0;
    left: -20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, transparent 50%);
    width: calc(100% + 40px);
    height: calc(100% + 20px);
	border-radius: 30px;
    z-index: -1;
}

.feature-counter-item{
	position: relative;
	width: calc(33.33% - 53.33px);
}

.feature-counter-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

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

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

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

.feature-counter-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.feature-counter-item-content h2{
	font-size: 40px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

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

.feature-counter-item-content p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

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

.our-programs{
	padding: 120px 0;
}

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

.program-item-image{
	margin-bottom: 10px;
}

.program-item-image a{
	display: block;
	cursor: none;
	border-radius: 10px;
	overflow: hidden;
}

.program-item-image figure{
	display: block;
	border-radius: 10px;
}

.program-item-image img{
	width: 100%;
	aspect-ratio: 1 / 0.731;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

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

.program-item-body{
	padding: 20px;
}

.program-item-meta{
	margin-bottom: 20px;
}

.program-item-meta ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.program-item-meta ul li{
	display: inline-flex;
	align-items: center;
	line-height: 1.5em;
}

.program-item-meta ul li img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.program-item-content h2{
	font-size: 20px;
	line-height: 1.4em;
}

.program-item-content h2 a{
	color: inherit;
}

.program-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.programs-pagination.swiper-pagination-bullets{
	text-align: center;
	margin-top: 40px;
}

.programs-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: var(--divider-color);
	border-radius: 100px;
	opacity: 1;
	margin: 0 5px;
	transition: all 0.3s ease-in-out;
}

.programs-pagination .swiper-pagination-bullet-active{
	width: 30px;
	background: var(--accent-color);
}

.our-programs .section-footer-text{
	margin-top: 40px;
}

/************************************/
/*** 	  12. Donate Now css	  ***/
/************************************/

.donate-now{
	padding: 120px 0;
}

.donate-now-content{
	position: sticky;
	top: 30px;
	min-height: 545px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.donate-now-item{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.donate-now-item:last-child{
	margin-bottom: 0;
}

.donate-now-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

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

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

.donate-now-item-content{
	width: calc(100% - 65px);
}

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

.donate-now-item-content p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.donate-now-body-list{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

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

.donate-now-body-list ul li{
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 25px;
}

.donate-now-body-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.donation-box{
	height: 100%;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 50px;
	margin-left: 15px;
}

.donation-box .section-title h2{
	font-weight: 500;
}

.donation-form .form-group{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.donation-form .form-group .form-control{
	width: auto;
	min-width: 220px;
	flex-grow: 1;
	font-size: 16px;
	line-height: 1.143em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border-radius: 5px;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.donation-form .form-group .form-control::placeholder{
	font-size: 14px;
	color: var(--white-color);
	opacity: 50%;
}

.donation-value-body{
	margin-top: 30px;
}

.donation-value-skillbar-list{
	margin-bottom: 30px;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	font-size: 16px;
	font-weight: 600;
    color: var(--white-color);
}

.skills-progress-bar .skillbar .skill-progress{
    position: relative;
    width: 100%;
    height: 10px;
	background: var(--dark-divider-color);
    border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    border-radius: 10px;
}

.donation-value-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.donation-value-item p{
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 10px;
}

.donation-value-item h3{
	font-size: 20px;
	color: var(--white-color);
}

.donation-pricing-box{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.donation-pricing-list{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	line-height: 0;
}

.donation-pricing-list .donation-value input{
	display: none;
}

.donation-pricing-list .donation-value input[type="radio"]:hover+label,
.donation-pricing-list .donation-value input[type="radio"]:focus+label,
.donation-pricing-list .donation-value input[type="radio"]:checked+label{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donation-pricing-list .donation-value label{
	position: relative;
	font-weight: 500;
	line-height: 1em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border-radius: 100px;
	cursor: pointer;
	overflow: hidden;
	padding: 9px 16px;
	transition: all 0.3s ease-in-out;
}

.donation-form-notice{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.donation-form-notice p{
	color: var(--white-color);
	margin: 0;
}

.donation-form-notice p img{
	width: 100%;
	max-width: 20px;
	margin-right: 5px;
}

/************************************/
/*** 	   13. Our FAQs css	      ***/
/************************************/

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

.faqs-image-box{
	position: relative;
	height: 100%;
	padding: 0 80px 70px 0;
	margin-right: 15px;
}

.faqs-image-box-1{
	position: relative;
	height: 100%;
}

.faq-image{
	height: 100%;
}

.faq-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

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

.faqs-image-box .contact-us-cricle{
	position: absolute;
	top: 100px;
	right: 0;
	transform: translateX(50%);
	z-index: 1;
}

.contact-us-cricle a{
	display: block;
    border-radius: 50%;
    border: 6px solid var(--bg-color);
}

.contact-us-cricle a img{
    width: 100%;
    max-width: 130px;
	aspect-ratio: 1 / 1;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.contact-us-cricle a:hover img{
	animation-play-state: paused;
}

.faq-cta-box{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 295px;
	min-height: 315px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--primary-color);
	border: 6px solid var(--bg-color);
	border-radius: 20px;
	padding: 30px;
	animation: Movestyle 2s infinite alternate linear;
	z-index: 1;
}

@keyframes Movestyle{
	50%{
		transform: translateX(-20px);
	}
}

.faq-cta-rating{
	margin-bottom: 20px;
}

.faq-cta-rating i{
	font-size: 18px;
	color: var(--white-color);
}

.faq-cta-box-header .satisfy-client-image{
	border: 1px solid var(--primary-color);
	margin-left: -10px;
}

.faq-cta-box-header .satisfy-client-image:first-child{
	margin: 0;
}

.faq-cta-box-header .satisfy-client-image figure img{
	max-width: 40px;
}

.faq-cta-google-rating-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.faq-cta-google-rating-box .icon-box img{
	width: 100%;
	max-width: 40px;
}

.faq-cta-google-rating-content h2{
	font-size: 26px;
	color: var(--white-color);
}

.faq-cta-content{
	margin-top: 20px;
}

.faq-cta-content p{
	color: var(--white-color);
	margin: 0;
}

.faq-content-box{
	height: 100%;
	align-content: center;
}

.faq-accordion .accordion-item{
    position: relative;
    background: var(--secondary-color);
    border-radius: 14px;
    margin-bottom: 25px;
    overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 23px 60px 23px 23px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f055';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 50%;
    right: 23px;
	line-height: 1em;
    font-size: 30px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f056';
}

.faq-accordion .accordion-item .accordion-body{  
	border-top: 1px solid var(--divider-color);
    padding: 23px;
}

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

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonial{
	position: relative;
	padding: 60px 60px 60px calc(((100vw - 1300px) / 2) + 10px);
}

.our-testimonial .container-fluid{
	padding: 0;
}

.our-testimonial-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.our-testimonial-image figure{
	position: relative;
	display: block;
	height: 100%;
}

.our-testimonial-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(33, 41, 59, 0.00) 50%, rgba(33, 41, 59, 0.90) 90%);
    width: 100%;
    height: 100%;
	z-index: 1;
}

.our-testimonial-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-testimonial-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	z-index: 2;
}

.testimonial-title-box{
	align-content: end;
	margin-bottom: 3.125vw;
}

.testimonial-slider,
.testimonial-title-box{
	width: calc(50% - 15px);
	max-width: 640px;
}

.testimonial-title-box .section-title{
    margin-bottom: 0;
}

.testimonial-slider{
	min-height: 730px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 60px;
}

.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-item{
	height: 100%;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.testimonial-item-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
}

.testimonial-item-rating i{
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-quote img{
	width: 100%;
	max-width: 40px;
}

.testimonial-item-content p{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
}

.testimonial-item-content p:last-child{
	margin-bottom: 0;
}

.testimonial-item-author{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

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

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

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

.testimonial-author-content h2{
	font-size: 20px;
}

.testimonial-author-content p{
	margin: 5px 0 0;
}

/************************************/
/*** 	   15. Our Blog css	      ***/
/************************************/

.our-blog{
	padding: 120px 0 90px;
}

.post-item{
	position: relative;
	min-height: 480px;
	align-content: end;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.post-item .post-featured-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post-item .post-featured-image a{
	display: block;
	height: 100%;
	cursor: none;
}

.post-item .post-featured-image figure{
	position: relative;
    display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.post-item .post-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(33, 41, 59, 1) 100%);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.post-item .post-featured-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

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

.post-item-body{
	position: relative;
	transform: translateY(60px);
    transition: all 0.5s ease-in-out;
	z-index: 1;
}

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

.post-item-meta{
	margin-bottom: 20px;
}

.post-item-meta ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-item-meta ul li{
	display: flex;
    align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	color: var(--white-color);
}

.post-item-meta ul li img{
	width: 100%;
    max-width: 20px;
	margin-right: 10px;
}

.post-item-content h2{
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-item-content h2 a{
	color: inherit;
}

.post-item-btn{
	visibility: hidden;
	opacity: 0;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-item-btn{
	visibility: visible;
	opacity: 1;
}

.post-item-btn .readmore-btn{
	color: var(--white-color);
}

.post-item-btn .readmore-btn::before{
	background-image: url('../images/arrow-white.svg');
}

/************************************/
/*** 	    16. Footer css	      ***/
/************************************/

.main-footer{
	padding: 100px 0 0;
}

.footer-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 80px;
}

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

.footer-social-links{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.footer-social-links h2{
 	font-size: 20px;
	color: var(--white-color);
}

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

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

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

.footer-social-links ul li i{
	font-size: 18px;
	color: var(--white-color);
}

.footer-links-box{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-links{
	max-width: 25%;
}

.footer-links h2{
	font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links ul{
	list-style: disc;
    padding: 0 0 0 20px;
    margin: 0;
}

.footer-links ul li{
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

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

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

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

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

.footer-links.footer-newsletter-form{
	max-width: 34%;
}

.footer-newsletter-form p{
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 26px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background: var(--accent-color);
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
    background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img{
    width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
    transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-copyright-text{
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    padding: 60px 0;
    margin-top: 80px;
}

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

/************************************/
/*** 	17. About Us Page css	  ***/
/************************************/

.page-header{
    position: relative;
    background-image: url('../newimg/aboutbg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 280px 0 170px;
    overflow: hidden;
}

.page-header:before{
   	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(33, 41, 59, 0.90) 32.01%, transparent 62.16%);
    height: 100%;
    width: 100%;
	z-index: 1;
}

.page-header-box{
    position: relative;
    z-index: 2;
}

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

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

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

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

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

.our-approach{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.our-approach::before,
.our-approach::after{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.our-approach::before{
	top: -20px;
	right: 0;
	background-image: url('../images/section-bg-shape-1.png');
	width: 220px;
	height: 240px;
}

.our-approach::after{
	bottom: -30px;
	left: 30px;
	background-image: url('../images/section-bg-shape-2.png');
	width: 220px;
	height: 365px;
}

.our-approach .container{
	position: relative;
	z-index: 1;
}

.approach-item{
	background-color: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.5s ease-in-out;
}

.approach-item:hover{
    transform: translateY(-5px);
}

.approach-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin: 0 10px 20px;
}

.approach-item-header .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.approach-item-header .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

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

.approach-item-header .icon-box img{
	position: relative;
    width: 100%;
    max-width: 24px;
	z-index: 1;
}

.approach-item-title{
	width: calc(100% - 65px);
}

.approach-item-title h3{
	font-size: 20px;
}

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

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

.approach-item-content{
	margin: 20px 10px 0;
}

.approach-item-content p:last-child{
	margin-bottom: 0;
}

.our-volunteers{
	padding: 120px 0;
}

.volunteer-item{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.volunteer-item-image a{
    display: block;
    cursor: none;
}

.volunteer-item-image figure{
	position: relative;
    display: block;
	border-radius: 20px;
}

.volunteer-item-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, var(--primary-color) 90%);
	border-radius: 20px;
    z-index: 1;
}

.volunteer-item-image figure img{
    width: 100%;
    aspect-ratio: 1 / 1.176;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.volunteer-item:hover .volunteer-item-image figure img{
	transform: scale(1.06);
}

.volunteer-social-list{
	position: absolute;
	right: 40px;
	top: 40px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.volunteer-item:hover .volunteer-social-list{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
} 

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

.volunteer-social-list ul li{
	margin-bottom: 15px;
}

.volunteer-social-list ul li:last-child{
	margin-bottom: 0;
}

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

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

.volunteer-social-list ul li a i{
    font-size: 18px;
	color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.volunteer-item-content{
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

.volunteer-item-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.volunteer-item-content h2 a{
	color: inherit;
}

.volunteer-item-content p{
    color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 15px;
    margin: 15px 0 0;
}

.volunteer-pagination.swiper-pagination-bullets{
	text-align: center;
	margin-top: 40px;
}

.volunteer-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: var(--divider-color);
	border-radius: 100px;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.3s ease-in-out;
}

.volunteer-pagination .swiper-pagination-bullet-active{
	width: 30px;
	background: var(--accent-color);
}

.our-volunteers .section-footer-text{
    margin-top: 40px;
}

/************************************/
/*** 	 18. Services Page css    ***/
/************************************/

.page-services{
	padding: 120px 0 90px;
}

.page-services .service-item{
	width: 100%;
	min-height: 425px;
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	border: 0;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
}

.page-services .service-item:hover{
	transform: translateY(-5px);
}

.page-services .service-item-btn{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 0;
}

/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/

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

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

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

.page-category-list .page-category-list-title{
	font-size: 20px;
	color: var(--white-color);
	background: var(--accent-color);
    padding: 18px 40px;
}

.page-category-list ul{
	list-style: none;
    margin: 0;
	padding: 40px;
}

.page-category-list ul li{
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a{
    position: relative;
    display: block;
	color: inherit;
    padding-right: 20px;
	transition: all 0.4s ease-in-out;
}

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

.page-category-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
    width: 14px;
    height: 14px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/sidebar-cta-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

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

.sidebar-cta-header,
.sidebar-cta-contact-list{
	position: relative;
	z-index: 2;
}

.sidebar-cta-header .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

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

.sidebar-cta-box:hover .sidebar-cta-header .icon-box::before{
	transform: scale(1);
}

.sidebar-cta-header .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.sidebar-cta-box:hover .sidebar-cta-header .icon-box img{
	filter: brightness(1) invert(1);
}

.sidebar-cta-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.sidebar-cta-content p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.sidebar-cta-contact-list{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
}

.sidebar-cta-contact-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-cta-contact-list ul li{
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 10px;
}

.sidebar-cta-contact-list ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-list ul li a{
	color: inherit;
}

.page-single-image{
	margin-bottom: 30px;
}

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

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

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

.service-entry h2{
	font-size: 48px;
	margin-bottom: 20px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 10px;
}

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

.service-entry h2:last-child,
.service-entry h3:last-child,
.service-entry p:last-child{
	margin: 0;
}

.service-contribute-box,
.service-impact-box{
	margin-top: 60px;
}

.service-contribute-image-box{
	position: relative;
	align-content: end;
	min-height: 450px;
	border-radius: 20px;
	padding: 50px;
	margin-top: 40px;
    overflow: hidden;
}

.service-contribute-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.service-contribute-image figure{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.service-contribute-image figure::before{
	content: ' ';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(33, 41, 59, 0.90) 90%);
	width: 100%;
	height: 100%;
}

.service-contribute-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-contribute-item-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.service-contribute-item{
	width: calc(50% - 15px);
}

.service-contribute-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

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

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

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

.service-contribute-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.service-contribute-item-content h3,
.service-contribute-item-content p{
	color: var(--white-color);
}

.service-impact-item-list{
	display: flex;
	flex-wrap: wrap;
	background: var(--secondary-color);
	border-radius: 20px;
	gap: 30px 50px;
	padding: 40px;
	margin-top: 40px;
}

.service-impact-item{
	width: calc(50% - 25px);
}

.service-impact-item h2{
	font-size: 40px;
	line-height: 1em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
}

/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/

.page-blog{
    padding: 120px 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);
}

/************************************/
/*** 	  21. Blog Single css	  ***/
/************************************/

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

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

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

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

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

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

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

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

.post-entry{
	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: 600;
	line-height: 1.2em;
	margin: 0 0 0.42em;
}

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

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

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

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

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

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

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

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

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

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

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

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

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    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: var(--secondary-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

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

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

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.4s 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: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.4s 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;
}

/************************************/
/*** 	 22. Programs Page css	  ***/
/************************************/

.page-programs{
	padding: 120px 0 90px;
}

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

/************************************/
/*** 	 23. Program Single css	  ***/
/************************************/

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

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

.program-entry h2{
	font-size: 48px;
	margin-bottom: 20px;
}

.program-entry h3{
	font-size: 20px;
	margin-bottom: 10px;
}

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

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

.program-entry ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.program-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.program-entry h2:last-child,
.program-entry h3:last-child,
.program-entry p:last-child,
.program-entry ul li:last-child{
	margin-bottom: 0;
}

.program-expect-box,
.program-how-work-box{
	margin-top: 60px;
}

.program-expect-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.program-expect-content,
.program-expect-image{
	width: calc(50% - 15px);
}

.program-expect-content{
	align-content: center;
}

.program-expect-item-list{
	margin-top: 40px;
}

.program-expect-item{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

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

.program-expect-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.program-expect-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

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

.program-expect-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}	

.program-expect-item-content{
	width: calc(100% - 65px);
}

.program-expect-image figure{
	display: block;
    height: 100%;
    border-radius: 20px;
}

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

.program-how-work-accordion{
	margin-top: 40px;
}

.program-how-work-accordion .accordion-item{
	position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.program-how-work-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.program-how-work-accordion .accordion-header{
	margin-bottom: 0;
}

.program-how-work-accordion .accordion-header .accordion-button{
	font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
    padding: 4px 40px 25px 0;
    transition: all 0.3s ease-in-out;
}

.program-how-work-accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed{
 	border-bottom: none;
	padding-bottom: 4px;
}

.program-how-work-accordion .accordion-item .accordion-button::after, 
.program-how-work-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f055';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 0px;
	line-height: 1em;
    font-size: 34px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.program-how-work-accordion .accordion-button:not(.collapsed)::after{
    content: '\f056';
}

.program-how-work-accordion .accordion-item .accordion-body{
    padding: 25px 40px 0 0;
}

/************************************/
/*** 	24. Volunteers Page css	  ***/
/************************************/

.page-volunteers{
	padding: 120px 0 90px;
}

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

/************************************/
/*** 	25. Volunteer Single css  ***/
/************************************/

.page-volunteer-single{
	padding: 120px 0;
}

.volunteer-single-image{
	margin-bottom: 30px;
}

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

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

.volunteer-member-about,
.volunteer-skills-box{
    margin-bottom: 60px;
}

.volunteer-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.volunteer-contact-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px 25px;
}

.volunteer-contact-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

.volunteer-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.volunteer-contact-item-content{
	width: calc(100% - 65px);
}

.volunteer-contact-item-content p{
	margin: 0;
}

.volunteer-contact-item-content h3{
	font-size: 20px;
	margin-top: 5px;
}

.member-social-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.member-social-list h3{
    font-size: 20px;
}

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

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

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

.member-social-list ul li a i{
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

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

.volunteer-skills-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.volunteer-skill-image{
	width: calc(36% - 15px);
}

.volunteer-skill-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.volunteer-skill-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.155;
	object-fit: cover;
	border-radius: 20px;
}

.volunteer-skill-list{
	width: calc(64% - 15px);
	align-content: center;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.volunteer-skill-list .skills-progress-bar .skill-data .skill-title,
.volunteer-skill-list .skills-progress-bar .skill-data .skill-no{
    color: var(--primary-color);
}

.volunteer-skill-list .skills-progress-bar .skillbar .skill-progress{
    height: 6px;
	background: var(--bg-color);
}

.volunteer-skills-box .section-footer-text.section-satisfy-img{
	justify-content: start;
}

.volunteer-skills-box .section-footer-text{
	margin-top: 40px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item{
	min-height: 500px;
	background: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-item-header{
	margin-bottom: 40px;
}

/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 120px 0 90px;
}

.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.8678;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 28. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 120px 0 90px;
}

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

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

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 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.8678;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  29. FAQ's Page css	  ***/
/************************************/

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

.page-faqs .page-single-faqs{
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child{
    margin-bottom: 0px;
}

/************************************/
/*** 	30. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 120px 0 60px;
}

.contact-us-content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	margin-right: 15px;
}

.contact-info-image-box{
	position: relative;
	border-radius: 20px;
	min-height: 415px;
	align-content: end;
	padding: 40px;
	overflow: hidden;
}

.contact-info-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.contact-info-image::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 50%, var(--primary-color) 90%);
	height: 100%;
	width: 100%;
}

.contact-info-image figure{
    display: block;
	height: 100%;
}

.contact-info-image figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-info-item-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	z-index: 1;
}

.contact-info-item{
	position: relative;
	width: calc(50% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.contact-info-item::before{
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.contact-info-item:nth-child(2n - 2):before,
.contact-info-item:last-child:before{
	display: none;
}

.contact-info-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

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

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

.contact-info-item-content{
	width: calc(100% - 65px);
}

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

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

.contact-info-item-content h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
	font-size: 15px;
}

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

.page-contact-us .contact-us-form{
	height: 100%;
	align-content: center;
}

.contact-us-form{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 50px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background: var(--bg-color);
	border: none;
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
}

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

.google-map{
	padding: 60px 0 120px;
}

.google-map-iframe{
	width: 100%;
    height: 650px;
	border-radius: 20px;
	overflow: hidden;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
}

/************************************/
/*** 	 31. 404 Error Page css	  ***/
/************************************/

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

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

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

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

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){

	.our-testimonial{
		padding: 40px;
	}
}

@media only screen and (max-width: 1024px){

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

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

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

	.hero::before{
		background: var(--primary-color);
		opacity: 45%;
	}

	.hero-content-box{
		min-height: auto;
		gap: 20px;
		margin: 0 0 30px;
	}

	.hero-sub-heading-box{
		max-width: 100%;
	}

	.hero-body{
		height: auto;
		flex-direction: row-reverse;
		justify-content: left;
		align-items: center;
	}

	.about-us-image-box{
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.about-us-image.box-1 figure img{
		aspect-ratio: 1 / 1.05;
	}

	.about-us-image.box-2 figure img{
		aspect-ratio: 1 / 1.2;
	}

	.about-us-image.box-3 figure img{
		aspect-ratio: 1 / 1;
	}

	.our-services::before{
		width: 150px;
    	height: 170px;
		opacity: 50%;
	}
	
	.our-services::after{
		width: 140px;
		height: 232px;
		opacity: 50%;
	}

	.services-item-list .service-item{
		padding: 20px;
	}

	.service-cta-box{
      padding: 30px 30px 0;
	}

	.service-cta-image figure{
		margin: 0 -10px;
	}

	.why-choose-image-box{
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.why-choose-image.image-1 figure,
	.why-choose-image.image-2 figure img,
	.why-choose-content{
		height: auto;
	}

	.why-choose-image.image-1 figure img{
		aspect-ratio: 1 / 1.2;
	}

	.our-features::before{
		width: 150px;
        height: 170px;
        opacity: 50%;
	}

	.feature-item-content{
		width: 100%;
	}

	.feature-counter-item-list{
		gap: 30px;
	}

	.feature-counter-item{
		width: calc(33.33% - 20px);
	}

	.donate-now-content{
		position: initial;
		min-height: auto;
		margin-bottom: 30px;
	}

	.donation-box{
		height: auto;
		min-height: auto;
		margin: 0;
		padding: 30px;
	}

	.faqs-image-box{
		height: auto;
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.faqs-image-box-1,
	.faq-image,
	.faq-image figure,
	.faq-image figure img{
		height: auto;
	}

	.faq-image img{
		aspect-ratio: 1 / 1.1;
	}

	.faq-cta-box{
		max-width: 270px;
		min-height: auto;
		padding: 20px;
	}

	.our-testimonial{
		padding: 0;
	}

	.our-testimonial-image{
		position: initial;
		height: auto;
	}

	.our-testimonial-image figure{
		height: auto;
	}

	.our-testimonial-image figure::before{
		display: none;
	}

	.our-testimonial-image figure img{
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-box{
		padding: 60px 15px;
	}

	.testimonial-slider,
	.testimonial-title-box{
		width: 100%;
		max-width: 100%;
	}

	.testimonial-title-box{
		margin-bottom: 0;
	}

	.testimonial-slider{
		min-height: auto;
		padding: 30px;
	}

	.testimonial-slider .swiper,
	.testimonial-slider .swiper-wrapper,
	.testimonial-item{
		height: auto;
	}

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

	.footer-header{
		margin-bottom: 30px;
        padding-bottom: 30px;
	}

	.footer-links{
		max-width: 33%;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-links.footer-newsletter-form{
		width: 100%;
		max-width: 100%;
	}

	.footer-links.footer-newsletter-form h2{
		margin-bottom: 15px;
	}

	.footer-links.footer-newsletter-form p{
		margin-bottom: 20px;
	}

	.footer-copyright-text{
		padding: 30px 0;
		margin-top: 30px;
	}

	.our-approach::before{
		width: 150px;
        height: 170px;
        opacity: 50%;
    }

	.our-approach::after{
		width: 140px;
        height: 232px;
        opacity: 50%;
	}

	.page-single-sidebar{
		margin-right: 0;
	}

	.page-category-list .page-category-list-title{
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
		min-height: 300px;
		padding: 20px;
	}

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

	.service-contribute-box,
	.service-impact-box{
		margin-top: 40px;
	}

	.service-contribute-image-box{
		min-height: 400px;
		margin-top: 30px;
		padding: 30px;
	}

	.service-impact-item-list{
		margin-top: 30px;
		padding: 30px;
	}

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

	.program-expect-box,
	.program-how-work-box{
		margin-top: 40px;
	}

	.program-expect-content,
	.program-expect-image{
		width: 100%;
	}

	.program-expect-item-list{
		margin-top: 30px;
	}

	.program-expect-image figure,
	.program-expect-image img{
		height: auto;
	}

	.program-expect-image img{
		aspect-ratio: 1 / 0.6;
	}

	.program-how-work-accordion{
		margin-top: 30px;
	}

	.volunteer-member-about,
	.volunteer-skills-box{
		margin-bottom: 40px;
	}

	.volunteer-contact-list{
		gap: 20px;
	}

	.volunteer-contact-item{
		width: calc(50% - 10px);
		padding: 20px;
	}

	.volunteer-contact-item-content h3{
		font-size: 18px;
	}

	.member-social-list{
		padding-top: 30px;
		margin-top: 30px;
	}

	.volunteer-skills-body{
		gap: 20px;
	}

	.volunteer-skill-image{
		width: calc(40% - 10px);
	}

	.volunteer-skill-list{
		width: calc(60% - 10px);
		padding: 30px;
	}

	.volunteer-skills-box .section-footer-text{
		margin-top: 30px;
	}

	.page-testimonials .testimonial-item{
		min-height: auto;
	}

	.page-testimonials .testimonial-item .testimonial-item-header{
		margin-bottom: 30px;
	}

	.contact-us-content{
		height: auto;
        margin: 0px 0px 30px;
    }

	.page-contact-us .contact-us-form{
		height: auto;
	}

	.google-map-iframe{
		height: 500px;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 15px 52px 15px 15px;
	}

	.btn-default::before{	
        width: 36px;
        height: 36px;
	}

	header.main-header{
		position: relative;
		top: 0px;
		right: 0px;
		left: 0px;
	}

	header.main-header .header-sticky{
		width: 100%;
		border-radius: 0;
	}
	
	header.main-header .header-sticky.active{
        width: 100%;
		border-radius: 0;
        top: 0;
		left: 0;
		right: 0;
		border-top: none;
		border-right: none;
		border-left: none;
	}

	.navbar{
		padding: 20px 0;
	}

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

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

	.header-btn{
		display: none;
	}

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

	.section-title .section-sub-title{
		padding: 8px 12px 8px 25px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before{
		left: 12px;
	}

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

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

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

	.hero{
		min-height: 720px;
		padding: 60px 0;
	}

	.hero-sub-heading{
		padding: 4px 14px 4px 4px;
		margin-bottom: 15px;
	}

	.satisfy-client-image figure img{
		max-width: 40px;
	}

	.satisfy-client-image.add-more{
		width: 42px;
		height: 42px;
	}

	.satisfy-client-image.add-more i{
		font-size: 18px;
	}

	.satisfy-client-image.add-more img{
		max-width: 20px;
	}

	.satisfy-client-image.add-more h3{
		font-size: 16px;
	}

	.hero-rating-box{
		padding: 20px;
	}

	.hero-rating-box h2 span{
		font-size: 22px;
	}

	.hero-rating-box h2 i{
		font-size: 18px;
	}

	.hero-rating-box p{
		font-size: 18px;
		margin-top: 15px;
		padding-top: 15px;
	}

	.watch-video-circle a img{
        max-width: 100px;
    }

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

	.about-us-item-list{
		padding: 30px;
	}

	.about-us-item{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

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

	.about-us-author-image figure img{
		max-width: 46px;
	}

	.about-us-author-content h3{
		font-size: 18px;
	}

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

	.services-item-list{
		margin-bottom: 30px;
	}

	.service-cta-box{
		flex-direction: column;
		align-items: center;
		height: auto;
	}

	.service-cta-image figure{
		max-width: 380px;
		margin: 0 auto;
	}

	.our-services .section-footer-text{
		margin-top: 40px;
	}

	.section-footer-text,
	.section-footer-text ul{
		margin-top: 10px;
	}

	.section-footer-text ul li{
		margin-right: 5px;
		padding-right: 10px;
	}

	.section-footer-text p span{
		font-size: 12px;
		padding: 4px 10px;
		margin-right: 5px;
	}

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

	.why-choose-body-content ul li{
		margin-bottom: 10px;
	}

	.why-choose-body-content ul li::before{
		font-size: 16px;
	}

	.why-choose-btn{
		padding-top: 30px;
		margin-top: 30px;
	}

	.our-story{
		padding: 60px 0;
		min-height: 580px;
	}

	.our-story-content .watch-video-circle{
		margin-top: 90px;
	}

	.our-causes{
		padding: 60px 0;
	}

	.our-causes-item{
		min-height: 400px;
		padding: 30px;
	}

	.our-causes-item-tag span{
		font-size: 14px;
		padding: 7px 14px;
	}

	.our-causes-item-button{
		padding-top: 15px;
		margin-top: 15px;
	}

	.our-features{
		padding: 60px 0 0;
	}

	.feature-item{
		width: calc(50% - 15px);
	}

	.feature-counter-item-list{
		padding: 30px;
		margin: 40px 10px 0;
	}

	.feature-counter-item-list::before{
		top: -10px;
		right: -10px;
		left: -10px;
		width: calc(100% + 20px);
		height: calc(100% + 10px);
	}

	.feature-counter-item .icon-box{
		margin-bottom: 20px;
	}

	.feature-counter-item-content h2{
    	font-size: 34px;
	}

	.our-programs{
    	padding: 60px 0;
	}

	.program-item-body{
		padding: 10px;
	}

	.program-item-meta{
		margin-bottom: 15px;
	}

	.program-item-btn{
		padding-top: 15px;
		margin-top: 15px;
	}

	.programs-pagination.swiper-pagination-bullets{
    	margin-top: 30px;
	}

	.our-programs .section-footer-text{
		margin-top: 20px;
	}

	.donate-now{
		padding: 60px 0;
	}

	.donate-now-body-list ul li::before{
		font-size: 16px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.donation-pricing-list .donation-value label{
		font-size: 14px;
		padding: 7px 14px;
	}

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

	.contact-us-cricle a img{
		max-width: 110px;
	}

	.faq-cta-content{
		margin-top: 15px;
	}

	.faq-cta-google-rating-content h2{
		font-size: 22px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 24px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

	.testimonial-item-rating i{
		font-size: 18px;
	}

	.testimonial-item-quote img{
		max-width: 36px;
	}

	.testimonial-item-content p{
		font-size: 18px;
	}

	.our-blog{
		padding: 60px 0 30px;
	}

	.post-item{
		min-height: 400px;
		padding: 30px;
	}

	.post-item-meta{
		margin-bottom: 15px;
	}

	.main-footer{
		padding: 60px 0 0;
	}

	.page-header{
		padding: 90px 0;
	}

	.page-header-box h1{
		font-size: 44px;
	}
	
	.our-approach{
		padding: 60px 0;
	}

	.approach-item{
		padding: 20px;
	}

	.our-volunteers{
		padding: 60px 0;
	}

	.volunteer-social-list{
		right: 30px;
		top: 30px;
	}

	.volunteer-item-content{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}
	
	.volunteer-pagination.swiper-pagination-bullets{
		margin-top: 30px;
	}

	.our-volunteers .section-footer-text{
		margin-top: 20px;
	}

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

	.page-services .service-item{
		min-height: 330px;
		padding: 30px;
	}

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

	.page-single-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.page-single-image{
		margin-bottom: 20px;
	}

	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

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

	.service-impact-item-list{
		gap: 30px;
		padding: 30px;
	}

	.service-impact-item{
		width: calc(50% - 15px);
	}

	.service-impact-item h2{
		font-size: 34px;
		padding-bottom: 15px;
	}

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

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 60px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-programs{
		padding: 60px 0 30px;
	}

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

	.program-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

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

	.program-entry ul li{
		margin-bottom: 10px;
	}

	.program-entry ul li::before{
		font-size: 16px;
	}

	.program-how-work-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.program-how-work-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 2px 35px 15px 0;
	}

	.program-how-work-accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed{
		padding-bottom: 2px;
	}

	.program-how-work-accordion .accordion-item .accordion-button::after, 
	.program-how-work-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 26px;
	}

	.program-how-work-accordion .accordion-item .accordion-body{
		padding: 15px 30px 0 0;
	}

	.page-volunteers{
		padding: 60px 0 30px;
	}

	.page-volunteer-single{
		padding: 60px 0;
	}

	.volunteer-single-image img{
		aspect-ratio: 1 / 0.82;
	}

	.page-testimonials{
		padding: 60px 0 30px;
	}

	.page-testimonials .testimonial-item{
		padding: 30px;
	}

	.page-gallery{
        padding: 60px 0 30px;
    }

	.page-video-gallery{
        padding: 60px 0 30px;
    }

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

	.page-faqs .page-single-faqs{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 60px 0 30px;
	}

	.contact-info-image-box,
	.contact-us-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 13px 15px;
	}

	.google-map{
		padding: 30px 0 60px;
	}

	.error-page{
		padding: 60px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px){

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

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

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

	.hero-sub-heading .satisfy-client-image figure img{
		max-width: 26px;
	}

	.hero-body{
		gap: 20px;
	}

	.hero-rating-box{
		max-width: 100%;
		width: calc(100% - 112px);
	}

	.hero-rating-box h2 span{
		font-size: 20px;
	}

	.hero-rating-box h2 i{
		font-size: 16px;
	}

	.hero-rating-box p{
		font-size: 16px;
	}

	.watch-video-circle a img{
		max-width: 90px;	
	}

	.about-us-image.box-1 figure,
	.about-us-image.box-3 figure{
		border-width: 3px;
		border-radius: 20px;
	}

	.about-us-image.box-1 figure{
		margin-right: -94px;
	}

	.about-us-image.box-2{
		padding: 40px 0 50px;
	}

	.about-us-image.box-3 figure{
		margin-left: -88px;
	}

	.about-us-item-list{
		padding: 20px;
	}

	.about-us-item{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.about-us-item-content{
		width: 100%;
	}

	.about-us-item-content h3{
    	font-size: 18px;
	}

	.about-content-footer{
		gap: 20px;
	}

	.about-us-author-content h3{
    	font-size: 16px;
	}

	.about-us-author-content p{
		font-size: 14px;
	}

	.our-services::before{
		width: 100px;
		height: 110px;
	}

	.our-services::after{
		left: 10px;
		width: 120px;
		height: 200px;
	}

	.services-item-list .service-item{
		width: 100%;
		border-right: none;
		padding: 0 0 20px;
		margin-bottom: 20px;
	}

	.services-item-list .service-item:last-child{
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.services-item-list .service-item:nth-last-child(2):nth-child(odd){
		border-bottom: 1px solid var(--divider-color);
	}

	.service-item-contant h2{
    	font-size: 18px;
	}

	.service-cta-box{
        padding: 20px 20px 0;
    }

	.service-cta-content h3{
    	font-size: 18px;
	}

	.service-cta-btn{
		margin-top: 20px;
	}

	.service-cta-image figure{
        max-width: 280px;
    }

	.section-footer-text ul li{
		font-size: 14px;
	}

	.why-choose-image-box{
		padding-left: 30px;
	}

	.why-choose-image.image-1 figure img{
        aspect-ratio: 1 / 1.465;
    }

	.why-choose-image.image-2{
		padding-bottom: 30px;
	}
	
	.why-choose-image.image-2 figure{
		border-width: 3px;
		border-radius: 23px;
		margin-left: -100px;
	}

	.why-choose-volunteer-box{
		top: 30px;
		max-width: 140px;
		border-width: 4px;
		padding: 12px;
	}

	.why-choose-volunteer-item-content h2{
		font-size: 14px;
		margin-bottom: 15px;
	}

	.why-choose-volunteer-box .satisfy-client-image{
		margin-left: -10px;
	}

	.why-choose-volunteer-box .satisfy-client-image:first-child{
		margin: 0;
	}

	.why-choose-volunteer-box .satisfy-client-image figure img{
		max-width: 30px;
	}

	.why-choose-body-content{
		width: 100%;
		padding: 10px;
	}

	.why-choose-body-content h3{
		font-size: 18px;
	}

	.why-choose-body-content ul{
    	margin: 15px 0 0;
    	padding: 15px 0 0;
	}

	.why-choose-body-image{
		width: 100%;
		max-width: 100%;
	}

	.why-choose-body-image figure,
	.why-choose-body-image figure img{
		height: auto;
	}

	.our-story{
		min-height: 520px;
	}

	.our-story-content .watch-video-circle{
		margin-top: 50px;
	}

	.our-causes-item{
        min-height: 360px;
        padding: 20px;
    }

	.our-causes-item-content h2{
		font-size: 18px;
	}

	.our-features::before{
        width: 100px;
        height: 110px;
    }

	.feature-item{
		width: 100%;
	}

	.feature-item-content{
		width: calc(100% - 65px);
	}

	.feature-item-content h3{
		font-size: 18px;
	}

	.feature-counter-item-list{
		padding: 20px;
	}

	.feature-counter-item{
		width: 100%;
	}

	.feature-counter-item .icon-box{
        margin-bottom: 20px;
    }

	.feature-counter-item-content h2{
        font-size: 28px;
		padding-bottom: 15px;
		margin-bottom: 15px;
    }

	.feature-counter-item-content h3{
    	font-size: 18px;
	}

	.program-item-meta ul li img{
		max-width: 18px;
	}

	.program-item-content h2{
    	font-size: 18px;
	}

	.donate-now-item-content{
		width: 100%;
	}

	.donate-now-item-content h3{
		font-size: 18px;
	}

	.donate-now-body-list{
		padding-top: 20px;
		margin-top: 20px;
	}

	.donate-now-body-list ul{
		gap: 10px;
	}

	.donate-now-body-list ul li{
		width: 100%;
	}

	.donation-box{
		gap: 20px;
		padding: 20px;
	}

	.donation-form .form-group{
		gap: 5px;
	}

	.donation-form .form-group .form-control{
		width: calc(100% - 55px);
		padding: 10px 12px;
	}

	.donation-form .form-group .btn-default{
		font-size: 0;
		width: 36px;
		height: 36px;
		padding: 0;
	}

	.donation-form .form-group .btn-default::before{
		right: 0;
	}

	.donation-value-body{
		margin-top: 20px;
	}

	.donation-value-skillbar-list,
	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.donation-value-item h3{
		font-size: 18px;
	}

	.donation-pricing-box{
		padding-top: 20px;
		margin-top: 20px;
	}

	.donation-pricing-list{
		gap: 10px;
	}

	.donation-form-notice{
		padding-top: 20px;
	}

	.donation-form-notice p{
		font-size: 14px;
	}

	.donation-form-notice p img{
		max-width: 18px;
	}

	.faqs-image-box{
		padding: 0 45px 50px 0;
	}

	.faq-image img{
        aspect-ratio: 1 / 1.2;
    }

	.faqs-image-box .contact-us-cricle{
		top: 35px;
	}

	.contact-us-cricle a{
		border-width: 3px;
	}

	.contact-us-cricle a img{
		max-width: 90px;
	}

	.faq-cta-box{
		max-width: 195px;
		gap: 15px;
		border-width: 4px;
		padding: 15px;
	}

	.faq-cta-rating{
		margin-bottom: 15px;
	}

	.faq-cta-rating i{
		font-size: 14px;
	}

	.faq-cta-box-header .satisfy-client-image figure img{
		max-width: 34px;
	}

	.faq-cta-google-rating-box{
		gap: 10px;
	}

	.faq-cta-google-rating-box .icon-box img{
		max-width: 30px;
	}

	.faq-cta-google-rating-content h2{
		font-size: 18px;
	}

	.faq-cta-content{
        margin-top: 10px;
    }

	.faq-cta-content p{
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button{
        font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
        font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.testimonial-slider{
		padding: 20px;
	}

	.testimonial-item{
		gap: 20px;
    }

	.testimonial-item-header{
		margin-bottom: 20px;
	}

	.testimonial-item-rating i,
	.testimonial-item-content p{
		font-size: 16px;
	}

	.testimonial-item-quote img{
		max-width: 32px;
	}

	.testimonial-item-author{
		padding-top: 20px;
	}

	.testimonial-author-content h2{
		font-size: 18px;
	}

	.post-item{
		min-height: 350px;
		padding: 20px;
	}

	.post-item-meta ul li img{
		max-width: 18px;
	}
	
	.post-item-content h2{
		font-size: 18px;
	}

	.post-item-body{
		transform: translateY(55px);
	}

	.post-item-btn{
		padding-top: 15px;
		margin-top: 15px;
	}

	.footer-social-links,
	.footer-social-links ul{
		gap: 10px;
	}

	.footer-social-links h2{
		font-size: 18px;
	}

	.footer-social-links ul li a{
		width: 36px;
		height: 36px;
	}

	.footer-social-links ul li a i{
		font-size: 16px;
	}

	.footer-links{
		max-width: 100%;
	}

	.footer-links h2{
        font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-newsletter-form .form-group .form-control{
		width: calc(100% - 34px);
		padding: 6px 20px 18px 0;
	}

	.footer-newsletter-form .form-group .newsletter-btn{
		width: 34px;
    	height: 34px;
	}
	
	.footer-copyright-text{
        padding: 15px 0;
    }

	.page-header-box h1{
		font-size: 28px;
	}

	.our-approach::before{
		width: 100px;
		height: 110px;
	}

	.our-approach::after{
		left: 10px;
        width: 120px;
		height: 200px;
	}

	.approach-item-header .icon-box{
		width: 40px;
		height: 40px;
	}

	.approach-item-header .icon-box img{
		max-width: 18px;
	}

	.approach-item-title h3{
		font-size: 18px;
	}

	.volunteer-social-list{
        right: 20px;
        top: 20px;
    }
	
	.volunteer-item-content{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.volunteer-item-content h2{
		font-size: 18px;
	}

	.volunteer-item-content p{
		padding-top: 10px;
		margin: 10px 0 0;
	}

	.page-services .service-item{
        min-height: auto;
		gap: 20px;
        padding: 20px;
    }

	.page-services .service-item-btn{
		padding-top: 20px;
	}

	.page-category-list .page-category-list-title{
		font-size: 18px;
	}

	.sidebar-cta-box{
		min-height: auto;
	}

	.sidebar-cta-content h2{
		font-size: 18px;
	}

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry h3{
		font-size: 18px;
	}

	.service-contribute-image-box{
		min-height: auto;
		padding: 20px;
	}

	.service-contribute-image figure::before{
		background: var(--primary-color);
		opacity: 50%;
	}

	.service-contribute-item{
		width: 100%;
	}

	.service-contribute-item .icon-box{
		margin-bottom: 15px;
	}

	.service-impact-item-list{
		padding: 20px;
	}

	.service-impact-item{
		width: 100%;
	}

	.service-impact-item h2{
		font-size: 24px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		Background-size: 30px;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p{
		font-size: 16px;
	}

	.post-entry h2{
		font-size: 26px;
	}
	
	.tag-links{
		font-size: 18px;
	}

	.program-entry h2{
		font-size: 26px;
	}

	.program-entry h3{
		font-size: 18px;
	}

	.program-how-work-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 2px 28px 12px 0;
	}

	.program-how-work-accordion .accordion-item .accordion-button::after,
	.program-how-work-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 20px;
	}

	.program-how-work-accordion .accordion-item .accordion-body{
		padding: 12px 0 0;
	}

	.volunteer-single-image img{
		aspect-ratio: 1 / 1.2;
	}
	
	.volunteer-contact-item{
		width: 100%;
		padding: 15px;
	}

	.volunteer-contact-item .icon-box{
		width: 44px;
		height: 44px;
	}

	.volunteer-contact-item .icon-box img{
		max-width: 20px;
	}

	.volunteer-contact-item-content{
		width: calc(100% - 59px);
	}

	.volunteer-contact-item-content h3{
        font-size: 16px;
    }

	.member-social-list{
		gap: 10px;
	}

	.member-social-list h3{
		font-size: 18px;
	}

	.member-social-list ul{
		gap: 10px;
	}

	.member-social-list ul li a{
		width: 36px;
    	height: 36px;
	}

	.volunteer-skill-image,
	.volunteer-skill-list{
		width: 100%;
	}

	.volunteer-skill-image figure,
	.volunteer-skill-image img{
		height: auto;
	}

	.volunteer-skill-image img{
    	aspect-ratio: 1 / 1.155;
	}

	.volunteer-skill-list{
		padding: 20px;
	}

	.page-volunteer-single .section-footer-text.section-satisfy-img{
    	justify-content: center;
	}

	.page-testimonials .testimonial-item{
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-item-header{
		margin-bottom: 20px;
	}

	.contact-info-image-box{
		padding: 20px;
	}

	.contact-info-item-list{
		gap: 20px;
	}

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

	.contact-info-item::before{
		display: none;
	}

	.contact-info-item-content h3{
		font-size: 18px;
	}

	.contact-us-form{
        padding: 20px;
    }

	.google-map-iframe{
		height: 350px;
	}
}

/************************************/
/***   33. Home - Version 2 css   ***/
/************************************/

.hero-gold{
	position: relative;
	align-content: end;
	min-height: 750px;
	height: 100vh;
	padding: 240px 0 80px;
}

.hero-gold::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(33, 41, 59, 0.80) 0%, transparent 16.15%), linear-gradient(180deg, transparent 50%, rgba(33, 41, 59, 0.54) 73.21%, rgba(33, 41, 59, 0.90) 99.77%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.hero-gold .container{
	position: relative;
	z-index: 2;
}

.hero-gold .section-title{
	margin-bottom: 0;
}

.hero-info-box-gold{
	max-width: 415px;
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 10px;
	margin-left: auto;
}

.hero-info-list-gold{
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 20px;
}

.hero-info-list-gold ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.hero-info-list-gold ul li{
	position: relative;
    line-height: 1.5em;
	color: var(--white-color);
    padding-left: 25px;
	margin-bottom: 15px;
}

.hero-info-list-gold ul li:last-child{
	margin-bottom: 0px;
}

.hero-info-list-gold ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--white-color);
    top: 0;
    left: 0;
}

.hero-progress-bar-gold{
	padding: 30px 20px 20px;
}

.hero-progress-bar-gold .skills-progress-bar .skill-data .skill-title,
.hero-progress-bar-gold .skills-progress-bar .skill-data .skill-no{
	font-weight: 500;
}

.hero-progress-bar-gold .skills-progress-bar .skillbar .skill-progress{
	background: var(--dark-divider-color);
}

.about-us-gold{
	padding: 120px 0;
}

.about-image-box-gold{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.about-image-box-1-gold{
	width: 50%;
	display: flex;
	flex-direction: column;
}

.about-us-image-gold figure{
	display: block;
	border-radius: 20px;	
}

.about-us-image-gold figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-image-box-1-gold .about-us-image-gold{
	height: 100%;
}

.about-image-box-1-gold .about-us-image-gold figure{
	margin-right: -222px;
	height: 100%;
}

.about-image-box-1-gold .about-us-image-gold figure img{
	height: 100%;
	aspect-ratio: 1 / 0.936;
}

.about-image-box-2-gold{
	position: relative;
	width: 50%;
	margin-top: auto;
	z-index: 1;
}

.about-image-box-2-gold figure{
	border: 10px solid var(--bg-color);
	border-radius: 30px;
}

.about-image-box-2-gold .about-us-image-gold figure img{
	aspect-ratio: 1 / 1.392;
}

.about-us-counter-box-gold{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 20px;
	margin: 20px 10px 0 20px;
}

.about-us-counter-box-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.about-us-counter-box-gold:hover .icon-box::before{
	transform: scale(1);
}

.about-us-counter-box-gold .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-counter-content-gold{
	width: calc(100% - 65px);
}

.about-counter-content-gold h2{
	font-size: 20px;
	color: var(--accent-color);
}

.about-counter-content-gold p{
	margin: 5px 0 0;
}

.about-us-content{
	height: 100%;
	align-content: center;
}

.about-us-item-gold{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.about-us-item-gold:last-child{
	margin-bottom: 0;
}

.about-us-item-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

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

.about-us-item-gold:hover .icon-box::before{
	transform: scale(1);
}

.about-us-item-gold .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content-gold{
	width: calc(100% - 65px);
}

.about-us-item-content-gold h3{
	font-size: 20px;
	line-height: 1.4em;
}

.about-us-item-content-gold p{
	margin: 10px 0 0;
}

.about-us-btn-gold{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.our-service-gold{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	z-index: 1;
}

.our-service-gold .container{
	position: relative;
	z-index: 2;
}

.our-service-gold::before,
.our-service-gold::after{
	content: '';
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.our-service-gold::before{
	top: -20px;
	right: 0;
	background-image: url('../images/section-bg-shape-1.png');
	width: 220px;
	height: 240px;
}

.our-service-gold::after{
	bottom: -30px;
	left: 30px;
	background-image: url('../images/section-bg-shape-2.png');
	width: 170px;
	height: 280px;
}

.service-item-gold{
	position: relative;
	background: var(--bg-color);
	border-radius: 20px;
	min-height: 415px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item-gold::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;
}

.service-item-gold:hover:before{
	top: auto;
    height: 100%;
}

.service-item-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

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

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

.service-item-gold .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.service-item-content-gold{
	position: relative;
	z-index: 1;
}

.service-item-content-gold h2{
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

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

.service-item-content-gold p{
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item-gold:hover .service-item-content-gold h2,
.service-item-gold:hover .service-item-content-gold p{
	color: var(--white-color);
}

.service-item-btn-gold{
	position: relative;
	padding-top: 40px;
	border-top: 1px solid var(--divider-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item-gold:hover .service-item-btn-gold{
	border-color: var(--dark-divider-color);
}

.service-item-gold .service-item-btn-gold .readmore-btn{
	transition: all 0.3s ease-in-out;
}

.service-item-gold:hover .service-item-btn-gold .readmore-btn{
	color: var(--white-color);
}

.service-item-gold:hover .service-item-btn-gold .readmore-btn::before{
	filter: brightness(0) invert(1);
}

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

.why-choose-content-gold{
	align-content: center;
	height: 100%;
}

.why-choose-body-gold{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-body-image-gold{
	width: calc(39% - 15px);
}

.why-choose-body-image-gold figure{
	display: block;
	border-radius: 20px;
	height: 100%;
}

.why-choose-body-image-gold figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.112;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-body-content-gold{
	width: calc(61% - 15px);
	align-content: center;
}

.why-choose-list-gold ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list-gold ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 15px;
}

.why-choose-list-gold ul li:last-child{
	margin-bottom: 0px;
}

.why-choose-list-gold ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.why-choose-btn-gold{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-us-image-gold{
	height: 100%;
	margin-left: 15px;
}

.why-choose-us-image-gold figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.why-choose-us-image-gold figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 20px;
}

.our-programs-gold{
	padding: 120px 0;
}

.program-item-gold{
	position: relative;
	border-radius: 20px;
	align-content: end;
	min-height: 460px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
	overflow: hidden;
}

.program-item-image-gold{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.program-item-image-gold a{
	cursor: none;
}

.program-item-image-gold figure{
	display: block;
	height: 100%;
}

.program-item-image-gold figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.program-item-gold:hover .program-item-image-gold figure img{
	transform: scale(1.06);
}

.program-item-body-gold{
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.program-item-content-gold h2{
	font-size: 20px;
	line-height: 1.4em;
}

.program-item-content-gold p{
	margin: 10px 0 0;
}

.program-item-btn-gold{
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.our-fact-gold{
	padding: 120px 0;
}

.fact-item-gold{
	background: var(--secondary-color);
	border-radius: 20px;
	min-height: 430px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.fact-item-gold:hover{
	transform: translateY(-5px);
}

.fact-item-content-gold h2{
	font-size: 60px;
	color: var(--primary-color);
}

.fact-item-content-gold p{
	margin: 10px 0 0;
}

.fact-item-image-gold figure{
	display: block;
	border-radius: 20px 20px 0 0;
	margin: 0 -40px -40px;
}

.fact-item-image-gold figure img{
	width: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.our-fact-gold .section-footer-text{
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.core-features-gold{
	background-image: url("../images/section-bg-shape-2.png");
	background-position: bottom -30px right 30px;
	background-repeat: no-repeat;
	background-size: 190px auto;
	padding: 120px 0;
}

.features-info-item-box-gold{
	background: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	margin-right: 20px;
	height: 100%;
	overflow: hidden;
}

.features-info-item-gold{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}

.features-info-item-gold:nth-child(even){
	flex-direction: row-reverse;
}

.features-info-item-image-gold{
	width: 50%;
}

.features-info-item-image-gold figure{
	display: block;
	height: 100%;
}

.features-info-item-image-gold figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.867;
	object-fit: cover;
}

.features-info-item-body-gold{
	width: 50%;
	align-content: center;
	text-align: center;
	padding: 30px;
}

.features-info-item-body-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 40px;
	z-index: 1;
}

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

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

.features-info-item-body-gold .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.features-info-item-content-gold h3{
	font-size: 20px;
}

.features-info-item-content-gold p{
	line-height: 1.4em;
	margin: 10px 0 0;
}

.core-features-content-gold{
	height: 100%;
	align-content: center;
}

.core-features-list-gold ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	padding: 0;
	margin: 0;
}

.core-features-list-gold ul li{
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.core-features-list-gold ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.core-features-btn-gold{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-gallery-gold{
	padding: 120px 0;
}

.our-gallery-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-gallery-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;
	margin: 0;
}

.our-gallery-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--text-color);
	font-weight: 500;
	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-gold{
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.gallery-item-image-gold figure{
	position: relative;
	display: block;
	border-radius: 20px;
}

.gallery-item-image-gold figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 74.71%, rgba(33, 41, 59, 0.90) 100%);
	z-index: 1;
}

.gallery-item-image-gold figure img{
	width: 100%;
	aspect-ratio: 1 / 1.187;
	object-fit: cover;
	border-radius: 20px;
}

.gallery-item-title-gold{
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	text-align: center;
	z-index: 2;
}

.gallery-item-title-gold h3{
	font-size: 20px;
	color: var(--white-color);
}

.our-gallery-gold .section-footer-text{
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.donate-now-gold{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.donate-now-image-gold{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.donate-now-image-gold figure{
	position: relative;
	height: 100%;
}

.donate-now-image-gold figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(33, 41, 59, 0.80) 0%, transparent 67.16%);
	z-index: 1;
}

.donate-now-image-gold figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.donate-form-content-box-gold{
	position: relative;
	max-width: 635px;
	background-color: var(--secondary-color);
	border: 1px solid transparent;
	border-radius: 20px;
	margin-left: auto;
	overflow: hidden;
	z-index: 2;
}

.donate-box-gold{
	padding: 40px;
}

.donate-box-title-gold{
	background: var(--bg-color);
	text-align: center;
	padding: 20px;
}

.donate-box-title-gold h2{
	font-size: 18px;
}

.donate-box-content-gold{
	margin-bottom: 30px;
}

.donate-box-content-gold p{
	margin-bottom: 0;
}

.donate-box-header-gold{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 15px;
}

.donate-box-header-title-gold h3{
	font-size: 16px;
}

.donate-box-currency-gold span{
	display: inline-block;
    background: var(--bg-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    padding: 6px 15px;
}

.donate-value-box-gold{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.donate-form-gold .donate-value-gold{
	width: calc(33.33% - 6.66px);
}

.donate-value-box-gold .donate-value-gold input{
	position: absolute;
	left: -9999px;
}

.donate-value-box-gold .donate-value-gold label{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 500;
	line-height: 1em;
	background-color: var(--bg-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 22px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box-gold .donate-value-gold input[type="radio"]:hover+label,
.donate-value-box-gold .donate-value-gold input[type="radio"]:focus+label,
.donate-value-box-gold .donate-value-gold input[type="radio"]:checked+label{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donate-form-gold .form-group{
	margin-bottom: 20px;
}

.donate-form-gold .form-control{
	font-size: 16px;
	line-height: 1.375em;
	font-weight: 500;
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	text-align: center;
	box-shadow: none;
	outline: none;
	padding: 15px 20px;
}

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

.donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default{
	width: 100%;
	display: block;
	text-align: center;
	padding: 17px;
}

.donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default::before{
	display: none;
}

.our-faqs-gold{
	padding: 120px 0;
}

.faqs-content-gold{
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.faqs-client-box-gold{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 60px;
}

.faqs-client-content-gold h3{
	font-size: 18px;
}

.faqs-client-content-gold p{
	color: var(--primary-color);
	line-height: 1.4em;
	margin: 5px 0 0;
}

.faq-accordion-gold .accordion-item{
    position: relative;
    background: var(--secondary-color);
    border-radius: 14px;
    margin-bottom: 25px;
    overflow: hidden;
}

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

.faq-accordion-gold .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 23px 60px 23px 23px;
}

.faq-accordion-gold .accordion-item .accordion-button::after,
.faq-accordion-gold .accordion-item .accordion-button.collapsed::after{
	content: '\f055';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 50%;
    right: 23px;
	line-height: 1em;
    font-size: 30px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion-gold .accordion-button:not(.collapsed)::after{
    content: '\f056';
}

.faq-accordion-gold .accordion-item .accordion-body{  
	border-top: 1px solid var(--divider-color);
    padding: 23px;
}

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

.our-testimonials-gold{
	background-image: url('../images/testimonial-bg-image-gold.png');
    background-repeat: no-repeat;
    background-position: center right -230px;
    background-size: auto;
	padding: 120px 0;
}

.testimonial-image-box-gold{
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.testimonial-image-gold{
	height: 100%;
}

.testimonial-image-gold figure{
	display: block;
    height: 100%;
    border-radius: 20px;
}

.testimonial-image-gold figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    border-radius: 20px;
}

.google-review-box-gold{
	position: absolute;
	left: 15px;
	bottom: 15px;
	right: 15px;
	max-width: 365px;
	background-color: var(--white-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 30px;
	z-index: 1;
}

.google-logo-gold img{
	width: 100%;
	max-width: 40px;
}

.google-review-content-gold{
	width: calc(100% - 55px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.google-review-content-gold h2{
	width: 75px;
	font-size: 26px;
	line-height: 1.1em;
}

.google-review-content-gold p{
	margin: 0;
}

.testimonial-content-gold{
	height: 100%;
	align-content: center;
}

.testimonial-slider-gold .swiper-wrapper{
	cursor: none;
}

.testimonial-item-gold{
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	min-height: 340px;	
}

.testimonial-item-content-gold p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-item-body-gold{
	border-top: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 30px;
}

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

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

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

.testimonial-author-content-gold h2{
	font-size: 20px;
}

.testimonial-author-content-gold p{
	margin: 5px 0 0;
}

.testimonial-item-quote-gold img{
    width: 100%;
    max-width: 30px;
}

.testimonial-slider-gold .testimonial-pagination-gold{
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.testimonial-slider-gold .testimonial-pagination-gold .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider-gold .testimonial-pagination-gold .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider-gold .testimonial-pagination-gold .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

.testimonial-slider-gold .testimonial-pagination-gold .swiper-pagination-bullet-active:before{
	border: 1px solid var(--accent-color);
	height: 24px;
	width: 24px;
}

.main-footer-gold{
	padding: 120px 0 0;
}

.footer-header-gold{
	background-color: var(--dark-divider-color);
	border-radius: 14px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	padding: 30px;
	margin-bottom: 80px;
}

.footer-header-title-gold h2{
    font-size: 36px;
	font-weight: 500;
	color: var(--white-color);
}

.footer-newsletter-form-gold{
	width: 100%;
	max-width: 500px;
}

.footer-newsletter-form-gold .form-group{
	background: var(--dark-divider-color);
	border-radius: 10px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	border: none;
	padding: 5px;
}

.footer-newsletter-form-gold .form-group .form-control{
	flex: 1;
	line-height: 1.5em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 5px;
	outline: none;
	box-shadow: none;
	padding: 10px 20px;	
}

.footer-newsletter-form-gold .form-group .form-control::placeholder{
	color: var(--white-color);
    opacity: 50%;
}

.footer-newsletter-form-gold .form-group button.btn-default{
	padding: 17px 20px;
}

.footer-newsletter-form-gold .form-group button.btn-default::before{
	display: none;
}

.about-footer-gold{
	max-width: 330px;
}

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

.about-footer-content-gold{
	margin-top: 20px;
}

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

.footer-social-links-gold{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.footer-social-links-gold ul{
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-social-links-gold ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

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

.footer-social-links-gold ul li a i{
	font-size: 18px;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-box-gold{
	display: flex;
    flex-wrap: wrap;
    gap: 30px 7.292vw;
}

.footer-links-gold{
	position: relative;
}
    
.footer-quick-links-gold{
	width: calc(31% - 4.861vw);
}

.footer-service-links-gold{
	width: calc(38% - 4.861vw);
}

.footer-privacy-policy-gold{
	width: calc(31% - 4.861vw);
}

.footer-links-gold::before{
	content: '';
    position: absolute;
    top: 50%;
    right: -3.646vw;
    transform: translateY(-50%);
    background: var(--dark-divider-color);
    width: 1px;
    height: 85%;
}

.footer-links-gold:last-child:before{
	display: none;
}

.footer-links-gold h2{
	font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-gold ul{
	list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
}

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

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

.footer-links-gold ul li::marker{
	color: var(--accent-color);
}

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

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

.footer-copyright-text-gold{
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 80px;
}

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

@media only screen and (max-width: 1024px){

	.hero-gold{
		height: auto;
	}

	.hero-gold::before{
		background: var(--primary-color);
		opacity: 50%;
	}

	.hero-info-box-gold{
		margin: 30px 0 0 0;
	}

	.about-image-box-gold{
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.about-image-box-1-gold .about-us-image-gold,
	.about-image-box-1-gold .about-us-image-gold figure,
	.about-image-box-1-gold .about-us-image-gold figure img{
		height: auto;
	}

	.about-us-content{
		height: auto;
	}

	.our-service-gold::before{
      	width: 150px;
        height: 174px;
        opacity: 50%;
    }

	.our-service-gold::after{
		left: 20px;
		width: 120px;
        height: 200px;
		opacity: 50%;
	}

	.why-choose-content-gold{
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-body-image-gold figure img{
		aspect-ratio: 1 / 0.93;
	}

	.why-choose-us-image-gold,
	.why-choose-us-image-gold figure{
		height: auto;
	}

	.why-choose-us-image-gold{
		margin: 0;
	}

	.why-choose-us-image-gold figure img{
		height: auto;
		aspect-ratio: 1 / 0.75;
	}

	.core-features-gold{
		background-size: 140px auto;
	}

	.core-features-content-gold{
		height: auto;
		margin-bottom: 30px;
	}

	.core-features-btn-gold{
		margin-top: 30px;
		padding-top: 30px;
	}

	.features-info-item-box-gold{
		height: auto;
		margin: 0;
	}

	.features-info-item-image-gold figure img{
		aspect-ratio: 1 / 0.7;
	}

	.donate-box-gold{
		padding: 30px;
	}

	.faqs-content-gold{
		position: initial;
		margin: 0 0 30px;
	}

	.faqs-client-box-gold{
		margin-top: 30px;
	}

	.our-testimonials-gold{
		background-position: bottom center;
		background-size: 100% auto;
	}

	.testimonial-item-gold{
		min-height: 280px;
		padding: 30px;
	}

	.footer-header-gold{
		margin-bottom: 30px;
	}

	.footer-newsletter-form-gold{
		max-width: 450px;
	}

	.about-footer-gold{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-links-box-gold{
		margin: 0;
	}

	.footer-links-gold h2{
		margin-bottom: 20px;
	}

	.footer-links-gold ul li{
		margin-bottom: 10px;
	}

	.footer-copyright-text-gold{
		padding: 30px 0;
		margin-top: 30px;
	}	
}

@media only screen and (max-width: 991px){

	.hero-gold{
		padding: 60px 0;
	}

	.hero-info-list-gold ul li{
		margin-bottom: 10px;
	}

	.hero-info-list-gold ul li::before{
		font-size: 16px;
	}

	.about-us-gold{
		padding: 60px 0;
	}

	.about-us-btn-gold{
		padding-top: 30px;
		margin-top: 30px;
	}

	.our-service-gold{
		padding: 60px 0;
	}

	.service-item-gold{
		gap: 30px;
		padding: 30px;
		min-height: auto;
	}

	.service-item-btn-gold{
		padding-top: 30px;
	}

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

	.why-choose-btn-gold{
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-list-gold ul li{
		margin-bottom: 10px;
	}

	.why-choose-list-gold ul li::before{
		font-size: 16px;
	}

	.our-programs-gold{
		padding: 60px 0;
	}

	.program-item-gold{
		min-height: 400px;
	}

	.our-fact-gold{
		padding: 60px 0;
	}

	.fact-item-gold{
		min-height: 360px;
		padding: 30px;
	}

	.fact-item-content-gold h2{
    	font-size: 44px;
	}

	.fact-item-image-gold figure{
		margin: 0 -30px -30px;
	}

	.core-features-gold{
		padding: 60px 0;
	}

	.core-features-list-gold ul li::before{
		font-size: 16px;
	}

	.our-gallery-gold{
		padding: 60px 0;
	}

	.our-gallery-nav{
		margin-bottom: 40px;
	}

	.our-gallery-nav ul{
		gap: 10px 50px;
	}

	.our-gallery-nav ul li a:before{
		right: -29px;
	}

	.gallery-item-image-gold figure img{
		aspect-ratio: 1 / 0.95;
	}

	.donate-now-gold{
		padding: 60px 0;
	}

	.donate-now-image-gold{
		position: initial;
		border-radius: 20px;
		overflow: hidden;
		height: auto;
		margin-bottom: 30px;
	}

	.donate-now-image-gold figure{
		height: auto;
	}

	.donate-now-image-gold figure::before{
		display: none;
	}

	.donate-now-image-gold figure img{
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.donate-form-content-box-gold{
		max-width: 100%;
		border-color: var(--divider-color);
	}

	.donate-box-content-gold{
		margin-bottom: 20px;
	}

	.donate-form-gold .form-group{
		margin-bottom: 15px;
	}

	.donate-form-gold .form-control{
		padding: 11px 15px;
	}

	.donate-value-box-gold .donate-value-gold label{
		padding: 18px;
	}

	.donate-box-gold .donate-form-gold .form-group-btn-gold .btn-default{
		padding: 15px;
	}

	.our-faqs-gold{
		padding: 60px 0;
	}

	.faq-accordion-gold .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion-gold .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion-gold .accordion-item .accordion-button::after,
	.faq-accordion-gold .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 24px;
	}

	.faq-accordion-gold .accordion-item .accordion-body{
		padding: 15px;
	}

	.our-testimonials-gold{
		padding: 60px 0;
	}

	.testimonial-image-box-gold{
		height: auto;
		margin: 0 0 30px;
	}

	.testimonial-image-gold,
	.testimonial-image-gold figure{
		height: auto;
	}

	.testimonial-image-gold figure img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.google-review-box-gold{
		padding: 20px;
	}

	.google-review-content-gold h2{
		width: 65px;
		font-size: 22px;
	}

	.testimonial-content-gold{
		height: auto;
	}

	.testimonial-item-content-gold p{
		font-size: 18px;
	}

	.main-footer-gold{
		padding: 60px 0 0;
	}

	.footer-header-title-gold{
		max-width: 100%;
	}

	.footer-header-title-gold h2{
		font-size: 30px;
	}

	.footer-newsletter-form-gold{
        max-width: 100%;
    }

	.footer-newsletter-form-gold .form-group button.btn-default{
		padding: 15px 20px;
	}

	.about-footer-content-gold{
		margin-top: 15px;
	}
}

@media only screen and (max-width: 767px){

	.hero-info-list-gold{
		padding: 15px;
	}

	.hero-progress-bar-gold{
		padding: 20px 10px 10px;
	}

	.about-image-box-1-gold .about-us-image-gold figure{
		margin-right: -120px;
	}

	.about-image-box-2-gold .about-us-image-gold figure{
		border-width: 5px;
		border-radius: 25px;
	}

	.about-us-counter-box-gold{
		flex-direction: column;
		align-items: initial;
		gap: 10px;
		margin: 10px 5px 0;
		padding: 12px;
	}

	.about-us-counter-box-gold .icon-box{
		width: 40px;
		height: 40px;
	}

	.about-us-counter-box-gold .icon-box img{
		max-width: 20px;
	}

	.about-counter-content-gold{
		width: 100%;
	}

	.about-counter-content-gold h2{
		font-size: 18px;
	}

	.about-counter-content-gold p{
		font-size: 14px;
	}	

	.about-us-item-content-gold h3{
		font-size: 18px;
	}

	.our-service-gold::before{
		width: 100px;
		height: 110px;
	}

	.our-service-gold::after{
		left: 10px;
		width: 120px;
		height: 200px;
	}

	.service-item-gold{
		padding: 20px;
		gap: 20px;
	}

	.service-item-content-gold h2{
		font-size: 18px;
	}

	.service-item-btn-gold{
        padding-top: 20px;
    }

	.why-choose-body-gold{
		gap: 20px;
	}

	.why-choose-body-content-gold,
	.why-choose-body-image-gold{
		width: 100%;
	}

	.why-choose-body-image-gold figure,
	.why-choose-body-image-gold figure img{
		height: auto;
	}

	.program-item-body-gold{
		padding: 15px;
	}

	.program-item-content-gold h2{
		font-size: 18px;
	}

	.program-item-btn-gold{
		margin-top: 15px;
		padding-top: 15px;
	}

	.fact-item-gold{
        min-height: auto;
        padding: 20px;
    }

	.fact-item-content-gold h2{
        font-size: 28px;
    }

	.fact-item-image-gold figure{
		margin: 0 -20px -20px;
	}

	.core-features-gold{
		background-position: bottom -20px right 10px;
		background-size: 120px auto;
	}

	.features-info-item-body-gold{
		padding: 15px;
	}

	.features-info-item-body-gold .icon-box{
		width: 44px;
		height: 44px;
		margin-bottom: 20px;
	}

	.features-info-item-body-gold .icon-box img{
		max-width: 20px;
	}

	.features-info-item-content-gold h3{
		font-size: 18px;
	}

	.features-info-item-content-gold p{
		font-size: 14px;
		margin: 5px 0 0;
	}

	.core-features-list-gold ul{
		gap: 10px;
	}

	.core-features-list-gold ul li{
		width: 100%;
	}

	.our-gallery-nav{
		margin-bottom: 30px;
	}

	.our-gallery-nav ul{
		gap: 10px 30px;
	}

	.our-gallery-nav ul li a:before{
		right: -18px;
		width: 6px;
		height: 6px;
	}

	.gallery-item-title-gold{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.gallery-item-title-gold h3{
		font-size: 18px;
	}

	.donate-box-title-gold{
		padding: 15px;
	}

	.donate-box-title-gold h2{
		font-size: 16px;
	}

	.donate-box-gold{
		padding: 20px;
	}

	.donate-value-box-gold .donate-value-gold label{
		font-size: 14px;
		padding: 15px 10px;
	}

	.faq-accordion-gold .accordion-header .accordion-button{
        font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion-gold .accordion-item .accordion-button::after, 
	.faq-accordion-gold .accordion-item .accordion-button.collapsed::after{
        font-size: 20px;
	}

	.faq-accordion-gold .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.testimonial-image-gold figure img{
		aspect-ratio: 1 / 1.02;
	}

	.google-review-box-gold{
		padding: 15px;
		gap: 10px;
	}

	.google-logo-gold img{
		max-width: 30px;
	}

	.google-review-content-gold{
		width: calc(100% - 40px);
	}

	.google-review-content-gold h2{
		width: 55px;
        font-size: 18px;
    }

	.testimonial-item-gold{
		gap: 20px;
        padding: 20px;
        min-height: auto;
    }

	.testimonial-item-content-gold p{
		font-size: 16px;
	}

	.testimonial-item-body-gold{
		padding-top: 20px;
	}

	.testimonial-author-content-gold h2{
		font-size: 18px;
	}

	.footer-header-gold{
		padding: 15px;
	}

	.footer-header-title-gold h2{
		font-size: 24px;
	}

	.footer-newsletter-form-gold .form-group .form-control{
		padding: 10px;
		font-size: 14px;
	}

	.footer-newsletter-form-gold .form-group button.btn-default{
		font-size: 14px;
		padding: 12px 15px;
	}

	.footer-social-links-gold{
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-links-box-gold{
		justify-content: space-between;
		gap: 30px;
	}

	.footer-links-gold{
		width: auto;
	}

	.footer-links-gold::before{
		display: none;
	}

	.footer-links-gold h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright-text-gold{
		padding: 15px 0;
	}	
}

/************************************/
/***   34. Home - Version 3 css   ***/
/************************************/

.main-header.main-header-silver{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
}

.main-header.main-header-silver .header-sticky{
	max-width: 100%;
	border-bottom: 1px solid var(--dark-divider-color);
    background: transparent;
	border-radius: 0;
}

.main-header.main-header-silver .header-sticky.active{
	top: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	border-color: var(--dark-divider-color);
	border-radius: 0;
	border-top: none;
	border-left: none;
	border-right: none;
}

.main-header.main-header-silver .navbar{
	padding: 30px 0;
}

.main-header.main-header-silver .main-menu ul li a{
    color: var(--white-color);
}

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

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

.hero-silver{
	position: relative;
	background-image: url('../images/hero-bg-image-silver.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	align-content: end;
	padding: 220px 0 80px;
	min-height: 100vh;
}

.hero-silver:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(33, 41, 59, 0.80) 0%, transparent 23.06%), linear-gradient(180deg, transparent 29.66%, var(--primary-color) 92.52%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-silver .container{
	position: relative;
	z-index: 2;
}

.hero-content-silver .section-title p{
	max-width: 700px;
}

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

.hero-client-box-silver{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.hero-client-content-silver h2{
	font-size: 24px;
	color: var(--white-color);
}

.hero-client-content-silver p{
	color: var(--white-color);
	line-height: normal;
	margin: 5px 0 0;
}

.hero-item-list-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5.208vw;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 45px;
	margin-top: 145px;
}

.hero-item-silver{
	position: relative;
	width: calc(33.33% - 3.472vw);
}

.hero-item-silver::before{
	content: '';
	position: absolute;
	right: -2.604vw;
	width: 1px;
	height: 100%;
	background-color: var(--dark-divider-color);
}

.hero-item-silver:nth-child(3n + 3):before,
.hero-item-silver:last-child:before{
	display: none;
}

.hero-item-silver h2{
	position: relative;
	font-size: 20px;
	color: var(--white-color);
	padding-left: 30px;
}

.hero-item-silver h2::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.hero-item-silver p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.about-us-silver{
	padding: 120px 0;
}

.about-us-image-box-silver{
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	margin-right: 15px;
}

.about-us-image-silver.box-1{
	position: relative;
	width: 50%;
	margin: auto 0 120px;
	z-index: 2;
}

.about-us-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.about-us-image-silver figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image-silver.box-1 figure{
	border: 6px solid var(--bg-color);
	border-radius: 26px;
}

.about-us-image-silver.box-1 img{
	aspect-ratio: 1 / 1.066;
}

.about-us-image-silver.box-2{
	width: 50%;
}

.about-us-image-silver.box-2{
	height: 100%;
}

.about-us-image-silver.box-2 figure{
	margin-left: -188px;
}

.about-us-image-silver.box-2 img{
	height: 100%;
	aspect-ratio: 1 / 1.323;
}

.about-us-content-silver{
	height: 100%;
	align-content: center;
}

.about-us-item-list-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item-silver{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.about-us-item-silver::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;
}

.about-us-item-silver:hover:before{
	top: auto;
    height: 100%;
}

.about-us-item-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

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

.about-us-item-silver:hover .icon-box::before{
	transform: scale(1);
}

.about-us-item-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content-silver{
	position: relative;
	z-index: 1;
}

.about-us-item-content-silver h3{
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

.about-us-item-content-silver p{
	margin: 10px 0 0;
	transition: all 0.3s ease-in-out;
}

.about-us-item-silver:hover .about-us-item-content-silver h3,
.about-us-item-silver:hover .about-us-item-content-silver p{
	color: var(--white-color);
}

.about-us-btn-silver{
	margin-top: 40px;
}

.our-service-silver{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.our-service-silver::before,
.our-service-silver::after{
	content: '';
	position: absolute;
	z-index: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-service-silver::before{
	top: -20px;
	right: 0;
	background-image: url('../images/section-bg-shape-1.png');
	width: 220px;
	height: 240px;
}

.our-service-silver::after{
	bottom: -30px;
	left: 20px;
	background-image: url('../images/section-bg-shape-2.png');
	width: 220px;
	height: 365px;
}

.our-service-silver .container{
	position: relative;
	z-index: 2;
}

.service-item-silver{
	background-color: var(--bg-color);
	border-radius: 20px;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
}

.service-item-silver:hover{
	transform: translateY(-5px);
}

.service-item-header-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	overflow: hidden;
}

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

.service-item-silver:hover .service-item-header-silver .icon-box::before{
	transform: scale(1);
}

.service-item-header-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-title-silver h2{
	font-size: 20px;
	line-height: 1.4em;
}

.service-item-title-silver h2 a{
	color: inherit;
}

.service-item-content-silver p:last-child{
	margin-bottom: 0;
}

.service-item-btn-silver{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

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

.why-choose-image-silver{
	height: 100%;
}

.why-choose-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.why-choose-image-silver figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.964;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-item-list-silver{
	background-color: var(--white-color);
	border-radius: 20px;
}

.why-choose-item-silver{
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 40px;
}

.why-choose-item-silver:last-child{
	border: none;
}

.why-choose-item-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

.why-choose-item-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content-silver{
	width: calc(100% - 65px);
}

.why-choose-item-content-silver h3{
	font-size: 20px;
	line-height: 1.4em;
}

.why-choose-item-content-silver p{
	margin: 10px 0 0;
}

.why-choose-us-silver .section-footer-text{
	margin-top: 60px;
}

.our-volunteer-silver{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.our-volunteer-silver::before,
.our-volunteer-silver::after{
	content: '';
	position: absolute;
	z-index: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-volunteer-silver::before{
	top: -20px;
	right: 0;
	background-image: url('../images/section-bg-shape-1.png');
	width: 220px;
	height: 240px;
}

.our-volunteer-silver::after{
	bottom: -30px;
	left: 20px;
	background-image: url('../images/section-bg-shape-2.png');
	width: 220px;
	height: 365px;
}

.our-volunteer-silver .container{
	position: relative;
	z-index: 2;
}

.volunteer-item-silver{
	position: relative;
	background-color: var(--bg-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.volunteer-item-image-silver{
	margin-bottom: 10px;
}

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

.volunteer-item-image-silver figure{
	display: block;
}

.volunteer-item-image-silver img{
	aspect-ratio: 1 / 0.914;
    object-fit: cover;
	width: 100%;
	transition: all 0.6s ease-in-out;
}

.volunteer-item-silver:hover .volunteer-item-image-silver img{
	transform: scale(1.06);
}

.volunteer-item-body-silver{
	background-color: var(--white-color);
	border-radius: 20px;
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 25px 30px;
	z-index: 1;
}

.volunteer-item-contant-silver{
	width: calc(100% - 65px);
}

.volunteer-item-contant-silver h2{
	font-size: 20px;
}

.volunteer-item-contant-silver h2 a{
	color: inherit;
}

.volunteer-item-contant-silver p{
	margin: 10px 0 0;
}

.volunteer-social-list-box-silver{
	position: relative;
	border-radius: 50%;
}

.volunteer-social-btn-silver{
	width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.volunteer-social-btn-silver img{
	width: 100%;
	max-width: 24px;
	margin-left: 3px;
}

.volunteer-social-list-silver{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
	margin: 0 auto;
	transform: translateY(-50%) scaleX(0);
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.volunteer-item-silver:hover .volunteer-social-list-silver{
	transform: translateY(-50%) scaleX(1);
}

.volunteer-social-list-silver ul{
	list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.volunteer-social-list-silver ul li a{
	width: 40px;
    height: 40px;
	background-color: var(--divider-color);
	border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    color: var(--white-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.volunteer-social-list-silver ul li:hover a{
	background: var(--accent-color);
}

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

.our-volunteer-silver .section-footer-text{
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.our-project-silver{
	padding: 120px 0;
}

.our-project-image-silver{
	height: 100%;
	margin-right: 15px;
}

.our-project-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.our-project-image-silver figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.977;
	object-fit: cover;
	border-radius: 20px;
}

.project-content-silver{
	height: 100%;
	align-content: center;
}

.project-item-list-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-item-silver{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.project-item-silver .icon-box{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

.project-item-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.project-item-content-silver{
	width: calc(100% - 55px);
}

.project-item-content-silver h3{
	font-size: 20px;
	line-height: 1.4em;
}

.project-content-body-silver{
	border-top: 1px solid var(--divider-color);
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
	padding-top: 40px;
    margin-top: 40px;
}

.project-author-item-silver{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.project-author-image-silver figure{
	display: block;
    border-radius: 50%;
}

.project-author-image-silver figure img{
	width: 100%;
    max-width: 50px;
}

.project-author-content-silver{
	width: calc(100% - 65px);
}

.project-author-content-silver h3{
	font-size: 20px;
}

.project-author-content-silver p{
	margin: 5px 0 0;
}

.our-key-fact-silver{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.our-key-fact-silver .container{
	position: relative;
	z-index: 2;
}

.our-key-fact-silver::before,
.our-key-fact-silver::after{
	content: '';
	position: absolute;
	z-index: 0;
}

.our-key-fact-silver::before{
	top: -20px;
	right: 0;
	background: url('../images/section-bg-shape-1.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 220px;
	height: 240px;
}

.our-key-fact-silver::after{
	bottom: -30px;
	left: 20px;
	background: url('../images/section-bg-shape-2.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 220px;
	height: 365px;
}

.fact-item-silver{
	background: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.fact-item-silver:hover{
	transform: translateY(-5px);
}

.fact-item-counter-box-silver{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.fact-item-counter-content-silver h2{
	font-size: 40px;
}

.fact-item-counter-content-silver p{
	margin: 10px 0 0;
}

.fact-item-counter-box-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

.fact-item-counter-box-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.fact-item-content-silver p{
	margin-bottom: 0;
}

.fact-item-body-silver{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 20px;
}

.fact-item-list-silver{
	width: calc(50% - 10px);
}

.fact-item-list-silver ul{
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.fact-item-list-silver li{
	line-height: 1.5em;
	margin-bottom: 10px;
}

.fact-item-list-silver li:last-child{
	margin-bottom: 0;
}

.fact-item-list-silver li::marker{
	color: var(--accent-color);
}

.fact-item-image-silver{
	width: calc(50% - 10px);
	text-align: right;
}

.fact-item-image-silver figure{
	margin: 0 -55px -55px 0;
	border-radius: 20px;
}

.fact-item-image-silver figure img{ 
	width: 100%;
    aspect-ratio: 1 / 0.844;
    object-fit: cover;
	border-radius: 20px;
}

.our-key-fact-silver .section-footer-text{
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.core-feature-silver{
	padding: 120px 0;
}

.feature-content-silver{
	height: 100%;
	align-content: center;
}

.feature-item-list-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item-silver{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.feature-item-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

.feature-item-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.feature-item-content-silver{
	width: calc(100% - 65px);
}

.feature-item-content-silver h3{
	font-size: 20px;
}

.feature-list-silver{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.feature-list-silver ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list-silver ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.feature-list-silver ul li:last-child{
	margin-bottom: 0;
}

.feature-list-silver ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.feature-btn-silver{
	margin-top: 40px;
}

.feature-image-box-silver{
	display: flex;
	flex-wrap: wrap;
	margin-left: 15px;
	height: 100%;
}

.feature-image-box-1-silver{
	width: 61%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-image-box-2-silver{
	position: relative;
	width: 39%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 1;
}

.feature-image-silver{
	flex: 1;
}

.feature-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.feature-image-silver figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.057;
	object-fit: cover;
	border-radius: 20px;
}

.feature-image-box-2-silver .feature-image-silver figure{
	border: 6px solid var(--bg-color);
	border-radius: 26px;
	margin-left: -135px;
}

.feature-experience-box-silver{
	position: relative;
	background: var(--white-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px 20px;
	margin: 30px 20px 0 20px;
	overflow: hidden;
}

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

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

.feature-experience-box-silver .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	overflow: hidden;
	z-index: 1;
}

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

.feature-experience-box-silver:hover .icon-box::before{
	transform: scale(1);
}

.feature-experience-box-silver .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.feature-experience-box-silver:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.feature-experience-content-silver{
	position: relative;
	z-index: 1;
}

.feature-experience-content-silver p{
	color: var(--primary-color);
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.feature-experience-box-silver:hover .feature-experience-content-silver p{
	color: var(--white-color);
}

.feature-counter-box-silver{
	position: relative;
	max-width: 200px;
	background: var(--accent-color);
	border-radius: 14px;
	align-content: center;
	text-align: center;
	padding: 40px 30px;
	margin: 0 10px 30px 20px;
	transition: all	0.4s ease-in-out;
}

.feature-counter-box-silver:hover{
	background-color: var(--primary-color);
}

.feature-counter-box-silver h2{
	font-size: 40px;
	color: var(--white-color);
}

.feature-counter-box-silver p{
	color: var(--white-color);
	margin: 5px 0 0;
}

.donate-now-silver{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.donate-now-image-silver{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.donate-now-image-silver figure{
	position: relative;
	height: 100%;
}

.donate-now-image-silver figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(33, 41, 59, 0.80) 0%, transparent 67.16%);
	z-index: 1;
}

.donate-now-image-silver figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.donate-form-content-box-silver{
	position: relative;
	max-width: 635px;
	background-color: var(--secondary-color);
	border: 1px solid transparent;
	border-radius: 20px;
	margin-left: auto;
	overflow: hidden;
	z-index: 2;
}

.donate-box-silver{
	padding: 40px;
}

.donate-box-title-silver{
	background: var(--bg-color);
	text-align: center;
	padding: 20px;
}

.donate-box-title-silver h2{
	font-size: 18px;
}

.donate-box-content-silver{
	margin-bottom: 30px;
}

.donate-box-content-silver p{
	margin-bottom: 0;
}

.donate-box-header-silver{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 15px;
}

.donate-box-header-title-silver h3{
	font-size: 16px;
}

.donate-box-currency-silver span{
	display: inline-block;
    background: var(--bg-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    padding: 6px 15px;
}

.donate-value-box-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.donate-form-silver .donate-value-silver{
	width: calc(33.33% - 6.66px);
}

.donate-value-box-silver .donate-value-silver input{
	position: absolute;
	left: -9999px;
}

.donate-value-box-silver .donate-value-silver label{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 500;
	line-height: 1em;
	background-color: var(--bg-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 22px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box-silver .donate-value-silver input[type="radio"]:hover+label,
.donate-value-box-silver .donate-value-silver input[type="radio"]:focus+label,
.donate-value-box-silver .donate-value-silver input[type="radio"]:checked+label{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donate-form-silver .form-group{
	margin-bottom: 20px;
}

.donate-form-silver .form-control{
	font-size: 16px;
	line-height: 1.375em;
	font-weight: 500;
	background-color: transparent;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	text-align: center;
	box-shadow: none;
	outline: none;
	padding: 15px 20px;
}

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

.donate-box-silver .donate-form-silver .form-group-btn-silver .btn-default{
	width: 100%;
	display: block;
	text-align: center;
	padding: 17px;
}

.donate-box-silver .donate-form-silver .form-group-btn-silver .btn-default::before{
	display: none;
}

.our-testimonials-silver{
	padding: 120px 0;
}

.testimonial-content-silver{
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-right: 15px;
}

.testimonial-slider-silver .swiper{
	height: 100%;
}

.testimonial-slider-silver .swiper-wrapper{
	cursor: none;
}

.testimonial-item-silver{
	min-height: 310px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
}

.testimonial-item-quote-silver img{
	width: 100%;
	max-width: 40px;
}

.testimonial-item-content-silver p:last-child{
	margin: 0;
}

.testimonial-item-author-silver{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

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

.testimonial-author-image-silver figure img{
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

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

.testimonial-author-content-silver h3{
	font-size: 20px;
}

.testimonial-author-content-silver p{
	line-height: normal;
	margin: 5px 0 0;
}

.testimonial-btn-silver{
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 15px;
	z-index: 1;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover{
	background: var(--accent-color);
}

.testimonial-slider-silver .testimonial-button-next-silver::before,
.testimonial-slider-silver .testimonial-button-prev-silver::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-prev-silver::before{
	transform: rotate(225deg);
}

.testimonial-slider-silver .testimonial-button-next-silver:hover:before,
.testimonial-slider-silver .testimonial-button-prev-silver:hover:before{
	filter: brightness(0) invert(1);
}

.testimonial-image-box-silver{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	height: 100%;
}

.testimonial-image-silver{
	width: calc(83% - 15px);
}

.testimonial-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.testimonial-image-silver figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.041;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-rating-box-silver{
	width: calc(17% - 15px);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px 60px;
}

.testimonial-rating-counter-silver{
	position: relative;
	min-height: 135px;
}

.testimonial-rating-counter-silver::before{
	content: ' ';
	position: absolute;
	bottom: -30px;
	right: 0;
	left: 0;
	background: var(--divider-color);
	width: 100%;
	height: 1px;
}

.testimonial-rating-counter-silver h2{
	font-size: 48px;
	color: var(--primary-color);
}

.testimonial-rating-star-silver{
	display: block;
	margin-right: 5px;
}

.testimonial-rating-star-silver i{
	color: var(--accent-color);
	margin-bottom: 5px;
}

.testimonial-rating-star-silver i:last-child{
	margin-bottom: 0;
}

.testimonial-rating-content-silver{
	max-height: 280px;
}

.testimonial-rating-content-silver p{
	margin: 0;
}

.our-faqs-silver{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.our-faqs-silver::before,
.our-faqs-silver::after{
	content: '';
	position: absolute;
	z-index: 0;
}

.our-faqs-silver::before{
	top: -20px;
	right: 0;
	background: url('../images/section-bg-shape-1.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 220px;
	height: 240px;
}

.our-faqs-silver::after{
	bottom: -30px;
	left: 20px;
	background: url('../images/section-bg-shape-2.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 220px;
	height: 365px;
}

.our-faqs-silver .container{
	position: relative;
	z-index: 2;
}

.faq-image-box-silver{
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.faq-image-silver{
	height: 100%;
}

.faq-image-silver figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.faq-image-silver figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 20px;
}

.faq-cta-box-silver{
	position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 455px;
	background: var(--secondary-color);
    border-radius: 24px 24px 0 0;
    transform: translateX(-50%);
	padding: 10px;
	padding-bottom: 0;
	z-index: 1;
}

.faq-cta-box-silver:before,
.faq-cta-box-silver:after{
	content: '';
	position: absolute;
	width: 20px;
    height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	background-color: var(--secondary-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	z-index: 1;
}

.faq-cta-box-silver:before{
	bottom: 0;
    right: -19px;
}

.faq-cta-box-silver:after{
	bottom: 0;
    left: -19px;
	transform: rotate(270deg);
}

.faq-cta-body-silver{
	background: var(--primary-color);
	border-radius: 20px;
    padding: 30px;
}

.faq-cta-content-silver h2{
	font-size: 20px;
	color: var(--white-color);
}

.faq-cta-content-silver p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.faq-cta-btn-silver{
	margin-top: 30px;
}

.faq-content-silver{
	height: 100%;
	align-content: center;
}

.faq-accordion-silver .accordion-item{
    position: relative;
    background: var(--bg-color);
    border-radius: 14px;
    margin-bottom: 25px;
    overflow: hidden;
}

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

.faq-accordion-silver .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 23px 60px 23px 23px;
}

.faq-accordion-silver .accordion-item .accordion-button::after,
.faq-accordion-silver .accordion-item .accordion-button.collapsed::after{
	content: '\f055';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 23px;
    top: 50%;
    font-size: 30px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion-silver .accordion-button:not(.collapsed)::after{
    content: '\f056';
}

.faq-accordion-silver .accordion-item .accordion-body{  
	border-top: 1px solid var(--divider-color);
    padding: 23px;
}

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

.main-footer-silver{
	padding: 120px 0 0;
}

.footer-header-silver{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.about-footer-silver{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 5.208vw;
}

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

.about-footer-content-silver{
	max-width: 570px;
}

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

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

.footer-social-links-silver ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

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

.footer-social-links-silver ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-newsletter-box-silver .section-title h2{
	font-size: 40px;
}

.footer-newsletter-form-silver .form-group{
	display: flex;
	flex-wrap: wrap;
	background: var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 5px;
}

.footer-newsletter-form-silver .form-group .form-control{
	width: calc(100% - 40px);	
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 15px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form-silver .newsletter-btn-silver{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-silver .newsletter-btn-silver:hover{
	background: var(--white-color);
}

.footer-newsletter-form-silver .newsletter-btn-silver img{
	width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-silver .newsletter-btn-silver:hover img{
	filter: brightness(0) invert(0);
	transform: rotate(45deg);
}

.footer-links-box-silver{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 60px;
}

.footer-links-silver{
	max-width: 30%;
}

.footer-links-silver h2{	
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-silver ul{
	list-style: disc;
    padding: 0 0 0 20px;
    margin: 0;
}

.footer-links-silver ul li{
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

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

.footer-links-silver ul li::marker{
	color: var(--accent-color);
}

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

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

.footer-copyright-text-silver{
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 60px;
}

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

@media only screen and (max-width: 1024px){

	.hero-silver{
		min-height: auto;
	}

	.hero-silver:before{
		background: var(--primary-color);
		opacity: 70%;
	}

	.hero-content-silver,
	.hero-content-silver .section-title p{
		max-width: 100%;
	}

	.hero-item-list-silver{
		margin-top: 45px;
	}

	.about-us-image-box-silver{
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.about-us-image-silver figure,
	.about-us-image-silver.box-2,
	.about-us-image-silver.box-2 img,
	.about-us-content-silver{
		height: auto;
	}

	.about-us-image-silver.box-1{
		margin: auto 0 80px;
	}

	.about-us-image-silver.box-2 img{
		aspect-ratio: 1 / 1.2;
	}

	.our-service-silver::before{
		width: 150px;
        height: 170px;
        opacity: 50%;
    }

	.our-service-silver::after{
		width: 140px;
        height: 232px;
        opacity: 50%;
	}

	.why-choose-image-silver{
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-image-silver figure{
		height: auto;
	}
	
	.why-choose-image-silver figure img{
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.our-volunteer-silver::before{
      	top: -10px;
      	width: 150px;
        height: 164px;
    }

	.our-volunteer-silver::after{	
		bottom: -20px;
        left: 10px;
        width: 140px;
        height: 232px;
	}

	.our-project-image-silver{
		height: auto;
		margin: 0 0 30px;
	}

	.our-project-image-silver figure,
	.project-content-silver{
		height: auto;
	}

	.our-project-image-silver figure img{
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.our-key-fact-silver::before{
		top: -10px;
      	width: 150px;
        height: 170px;
	}

	.our-key-fact-silver::after{
		bottom: -20px;
        left: 10px;
        width: 140px;
        height: 232px;
	}

	.feature-content-silver{
		height: auto;
		margin-bottom: 30px;
	}

	.feature-image-box-silver{
		max-width: 615px;
		height: auto;
		margin: 0 auto;
	}

	.donate-box-silver{
		padding: 30px;
	}

	.testimonial-content-silver{
		height: auto;
		margin: 0 0 30px;
	}

	.testimonial-slider-silver .swiper{
		height: auto;
	}

	.testimonial-item-silver{
		height: auto;
		min-height: auto;
	}

	.testimonial-item-author-silver{
		padding-top: 30px;
	}

	.testimonial-image-box-silver{
		max-width: 740px;
		height: auto;
		margin: 0 auto;
	}

	.our-faqs-silver::before{
		top: -10px;
      	width: 150px;
        height: 170px;
	}

	.our-faqs-silver::after{
		bottom: -20px;
        left: 10px;
        width: 140px;
        height: 232px;
	}

	.faq-image-box-silver{
		max-width: 740px;
		margin: 0 auto 30px;
		height: auto;
	}

	.faq-image-silver,
	.faq-image-silver figure,
	.faq-image-silver figure img{
		height: auto;
	}

	.faq-image-silver figure img{
		aspect-ratio: 1 / 1.05;
	}

	.faq-content-silver{
		height: auto;
	}

	.footer-header-silver{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.about-footer-content-silver{
		max-width: 510px;
	}

	.footer-newsletter-box-silver{
		margin-bottom: 30px;
	}

	.footer-links-box-silver{
		margin: 0;
	}

	.footer-links-silver h2{
		margin-bottom: 20px;
	}

	.footer-links-silver ul li{
		margin-bottom: 10px;
	}

	.footer-copyright-text-silver{
		padding: 30px 0;
		margin-top: 30px;
	}
}

@media only screen and (max-width: 991px){

	.main-header.main-header-silver .navbar{
		padding: 20px 0;
	}

	.hero-silver{
		padding: 150px 0 60px;
	}

	.hero-client-box-silver .satisfy-client-image figure img{
		max-width: 44px;
	}

	.hero-client-content-silver h2{
		font-size: 20px;
	}

	.hero-item-list-silver{
		gap: 30px;
	}

	.hero-item-silver{
		width: calc(50% - 15px);
	}

	.hero-item-silver::before{
		right: -15px;
	}

	.hero-item-silver:nth-child(3n + 3):before{
		display: block;
	}

	.hero-item-silver:last-child:before,
	.hero-item-silver:nth-child(2n + 2):before{
		display: none;
	}

	.about-us-silver{
		padding: 60px 0;
	}

	.about-us-btn-silver{
		margin-top: 30px;
	}

	.our-service-silver{
		padding: 60px 0; 
	}	

	.service-item-silver{
		min-height: 360px;
		padding: 30px;
		gap: 30px;
	}

	.service-item-header-silver .icon-box{
		margin-bottom: 30px;
	}

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

	.why-choose-item-silver{
		padding: 30px;
	}

	.why-choose-us-silver .section-footer-text{
		margin-top: 40px;
	}

	.our-volunteer-silver{
		padding: 60px 0;
	}

	.volunteer-item-body-silver{
		padding: 20px;
	}

	.our-project-silver{
		padding: 60px 0;
	}

	.project-content-body-silver{
		margin-top: 30px;
		padding-top: 30px;
	}

	.project-author-image-silver figure img{
		max-width: 46px;
	}

	.project-author-content-silver{
		width: calc(100% - 61px);
	}

	.project-author-content-silver h3{
		font-size: 18px;
	}

	.our-key-fact-silver{
		padding: 60px 0;
	}

	.fact-item-silver{
		padding: 30px;
	}

	.fact-item-counter-content-silver h2{
    	font-size: 34px;
	}

	.fact-item-image-silver figure{
    	margin: 0 -40px -40px 0;
	}

	.core-feature-silver{
		padding: 60px 0;
	}

	.feature-list-silver{
		padding-top: 30px;
		margin-top: 30px;
	}

	.feature-list-silver ul li{
		margin-bottom: 10px;
	}

	.feature-list-silver ul li::before{
		font-size: 16px;
	}

	.feature-counter-box-silver h2{
	    font-size: 34px;
	}
	
	.feature-btn-silver{
		margin-top: 30px;
	}

	.donate-now-silver{
		padding: 60px 0;
	}

	.donate-now-image-silver{
		position: initial;
		border-radius: 20px;
		overflow: hidden;
		height: auto;
		margin-bottom: 30px;
	}

	.donate-now-image-silver figure{
		height: auto;
	}

	.donate-now-image-silver figure::before{
		display: none;
	}

	.donate-now-image-silver figure img{
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.donate-form-content-box-silver{
		max-width: 100%;
		border-color: var(--divider-color);
	}

	.donate-box-content-silver{
		margin-bottom: 20px;
	}

	.donate-form-silver .form-group{
		margin-bottom: 15px;
	}

	.donate-form-silver .form-control{
		padding: 11px 15px;
	}

	.donate-value-box-silver .donate-value-silver label{
		padding: 18px;
	}

	.donate-box-silver .donate-form-silver .form-group-btn-silver .btn-default{
		padding: 15px;
	}

	.our-testimonials-silver{
		padding: 60px 0;
	}

	.testimonial-slider-silver .testimonial-button-next-silver, 
	.testimonial-slider-silver .testimonial-button-prev-silver{
		width: 40px;
		height: 40px;
		background-size: 14px auto;
	}

	.testimonial-slider-silver .testimonial-button-next-silver::before,
	.testimonial-slider-silver .testimonial-button-prev-silver::before{
		background-size: 14px auto;
	}

	.testimonial-rating-counter-silver h2{
    	font-size: 38px;
	}

	.our-faqs-silver{
		padding: 60px 0;
	}

	.faq-accordion-silver .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion-silver .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion-silver .accordion-item .accordion-button::after,
	.faq-accordion-silver .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 24px;
	}

	.faq-accordion-silver .accordion-item .accordion-body{
		padding: 15px;
	}

	.main-footer-silver{
		padding: 60px 0 0;
	}

	.about-footer-content-silver{
		max-width: 100%;
	}

	.footer-newsletter-box-silver .section-title h2{
		font-size: 32px;
	}
}

@media only screen and (max-width: 767px){

	.hero-item-silver{
		width: 100%;
	}

	.hero-client-content-silver h2{
		font-size: 18px;
	}

	.hero-item-list-silver{
		padding-top: 20px;
		margin-top: 20px;
	}

	.hero-item-silver::before{
		height: 1px;
		width: 100%;
		right: initial;
		bottom: -15px;
	}

	.hero-item-silver:nth-last-child(2n + 2):before{
		display: block;
	}

	.hero-item-silver h2{
		font-size: 18px;
		padding-left: 25px;
	}

	.hero-item-silver h2::before{
		font-size: 16px;
	}

	.about-us-image-silver.box-1{
		margin: auto 0 40px;
	}

	.about-us-image-silver.box-2 figure{
		margin-left: -94px;
	}

	.about-us-item-silver{
		width: 100%;
		padding: 20px;
	}

	.about-us-item-silver .icon-box{
		margin-bottom: 20px;
	}

	.about-us-item-content-silver h3{
		font-size: 18px;
	}

	.our-services-silver::before{
		width: 100px;
		height: 110px;
	}

	.our-services-silver::after{
		left: 10px;
		width: 120px;
		height: 200px;
	}

	.service-item-silver{
		min-height: auto;
		padding: 20px;
		gap: 20px;
	}

	.service-item-header-silver .icon-box{
		margin-bottom: 20px;
	}

	.service-item-title-silver h2{
		font-size: 18px;
	}

	.service-item-btn-silver{
		margin-top: 20px;
		padding-top: 20px;
	}

	.why-choose-item-silver{
		padding: 20px;
	}

	.why-choose-item-content-silver h3{
		font-size: 18px;
	}

	.our-volunteer-silver::before{
      	width: 100px;
        height: 110px;
    }

	.our-volunteer-silver::after{
		bottom: -10px;
        width: 120px;
        height: 200px;
	}

	.volunteer-item-contant-silver h2{
		font-size: 18px;
	}

	.project-item-list-silver{
		gap: 20px;
	}

	.project-item-silver{
		width: 100%;
	}

	.project-item-content-silver h3{
		font-size: 18px;
	}

	.project-content-body-silver{
		gap: 20px;
	}

	.our-key-fact-silver::before{
        width: 100px;
        height: 110px;
    }

	.our-key-fact-silver::after{
        left: 10px;
        width: 120px;
        height: 200px;
	}

	.fact-item-silver{
		padding: 20px;
	}

	.fact-item-counter-box-silver{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fact-item-counter-content-silver h2{
        font-size: 28px;
    }

	.fact-item-image-silver figure{
        margin: 0 -30px -30px 0;
    }

	.feature-item-list-silver{
		gap: 20px;
	}

	.feature-item-silver{
		width: 100%;
	}

	.feature-item-content-silver h3{
		font-size: 18px;
	}

	.feature-image-box-1-silver{
		width: 55%;
		gap: 10px;
	}

	.feature-image-box-2-silver{
		width: 45%;
		gap: 10px;
	}

	.feature-image-box-2-silver .feature-image-silver figure{
		margin-left: -60px;
	}

	.feature-experience-box-silver{
		padding: 12px;
		margin: 15px 0 0 10px;
	}

	.feature-experience-box-silver .icon-box{
		width: 40px;
		height: 40px;
		margin-bottom: 10px;
	}

	.feature-experience-box-silver .icon-box img{
		max-width: 20px;
	}

	.feature-experience-content-silver p,
	.feature-counter-box-silver p{
		font-size: 14px;
	}

	.feature-counter-box-silver{
		max-width: 125px;
		padding: 12px;
		margin: 0 5px 15px 0;
	}

	.feature-counter-box-silver h2{
	    font-size: 24px;
	}

	.donate-box-title-silver{
		padding: 15px;
	}

	.donate-box-title-silver h2{
		font-size: 16px;
	}

	.donate-box-silver{
		padding: 20px;
	}

	.donate-value-box-silver .donate-value-silver label{
		font-size: 14px;
		padding: 15px 10px;
	}
	
	.testimonial-item-silver{
		gap: 20px;
	}

	.testimonial-item-author-silver{
        padding-top: 20px;
    }

	.testimonial-author-content-silver h3{
		font-size: 18px;
	}

	.testimonial-btn-silver{
		position: relative;
		justify-content: center;
		margin-top: 20px;
	}

	.testimonial-image-box-silver{
		gap: 10px;
	}

	.testimonial-image-silver{
    	width: calc(83% - 5px);
	}

	.testimonial-rating-box-silver{
    	width: calc(17% - 5px);
	}

	.testimonial-rating-box-silver{
		gap: 30px;
	}

	.testimonial-rating-counter-silver{
		min-height: 105px;
	}

	.testimonial-rating-counter-silver::before{
		bottom: -15px;
	}	

	.testimonial-rating-counter-silver h2{
        font-size: 26px;
    }

	.testimonial-rating-star-silver i{
		font-size: 14px;
		margin-bottom: 2px;
	}

	.testimonial-rating-content-silver{
		max-height: 220px;
	}

	.testimonial-rating-content-silver p{
		font-size: 14px;
	}

	.our-faqs-silver::before{
        width: 100px;
        height: 110px;
    }

	.our-faqs-silver::after{
        left: 10px;
        width: 120px;
        height: 200px;
	}

	.faq-cta-box-silver:before,
	.faq-cta-box-silver:after{
		display: none;
	}	

	.faq-cta-box-silver{
		max-width: 100%;
		width: auto;
		right: 10px;
		bottom: 10px;
		left: 10px;
		transform: initial;
		border-radius: 0;
		background: transparent;
		padding: 0;
	}

	.faq-cta-body-silver{
		padding: 15px;
	}

	.faq-cta-content-silver h2{
		font-size: 18px;
	}

	.faq-cta-content-silver p{
		font-size: 14px;
		margin: 5px 0 0;
	}

	.faq-cta-btn-silver{
		margin-top: 20px;
	}

	.faq-accordion-silver .accordion-header .accordion-button{
		font-size: 16px;
        padding: 12px 40px 12px 15px;
	}

	.faq-accordion-silver .accordion-item .accordion-button::after, 
	.faq-accordion-silver .accordion-item .accordion-button.collapsed::after{
        font-size: 20px;
	}

	.faq-accordion-silver .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.footer-header-silver{
		gap: 20px;
	}

	.footer-newsletter-box-silver .section-title{
		margin-bottom: 20px;
	}

	.footer-newsletter-box-silver .section-title h2{
		font-size: 24px;
	}

	.footer-links-silver{
		max-width: 100%;
	}

	.footer-links-silver h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-copyright-text-silver{
		padding: 15px 0;
	}	
}


/* zero changes */

.navlogo{
	/* width: 25%; */
	width: 28%;
}

.whatsapp-float img{
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
	z-index: 9999;

}


@media (max-width: 768px) {
	.navbar-brand{
		width: 75%;
	}
	.navlogo{
		width: 35%;
	}
}



/*==============================
      NGO TEAM SECTION
==============================*/

.elsh-team-section{
    width:100%;
    padding:90px 8%;
    background:#f7faf8;
}

.elsh-team-heading{
    text-align:center;
    margin-bottom:60px;
}

.elsh-team-heading span{
    color:#D53F33;
    font-weight:600;
    letter-spacing:2px;
    font-size:15px;
}

.elsh-team-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#1d3557;
}

.elsh-team-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

.elsh-team-wrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.elsh-team-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.elsh-team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.elsh-team-card img{
    width:100%;
    height:270px;
    object-fit:cover;
}

.elsh-team-card h3{
    margin:20px 0 8px;
    color:#1d3557;
    font-size:22px;
}

.elsh-team-card p{
    margin-bottom:22px;
    color:#D53F33;
    font-weight:600;
    font-size:15px;
}

/*==============================
        Tablet
==============================*/

@media(max-width:991px){

.elsh-team-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.elsh-team-heading h2{
    font-size:34px;
}

}

/*==============================
        Mobile
==============================*/

@media(max-width:767px){

.elsh-team-section{
    padding:70px 20px;
}

.elsh-team-wrapper{
    grid-template-columns:1fr;
    gap:20px;
}

.elsh-team-heading h2{
    font-size:28px;
}

.elsh-team-heading p{
    font-size:15px;
}

.elsh-team-card img{
    height:320px;
}

}



/*==============================
      ABOUT US SECTION
==============================*/

.epct-about-section{
    width:100%;
    padding:90px 8%;
    background:#f7fbf8;
}

.epct-about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

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

.epct-about-image img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.6s;
}

.epct-about-image:hover img{
    transform:scale(1.06);
}

.epct-about-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    padding:18px 25px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    animation:epctFloat 3s ease-in-out infinite;
}

.epct-about-badge h2{
    margin:0;
    color:#1d7d48;
    font-size:32px;
}

.epct-about-badge span{
    font-size:14px;
    color:#555;
}

.epct-small-title{
    color:#1d7d48;
    font-weight:700;
    letter-spacing:2px;
    font-size:15px;
}

.epct-about-content h2{
    font-size:42px;
    margin:15px 0 25px;
    color:#1c2f3f;
    line-height:1.3;
}

.epct-about-content p{
    color:#666;
    line-height:31px;
    font-size:17px;
}

.epct-about-feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.epct-feature-box{
    background:#fff;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.35s;
}

.epct-feature-box:hover{
    background:#1d7d48;
    color:#fff;
    transform:translateY(-6px);
}

.epct-about-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.epct-stat-box{
    flex:1;
    background:#fff;
    text-align:center;
    padding:25px;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.epct-stat-box:hover{
    transform:translateY(-8px);
}

.epct-stat-box h3{
    margin:0;
    color:#1d7d48;
    font-size:34px;
}

.epct-stat-box p{
    margin-top:8px;
    font-size:15px;
}

@keyframes epctFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

/*==============================
         TABLET
==============================*/

@media(max-width:992px){

.epct-about-container{
grid-template-columns:1fr;
}

.epct-about-content h2{
font-size:34px;
}

.epct-about-feature-list{
grid-template-columns:1fr 1fr;
}

}

/*==============================
          MOBILE
==============================*/

@media(max-width:768px){

.epct-about-section{
padding:70px 20px;
}

.epct-about-content h2{
font-size:28px;
}

.epct-about-content p{
font-size:16px;
line-height:29px;
}

.epct-about-feature-list{
grid-template-columns:1fr;
}

.epct-about-stats{
flex-direction:column;
}

.epct-about-badge{
left:15px;
bottom:15px;
padding:15px 18px;
}

.epct-about-badge h2{
font-size:26px;
}

}



/*==========================
    WHY CHOOSE US
==========================*/

.epct_choose_section{
    width:100%;
    padding:100px 7%;
    background:#f8fbf8;
    overflow:hidden;
}

.epct_choose_top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:70px;
    gap:50px;
}

.epct_choose_title{
    width:40%;
}

.epct_choose_title span{
    color:#2e8b57;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.epct_choose_title h2{
    font-size:55px;
    color:#162d3d;
    margin-top:15px;
    line-height:1.1;
}

.epct_choose_desc{
    width:45%;
}

.epct_choose_desc p{
    font-size:17px;
    color:#666;
    line-height:32px;
}

.epct_choose_main{
    position:relative;
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    align-items:center;
    gap:40px;
}

.epct_curve_line{
    position:absolute;
    width:100%;
    top:70px;
    left:0;
    z-index:0;
}

.epct_left_boxes,
.epct_right_boxes{
    display:flex;
    flex-direction:column;
    gap:40px;
    z-index:2;
}

.epct_info_card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.epct_info_card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.epct_icon{
    width:65px;
    height:65px;
    background:#2e8b57;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:18px;
    transition:.4s;
}

.epct_info_card:hover .epct_icon{
    transform:rotate(360deg);
    background:#1b6e45;
}

.epct_info_card h3{
    font-size:24px;
    color:#162d3d;
    margin-bottom:8px;
}

.epct_info_card h5{
    font-size:15px;
    color:#2e8b57;
    margin-bottom:15px;
    font-weight:600;
}

.epct_info_card p{
    color:#666;
    line-height:28px;
    font-size:15px;
}

.epct_center_image{
    position:relative;
    z-index:3;
    display:flex;
    justify-content:center;
}

.epct_image_shape{
    width:390px;
    height:500px;
    border-radius:220px;
    overflow:hidden;
    background:#ddd;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    animation:floatImage 4s ease-in-out infinite;
}

.epct_image_shape img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.epct_image_shape:hover img{
    transform:scale(1.08);
}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}


/*==========================
      TABLET
==========================*/

@media(max-width:1100px){

.epct_choose_top{
    flex-direction:column;
    gap:30px;
}

.epct_choose_title,
.epct_choose_desc{
    width:100%;
}

.epct_choose_title h2{
    font-size:44px;
}

.epct_choose_main{
    grid-template-columns:1fr;
    gap:40px;
}

.epct_curve_line{
    display:none;
}

.epct_left_boxes,
.epct_right_boxes{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.epct_info_card{
    width:47%;
}

.epct_center_image{
    order:-1;
}

.epct_image_shape{
    width:360px;
    height:470px;
}

}


/*==========================
      MOBILE
==========================*/

@media(max-width:768px){

.epct_choose_section{
    padding:70px 20px;
}

.epct_choose_top{
    text-align:center;
}

.epct_choose_title h2{
    font-size:32px;
}

.epct_choose_desc p{
    font-size:15px;
    line-height:28px;
}

.epct_choose_main{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.epct_center_image{
    order:1;
}

.epct_left_boxes{
    order:2;
}

.epct_right_boxes{
    order:3;
}

.epct_left_boxes,
.epct_right_boxes{
    width:100%;
    flex-direction:column;
}

.epct_info_card{
    width:100%;
    text-align:center;
    padding:25px;
}

.epct_icon{
    margin:auto;
    margin-bottom:18px;
}

.epct_image_shape{
    width:290px;
    height:380px;
}

}


/*==========================
      SMALL MOBILE
==========================*/

@media(max-width:480px){

.epct_choose_title h2{
    font-size:28px;
}

.epct_choose_desc p{
    font-size:14px;
}

.epct_image_shape{
    width:250px;
    height:330px;
}

.epct_info_card{
    padding:20px;
}

.epct_info_card h3{
    font-size:20px;
}

.epct_info_card h5{
    font-size:14px;
}

.epct_info_card p{
    font-size:14px;
    line-height:25px;
}

}


/*==========================
      FADE ANIMATION
==========================*/

.epct_info_card{
    opacity:0;
    transform:translateY(40px);
    animation:epctFadeUp .8s forwards;
}

.epct_left_boxes .epct_info_card:nth-child(1){
    animation-delay:.2s;
}

.epct_left_boxes .epct_info_card:nth-child(2){
    animation-delay:.4s;
}

.epct_right_boxes .epct_info_card:nth-child(1){
    animation-delay:.6s;
}

.epct_right_boxes .epct_info_card:nth-child(2){
    animation-delay:.8s;
}

@keyframes epctFadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}


/*==========================
      IMAGE GLOW
==========================*/

.epct_image_shape::after{

content:"";

position:absolute;

top:-10px;
left:-10px;
right:-10px;
bottom:-10px;

border-radius:250px;

border:2px dashed rgba(46,139,87,.25);

animation:rotateBorder 18s linear infinite;

pointer-events:none;

}

@keyframes rotateBorder{

0%{
transform:rotate(0deg);
}

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

}


/*==========================
      CARD BORDER EFFECT
==========================*/

.epct_info_card::before{

content:"";

position:absolute;

top:0;
left:0;

width:0%;

height:4px;

background:#2e8b57;

transition:.4s;

}

.epct_info_card:hover::before{

width:100%;

}


/*==========================
      IMAGE SHADOW
==========================*/

.epct_image_shape{

position:relative;

transition:.5s;

}

.epct_image_shape:hover{

transform:translateY(-10px);

box-shadow:0 35px 70px rgba(0,0,0,.18);

}


/*==========================
      SMOOTH
==========================*/

*{
scroll-behavior:smooth;
}

.epct_info_card,
.epct_image_shape,
.epct_icon{
transition:all .4s ease;
}




/*====================================
      NGO CAUSE SECTION
====================================*/

.epct-cause-section{
    width:100%;
    padding:100px 8%;
    background:#f8fbf8;
}

.epct-cause-container{
    max-width:1400px;
    margin:auto;
}


/*====================================
        HEADER
====================================*/

.epct-cause-header{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
    margin-bottom:80px;

}

.epct-cause-left{

    width:48%;

}

.epct-cause-right{

    width:40%;

}

.epct-mini-title{

    display:inline-block;
    background:#ffffff;
    padding:10px 18px;
    border-radius:40px;
    color:#1b7d47;
    font-weight:600;
    font-size:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.epct-cause-left h2{

    font-size:48px;
    margin-top:25px;
    color:#172b3a;
    line-height:1.15;

}

.epct-cause-right p{

    font-size:18px;
    line-height:33px;
    color:#666;
    margin-bottom:35px;

}


/*====================================
          BUTTON
====================================*/

.epct-btn{

display:inline-flex;
align-items:center;
gap:15px;

padding:18px 32px;

background:#1b7d47;

color:#fff;

text-decoration:none;

font-weight:600;

border-radius:10px;

transition:.4s;

}

.epct-btn:hover{

background:#14653a;

transform:translateY(-5px);

}



/*====================================
        SERVICE BOX
====================================*/

.epct-service-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:70px;

padding:45px;

background:#fff;

border-radius:30px;

margin-bottom:50px;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.5s;

position:relative;

overflow:hidden;

}

.epct-service-box:hover{

transform:translateY(-8px);

box-shadow:0 28px 55px rgba(0,0,0,.12);

}

.epct-service-box::before{

content:"";

position:absolute;

top:0;

left:0;

width:6px;

height:100%;

background:#1b7d47;

}



/*====================================
        CONTENT
====================================*/

.epct-service-content{

width:55%;

}

.epct-service-content span{

display:inline-block;

padding:8px 18px;

background:#eef8f2;

color:#1b7d47;

font-size:14px;

font-weight:700;

border-radius:30px;

margin-bottom:18px;

}

.epct-service-content h3{

font-size:38px;

line-height:1.25;

margin-bottom:20px;

color:#1b2d3d;

}

.epct-service-content p{

font-size:17px;

line-height:32px;

color:#666;

}



/*====================================
          IMAGE
====================================*/

.epct-service-image{

width:40%;

overflow:hidden;

border-radius:25px;

position:relative;

}

.epct-service-image img{

width:100%;

height:380px;

object-fit:cover;

display:block;

transition:.7s;

border-radius:25px;

}

.epct-service-box:hover img{

transform:scale(1.08);

}



/*====================================
        IMAGE SHADOW
====================================*/

.epct-service-image::after{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(to top,
rgba(0,0,0,.28),
transparent);

border-radius:25px;

}



/*====================================
      REVERSE BOX
====================================*/

.epct-reverse{

flex-direction:row;

}



/*====================================
      FADE EFFECT
====================================*/

.epct-service-box{

opacity:0;

transform:translateY(60px);

animation:epctFade .8s forwards;

}

.epct-service-box:nth-child(2){

animation-delay:.2s;

}

.epct-service-box:nth-child(3){

animation-delay:.5s;

}

.epct-service-box:nth-child(4){

animation-delay:.8s;

}

@keyframes epctFade{

0%{

opacity:0;

transform:translateY(60px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


/*========================================
      TABLET RESPONSIVE
========================================*/

@media (max-width:991px){

.epct-cause-section{
    padding:80px 5%;
}

.epct-cause-header{
    flex-direction:column;
    gap:35px;
    margin-bottom:60px;
}

.epct-cause-left,
.epct-cause-right{
    width:100%;
}

.epct-cause-left h2{
    font-size:44px;
}

.epct-cause-right p{
    font-size:16px;
    line-height:30px;
}

.epct-service-box{
    flex-direction:column;
    gap:35px;
    padding:35px;
}

.epct-service-content,
.epct-service-image{
    width:100%;
}

.epct-service-content{
    order:2;
}

.epct-service-image{
    order:1;
}

.epct-reverse{
    flex-direction:column;
}

.epct-service-image img{
    height:420px;
}

}


/*========================================
        MOBILE RESPONSIVE
========================================*/

@media (max-width:767px){

.epct-cause-section{
    padding:70px 20px;
}

.epct-mini-title{
    font-size:13px;
    padding:8px 16px;
}

.epct-cause-left h2{
    font-size:30px;
    line-height:1.3;
}

.epct-cause-right p{
    font-size:15px;
    line-height:28px;
}

.epct-btn{
    width:100%;
    justify-content:center;
    padding:16px;
}

.epct-service-box{
    padding:22px;
    border-radius:20px;
    margin-bottom:35px;
}

.epct-service-content span{
    font-size:13px;
}

.epct-service-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.epct-service-content p{
    font-size:15px;
    line-height:27px;
}

.epct-service-image img{
    height:260px;
}

}


/*========================================
        IMAGE ANIMATION
========================================*/

.epct-service-image img{
    transition:all .6s ease;
}

.epct-service-box:hover .epct-service-image img{
    transform:scale(1.08) rotate(1deg);
}


/*========================================
        CONTENT ANIMATION
========================================*/

.epct-service-content{
    transition:.4s ease;
}

.epct-service-box:hover .epct-service-content{
    transform:translateY(-5px);
}


/*========================================
        BUTTON ANIMATION
========================================*/

.epct-btn{
    position:relative;
    overflow:hidden;
}

.epct-btn::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.25);

transition:.5s;

}

.epct-btn:hover::before{

left:100%;

}


/*========================================
      CARD BORDER EFFECT
========================================*/

.epct-service-box::after{

content:"";

position:absolute;

left:0;
bottom:0;

width:0;

height:4px;

background:#1b7d47;

transition:.5s;

}

.epct-service-box:hover::after{

width:100%;

}


/*========================================
        IMAGE SHADOW
========================================*/

.epct-service-image{

box-shadow:0 18px 45px rgba(0,0,0,.12);

transition:.5s;

}

.epct-service-box:hover .epct-service-image{

box-shadow:0 30px 60px rgba(0,0,0,.18);

}


/*========================================
       FLOAT EFFECT
========================================*/

.epct-service-image{

animation:epctFloat 5s ease-in-out infinite;

}

@keyframes epctFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}


/*========================================
       SMOOTH TRANSITION
========================================*/

.epct-service-box,
.epct-service-content,
.epct-service-image,
.epct-btn,
.epct-service-image img{
    transition:all .4s ease;
}


/*========================================
        OPTIONAL BACKGROUND
========================================*/

.epct-cause-section{

background-image:
radial-gradient(circle at top right,#eef8f2 0%,transparent 30%),
radial-gradient(circle at bottom left,#f3f8ff 0%,transparent 35%);

}




/*=========================================
        NGO SERVICES SECTION
=========================================*/

.epngo-service-section{
    width:100%;
    padding:100px 8%;
    background:#f8fbf8;
    overflow:hidden;
}

.epngo-service-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.epngo-service-heading span{
    display:inline-block;
    color:#2e8b57;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.epngo-service-heading h2{
    font-size:52px;
    color:#173042;
    line-height:1.2;
    margin-bottom:25px;
}

.epngo-service-heading p{
    font-size:17px;
    line-height:32px;
    color:#666;
}


/*=========================================
        SERVICE ROW
=========================================*/

.epngo-service-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

    margin-bottom:90px;

    padding:40px;

    background:#fff;

    border-radius:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

    transition:.45s;

}

.epngo-service-row:hover{

transform:translateY(-8px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.epngo-service-row::before{

content:"";

position:absolute;

left:0;
top:0;

width:6px;
height:100%;

background:#2e8b57;

}


/*=========================================
        CONTENT
=========================================*/

.epngo-service-content{

width:52%;

}

.epngo-service-content span{

display:inline-block;

padding:8px 18px;

background:#eaf7ef;

border-radius:30px;

color:#2e8b57;

font-size:14px;

font-weight:700;

margin-bottom:18px;

}

.epngo-service-content h3{

font-size:38px;

color:#173042;

line-height:1.25;

margin-bottom:20px;

}

.epngo-service-content p{

font-size:17px;

line-height:32px;

color:#666;

}


/*=========================================
          IMAGE
=========================================*/

.epngo-service-image{

width:42%;

position:relative;

overflow:hidden;

border-radius:30px;

}

.epngo-service-image img{

width:100%;

height:420px;

object-fit:cover;

display:block;

border-radius:30px;

transition:.8s;

}

.epngo-service-row:hover img{

transform:scale(1.08);

}


/*=========================================
      IMAGE OVERLAY
=========================================*/

.epngo-service-image::after{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(to top,
rgba(0,0,0,.22),
transparent);

border-radius:30px;

}


/*=========================================
        REVERSE ROW
=========================================*/

.epngo-reverse{

flex-direction:row;

}


/*=========================================
        BUTTON (OPTIONAL)
=========================================*/

.epngo-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:#2e8b57;

color:#fff;

text-decoration:none;

font-weight:600;

border-radius:10px;

transition:.4s;

margin-top:25px;

}

.epngo-btn:hover{

background:#206a42;

transform:translateY(-4px);

}


/*=========================================
        HOVER BORDER
=========================================*/

.epngo-service-row::after{

content:"";

position:absolute;

left:0;
bottom:0;

width:0;

height:4px;

background:#2e8b57;

transition:.5s;

}

.epngo-service-row:hover::after{

width:100%;

}



/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media screen and (max-width:992px){

.epngo-service-section{
    padding:80px 5%;
}

.epngo-service-heading h2{
    font-size:40px;
}

.epngo-service-heading p{
    font-size:16px;
    line-height:30px;
}

.epngo-service-row{
    flex-direction:column;
    gap:35px;
    padding:30px;
}

.epngo-reverse{
    flex-direction:column;
}

.epngo-service-content,
.epngo-service-image{
    width:100%;
}

.epngo-service-image img{
    height:420px;
}

.epngo-service-content{
    text-align:center;
}

}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media screen and (max-width:768px){

.epngo-service-section{
    padding:70px 20px;
}

.epngo-service-heading{
    margin-bottom:50px;
}

.epngo-service-heading span{
    font-size:13px;
}

.epngo-service-heading h2{
    font-size:30px;
}

.epngo-service-heading p{
    font-size:15px;
    line-height:28px;
}

.epngo-service-row{
    padding:22px;
    margin-bottom:40px;
    border-radius:20px;
}

.epngo-service-content span{
    font-size:13px;
}

.epngo-service-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.epngo-service-content p{
    font-size:15px;
    line-height:27px;
}

.epngo-service-image img{
    height:260px;
    border-radius:18px;
}

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media screen and (max-width:480px){

.epngo-service-heading h2{
    font-size:26px;
}

.epngo-service-heading p{
    font-size:14px;
}

.epngo-service-content h3{
    font-size:21px;
}

.epngo-service-content p{
    font-size:14px;
    line-height:25px;
}

.epngo-service-image img{
    height:220px;
}

}


/*=========================================
        FLOATING IMAGE
=========================================*/

.epngo-service-image{

animation:epngoFloat 5s ease-in-out infinite;

}

@keyframes epngoFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}


/*=========================================
        CARD ANIMATION
=========================================*/

.epngo-service-row{

opacity:0;

transform:translateY(60px);

animation:epngoFade .9s forwards;

}

.epngo-service-row:nth-child(2){
animation-delay:.2s;
}

.epngo-service-row:nth-child(3){
animation-delay:.4s;
}

.epngo-service-row:nth-child(4){
animation-delay:.6s;
}

.epngo-service-row:nth-child(5){
animation-delay:.8s;
}

.epngo-service-row:nth-child(6){
animation-delay:1s;
}

@keyframes epngoFade{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}


/*=========================================
        IMAGE HOVER
=========================================*/

.epngo-service-image img{

transition:.8s ease;

}

.epngo-service-row:hover .epngo-service-image img{

transform:scale(1.08) rotate(1deg);

}


/*=========================================
        CONTENT HOVER
=========================================*/

.epngo-service-content{

transition:.4s;

}

.epngo-service-row:hover .epngo-service-content{

transform:translateY(-5px);

}


/*=========================================
        MINI TITLE
=========================================*/

.epngo-service-content span{

transition:.4s;

}

.epngo-service-row:hover .epngo-service-content span{

background:#2e8b57;

color:#fff;

}


/*=========================================
        IMAGE SHADOW
=========================================*/

.epngo-service-image{

box-shadow:0 15px 40px rgba(0,0,0,.10);

transition:.5s;

}

.epngo-service-row:hover .epngo-service-image{

box-shadow:0 30px 60px rgba(0,0,0,.18);

}


/*=========================================
        BACKGROUND EFFECT
=========================================*/

.epngo-service-section{

background-image:
radial-gradient(circle at top right,#eef8f2 0%,transparent 28%),
radial-gradient(circle at bottom left,#f4f8ff 0%,transparent 32%);

}


/*=========================================
        SMOOTH TRANSITION
=========================================*/

.epngo-service-row,
.epngo-service-content,
.epngo-service-image,
.epngo-service-image img{

transition:all .4s ease;

}


/*=========================================
        SCROLLBAR (OPTIONAL)
=========================================*/

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#2e8b57;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}


/*=========================================
        DONATION SECTION
=========================================*/

.epdon-section{
    width:100%;
    padding:100px 8%;
    background:#f8fbf8;
    overflow:hidden;
}

.epdon-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}


/*=========================================
            LEFT CONTENT
=========================================*/

.epdon-left{
    width:55%;
}

.epdon-subtitle{

    display:inline-block;

    padding:10px 20px;

    background:#e8f7ef;

    color:#1f8a52;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.epdon-left h2{

    font-size:52px;

    color:#173042;

    line-height:1.2;

    margin-bottom:25px;

}

.epdon-left p{

    font-size:17px;

    line-height:32px;

    color:#666;

    margin-bottom:35px;

}


/*=========================================
              BUTTON
=========================================*/

.epdon-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 35px;

background:#1f8a52;

color:#fff;

text-decoration:none;

font-weight:600;

border-radius:10px;

transition:.4s;

}

.epdon-btn:hover{

background:#16663d;

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(31,138,82,.25);

}


/*=========================================
            FEATURE CARDS
=========================================*/

.epdon-card-wrapper{

display:flex;

gap:20px;

margin-top:45px;

}

.epdon-card{

flex:1;

background:#fff;

padding:25px;

border-radius:20px;

text-align:center;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.45s;

position:relative;

overflow:hidden;

}

.epdon-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.epdon-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;

height:4px;

background:#1f8a52;

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.epdon-card:hover::before{

transform:scaleX(1);

}


/*=========================================
              ICON
=========================================*/

.epdon-icon{

width:70px;

height:70px;

margin:auto;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#e8f7ef;

font-size:30px;

margin-bottom:18px;

transition:.45s;

}

.epdon-card:hover .epdon-icon{

background:#1f8a52;

color:#fff;

transform:rotate(360deg);

}

.epdon-card h4{

font-size:22px;

color:#173042;

margin-bottom:12px;

}

.epdon-card p{

font-size:15px;

line-height:26px;

margin:0;

color:#666;

}


/*=========================================
              IMAGE
=========================================*/

.epdon-right{

width:45%;

display:flex;

justify-content:center;

}

.epdon-image-box{

width:100%;

max-width:500px;

overflow:hidden;

border-radius:35px;

position:relative;

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.epdon-image-box img{

width:100%;

height:650px;

display:block;

object-fit:cover;

transition:.8s;

}

.epdon-image-box:hover img{

transform:scale(1.08);

}


/*=========================================
          IMAGE OVERLAY
=========================================*/

.epdon-image-box::after{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(to top,
rgba(0,0,0,.18),
transparent);

pointer-events:none;

}



/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media screen and (max-width:991px){

.epdon-section{
    padding:80px 5%;
}

.epdon-container{
    flex-direction:column;
}

.epdon-left,
.epdon-right{
    width:100%;
}

.epdon-left{
    text-align:center;
}

.epdon-left h2{
    font-size:42px;
}

.epdon-left p{
    font-size:16px;
    line-height:30px;
}

.epdon-card-wrapper{
    justify-content:center;
    flex-wrap:wrap;
}

.epdon-card{
    width:48%;
    flex:none;
}

.epdon-image-box{
    max-width:650px;
}

.epdon-image-box img{
    height:500px;
}

}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media screen and (max-width:768px){

.epdon-section{
    padding:70px 20px;
}

.epdon-left h2{
    font-size:30px;
}

.epdon-left p{
    font-size:15px;
    line-height:28px;
}

.epdon-btn{
    width:100%;
}

.epdon-card-wrapper{
    flex-direction:column;
    gap:18px;
}

.epdon-card{
    width:100%;
}

.epdon-card h4{
    font-size:20px;
}

.epdon-card p{
    font-size:14px;
}

.epdon-image-box img{
    height:350px;
}

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media screen and (max-width:480px){

.epdon-left h2{
    font-size:26px;
}

.epdon-subtitle{
    font-size:13px;
}

.epdon-image-box{
    border-radius:20px;
}

.epdon-image-box img{
    height:300px;
}

}


/*=========================================
      FLOATING IMAGE
=========================================*/

.epdon-image-box{

animation:epdonFloat 5s ease-in-out infinite;

}

@keyframes epdonFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}


/*=========================================
        CARD ANIMATION
=========================================*/

.epdon-card{

opacity:0;

transform:translateY(40px);

animation:epdonFade .8s forwards;

}

.epdon-card:nth-child(1){
animation-delay:.2s;
}

.epdon-card:nth-child(2){
animation-delay:.4s;
}

.epdon-card:nth-child(3){
animation-delay:.6s;
}

@keyframes epdonFade{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0px);
}

}


/*=========================================
        IMAGE HOVER
=========================================*/

.epdon-image-box img{

transition:.8s;

}

.epdon-image-box:hover img{

transform:scale(1.08) rotate(1deg);

}


/*=========================================
        ICON PULSE
=========================================*/

.epdon-icon{

animation:epdonPulse 3s infinite;

}

@keyframes epdonPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}


/*=========================================
      BUTTON SHINE EFFECT
=========================================*/

.epdon-btn{

position:relative;

overflow:hidden;

}

.epdon-btn::before{

content:"";

position:absolute;

top:0;
left:-120%;

width:80px;
height:100%;

background:rgba(255,255,255,.35);

transform:skewX(-25deg);

transition:.7s;

}

.epdon-btn:hover::before{

left:130%;

}


/*=========================================
      CARD BACKGROUND EFFECT
=========================================*/

.epdon-card::after{

content:"";

position:absolute;

right:-60px;
bottom:-60px;

width:120px;
height:120px;

background:rgba(31,138,82,.05);

border-radius:50%;

transition:.5s;

}

.epdon-card:hover::after{

transform:scale(1.6);

}


/*=========================================
      SECTION BACKGROUND
=========================================*/

.epdon-section{

background-image:
radial-gradient(circle at top right,#eef8f2 0%,transparent 30%),
radial-gradient(circle at bottom left,#f5fbf8 0%,transparent 35%);

}


/*=========================================
      SMOOTH TRANSITION
=========================================*/

.epdon-card,
.epdon-btn,
.epdon-image-box,
.epdon-image-box img,
.epdon-icon{

transition:all .4s ease;

}


/*=========================================
      SCROLLBAR (OPTIONAL)
=========================================*/

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#1f8a52;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}



/*=========================================
        POLICY NOTICE SECTION
=========================================*/

.epolicy-section{
    width:100%;
    padding:100px 8%;
    background:#f8fbf8;
    overflow:hidden;
}

.epolicy-container{
    max-width:1200px;
    margin:auto;
}


/*=========================================
            NOTICE BOX
=========================================*/

.epolicy-box{

    position:relative;

    background:#ffffff;

    border-radius:28px;

    padding:60px;

    text-align:center;

    overflow:hidden;

    border:1px solid rgba(46,139,87,.12);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.45s;

}

.epolicy-box:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}


/*=========================================
        BACKGROUND CIRCLE
=========================================*/

.epolicy-box::before{

content:"";

position:absolute;

width:300px;
height:300px;

top:-150px;
right:-120px;

background:rgba(46,139,87,.08);

border-radius:50%;

}

.epolicy-box::after{

content:"";

position:absolute;

width:220px;
height:220px;

left:-90px;
bottom:-100px;

background:rgba(76,175,80,.06);

border-radius:50%;

}


/*=========================================
              ICON
=========================================*/

.epolicy-icon{

width:90px;

height:90px;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

background:#eaf8ef;

border-radius:50%;

margin-bottom:25px;

box-shadow:0 12px 30px rgba(46,139,87,.15);

transition:.5s;

}

.epolicy-box:hover .epolicy-icon{

transform:rotate(360deg) scale(1.08);

background:#2e8b57;

color:#fff;

}


/*=========================================
            SMALL TITLE
=========================================*/

.epolicy-tag{

display:inline-block;

padding:10px 22px;

background:#eef8f2;

color:#2e8b57;

border-radius:50px;

font-size:14px;

font-weight:700;

letter-spacing:.8px;

margin-bottom:22px;

}


/*=========================================
            MAIN HEADING
=========================================*/

.epolicy-box h2{

font-size:42px;

line-height:1.25;

color:#173042;

margin-bottom:25px;

font-weight:700;

}


/*=========================================
            PARAGRAPH
=========================================*/

.epolicy-box p{

max-width:850px;

margin:auto;

font-size:17px;

line-height:32px;

color:#666;

}


/*=========================================
        HOVER BORDER EFFECT
=========================================*/

.epolicy-box{

background-image:

linear-gradient(#fff,#fff),

linear-gradient(135deg,#2e8b57,#6cc070);

background-origin:border-box;

background-clip:padding-box,border-box;

border:2px solid transparent;

}

/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media (max-width:991px){

.epolicy-section{
    padding:80px 5%;
}

.epolicy-box{
    padding:45px 35px;
}

.epolicy-box h2{
    font-size:34px;
}

.epolicy-box p{
    font-size:16px;
    line-height:30px;
}

}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media (max-width:768px){

.epolicy-section{
    padding:70px 20px;
}

.epolicy-box{
    padding:35px 25px;
    border-radius:20px;
}

.epolicy-icon{
    width:75px;
    height:75px;
    font-size:34px;
}

.epolicy-tag{
    font-size:13px;
    padding:8px 18px;
}

.epolicy-box h2{
    font-size:28px;
    line-height:1.35;
}

.epolicy-box p{
    font-size:15px;
    line-height:28px;
}

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

.epolicy-box{
    padding:30px 20px;
}

.epolicy-box h2{
    font-size:23px;
}

.epolicy-box p{
    font-size:14px;
    line-height:26px;
}

.epolicy-icon{
    width:65px;
    height:65px;
    font-size:28px;
}

}


/*=========================================
        FLOATING ANIMATION
=========================================*/

.epolicy-box{

animation:epolicyFloat 5s ease-in-out infinite;

}

@keyframes epolicyFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0px);
}

}


/*=========================================
        FADE IN
=========================================*/

.epolicy-box{

opacity:0;

animation:epolicyFade .8s ease forwards;

animation-delay:.2s;

}

@keyframes epolicyFade{

0%{

opacity:0;

transform:translateY(50px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


/*=========================================
        SHINE EFFECT
=========================================*/

.epolicy-box{

position:relative;

}

.epolicy-box::after{

content:"";

position:absolute;

top:-100%;

left:-60%;

width:40%;

height:300%;

background:rgba(255,255,255,.35);

transform:rotate(25deg);

transition:.8s;

pointer-events:none;

}

.epolicy-box:hover::after{

left:140%;

}


/*=========================================
        TAG HOVER
=========================================*/

.epolicy-tag{

transition:.4s;

}

.epolicy-box:hover .epolicy-tag{

background:#2e8b57;

color:#fff;

}


/*=========================================
        ICON PULSE
=========================================*/

.epolicy-icon{

animation:epolicyPulse 2.8s infinite;

}

@keyframes epolicyPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}


/*=========================================
        TEXT HOVER
=========================================*/

.epolicy-box h2{

transition:.35s;

}

.epolicy-box:hover h2{

color:#2e8b57;

}


/*=========================================
        BACKGROUND EFFECT
=========================================*/

.epolicy-section{

background-image:

radial-gradient(circle at top left,
rgba(46,139,87,.08),
transparent 35%),

radial-gradient(circle at bottom right,
rgba(76,175,80,.08),
transparent 35%);

}


/*=========================================
        SMOOTH TRANSITION
=========================================*/

.epolicy-box,
.epolicy-box h2,
.epolicy-icon,
.epolicy-tag{

transition:all .4s ease;

}


/* 3buttons  */
/* Container styling for the buttons */
.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 10px; /* Leaves room for the 3D depth */
}

/* Base button layout with 3D properties */
.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between custom icon and text */
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px; /* Sleek slightly-rounded look works best for 3D */
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Global Pseudo-element setup for pure CSS icons */
.hero-btn::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- 3D Color Configurations & Dynamic Icons --- */

/* 1. Donate Button (Red) */
.btn-donate {
    background-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 6px 0 #b91c1c, 0 8px 15px rgba(0, 0, 0, 0.2);
}
.btn-donate::before {
    /* Heart Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.5 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.btn-donate:hover {
    background-color: #f87171;
}

/* 2. Volunteer Button (Green) */
.btn-volunteer {
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 6px 0 #047857, 0 8px 15px rgba(0, 0, 0, 0.2);
}
.btn-volunteer::before {
    /* Add User/Community Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}
.btn-volunteer:hover {
    background-color: #34d399;
}

/* 3. Contact Us Button (Blue) */
.btn-contact {
    background-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 6px 0 #1d4ed8, 0 8px 15px rgba(0, 0, 0, 0.2);
}
.btn-contact::before {
    /* Envelope/Mail Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.btn-contact:hover {
    background-color: #60a5fa;
}

/* --- The 3D Click / Press Interaction --- */
.hero-btn:active {
    transform: translateY(6px); /* Physically pushes down exactly the height of the 3D depth block */
    box-shadow: 0 0px 0 transparent, 0 2px 4px rgba(0, 0, 0, 0.1); /* Flattens out the base shadow dynamically */
}

/* Responsive alignment adjustments */
@media (max-width: 768px) {
    .hero-btn-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-btn {
        width: 100%;
    }
}

/* --- Only Mobile Mode Update --- */
@media (max-width: 480px) {
    .hero-btn-group {
        flex-direction: row; /* कॉलम की जगह रो (Row) मोड में रखेगा */
        flex-wrap: wrap;     /* जगह न होने पर नीचे शिफ्ट करेगा */
        gap: 12px;           /* मोबाइल स्क्रीन के हिसाब से स्पेसिंग */
        justify-content: center;
    }
    
    .hero-btn {
        /* पहले 2 बटन्स 50% विड्थ शेयर करेंगे (गैप माइनस करके) */
        width: calc(50% - 6px); 
        padding: 12px 10px;  /* मोबाइल पर टेक्स्ट न कटे इसलिए पैडिंग एडजस्ट की */
        font-size: 14px;     /* टेक्स्ट फिट रखने के लिए हल्का छोटा फॉन्ट */
    }

    /* तीसरी बटन (Contact Us) को नीचे अकेले 100% चौड़ाई देगा */
    .hero-btn:last-child {
        width: 100%;
    }
}

/* volentier  */

/* --- Join Volunteer Section Styling --- */
.join-volunteer-section {
    padding: 80px 0;
    background-color: #fcfcfd; /* Light modern soft background */
    overflow: hidden;
}

/* --- Left Side: Text Box Styling --- */
.volunteer-content-box {
    padding-right: 30px;
}

.volunteer-content-box .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #10b981; /* Emerald Green Accent */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.volunteer-content-box .section-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b; /* Deep Premium Slate Gray */
    line-height: 1.2;
    margin-bottom: 20px;
}

.volunteer-content-box .section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Feature Checklist Design */
.volunteer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.volunteer-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
}

.volunteer-features .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: rgba(16, 185, 129, 0.1); /* Soft Green transparent */
    color: #10b981;
    border-radius: 50%;
    font-size: 12px;
}

/* Modern Button inside Section */
.join-now-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1e293b;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
    transition: all 0.3s ease;
}

.join-now-btn:hover {
    background-color: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* --- Right Side: Image Box Styling --- */
.volunteer-image-box {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Design Accent Shape */
.volunteer-image-box .shape-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    background-color: #f1f5f9;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Asymmetric Modern Shape */
    z-index: 1;
}

.volunteer-main-img {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.volunteer-main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.volunteer-image-box:hover .volunteer-main-img img {
    transform: scale(1.03);
}

/* Interactive Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 3;
    border-left: 5px solid #10b981;
}

.floating-badge .badge-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.floating-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-top: 4px;
}

/* --- Responsive Adaptations (Mobile Friendly) --- */
@media (max-width: 991px) {
    .join-volunteer-section {
        padding: 60px 0;
    }
    
    .volunteer-content-box {
        padding-right: 0;
        margin-bottom: 50px; /* मोबाइल पर इमेज बॉक्स से दूरी बनाए रखने के लिए */
        text-align: center;
    }

    .volunteer-features li {
        justify-content: center;
    }

    .volunteer-image-box {
        max-width: 500px;
        margin: 0 auto; /* इमेज को मोबाइल स्क्रीन पर सेंटर अलाइन करेगा */
    }
}

@media (max-width: 576px) {
    .volunteer-content-box .section-main-title {
        font-size: 30px; /* छोटे फ़ोन्स के लिए फ़ॉन्ट थोड़ा छोटा */
    }
    
    .floating-badge {
        bottom: 20px;
        left: 10px;
        padding: 10px 18px;
    }

    .floating-badge .badge-number {
        font-size: 20px;
    }
}

/* menu css  */
/* --- Timeline Modern Layout System --- */
.trust-timeline-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Light premium layout background */
    position: relative;
    overflow: hidden;
}

.trust-timeline-section .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.trust-timeline-section .sub-title {
    color: #ff5e14; /* Trust primary accent color */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.trust-timeline-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Center vertical line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff5e14 0%, #2b59ff 100%);
    transform: translateX(-50%);
}

/* Base structural layout for each event card */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

/* Positioning left and right items */
.item-left {
    left: 0;
    text-align: right;
}

.item-right {
    left: 50%;
    text-align: left;
}

/* Central glowing dots */
.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #ff5e14;
    top: 28px;
    z-index: 2;
}

.item-left .timeline-dot {
    right: -8px;
}

.item-right .timeline-dot {
    left: -8px;
}

/* Modern clean date labels */
.timeline-date {
    font-weight: 700;
    color: #ff5e14;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Main Content Box inside the card */
.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a253c;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Layout (Mobile Screen Setup) --- */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px; /* Moves the center line to the left edge */
    }

    .timeline-item {
        width: 100%;
        padding-left: 45px;
        padding-right: 15px;
        text-align: left !important;
    }

    .item-right {
        left: 0;
    }

    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }
}

/* --- Founder Desk Section Styles --- */
.founder-desk-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Modern Layout Grid System */
.founder-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Left Column: Image Styling --- */
.founder-image-wrapper {
    position: relative;
    flex: 0 0 42%;
    max-width: 42%;
}

.founder-img-box {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-img {
    width: 100%;
    height: 595px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image-wrapper:hover .founder-img {
    transform: scale(1.03);
}

/* Decorative Back Box Accent */
.image-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    background-color: rgba(255, 94, 20, 0.08); /* Primary Theme Tint */
    border-radius: 20px;
    z-index: 1;
}

/* Floating Stats/Experience Badge */
.founder-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ff5e14; /* Accent color */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
    z-index: 3;
}

.founder-experience-badge h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.founder-experience-badge p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

/* --- Right Column: Content Styling --- */
.founder-content-wrapper {
    flex: 0 0 58%;
    max-width: 50%;
}

.founder-content-wrapper .sub-title {
    color: #ff5e14;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.founder-content-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Modern Quote SVG Stylist */
.quote-icon-box {
    width: 45px;
    color: rgba(255, 94, 20, 0.2);
    margin-bottom: 15px;
}

.founder-message p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
	text-align: justify;
}

/* Founder Footer Meta Details */
.founder-meta {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.founder-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 4px;
}

.founder-info p {
    font-size: 14px;
    color: #ff5e14;
    margin: 0;
    font-weight: 600;
}

/* Simulated Digital Signature Graphic Styling */
.sig-style {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 26px;
    color: #888888;
    letter-spacing: 1px;
    opacity: 0.7;
    user-select: none;
}

/* --- Responsive Controls (Mobile & Tablets) --- */
@media (max-width: 991px) {
    .founder-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .founder-image-wrapper, 
    .founder-content-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .founder-image-wrapper {
        width: 85%; /* Centering layout width constraints */
        margin: 0 auto;
    }

    .founder-img {
        height: 400px;
    }
    
    .founder-content-wrapper {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .founder-image-wrapper {
        width: 100%;
    }
    .founder-content-wrapper h2 {
        font-size: 28px;
    }
    .founder-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- Key Objectives Layout Styling --- */
.objectives-section {
    padding: 90px 0;
    background-color: #f8fafc; /* Premium off-white subtle backdrop */
    position: relative;
}

.objectives-section .section-title {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.objectives-section .sub-title {
    color: #ff5e14; /* Core Trust Accent Orange */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.objectives-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a253c; /* Dark Slate Title */
    margin-bottom: 15px;
}

.objectives-section p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Auto-Responsive Grid Matrix */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 10px 0;
}

/* Individual Objective Card UI */
.objective-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(26, 37, 60, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Big Ghost Serial Numbers */
.card-num-box {
    font-size: 45px;
    font-weight: 800;
    color: rgba(2ff, 94, 20, 0.08); /* Faded Primary color background */
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.objective-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.objective-card p {
    font-size: 14.5px;
    color: #556987;
    line-height: 1.6;
    margin: 0;
}

/* Premium bottom slider line interactive element */
.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5e14, #2b59ff);
    transition: width 0.4s ease;
}

/* --- Hover State Animations --- */
.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 37, 60, 0.08);
    border-color: rgba(255, 94, 20, 0.1);
}

.objective-card:hover .card-num-box {
    color: rgba(255, 94, 20, 0.25);
}

.objective-card:hover .card-hover-line {
    width: 100%;
}

/* --- Responsiveness Settings --- */
@media (max-width: 768px) {
    .objectives-section {
        padding: 60px 0;
    }
    .objectives-section h2 {
        font-size: 30px;
    }
    .objective-card {
        padding: 30px 25px;
    }
}


/* --- Governance / Legal Styling Setup --- */
.legal-transparency-section {
    padding: 90px 0;
    background-color: #f8fafc;
}

.legal-transparency-section .section-title {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.legal-transparency-section .sub-title {
    color: #ff5e14; /* Core Theme Orange */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.legal-transparency-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 15px;
}

.legal-transparency-section p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Subsection Typography Rules */
.block-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a253c;
    margin: 40px 0 25px 0;
    position: relative;
    padding-left: 15px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background-color: #ff5e14;
    border-radius: 4px;
}

.transparency-title::before {
    background-color: #2b59ff; /* Blue layout track for Reports */
}

/* Master Grid Structure */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Core Card Presentation Styling */
.doc-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(26, 37, 60, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 37, 60, 0.06);
}

/* Mini Info Tags inside cards */
.doc-tag {
    font-size: 11px;
    font-weight: 700;
    background-color: rgba(255, 94, 20, 0.07);
    color: #ff5e14;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue {
    background-color: rgba(43, 89, 255, 0.07);
    color: #2b59ff;
}

/* Custom Vector Icon Sizing */
.doc-icon-wrapper {
    width: 40px;
    height: 40px;
    color: #ff5e14;
    margin-bottom: 15px;
}

.report-card .doc-icon-wrapper {
    color: #2b59ff;
}

.doc-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.doc-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 8px;
}

.doc-info p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Action View Button Configuration */
.view-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f5f9;
    color: #334155;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

/* Hover States for individual buttons mapping colors */
.legal-card .view-btn:hover {
    background: #ff5e14;
    color: #ffffff;
}

.report-card .view-btn:hover {
    background: #2b59ff;
    color: #ffffff;
}

.view-btn:hover svg {
    transform: translate(2px, -2px);
}

/* --- Mobile Specific Screen Ratios --- */
@media (max-width: 576px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    .legal-transparency-section h2 {
        font-size: 28px;
    }
}

/* --- Volunteer Application Grid System --- */
.volunteer-join-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.volunteer-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Content Column Configuration */
.volunteer-info-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.volunteer-info-col .sub-title {
    color: #ff5e14; /* Brand Primary Theme color */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.volunteer-info-col h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Feature Checkboxes Lists */
.volunteer-features {
    margin-bottom: 40px;
}

.v-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.v-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 94, 20, 0.1);
    color: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.v-feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 4px;
}

.v-feature-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Left Bottom Asset Setup */
.volunteer-mock-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.v-display-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.v-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #2b59ff; /* Secondary Corporate Blue Theme color */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
}

.v-floating-badge h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.v-floating-badge p {
    margin: 0;
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* --- Right Column: Portal Registration Card Styling --- */
.volunteer-form-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.form-card-wrapper {
    background: #f8fafc; /* Premium smooth backdrop card background */
    border: 1px solid rgba(0,0,0,0.02);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(26, 37, 60, 0.04);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a253c;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Individual Form Fields Structure */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-size: 14.5px;
    color: #1a253c;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Responsive Grid setup inside the card */
.input-group-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form active state glow transitions */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff5e14;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12);
}

/* Action Submit Interface configuration */
.submit-v-btn {
    width: 100%;
    background: #ff5e14;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
    margin-top: 10px;
}

.submit-v-btn:hover {
    background: #e04f0f;
}

.submit-v-btn svg {
    transition: transform 0.2s ease;
}

.submit-v-btn:hover svg {
    transform: translateX(3px);
}

/* --- Responsive Media Layout adjustments --- */
@media (max-width: 991px) {
    .volunteer-row {
        flex-direction: column;
        gap: 50px;
    }
    .volunteer-info-col,
    .volunteer-form-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .volunteer-info-col h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .form-card-wrapper {
        padding: 25px 20px;
    }
    .input-group-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- CSR Core Layout Stylesheet --- */
.csr-partnership-section {
    padding: 90px 0;
    background-color: #f8fafc; /* Premium off-white tone */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Component styling */
.csr-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.csr-badge {
    background: rgba(43, 89, 255, 0.08);
    color: #2b59ff; /* Premium corporate blue */
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.csr-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.25;
}

.csr-section-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* 1. Opportunities Layout Configuration */
.csr-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.opportunity-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06);
}

.opp-icon-box {
    font-size: 32px;
    margin-bottom: 20px;
}

.opportunity-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.opportunity-card p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.compliance-tag {
    font-size: 12px;
    font-weight: 600;
    color: #0d9488; /* Emerald green accent */
    background: #ccfbf1;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* 2. Main Dashboard Split View */
.csr-dashboard-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.csr-dashboard-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.pane-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    box-sizing: border-box;
}

.pane-card h3, .corporate-contact-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pane-subtext {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Success Stories Interactive Vertical Timeline */
.story-timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

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

.time-marker {
    position: absolute;
    left: -27px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: #2b59ff;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.story-partner {
    font-size: 12px;
    font-weight: 700;
    color: #2b59ff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.time-content h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.time-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* 3. Right Side Cards Stack Configuration */
.download-resource-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.download-info h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
	    color: #fd905d;
}

.download-info p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 25px;
}

.csr-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff5e14; /* Accent color integration */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease;
}

.csr-download-btn:hover {
    background: #e04f0f;
}

/* 4. Contact Grid box setup */
.corporate-contact-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 16px;
}

.corporate-contact-box p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.channel-link:hover {
    border-color: #2b59ff;
    background: rgba(43, 89, 255, 0.02);
}

.channel-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-link small {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.channel-link strong {
    font-size: 15px;
    color: #0f172a;
}

/* --- Responsive Media Layout Configurations --- */
@media (max-width: 991px) {
    .csr-opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .csr-dashboard-row {
        flex-direction: column;
        gap: 30px;
    }
    .csr-dashboard-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .csr-section-header h2 {
        font-size: 30px;
    }
}

/* --- News Hub Layout Specification --- */
.news-updates-section {
    padding: 85px 0;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container-fluid {
    width: 100%;
    max-width: 1320px; /* Wider window path to accommodate 4 cards comfortably */
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Header Component Configuration */
.news-section-header {
    margin-bottom: 50px;
    text-align: left;
}

.news-badge-label {
    color: #ff5e14; /* Theme accent standard */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 10px;
}

.news-section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.news-section-header p {
    font-size: 15.5px;
    color: #64748b;
    margin: 0;
    max-width: 650px;
    line-height: 1.5;
}

/* --- 4 Elements Responsive Row Grid System --- */
.news-four-column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 News in a row */
    gap: 24px;
}

/* Card Individual Container Setup */
.news-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.news-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

/* Visual Thumb Aspect handling */
.news-img-frame {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Modern horizontal widescreen aspect ratio */
    background: #f1f5f9;
    overflow: hidden;
}

.news-actual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-item:hover .news-actual-img {
    transform: scale(1.06);
}

/* Dynamic Colorful Tags System */
.news-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.tint-blue { background: #e0f2fe; color: #0369a1; }
.tint-green { background: #dcfce7; color: #15803d; }
.tint-orange { background: #ffedd5; color: #c2410c; }
.tint-purple { background: #f3e8ff; color: #6b21a8; }

/* Text Content Wrapper Inside Card */
.news-body-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ensures buttons align at the bottom if content length varies */
}

.news-meta-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}

.meta-divider {
    opacity: 0.6;
}

.news-body-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.news-body-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-body-content h3 a:hover {
    color: #ff5e14;
}

.news-body-content p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Multi-line ellipsis clamp for content protection */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth Read More Trigger */
.news-readmore-btn {
    margin-top: auto; /* Pushes action block to card floor */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.news-readmore-btn svg {
    transition: transform 0.2s ease;
}

.news-readmore-btn:hover {
    color: #ff5e14;
}

.news-readmore-btn:hover svg {
    transform: translateX(4px);
}

/* --- Granular Responsive Breakpoints --- */
@media (max-width: 1200px) {
    .news-four-column-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid layout on tablets */
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .news-four-column-grid {
        grid-template-columns: 1fr; /* Single column flow on compact mobile UI */
    }
    .news-section-header h2 {
        font-size: 28px;
    }
}

/* --- Contact Section Main Stylesheet --- */
.contact-us-section {
    padding: 90px 0;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Text Blocks */
.contact-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px auto;
}

.contact-badge {
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14; /* Brand Accent Orange */
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
}

.contact-header p {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 2-Column Responsive Flexible Row Grid */
.contact-split-row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-column {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-column {
    flex: 0 0 45%;
    max-width: 45%;
}

/* Quick Utilities Mini Info Strips Grid */
.quick-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-strip-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-strip-card:hover {
    border-color: #2b59ff;
    background: rgba(43, 89, 255, 0.02);
}

.strip-icon {
    font-size: 20px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-details small {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.strip-details strong {
    font-size: 14.5px;
    color: #0f172a;
}

/* Address Box Cards Systems */
.office-address-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
}

.card-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.card-title-bar h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.office-type-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.head-tag { background: #e0f2fe; color: #0369a1; }
.regional-tag { background: #f3e8ff; color: #6b21a8; }

.trust-identity {
    font-size: 13.5px;
    font-weight: 700;
    color: #2b59ff; /* Corporate secondary branding identifier */
    margin: -4px 0 8px 0;
}

.actual-address {
    font-style: normal;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* Right Side Message Input Form System Wrapper */
.quick-form-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 16px;
}

.quick-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.quick-form-wrapper p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.form-field-wrapper {
    margin-bottom: 18px;
}

.form-field-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-field-wrapper input,
.form-field-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-size: 14px;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-field-wrapper input:focus,
.form-field-wrapper textarea:focus {
    outline: none;
    border-color: #ff5e14;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12);
}

/* Form Action Buttons Triggers */
.contact-action-btn {
    width: 100%;
    background: #ff5e14;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.contact-action-btn:hover {
    background: #e04f0f;
}

.contact-action-btn svg {
    transition: transform 0.2s ease;
}

.contact-action-btn:hover svg {
    transform: translate(2px, -2px);
}

/* --- Granular Grid Responsive Adapters Breakpoints --- */
@media (max-width: 991px) {
    .contact-split-row {
        flex-direction: column;
        gap: 35px;
    }
    .contact-info-column,
    .contact-form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .quick-channels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .quick-form-wrapper {
        padding: 25px 20px;
    }
    .contact-header h2 {
        font-size: 28px;
    }
}

/* --- Modern NGO Projects Module Styles --- */
.ngo-projects-section {
    padding: 95px 0;
    background-color: #f8fafc; /* Subtle light background to bring out white cards */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Master Header Framework styling */
.projects-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.projects-mini-badge {
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14; /* Standard primary core orange */
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 14px;
}

.projects-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.projects-section-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* --- 3 Column Dynamic Project Grid Layout --- */
.projects-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Flex Structural Card Wrapper */
.project-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.project-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 35px -5px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

/* Photographic Box Aspect configuration */
.project-img-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Golden 16:9 cinematic aspect box ratio */
    background: #e2e8f0;
    overflow: hidden;
}

.project-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-item:hover .project-card-img {
    transform: scale(1.05);
}

/* Absolute Custom Category Badging System */
.work-area-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.theme-edu { background: #e0f2fe; color: #0369a1; }
.theme-health { background: #dcfce7; color: #15803d; }
.theme-women { background: #f3e8ff; color: #6b21a8; }

/* Text Content Container Block inside Card */
.project-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Beneficiaries Strategic Highlight Component */
.project-beneficiaries {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    background: rgba(43, 89, 255, 0.03); /* Soft branding layout backdrop */
    border-left: 3px solid #2b59ff; /* Corporate secondary branding identifier */
    padding: 8px 14px;
    border-radius: 0 8px 8px 0;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #2b59ff;
    line-height: 1.2;
}

.stat-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.project-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

.project-card-body p {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 20px 0;
}

/* System Outcomes Panel Dashboard styling */
.project-outcome-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    margin-top: auto; /* Aligns dashboard nicely to floor level */
}

.project-outcome-box h5 {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
}

.project-outcome-box ul {
    margin: 0;
    padding-left: 16px;
}

.project-outcome-box li {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 8px;
}

.project-outcome-box li:last-child {
    margin-bottom: 0;
}

/* Clean UI CTA Button Element */
.project-explore-btn {
    display: block;
    text-align: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.project-explore-btn:hover {
    background: #ff5e14;
    color: #ffffff;
    border-color: #ff5e14;
}

/* --- Granular Grid Responsive Adapters Breakpoints --- */
@media (max-width: 1024px) {
    .projects-dynamic-grid {
        grid-template-columns: repeat(2, 1fr); /* Balanced 2 Columns on intermediate viewports */
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .projects-dynamic-grid {
        grid-template-columns: 1fr; /* Single column flow for simple scroll UI on mobile */
    }
    .projects-section-header h2 {
        font-size: 28px;
    }
}

/* --- High-Converting Premium Donation Hub Styles --- */
.donation-portal-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Master Header Framework Layout */
.donation-main-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.secure-badge {
    background: #e2f8f0;
    color: #059669; /* Trust green accent code */
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.donation-main-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
}

.donation-main-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* --- Transparency Impact Content Row Blocks --- */
.transparency-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.transparency-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

.transparency-card:hover {
    border-color: #cbd5e1;
}

.card-icon-indicator {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.transparency-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.transparency-card p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}

/* --- Primary Checkout Grid System Panels --- */
.transaction-workspace-grid {
    display: grid;
    grid-template-columns: 45% 55%; /* Asymmetric split layout */
    gap: 40px;
    align-items: stretch;
}

.checkout-panel-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.01);
}

.dynamic-pay-card {
    background: #ffffff;
    border-color: #e2e8f0;
}

.bank-ledger-card {
    background: #f8fafc; /* Accent focus background setup */
    border-color: #e2e8f0;
}

.panel-header-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.pay-method-indicator {
    font-size: 11px;
    font-weight: 700;
    color: #ff5e14; /* Brand core orange UI tone */
    background: rgba(255, 94, 20, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-header-bar h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.panel-desc-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 30px 0;
}

/* --- QR Code Vector Graphics Container Area --- */
.qr-scanner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.qr-placeholder-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.mock-qr-graphic {
    width: 160px;
    height: 160px;
    background: #f1f5f9; /* Dynamic vector grid mimic state */
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standard modern dynamic styling wire loops for scan vectors */
.qr-aim-corners {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #0f172a;
}
.top-left { top: 0; left: 0; border-right: none; border-bottom: none; border-top-left-radius: 4px; }
.top-right { top: 0; right: 0; border-left: none; border-bottom: none; border-top-right-radius: 4px; }
.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; border-bottom-left-radius: 4px; }
.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; border-bottom-right-radius: 4px; }

.qr-center-icon {
    font-size: 24px;
    animation: pulseScan 2s infinite ease-in-out;
}

@keyframes pulseScan {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.qr-action-instruction {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 12px 0 0 0;
}

/* --- Interactive UPI Field Strip Elements --- */
.upi-address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    margin-top: auto; /* Push actions cleanly down grid floor */
}

.upi-label-details small {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.upi-string-id {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.upi-copy-action-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upi-copy-action-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Secure Action Gateway Redirections */
.gateway-secure-trigger-btn {
    background: #ff5e14;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.gateway-secure-trigger-btn:hover {
    background: #e04f0f;
}

/* --- Corporate Bank Ledger Grid Tables Systems --- */
.bank-ledger-table {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
}

.ledger-row-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.ledger-row-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ledger-key-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.ledger-value-data {
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
}

.font-mono-spec {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Notice Panel Indicators Box styling */
.regulatory-notice-callout {
    margin-top: 25px;
    background: rgba(43, 89, 255, 0.04);
    border-left: 3px solid #2b59ff;
    padding: 16px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 16px;
    margin-top: 2px;
}

.regulatory-notice-callout p {
    font-size: 12.5px;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* --- Granular Grid Responsive Adapters Breakpoints --- */
@media (max-width: 991px) {
    .transparency-info-row,
    .transaction-workspace-grid {
        grid-template-columns: 1fr; /* Switch to balanced 1 column blocks layout seamlessly */
        gap: 30px;
    }
    .donation-main-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .checkout-panel-card {
        padding: 25px 20px;
    }
    .transparency-card {
        padding: 25px;
    }
    .bank-ledger-table {
        padding: 16px;
    }
}

/* --- Separate Payment Execution Portal Custom Styles --- */
.secure-payment-execution-hub {
    padding: 95px 0;
    background-color: #f8fafc; /* Contrasive light-grey shade layer separation */
    border-top: 1px solid #e2e8f0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header UI Settings */
.payment-hub-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px auto;
}

.secure-tag-glow {
    font-size: 12.5px;
    font-weight: 700;
    color: #0d9488; /* Emerald secure green standard */
    background: #ccfbf1;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 14px;
}

.payment-hub-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.payment-hub-header p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* --- 3 Columns Independent Equal-Height Grid System --- */
.payment-methods-triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Individual Payment Method Card Core Setup */
.payment-gateway-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-gateway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06);
}

/* Highlight accent logic for primary selection */
.active-accent-border {
    border-color: #ff5e14; /* Core Brand Orange identity highlight */
}

/* Standard Dark layout modifier for Card 2 to diversify visual weights */
.standard-dark-card {
    background: #0f172a; /* Deep Slate Midnight Black UI card */
    border-color: #1e293b;
}

.text-white { color: #ffffff !important; }
.text-muted { color: #94a3b8 !important; }

/* Micro elements positioning configurations */
.gateway-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}
.standard-dark-card .gateway-badge {
    color: #64748b;
}

.gateway-icon-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.standard-dark-card .icon-circle {
    background: #1e293b;
}

.gateway-icon-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.gateway-description {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 25px 0;
}

/* --- Card 1 Component: Vector Scanning Frame --- */
.payment-qr-display-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-aim-matrix {
    width: 130px;
    height: 130px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aim-bracket {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2.5px solid #ff5e14;
}
.tr-tl { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.tr-tr { top: 4px; right: 4px; border-left: none; border-bottom: none; }
.tr-bl { bottom: 4px; left: 4px; border-right: none; border-top: none; }
.tr-br { bottom: 4px; right: 4px; border-left: none; border-top: none; }

.qr-inner-logo {
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    z-index: 2;
}

/* Modern sweeping scanner line laser overlay mockup effect */
.qr-scan-line-anim {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff5e14;
    box-shadow: 0 0 8px #ff5e14;
    animation: laserScan 2.5s infinite linear;
}

@keyframes laserScan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Instant Copy Strip Utilities setup */
.payment-upi-copy-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: auto; /* Force lock tool elements safely down card footer baseline */
}

.payment-upi-copy-strip code {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.copy-field-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-field-btn:hover {
    background: #ff5e14;
    color: #ffffff;
    border-color: #ff5e14;
}

/* --- Card 2 Component: Cards Acceptance Badges --- */
.accepted-cards-visual-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.mini-card-logo {
    font-size: 10px;
    font-weight: 800;
    background: #1e293b;
    color: #94a3b8;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* --- Card 3 Component: Micro Bank Remittance Sheet --- */
.payment-mini-ledger-sheet {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.ledger-data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 8px;
}

.ledger-data-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ledger-data-item small {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.ledger-data-item strong {
    font-size: 13.5px;
    color: #0f172a;
}

.mono-digits {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700 !important;
}

/* --- Interactive Portal Execution Call-To-Action Switches --- */
.payment-hub-cta-btn {
    width: 100%;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.2s ease;
}

.execute-gateway-btn {
    background: #ff5e14;
    color: #ffffff;
}
.execute-gateway-btn:hover {
    background: #e04f0f;
}

.wire-notify-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
}
.wire-notify-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* --- Responsive Media Layout Configs Breakpoints --- */
@media (max-width: 991px) {
    .payment-methods-triple-grid {
        grid-template-columns: 1fr; /* Stack visually into neat rows flow for tablets/mobile screens */
        gap: 24px;
    }
    .payment-hub-header h2 {
        font-size: 28px;
    }
}

/* --- Modern Responsive Pop-Up Modal Architecture --- */
.global-announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999; /* Absolute highest hierarchy to stack over headers/video elements */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* State management modifier class toggled via JavaScript lifecycle */
.global-announcement-modal.is-active {
    opacity: 1;
    visibility: visible;
}

/* Frosted Glass Dynamic Backdrop Blur */
.modal-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Deep Slate semi-transparent backdrop shadow */
    backdrop-filter: blur(8px); /* Modern hardware accelerated frosted glass component */
    -webkit-backdrop-filter: blur(8px);
}

/* Main Container Card Cardboard Layer Architecture */
.modal-content-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 480px; /* Highly optimized focus reading viewport layout width */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    z-index: 2;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Snappy modern spring bounce animation curve */
}

/* Card entry transition sync logic */
.global-announcement-modal.is-active .modal-content-card {
    transform: scale(1) translateY(0);
}

/* Absolute Positioning for Dismiss Toggle Trigger Box */
.modal-dismiss-trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-dismiss-trigger:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: rotate(90deg); /* Modern subtle rotational transition */
}

/* Top Banner Accent Framework */
.modal-graphic-accent {
    height: 90px;
    background: linear-gradient(135deg, #ff5e14 0%, #ff8243 100%); /* Brand Core Vivid Orange Gradients */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-bell-icon {
    font-size: 32px;
    animation: microVibration 2.5s infinite ease-in-out;
}

@keyframes microVibration {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10%, 20% { transform: scale(1.1) rotate(-5deg); }
    30%, 50%, 70% { transform: scale(1.1) rotate(5deg); }
    40%, 60% { transform: scale(1.1) rotate(-5deg); }
    80%, 90% { transform: scale(1) rotate(0deg); }
}

/* Inner Layout Padding systems */
.modal-inner-body {
    padding: 32px;
    box-sizing: border-box;
}

.modal-text-group {
    text-align: center;
    margin-bottom: 24px;
}

.modal-alert-tag {
    font-size: 11px;
    font-weight: 700;
    color: #ff5e14;
    background: rgba(255, 94, 20, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 12px;
}

.modal-text-group h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.modal-text-group p {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Embedded interactive input rows architecture */
.modal-embedded-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-field-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-field-row label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.modal-field-row input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 13.5px;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.modal-field-row input:focus {
    outline: none;
    border-color: #ff5e14;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12);
}

/* Primary Execution Button */
.modal-submit-action-btn {
    width: 100%;
    background: #0f172a; /* Sophisticated contrasting black to separate callout weights */
    color: #ffffff;
    border: none;
    padding: 13px 20px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    transition: background 0.2s ease;
}

.modal-submit-action-btn:hover {
    background: #1e293b;
}

.modal-submit-action-btn svg {
    transition: transform 0.2s ease;
}

.modal-submit-action-btn:hover svg {
    transform: translateX(3px);
}

.modal-footer-compliance-text {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    margin: 16px 0 0 0;
}

/* --- Responsive Layout Breaks Mobile Viewport adjustments --- */
@media (max-width: 480px) {
    .modal-inner-body {
        padding: 24px 20px;
    }
    .modal-text-group h3 {
        font-size: 19px;
    }
    .modal-content-card {
        border-radius: 20px;
    }
}