@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Montserrat:wght@400;500;600&family=Poppins:wght@400;500;600&family=Quicksand:wght@400;500;600&family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500&family=Rubik:wght@300;400;500;600&family=Rufina:wght@400;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	color: #000000;
	font-family: "Rubik", sans-serif;
	outline: 0;
}

a {
	cursor: pointer;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}

/* HEADER START */

header {
	background-color: #e24044;
	width: 100%;
	min-height: 100px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

header .header-wrapper {
	width: 100%;
	padding: 0 10%;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .header-wrapper .details {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 10px 0;
}

header .header-wrapper .details .phone {
	color: #ffffff;
	padding: 0 10px;
	border-right: 2px solid #001d3d;
}

header .header-wrapper .details .phone i {
	color: #ffffff;
	margin: 0 10px;
}

header .header-wrapper .details .email {
	color: #ffffff;
}

header .header-wrapper .details .email i {
	color: #ffffff;
	margin: 0 10px;
}

header .header-wrapper .social {
	display: flex;
	align-items: center;
	justify-content: center;
}

header .header-wrapper .social a {
	border-radius: 5px;
	margin: 5px;
	font-size: 15px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #28c793;
	background-color: #ffffff;
	transition: all 0.2s linear;
}

header .header-wrapper .social a:hover {
	color: #e24044;
}

/* HEADER END */

/* NAVIGATION BAR START */

nav {
	z-index: 100;
	padding: 0 20px;
	background-color: #ffffff;
	max-width: 1700px;
	width: 100%;
	min-height: 100px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

nav .brand-outer {
	display: flex;
	align-items: center;
}

nav .brand {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

nav .brand img {
	width: 70px;
	margin: 10px;
}

nav .brand .brand-name {
	margin: 0 10px;
}

nav .brand .brand-name h1 {
	font-weight: 600;
	font-size: 30px;
	margin: 5px 0;
	color: #040d3a;
	font-family: "Montserrat", sans-serif;
}

nav .brand .brand-name p {
	font-family: "Rubik", sans-serif;
	margin: 0 3px;
	font-size: 14px;
	color: #be1d20;
}

nav ul {
	height: auto;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap-reverse;
	margin-left: 60px !important;
	flex-direction: row;
}

nav ul li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
}

nav ul li.donate-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
}

nav ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	height: 100px;
	width: 100%;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	color: #082366;
	font-weight: 700;
	font-size: 17px;
	z-index: 1;
}

nav ul li.donate-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	height: 40px;
	width: 130px;
	position: relative;
	font-family: "Roboto", sans-serif;
	color: #fff;
	background-color: #28c793;
	border-radius: 100px;
	font-weight: 400;
	z-index: 1;
}

nav ul li a i {
	padding: 0 5px;
	position: relative;
	color: #28c793;
	z-index: 1;
	font-size: 13px;
}

nav ul li::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 0%;
	background-color: #28c793;
	transition: all 0.2s ease;
	z-index: -1;
}

nav ul li.donate-btn::after {
	content: "";
	display: none;
}

nav ul li:hover::after {
	width: 100%;
}

nav ul li ul {
	position: absolute;
	top: 100%;
	height: auto;
	width: 150px;
	display: none;
	margin-left: 0 !important;
	justify-content: center;
	transition: all 0.07s linear;
	flex-direction: column;
	align-items: flex-start;
	border-bottom: 3px solid #2ccc7f;
	background-color: #ffffff;
}

nav ul li:hover ul {
	display: flex;
}

nav ul li ul li {
	width: 100%;
}

nav ul li ul li a {
	display: flex;
	justify-content: flex-start;
	color: #082366 !important;
	padding: 15px;
	font-size: 15px;
	width: 100%;
	height: 50px;
}

nav ul li ul li a::after {
	display: none;
}

nav ul li ul li a:hover {
	color: #e24044 !important;
}

