/*-------------------------------------------------------------- 
# Donation 
--------------------------------------------------------------*/
.donation-one {
	padding-top: 150px;
	padding-bottom: 95px;
}

.donation-one .row.high-gutter {
	margin-left: -20px;
	margin-right: -20px;
}

.donation-one .row.high-gutter>[class*=col-] {
	padding-left: 20px;
	padding-right: 20px;
}

.donation-one__single {
	margin-bottom: 55px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 20px 30px 0px rgba(67, 131, 99, 0.1);
}

.donation-one__image {
	overflow: hidden;
	position: relative;
	background-color: var(--thm-black);
	border-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.donation-one__image>img {
	width: 100%;
	transform: scale(1.0);
	opacity: 1;
	transition: opacity 500ms ease, transform 500ms ease;
}

.donation-one__single:hover .donation-one__image>img {
	opacity: 0.2;
	transform: scale(1.05);
}

.donation-one__image>a {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--thm-primary);
	font-size: 23px;
	position: absolute;
	top: calc(50% - 32.5px);
	left: calc(50% - 32.5px);
	opacity: 0;
	transform: perspective(100px) translateZ(30px) rotate(45deg);
	transition: opacity 500ms ease 0ms, transform 500ms ease 0ms, background 500ms ease, color 500ms ease;
}

.donation-one__image>a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.donation-one__single:hover .donation-one__image>a {
	opacity: 1;
	transform: perspective(100px) translateZ(0px) rotate(0deg);
	transition: opacity 500ms ease 300ms, transform 500ms ease 300ms, background 500ms ease, color 500ms ease;
}

.donation-one__content {
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
}

.donation-one__btn {
	position: absolute;
	bottom: -25px;
	left: 40px;
	border-radius: 25px;
	opacity: 0;
	transform: perspective(159px) translateZ(30px) rotate(0deg);
	transition: color 500ms ease, background 500ms ease, transform 500ms ease, opacity 500ms ease;
	padding: 10px 33px;
}

.donation-one__single:hover .donation-one__btn {
	opacity: 1;
	transform: perspective(159px) translateZ(0px) rotate(0deg);
}

.donation-one__content {
	padding-top: 35px;
	padding-bottom: 53px;
}

.donation-one__content h3 {
	margin: 0;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 25px;
	color: var(--thm-black);
}

.donation-one__content h3 a {
	color: inherit;
	transition: 500ms;
}

.donation-one__content h3:hover a {
	color: var(--thm-primary);
}

.donation-one__content p {
	font-size: 16px;
	line-height: 30px;
	color: #93959e;
	margin: 0;
	width: 96%;
}

.donation-one__price {
	color: var(--thm-black);
	font-size: 15px;
	display: block;
}

.donation-one__progress {
	position: relative;
	width: 100%;
	height: 3px;
	background-color: #dfe5e5;
	margin-top: 63px;
	margin-bottom: 8px;
}

.donation-one__progress>span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: var(--thm-base);
}

.donation-one__progress>b {
	position: absolute;
	bottom: calc(100% + 5px);
	font-weight: 500;
	font-size: 16px;
	color: var(--thm-base);
}

.donation-one__home-four {
	position: relative;
}

.donation-one__home-four::before {
	content: '';
	width: 100%;
	height: 335px;
	background-color: #f0f7f7;
	position: absolute;
	bottom: 0;
	left: 0;
}

.donation-one__home-four .container {
	position: relative;
	z-index: 10;
}

.donation-one__home-two {
	padding-top: 0;
}