

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



figure{
	margin: 0;
}

img{
	max-width: 100%;
}



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



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

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

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

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 15px;
    font-weight: 500;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 34px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

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

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

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

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



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

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

.about-us-images{
	position: relative;
	padding: 0 0 190px 110px;
	margin-right: 30px;
}

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

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

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

.about-img-1 img{
	aspect-ratio: 1 / 0.95;
}

.about-img-2{
	position: absolute;
	max-width: 400px;
	bottom: 0;
	left: 0;
	border: 15px solid var(--white-color);
	z-index: 1;
	overflow: hidden;
}

.about-img-2 img{
	aspect-ratio: 1 / 0.86;
}

.need-fund-box{
	position: absolute;
	right: 0;
	bottom: 15px;
	max-width: 165px;
	background-color: var(--accent-color);
	border-radius: 13px;
	padding: 18px;
    text-align: center;
	overflow: hidden;
}

.need-fund-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.need-fund-box:hover:before{
	top: auto;
    height: 100%;
}

.need-fund-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	margin-bottom: 10px;
	z-index: 1;
}

.need-fund-box p{
	position: relative;
	text-transform: capitalize;
	color: var(--white-color);
	font-weight: 600;
	margin: 0;
	z-index: 1;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.about-us-body-content{
	width: calc(55% - 30px);
}

.about-support-box{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-support-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.about-support-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

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

.about-support-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-support-content p{
	margin: 0;
}

.helped-fund-item{
	position: relative;
	width: calc(45% - 30px);
	padding: 0 30px 30px;
	text-align: center;
}

.helped-fund-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
	display: inline-block;
    mask-image: url('../images/helped-fund-box-mask.svg');
    mask-size: contain;
    mask-position: bottom center;
    mask-repeat: no-repeat;
	z-index: 0;
}

.helped-fund-img{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.helped-fund-img figure{
	max-width: 120px;
	display: inline-block;
	border-radius: 100px;
}

.helped-fund-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}

.helped-fund-content{
	position: relative;
	z-index: 1;
}

.helped-fund-content h2{
	color: var(--accent-color);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.helped-fund-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.helped-fund-content p{
	font-size: 14px;
	margin: 0;
}



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




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

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

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

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

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

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

	

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

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

	.about-img-2{
		border-width: 10px;
	}

	.need-fund-box{
		max-width: 135px;
		padding: 15px;
		bottom: 10px;
	}

	.need-fund-box img{
		max-width: 20px;
	}

	.need-fund-box p{
		font-size: 14px;
	}

	.about-support-box .icon-box img{
		max-width: 45px;
	}

	.helped-fund-img{
		margin-bottom: 15px;
	}

	.helped-fund-img figure{
		max-width: 100px;
	}

	.helped-fund-content h2{
		font-size: 24px;
	}

	
}

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

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

	.section-title h3{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.section-title h3::before{
		width: 16px;
		height: 16px;
	}

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

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

	
	.about-us-images{
		max-width: 100%;
		padding: 0 0 125px 70px;
	}

	.about-img-2{
		border-width: 5px;
		max-width: 210px;
	}

	.need-fund-box{
        max-width: 125px;
        padding: 10px;
        bottom: 5px;
    }

	.need-fund-box img{
        max-width: 22px;
		margin-bottom: 0;
    }

	.about-us-body-content,
	.helped-fund-item{
		width: 100%;
	}

	.about-support-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.helped-fund-item{
		padding: 0 20px 20px;
		max-width: 68%;
	}

	.helped-fund-img figure{
        max-width: 80px;
    }

	.helped-fund-content h2{
        font-size: 22px;
    }

	.helped-fund-content h3{
		font-size: 18px;
	}

	
}