nav ul li ul li a i {
	color: #2ccc7f;
}

nav ul li ul li a:hover i {
	color: #2ccc7f;
}

/* NAVIGATION BAR END */

/* SWIPER START */

main {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

main .swiper {
	width: 100%;
	height: 650px;
}

main .swiper .swiper-wrapper .swiper-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

main .swiper .swiper-wrapper .swiper-slide img {
	width: 100%;
}

main .swiper .swiper-pagination .swiper-pagination-bullet {
	background-color: #e24044;
	width: 20px;
	height: 3px;
	border-radius: 50px;
}

main .swiper .swiper-button-prev,
main .swiper .swiper-button-next {
	margin: 0 30px;
}

main .swiper .swiper-button-prev::after,
main .swiper .swiper-button-next::after {
	color: #be1d20;
	font-size: 20px;
	background-color: #be1d2045;
	border-radius: 30px;
	padding: 15px;
}

/* SWIPER END */

/* WELCOME START */

.welcome {
	width: 100%;
}

.welcome .welcome-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	padding: 30px;
	background: #f8f9fa;
}

.welcome .welcome-wrapper h2 {
	font-family: "Quicksand", sans-serif;
	font-weight: 600;
	color: #001d3d;
	text-align: center;
	margin: 20px 0;
}

.welcome .welcome-wrapper p {
	max-width: 1000px;
	width: 100%;
	text-align: justify;
	font-family: "Rubik";
	color: #2c2a2a;
	font-size: 1.2rem;
}

/* WELCOME END */

/* PROGRAMMES START */

.programmes {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.programmes h1 {
	margin: 40px 0;
	font-family: "Montserrat", sans-serif;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.programmes h1::after {
	content: "";
	position: absolute;
	background-color: #28c79271;
	border-radius: 5px;
	height: 10px;
	z-index: -1;
	bottom: 7px;
	width: 110%;
}

.programmes .programmes-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 50px 0;
	width: 100%;
	max-width: 1000px;
	flex-wrap: wrap;
}

.programmes .programmes-wrapper .programm {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 400px;
	height: 200px;
	background-color: #eca5a61c;
	margin: 20px;
	border-radius: 10px;
	transition: all 0.2s ease-in;
}

.programmes .programmes-wrapper .programm:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.09);
}

.programmes .programmes-wrapper .programm .img-wrapper {
	margin: 10px 0;
}

.programmes .programmes-wrapper .programm .img-wrapper img {
	width: 70px;
}

.programmes .programmes-wrapper h2 {
	font-family: "Roboto Condensed", sans-serif;
	color: #001d3d;
	margin: 10px 0;
	user-select: none;
}

/* PROGRAMMES END */

/* DONATORS START */

.donators {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	background-color: #f8f9fa;
}

.donators .donators-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
	flex-wrap: wrap;
}

.donators .donators-wrapper .donator {
	display: flex;
	align-items: center;
	flex-direction: column;
	border-left: 1px solid #a2a2a218;
	border-right: 1px solid #a2a2a218;
	justify-content: center;
	width: 300px;
	height: 160px;
	margin: 20px 0;
	transition: all 0.2s ease-in;
}

.donators .donators-wrapper h4 {
	font-family: "Lilita One", cursive;
	color: #fa4a19;
	margin: 10px 0;
	user-select: none;
}

.donators .donators-wrapper span {
	font-family: "Roboto Condensed", sans-serif;
	color: #082366;
	font-size: 55px;
	user-select: none;
	display: flex;
	align-items: center;
}

.donators .donators-wrapper span h6 {
	font-family: "Roboto Condensed", sans-serif;
	color: #082366;
	font-size: 55px;
	margin: 0;
	user-select: none;
}

.donators a {
	font-family: "Roboto", sans-serif;
	color: #ffffff;
	font-size: 18px;
	background-color: #001d3d;
	padding: 10px 15px;
	border-radius: 100px;
	margin: 30px 0 35px 0;
	border: 2px solid #001d3d;
	transition: all 0.3s ease-out;
}

.donators a:hover {
	color: #001d3d;
	background-color: #ffffff;
}

/* DONATORS END */

/* LATEST START */

.latest {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.latest h1 {
	margin: 40px 0;
	position: relative;
	display: flex;
	align-items: flex-end;
	font-family: "Montserrat", sans-serif;
	justify-content: center;
}

.latest h1::after {
	content: "";
	position: absolute;
	background-color: #28c79271;
	border-radius: 5px;
	height: 10px;
	z-index: -1;
	bottom: 7px;
	width: 110%;
}

.latest p {
	margin-bottom: 50px;
	text-align: center;
	font-family: "Rufina", serif;
	color: #5c5c5c;
}

.latest .latest-wrapper {
	margin-bottom: 40px;
	display: flex;
	width: 100%;
	justify-content: center;
	max-width: 1440px;
	align-content: space-evenly;
	flex-wrap: wrap;
}

.latest .latest-wrapper .post {
	border-radius: 5px;
	width: 380px;
	margin: 20px;
	background-color: #ffffff;
	overflow: hidden;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	transition: all 0.2s ease-out;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
}

.latest .latest-wrapper .post:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.11);
}

.latest .latest-wrapper .post .img-wrapper {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	height: 270px;
	z-index: 1;
}

.latest .latest-wrapper .post .img-wrapper h4 {
	position: absolute;
	color: #ffffff;
	background-color: #2ccc7f;
	top: 20px;
	padding: 5px 10px;
	border-radius: 50px;
	right: 20px;
	font-size: 12px;
	z-index: 5;
}

.latest .latest-wrapper .post .img-wrapper img {
	height: 100%;
}

.latest .latest-wrapper .post .post-text {
	width: 100%;
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
}

.latest .latest-wrapper .post .post-text a {
	font-size: 18px;
	margin-bottom: 20px;
	color: #464646;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

.latest .latest-wrapper .post .post-text p {
	text-align: justify;
	font-size: 16px;
	color: #5e5d5d;
	font-family: "Rubik";
}

.latest .latest-wrapper .post .date-comment {
	font-size: 12px;
	margin-top: auto;
	padding: 10px 15px;
	border-top: 2px solid #e24044;
	background-color: #292929;
}

.latest .latest-wrapper .post .date-comment .date {
	color: #ffffff;
	margin-right: 5px;
}

.latest .latest-wrapper .post .date-comment .date i {
	color: #be1d20;
	margin-right: 5px;
}

.latest .latest-wrapper .post .date-comment .comment {
	color: #ffffff;
}

.latest .latest-wrapper .post .date-comment .comment i {
	color: #be1d20;
	margin-right: 5px;
}

/* LATEST END */

/* FOOTER START */

.footer {
	width: 100%;
	background-image: radial-gradient(
			circle,
			rgba(0, 0, 0, 0.356),
			rgba(0, 0, 0, 0.685)
		),
		url(../img/footer-bg.jpg);
	background-size: cover;
}

.footer .footer-wrapper .items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	padding: 0 100px;
}

.footer .footer-wrapper .items .footer-contact .footer-h5,
.footer .footer-wrapper .items .footer-navigation .footer-h5,
.footer .footer-wrapper .items .footer-about .footer-h5,
.footer .footer-wrapper .items .footer-subscribe .footer-h5 {
	width: 100%;
	font-weight: 300;
}

.footer .footer-wrapper .items .footer-contact {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	margin: 60px 0;
	padding: 0 50px;
}

.footer .footer-wrapper .items .footer-contact .footer-contact-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
}

.footer .footer-wrapper .items .footer-contact address {
	margin: 5px 0;
}

.footer .footer-wrapper .items .footer-contact address i {
	margin: 5px;
	font-size: 20px;
	color: #2ccc7f;
}

.footer .footer-wrapper .items .footer-contact span {
	margin: 5px 0;
}

.footer .footer-wrapper .items .footer-contact span i {
	margin: 5px;
	font-size: 20px;
	color: #2ccc7f;
}

.footer .footer-wrapper .items .footer-contact .social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: auto 0;
}

.footer .footer-wrapper .items .footer-contact .social a {
	border-radius: 100%;
	margin: 20px 5px;
	font-size: 20px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #28c793;
	background-color: #ffffff;
	transition: all 0.2s linear;
}

.footer .footer-wrapper .items .footer-contact .social a:hover {
	color: #e24044;
}

.footer .footer-wrapper .items .footer-navigation {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	margin: 60px 0;
	padding: 0 50px;
}

.footer .footer-wrapper .items .footer-navigation .footer-navigation-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: relative;
	width: 100%;
}

.footer
	.footer-wrapper
	.items
	.footer-navigation
	.footer-navigation-wrapper
	ul
	li
	a {
	font-size: 14px;
}

.footer
	.footer-wrapper
	.items
	.footer-navigation
	.footer-navigation-wrapper
	ul
	li
	a:hover {
	text-decoration: underline !important;
	color: #ffffff !important;
}

.footer .footer-wrapper .items .footer-about {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	margin: 60px 0;
	padding: 0 50px;
}

.footer .footer-wrapper .items .footer-about .footer-about-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: relative;
	width: 100%;
}

.footer .footer-wrapper .items .footer-about .footer-about-wrapper ul li a {
	font-size: 14px;
}

.footer
	.footer-wrapper
	.items
	.footer-about
	.footer-about-wrapper
	ul
	li
	a:hover {
	text-decoration: underline !important;
	color: #ffffff !important;
}

.footer .footer-wrapper .items .footer-subscribe {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 1;
	margin: 60px 0;
	padding: 0 50px;
}

.footer .footer-wrapper .items .footer-subscribe p {
	color: #e5e5e5;
	margin-left: 10px;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	width: 100%;
}

.footer
	.footer-wrapper
	.items
	.footer-subscribe
	.footer-subscribe-wrapper
	input {
	min-width: 350px;
	max-width: 400px;
	height: 40px;
	border-radius: 3px;
	border: 0;
	padding: 10px;
}

.footer
	.footer-wrapper
	.items
	.footer-subscribe
	.footer-subscribe-wrapper
	input:focus {
	outline: 0;
	border: 0;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a {
	border-radius: 3px;
	border: 0;
	margin: 20px 0;
	padding: 6px 12px;
	background-color: #e24044;
	color: #ffffff;
	transition: all 0.2s linear;
	user-select: none;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a i {
	color: #ffffff;
	margin: 0 5px;
}

.footer
	.footer-wrapper
	.items
	.footer-subscribe
	.footer-subscribe-wrapper
	a:hover {
	background-color: #be1d20;
}

.footer .footer-wrapper .copyright {
	padding: 20px;
	border-top: 1px solid #46464667;
}

.footer .footer-wrapper .copyright p {
	text-align: center;
	color: #ffffff;
}

.footer .footer-wrapper .copyright p a {
	text-align: center;
	color: #ffffff;
}

.footer .footer-wrapper .copyright p a:hover {
	text-decoration: underline !important;
}

.main-heading {
	margin: 80px 0 40px 0;
	font-family: "Montserrat", sans-serif;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.page-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	/*   padding: 30px; */
	background: #ffe8e8;
}

.page-header h2 {
	font-size: 2.2rem;
}

@media screen and (max-width: 2000px) {
	.page-header {
		padding: 63px 0;
		margin-top: -100px;
	}
	.page-header h2 {
		padding-top: 80px;
	}
	header {
		min-height: 50px !important;
	}

	nav {
		position: static;
		border-radius: 0;
	}
}

@media screen and (max-width: 1350px) {
	.page-header {
		padding: 80px 0;
	}
	nav {
		flex-direction: column;
		align-items: center;
		padding: 0;
	}

	nav .brand {
		width: 100%;
		justify-content: flex-start;
	}

	nav .brand-outer {
		display: flex;
		justify-content: space-between;
		width: 100%;
		align-items: center;
	}

	nav .brand-outer .menu-outer {
		height: 40px;
		width: 40px;
		border-radius: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 40px;
	}

	nav .brand-outer .menu-outer .menu-btn {
		background-color: #082366;
		height: 4px;
		width: 30px;
		border-radius: 5px;
		position: relative;
	}

	nav .brand-outer .menu-outer .menu-btn::after {
		content: "";
		position: absolute;
		top: 9px;
		background-color: #082366;
		height: 4px;
		width: 30px;
		border-radius: 5px;
	}

	nav .brand-outer .menu-outer .menu-btn::before {
		content: "";
		position: absolute;
		bottom: 9px;
		background-color: #082366;
		height: 4px;
		width: 30px;
		border-radius: 5px;
	}

	nav .brand-name {
		margin-right: 10px;
	}

	nav .brand-outer::after {
		display: none;
	}

	nav ul {
		flex-direction: column;
		align-items: center;
		display: none;
		width: 100%;
		height: auto;
		background-color: #ffffff;
	}

	nav ul li {
		border-bottom: 1px solid #e5e5e5;
	}

	nav ul li.donate-btn {
		border-bottom: 1px solid #e5e5e5;
		padding: 10px;
	}

	nav ul li a {
		color: #082366;
		height: 60px;
		justify-content: space-between;
	}

	nav ul li a::after {
		display: none;
	}

	nav ul li ul {
		position: relative;
		width: 100%;
		background-color: #1a1a1a;
		border-bottom: 0;
	}

	nav ul li ul li a {
		color: #ffffff !important;
	}
}

@media screen and (max-width: 1200px) {
	.page-header {
		padding: 80px !important;
	}
	main .swiper {
		height: auto;
		aspect-ratio: 1 / 0.5;
	}

	header .header-wrapper {
		padding: 0;
	}

	header .header-wrapper .social {
		padding: 0 10px;
	}
}

@media screen and (max-width: 760px) {
	header .header-wrapper {
		flex-direction: column;
	}

	header .header-wrapper .social {
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 720px) {
	nav .brand-outer {
		flex-direction: column;
		align-items: flex-start;
	}
	nav .brand-outer .menu-outer {
		margin: 0 10px;
	}

	nav .brand {
		flex-direction: column;
	}

	nav .brand .brand-name h1 {
		text-align: center;
	}

	nav .brand .brand-name p {
		text-align: center;
	}
}

@media screen and (max-width: 575px) {
	header .header-wrapper .details {
		flex-direction: column;
	}

	header .header-wrapper .details .phone {
		border: 0;
	}
	header .header-wrapper .details .email {
		text-align: center;
	}
}

@media screen and (max-width: 530px) {
	.latest .latest-wrapper {
		padding: 0;
	}

	.latest .latest-wrapper .title {
		padding: 30px;
	}

	main .swiper .swiper-pagination .swiper-pagination-bullet {
		width: 15px;
		height: 2px;
		border-radius: 50px;
	}

	main .swiper .swiper-button-prev,
	main .swiper .swiper-button-next {
		margin: 0 10px;
	}

	main .swiper .swiper-button-prev::after,
	main .swiper .swiper-button-next::after {
		font-size: 20px;
	}
	header .details {
		flex-direction: column;
		align-items: center;
	}

	header .details .mail-phone {
		flex-direction: column;
		align-items: center;
	}

	header .details .mail-phone a {
		border-right: 0;
	}

	.footer .footer-wrapper .items {
		padding: 0 0;
	}
}

@media screen and (max-width: 480px) {
	.footer .footer-wrapper .items .footer-subscribe h5 {
		text-align: center;
	}

	.footer .footer-wrapper .items .footer-subscribe p {
		text-align: center;
		width: 100%;
		margin-left: 0;
	}

	.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper {
		align-items: center;
		padding: 0 10px;
	}

	.footer .footer-wrapper .items .footer-subscribe {
		padding: 0 0;
	}

	.footer
		.footer-wrapper
		.items
		.footer-subscribe
		.footer-subscribe-wrapper
		input {
		width: 100%;
		max-width: 480px;
		min-width: 280px;
	}

	.footer .footer-wrapper .items .footer-subscribe .footer-subscribe-wrapper a {
		right: 13px;
		left: auto;
	}
}

@media screen and (max-width: 450px) {
	.latest .latest-wrapper .posts .post {
		width: 100%;
		max-width: 265px;
	}
}

@media screen and (max-width: 390px) {
	.footer .footer-wrapper .items .footer-subscribe h5 {
		text-align: center;
	}

	.footer .footer-wrapper .items .footer-contact {
		padding: 0 40px;
	}
}

/* contact us page css */

.contact-details {
	flex: 1;
	/* max-width: 40%; */
	/* margin-right: 20px; */
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 16px;
}
.contact-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 50px;
	max-width: 1700px;
	margin: auto;
	margin-bottom: 20px;
}
.contact-details h3 {
	margin-bottom: 15px;
	font-size: 24px;
}

.contact-details p {
	margin-bottom: 10px;
}

.contact-details strong {
	font-weight: 600;
}

.page-content {
	margin: 50px 0 100px 0;
	width: 100%;
}
.page-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 50px;
	max-width: 1700px;
	margin: auto;
}
.contact-us-div {
	flex: 1;
	padding: 20px;
	margin-right: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.google-map-div {
	flex: 1;
	padding: 20px;
	margin-left: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.contact-us-div h3,
.google-map-div h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
}

.contact-form {
	display: flex;
	flex-direction: column;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	font-size: 14px;
	font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.btn-back {
	background-color: #007bff;
}

.btn-submit,
.btn-back {
	padding: 10px 15px;
	background-color: #28a745;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.btn-submit:hover {
	background-color: #218838;
}

.map-container iframe {
	width: 100%;
	height: 450px;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Donation form css */

.donation-form-div {
	flex: 1;
	padding: 20px;
	max-width: 600px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.donation-form-div h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 24px;
}

.donation-form {
	display: flex;
	flex-direction: column;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.page-wrapper {
		flex-direction: column;
		padding: 0;
	}

	.contact-us-div,
	.google-map-div {
		margin: 0 0 20px 0;
	}

	.contact-us-div {
		order: 1;
	}

	.google-map-div {
		order: 2;
	}

	.btn-submit,
	.btn-back {
		width: 100%;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.page-header h2 {
		font-size: 20px;
	}

	.contact-us-div h3,
	.google-map-div h3 {
		font-size: 20px;
	}

	.form-group input,
	.form-group textarea {
		font-size: 14px;
	}

	.btn-submit,
	.btn-back {
		font-size: 14px;
		padding: 8px 12px;
		margin-bottom: 10px;
	}
}

/* gallery css */
/* Gallery Styles */
.gallery-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
}

.gallery-item {
	margin: 10px;
	cursor: pointer;
}

.gallery-item img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
}

.gallery-item img:hover {
	transform: scale(1.05);
}

/* mission page */

.mission h1 {
	text-align: center;
	color: #333;
}
.mission ul {
	list-style-type: none;
	padding: 0;
}
.mission ul li {
	background-color: #f9f9f9;
	margin: 10px 0;
	padding: 15px;
	border-left: 5px solid #007b5e;
	border-radius: 5px;
}
.mission ul li:nth-child(odd) {
	background-color: #e9e9e9;
}
.mission ul li h3 {
	margin: 0 0 10px 0;
	color: #007b5e;
}
.mission ul li p {
	margin: 0;
	color: #555;
}

/* vision css */

.vision h1 {
	text-align: center;
	color: #333;
}
.vision ul {
	list-style-type: none;
	padding: 0;
}
.vision ul li {
	background-color: #f9f9f9;
	margin: 10px 0;
	padding: 15px;
	border-left: 5px solid #007b5e;
	border-radius: 5px;
}
.vision ul li:nth-child(odd) {
	background-color: #e9e9e9;
}
.vision ul li h3 {
	margin: 0 0 10px 0;
	color: #007b5e;
}
.vision ul li p {
	margin: 0;
	color: #555;
}

/* services css */

.services {
	max-width: 1700px;
	margin: auto;
}

.service-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}
.service-section img {
	max-width: 100%;
	border-radius: 8px;
}
.service-content {
	flex: 1;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.service-section:nth-child(odd) .service-content {
	order: 2;
}
.service-content h2 {
	color: #007b5e;
	margin-bottom: 15px;
}
.service-content p {
	color: #555;
	line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 768px) {
	.service-section {
		flex-direction: column;
	}
	.service-content {
		padding: 20px 0 0 0;
	}
	.service-section img {
		margin-bottom: 20px;
	}
}

/* Thank You Page Styles */
.thank-you-section {
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 80vh; */
	background-color: #f4f4f9;
	text-align: center;
}

.thank-you-wrapper {
	background-color: #fff;
	padding: 40px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	/* max-width: 600px; */
	width: 100%;
}

.thank-you-wrapper h1 {
	font-size: 36px;
	color: #e24044;
	/* 	color: #007bff; */
	margin-bottom: 20px;
}

.thank-you-wrapper p {
	font-size: 18px;
	color: #555;
	margin-bottom: 30px;
}

.thank-you-wrapper a.btn {
	display: inline-block;
	padding: 12px 25px;
	font-size: 16px;
	background-color: #28c793;
	/* 	background-color: #007bff; */
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.thank-you-wrapper a.btn:hover {
	background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.thank-you-wrapper h1 {
		font-size: 28px;
	}

	.thank-you-wrapper p {
		font-size: 16px;
	}
}

/* Terms and Conditions Styles */
.terms-section {
	background-color: #f9f9f9;
	padding: 50px 20px;
	font-family: Arial, sans-serif;
}

.terms-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	background-color: #fff;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.terms-wrapper h1 {
	font-size: 34px;
	color: #007bff;
	margin-bottom: 20px;
	text-align: center;
}

.terms-wrapper p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 20px;
}

.terms-wrapper h2 {
	font-size: 24px;
	color: #333;
	margin-top: 30px;
}

.terms-wrapper h3 {
	font-size: 20px;
	color: #555;
	margin-top: 20px;
}

.terms-wrapper ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.terms-wrapper li {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.terms-wrapper a {
	color: #007bff;
	text-decoration: none;
}

.terms-wrapper a:hover {
	text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.terms-wrapper {
		padding: 20px;
	}

	.terms-wrapper h1 {
		font-size: 28px;
	}

	.terms-wrapper h2 {
		font-size: 22px;
	}

	.terms-wrapper h3 {
		font-size: 18px;
	}

	.terms-wrapper p,
	.terms-wrapper li {
		font-size: 14px;
	}
}

.footer-navigation-wrapper ul li a {
	color: #fff !important;
}
.footer-about-wrapper ul li a {
	color: #fff !important;
}

.about-us p {
	font-size: 18px !important;
	text-align: justify;
}

.maindonate-btn {
	display: inline-block;

	padding: 12px 29px;

	text-decoration: none;
	position: relative;
	font-family: "Roboto", sans-serif;
	color: #fff;
	background-color: #28c793;
	border-radius: 100px;

	z-index: 1;
	font-weight: 500;
	margin-top: 17px;
}
