@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	box-sizing: border-box;
	list-style: none;
	padding: 0;
	margin: 0;
}

body {
	background-color: #f8f9fa;
}

a {
	color: #333333;
}

/* ------------------------------Header Start------------------------------ */

header {
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	display: flex;
}

header .info {
	background-color: #14213d;
	justify-content: center;
	display: flex;
	width: 100%;
}

header .info .info-inner {
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	width: 1200px;
	display: flex;
}

header .info .info-inner .email-number {
	justify-content: start;
	align-items: center;
	display: flex;
}

header .info .info-inner .email-number .email {
	font-family: "Prompt", sans-serif;
	color: #ffffff;
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid #ffffff;
	text-decoration: none;
	transition: all 0.1s linear;
}

header .info .info-inner .email-number .email:hover {
	color: #e0e0e0;
	text-decoration: underline;
}

header .info .info-inner .email-number .number {
	font-family: "Prompt", sans-serif;
	color: #ffffff;
}

header .info .info-inner .donate-btn {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	background-color: #e22f3b;
	color: #ffffff;
	padding: 3px 9px;
	border-radius: 50px;
	font-size: 14px;
	margin-left: 5px;
	text-decoration: none;
	transition: all 0.1s linear;
}

header .info .info-inner .donate-btn:hover {
	background-color: #c52a34;
}

header .brand {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	background-color: #ffffff;
}

header .brand .logo {
	text-decoration: none !important;
	width: 200px;
	display: flex;
}

header .brand .logo img {
	border-radius: 1000px;
	width: 80px;
	object-fit: cover;
}

header .brand a {
	text-decoration: none !important;
}

header .brand a h1 {
	text-align: center;
	color: #ec4a0c;
	font-family: "Prompt", sans-serif;
	font-weight: 700;
	margin-top: 20px;
}

header .brand a p {
	text-align: center;
	font-family: "Baloo 2", sans-serif;
	font-weight: 500;
	font-size: 20px;
}

header .brand ul {
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0;
	margin: 0;
	width: 200px;
}

header .brand ul li {
	display: flex;
	align-items: center;
	list-style: none;
}

header .brand ul li a {
	padding: 6px;
	font-size: 20px;
	text-decoration: none;
}

header .brand ul li a:hover {
	background-color: #14213d;
	color: #ffffff;
}

header .brand ul li a i {
	display: flex;
	align-items: center;
	padding: 5px;
}

header nav {
	display: flex;
	justify-content: center;
	width: 100%;
	background-color: #ec4a0c;
	border-top: 2px solid #14213d;
	min-height: 50px;
}

header nav .nav-btn {
	display: none;
}

header nav .nav-bar {
	display: flex;
	background-color: #ec4a0c;
	justify-content: start;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	padding: 0;
	user-select: none;
	margin: 0;
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header nav .nav-bar > li {
	min-height: 50px;
}

header nav .nav-bar > li:hover {
	background-color: #14213d;
}

header nav .nav-bar .signup-signin {
	margin-left: auto;
	display: flex;
	align-items: center;
}

header nav .nav-bar .signup-signin:hover {
	background-color: transparent;
}

header nav .nav-bar li a {
	transition: all 0.1s linear;
	text-decoration: none;
	padding: 0 10px;
	font-family: "Lato", sans-serif;
	min-height: 50px;
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #ffffff !important;
	font-size: 14px;
	cursor: pointer;
}

header nav .nav-bar .signup-signin a {
	background-color: #023e8a;
	height: auto;
	font-family: "Prompt", sans-serif;
	padding: 5px 10px;
	margin-right: 5px;
	border-radius: 50px;
	min-height: auto;
	font-weight: 300;
	font-size: 14px;
	transition: all 0.1s linear;
}

header nav .nav-bar li a:hover {
	background-color: #14213d;
	color: #ffffff;
}

header nav .nav-bar .dropdown-btn {
	display: flex;
	flex-direction: column;
	position: relative;
}

header nav .nav-bar .dropdown-btn a {
	align-items: center;
	min-height: 50px;
}

header nav .nav-bar .dropdown-btn a::after {
	display: none;
}

header nav .nav-bar .dropdown-btn a i {
	display: flex;
	margin-left: 5px;
}

header nav .nav-bar .dropdown-btn .dropdown-menu {
	flex-direction: column;
	align-items: start;
	padding: 0;
	top: 100% !important;
	left: 0 !important;
	background-color: #14213d;
	margin: 0;
	min-width: 200px;
	border: 0;
	border-radius: 0;
	transform: translate3d(0px, 0px, 0px) !important;
}

header nav .nav-bar .dropdown-btn .dropdown-menu li {
	height: 50px;
	width: 100%;
}

header nav .nav-bar .dropdown-btn .dropdown-menu li a {
	height: 100%;
	transition: all 0.1s linear;
	text-decoration: none;
	padding: 0 10px;
	width: 100%;
	font-family: "Lato", sans-serif;
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #ffffff;
	font-size: 14px;
}

header nav .nav-bar .dropdown-btn .dropdown-menu li a:hover {
	background-color: #023e8a;
	color: #ffffff;
}

/* ------------------------------Header End------------------------------ */

/* ------------------------------Footer Start------------------------------ */

footer {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	background-image: linear-gradient(#14213dc4, #14213dc4),
		url("../images/bg-1.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

footer .footer-inner {
	max-width: 1200px;
	width: 100%;
	display: grid;
	justify-content: center;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

footer .footer-inner .column {
	flex-direction: column;
	display: flex;
	justify-content: flex-start;
	margin: 10px;
	z-index: 5;
	padding: 20px;
}

footer .footer-inner .brand {
	align-items: center;
}

footer .footer-inner .brand img {
	height: 100px;
	width: 100px;
	border-radius: 100%;
	object-fit: cover;
	margin: 30px;
}

footer .footer-inner .brand .content {
	flex-direction: column;
	display: flex;
	justify-content: start;
}

footer .footer-inner .brand .content h6 {
	color: #ec4a0c;
	font-family: "Prompt", sans-serif;
	margin: 0;
	font-weight: 400;
}

footer .footer-inner .brand .content span {
	color: #ffffff;
	margin-bottom: 15px;
	font-family: "Barlow", sans-serif;
}

footer .footer-inner .brand .content a {
	color: #ffffff;
	margin-bottom: 15px;
	font-family: "Barlow", sans-serif;
	text-decoration: none;
	transition: all 0.2s linear;
}

footer .footer-inner .brand .content a:hover {
	text-decoration: underline;
	color: #e0e0e0;
}

footer .footer-inner .quick-links {
	color: #c52a34;
}

footer .footer-inner .quick-links h6 {
	color: #e22f3b;
	font-family: "Prompt", sans-serif;
	margin: 30px;
	font-size: 20px;
}

footer .footer-inner .quick-links ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

footer .footer-inner .quick-links ul li {
	display: flex;
	align-items: center;
}

footer .footer-inner .quick-links ul li i {
	display: flex;
	align-items: center;
	font-size: 13px;
}

footer .footer-inner .quick-links ul li a {
	padding: 5px;
	margin: 5px;
	text-decoration: none;
	font-family: "Barlow", sans-serif;
	color: #ffffff;
	transition: all 0.2s linear;
	font-size: 15px;
}

footer .footer-inner .quick-links ul li a:hover {
	text-decoration: underline;
	color: #e0e0e0;
}

footer .footer-inner .important-links {
	color: #c52a34;
}

footer .footer-inner .important-links h6 {
	color: #e22f3b;
	font-family: "Prompt", sans-serif;
	margin: 30px;
	font-size: 20px;
}

footer .footer-inner .important-links ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

footer .footer-inner .important-links ul li {
	display: flex;
	align-items: center;
}

footer .footer-inner .important-links ul li i {
	display: flex;
	align-items: center;
	font-size: 13px;
}

footer .footer-inner .important-links ul li a {
	padding: 5px;
	margin: 5px;
	text-decoration: none;
	font-family: "Barlow", sans-serif;
	transition: all 0.2s linear;
	color: #ffffff;
	font-size: 15px;
}

footer .footer-inner .important-links ul li a:hover {
	text-decoration: underline;
	color: #e0e0e0;
}

footer .footer-inner .follow-us {
	color: #c52a34;
	align-items: center;
}

footer .footer-inner .follow-us h6 {
	color: #e22f3b;
	font-family: "Prompt", sans-serif;
	margin: 30px;
	font-size: 20px;
}

footer .footer-inner .follow-us ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

footer .footer-inner .follow-us ul li {
	display: flex;
	align-items: center;
}

footer .footer-inner .follow-us ul .fi-brands-facebook {
	margin-top: 50px;
	position: relative;
}

footer .footer-inner .follow-us ul .fi-brands-facebook::after {
	content: "";
	position: absolute;
	top: -50px;
	left: calc(50% - 2px);
	width: 4px;
	height: 45px;
	background-color: #e22f3b;
	z-index: -1;
	border-radius: 5px;
}

footer .footer-inner .follow-us ul .fi-brands-twitter {
	margin-top: 100px;
	position: relative;
}

footer .footer-inner .follow-us ul .fi-brands-twitter::after {
	content: "";
	position: absolute;
	top: -100px;
	left: calc(50% - 2px);
	width: 4px;
	height: 90px;
	background-color: #e22f3b;
	z-index: -1;
	border-radius: 5px;
}

footer .footer-inner .follow-us ul .fi-brands-instagram {
	margin-top: 150px;
	position: relative;
}

footer .footer-inner .follow-us ul .fi-brands-instagram::after {
	content: "";
	position: absolute;
	top: -150px;
	left: calc(50% - 2px);
	width: 4px;
	height: 135px;
	background-color: #e22f3b;
	z-index: -1;
	border-radius: 5px;
}

footer .footer-inner .follow-us ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

footer .footer-inner .follow-us ul li a i {
	transition: all 0.2s linear;
	padding: 5px;
	margin: 5px;
	color: #ffffff;
	display: flex;
	font-size: 30px;
}

footer .footer-inner .follow-us ul li a:hover i {
	color: #e0e0e0;
}

footer .copyright {
	width: 100%;
	display: flex;
	z-index: 5;
	justify-content: center;
	padding: 10px 15px;
	background-color: #fca311;
}

footer .copyright .copyright-inner {
	width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .copyright .copyright-inner p {
	margin: 0;
	color: #000000;
	display: inline;
	text-align: center;
	font-family: "Prompt", sans-serif;
	font-weight: 400;
}

footer .copyright .copyright-inner p a {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	text-decoration: none;
	color: #023e8a;
	transition: all 0.1s linear;
}

footer .copyright .copyright-inner p a:hover {
	color: #14213d;
}

footer .copyright .copyright-inner ul {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

footer .copyright .copyright-inner ul li a {
	margin: 5px;
	color: #000000;
	text-decoration: none;
	transition: all 0.1s linear;
	font-family: "Prompt", sans-serif;
	font-weight: 400;
}

footer .copyright .copyright-inner ul li a:hover {
	color: #023e8a;
	text-decoration: underline;
}

/* ------------------------------Footer End------------------------------ */

/* ------------------------------Page Heading Start------------------------------ */

.heading {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px 0;
	background-image: linear-gradient(#14213d65, #14213d65),
		url("../images/bg-3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.heading .heading-inner {
	width: 1200px;
	display: flex;
	align-items: start;
	flex-direction: column;
	padding: 20px;
}

.heading .heading-inner h1 {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #ffffff;
}

.heading .heading-inner .breadcrumb .breadcrumb-item a {
	font-family: "Barlow", sans-serif;
	text-decoration: none;
	font-weight: 500;
	color: #ffffff;
}

.heading .heading-inner .breadcrumb .breadcrumb-item a:hover {
	text-decoration: underline;
}

.heading .heading-inner .breadcrumb .active {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	color: #e0e0e0;
}

.heading .heading-inner .breadcrumb .active::before {
	color: #14213d;
}

/* ------------------------------Page Heading End------------------------------ */

/* ------------------------------Home Start------------------------------ */

.main-carousel .carousel-inner .carousel-item img {
	object-fit: cover;
	max-height: 700px;
	aspect-ratio: 2 / 1;
	width: 100%;
}

.main-paragraph {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.main-paragraph {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background-color: #ec4a0c;
	border-bottom: 3px solid #ffffff;
}

.main-paragraph p {
	text-align: center;
	font-family: "Baloo 2", sans-serif;
	font-optical-sizing: auto;
	margin: 0;
	color: #ffffff;
	font-weight: 500;
}

.first-section {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 30px 0;
}

.first-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	width: 1200px;
}

.first-section .section-inner h3 {
	color: #14213d;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
}

.first-section .section-inner h3::before {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	left: -50px;
}

.first-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	right: -50px;
}

.first-section .section-inner .items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	width: 100%;
	background-color: #e8f1f2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	margin-bottom: 50px;
	overflow: hidden;
}

.first-section .section-inner .items .item {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 10px;
	text-decoration: none;
	transition: all 0.1s linear;
}

.first-section .section-inner .items .item:hover {
	background-color: #c52a34;
}

.first-section .section-inner .items .item:hover .title {
	color: #ffffff;
}

.first-section .section-inner .items .item .logo {
	object-fit: cover;
	max-width: 110px;
	width: calc(100% - 60px);
	margin: 30px;
	padding: 10px;
	background-color: #ffffff;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
}

.first-section .section-inner .items .item .title {
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	text-align: center;
}

.second-section {
	display: flex;
	background-image: linear-gradient(#000000bb, #000000bb),
		url("../images/bg-2.jpg");
	background-size: cover;
	justify-content: center;
}

.second-section .section-inner {
	display: flex;
	overflow: auto;
}

.second-section .section-inner .item {
	margin: 15px;
	padding: 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-decoration: none;
	transition: all 0.15s linear;
	user-select: none;
	position: relative;
	background-image: linear-gradient(#e22f3b, #fca311);
}

.second-section .section-inner .item::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #e8f1f2;
	transition: all 0.15s linear;
}

.second-section .section-inner .item:hover::after {
	width: 100%;
}

.second-section .section-inner .item:hover {
	transform: scale(1.05);
}

.second-section .section-inner .item i {
	color: #ffffff;
	font-size: 25px;
}

.second-section .section-inner .item h3 {
	color: #ffffff;
	font-family: "Barlow", sans-serif;
	font-size: 23px;
	text-align: center;
	text-wrap: nowrap;
}

.third-section {
	display: flex;
	width: 100%;
	padding: 30px 0;
}

.third-section .section-inner {
	display: grid;
	width: 100%;
	padding: 20px;
	grid-template-columns: 300px 1fr 300px;
	gap: 20px;
	justify-items: center;
	align-items: start;
}

.third-section .section-inner h3 {
	color: #14213d;
	font-family: "Poppins", sans-serif;
	padding: 30px 0;
	text-transform: uppercase;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	grid-area: 1 / 1 / 2 / 4;
}

.third-section .section-inner h3::before {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	left: -50px;
}

.third-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	right: -50px;
}

.third-section .section-inner .member-volunteer-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-area: 2 / 1 / 3 / 2;
	width: 100%;
	max-width: 260px;
}

.third-section .section-inner .member-volunteer-wrapper .members {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #e22f3b;
	border-radius: 8px;
	background: #14213d;
}

.third-section .section-inner .member-volunteer-wrapper .members h5 {
	font-family: "Prompt", sans-serif;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #ffffff;
}

.third-section .section-inner .member-volunteer-wrapper .members .content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.third-section .section-inner .member-volunteer-wrapper .members .content h2 {
	color: #ffffff;
	font-family: "Prompt", sans-serif;
	margin: 15px 0;
	font-size: 26px;
}

.third-section .section-inner .member-volunteer-wrapper .volunteers {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	border: 1px solid #e22f3b;
	background: #14213d;
	border-radius: 8px;
}

.third-section .section-inner .member-volunteer-wrapper .volunteers h5 {
	font-family: "Prompt", sans-serif;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #ffffff;
}

.third-section .section-inner .member-volunteer-wrapper .volunteers .content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.third-section
	.section-inner
	.member-volunteer-wrapper
	.volunteers
	.content
	h2 {
	color: #ffffff;
	font-family: "Prompt", sans-serif;
	font-size: 26px;
	margin: 15px 0;
}

.third-section .section-inner .donors {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	grid-area: 2 / 3 / 3 / 4;
	width: 100%;
	max-width: 260px;
	background-color: #14213d;
	border-radius: 8px;
}

.third-section .section-inner .donors h5 {
	font-family: "Prompt", sans-serif;
	margin: 20px 0;
	color: #ffffff;
}

.third-section .section-inner .donors .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	width: 100%;
	height: max-content;
}

.third-section .section-inner .donors .content h2 {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	margin: 30px 0;
	font-size: 45px;
}

.third-section .section-inner .donors .content a {
	color: #ffffff;
	font-family: "Prompt", sans-serif;
	margin: 15px 0;
	padding: 10px 20px;
	border: 1px solid #e22f3b;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.1s linear;
}

.third-section .section-inner .donors .content a:hover {
	background-color: #e22f3b;
}

.third-section .section-inner .team {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	grid-area: 3 / 1 / 4 / 2;
}

.third-section .section-inner .team h5 {
	font-family: "Prompt", sans-serif;
	margin: 20px 0;
}

.third-section .section-inner .team .team-swiper {
	border-radius: 8px;
	max-width: 260px;
	height: 300px;
	width: 100%;
}

.third-section .section-inner .team .team-button-next {
	top: 60%;
	right: 0;
	background-color: #ff6e78ad;
	height: 40px;
	width: 40px;
	padding: 5px;
	border-radius: 10px 0 0 10px;
}

.third-section .section-inner .team .team-button-prev {
	top: 60%;
	left: 0;
	background-color: #ff6e78ad;
	height: 40px;
	width: 40px;
	padding: 5px;
	border-radius: 0 10px 10px 0;
}

.third-section .section-inner .team .team-button-next i,
.third-section .section-inner .team .team-button-prev i {
	color: #14213d;
	font-size: 20px;
	display: flex;
}

.third-section .section-inner .team .team-button-next::after,
.third-section .section-inner .team .team-button-prev::after {
	display: none;
}

.third-section .section-inner .team .team-swiper .team-slide {
	background: linear-gradient(#023e8a, #14213d);
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px 0;
	border-top: 4px solid #00aa71;
	border-bottom: 4px solid #00aa71;
}

.third-section .section-inner .team .team-swiper .team-slide img {
	margin: 20px;
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 100%;
}

.third-section .section-inner .team .team-swiper .team-slide span {
	margin: 10px 10px 20px 10px;
}

.third-section .section-inner .team .team-swiper .team-slide span h4 {
	font-family: "Prompt", sans-serif;
	font-size: 21px;
	color: #fca311;
	text-align: center;
	font-weight: 500;
}

.third-section .section-inner .team .team-swiper .team-slide span p {
	font-weight: 500;
	text-align: center;
	font-family: "Barlow", sans-serif;
	color: #ffffff;
	margin: 0;
	font-size: 16px;
}

.third-section .section-inner .activity {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	grid-area: 3 / 3 / 4 / 4;
}

.third-section .section-inner .activity h5 {
	font-family: "Prompt", sans-serif;
	margin: 20px 0;
}

.third-section .section-inner .activity marquee {
	width: 260px;
	height: 300px;
	border-radius: 8px;
	background: linear-gradient(#023e8a, #14213d);
	padding: 15px;
}

.third-section .section-inner .activity marquee p {
	font-size: 16px;
	font-family: "Baloo 2", sans-serif;
	text-align: center;
	color: #fff;
}

.third-section .section-inner .posts {
	background-color: #e8f1f2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	display: flex;
	justify-content: start;
	grid-area: 2 / 2 / 4 / 3;
	align-items: center;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: auto;
	padding: 30px;
	color: #ffffff;
}

.third-section .section-inner .posts::-webkit-scrollbar {
	width: 10px;
	border-radius: 10px;
}

.third-section .section-inner .posts::-webkit-scrollbar-track {
	background-color: #f8f9fa;
}

.third-section .section-inner .posts::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #023e8a;
}

.third-section .section-inner .posts .post {
	background-color: #ffffff;
	display: flex;
	border-radius: 10px;
	margin-bottom: 20px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.third-section .section-inner .posts .post .post-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	width: 100%;
}

.third-section .section-inner .posts .post .post-content h5 {
	color: #000000;
	font-family: "Prompt", sans-serif;
	margin: 0;
	font-weight: 400;
}

.third-section .section-inner .posts .post .post-content span {
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e22f3b;
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 50px;
	font-family: "Prompt", sans-serif;
}

.third-section .section-inner .posts .post .post-content span i {
	display: flex;
	align-items: center;
	margin-right: 8px;
}

.third-section .section-inner .posts .post .post-img {
	width: 100%;
	overflow: hidden;
	padding: 0 20px;
}

.third-section .section-inner .posts .post .post-img img {
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
}

.third-section .section-inner .posts .post .post-comments {
	width: 100%;
}

.third-section .section-inner .posts .post .post-comments h4 {
	color: #14213d;
	margin: 20px 20px 10px 20px;
	font-family: "Lato", sans-serif;
	font-weight: 600;
}

.third-section .section-inner .posts .post .post-comments .comments {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	margin: 0;
}

.third-section .section-inner .posts .post .post-comments .comments li {
	margin: 0 20px;
	color: #000000;
}

.third-section .section-inner .posts .post .post-comments .comments li h6 {
	margin: 0 0 3px 0;
	color: #000000;
	font-family: "Barlow", sans-serif;
}

.third-section .section-inner .posts .post .post-comments .comments li p {
	margin: 0 0 10px 0;
	color: #495057;
	font-family: "Barlow", sans-serif;
}

.third-section .section-inner .posts .post .post-comments .comment-form {
	display: flex;
	align-items: end;
	height: auto;
}

.third-section
	.section-inner
	.posts
	.post
	.post-comments
	.comment-form
	#comment {
	width: 100%;
	border: none;
	border-radius: 5px;
	font-family: "Barlow", sans-serif;
	padding: 10px;
	margin: 10px;
	resize: none;
	font-size: 16px;
	background-color: #f8f9fa;
}

.third-section
	.section-inner
	.posts
	.post
	.post-comments
	.comment-form
	#comment:focus {
	outline: 0;
}

.third-section .section-inner .posts .post .post-comments .comment-form button {
	border: none;
	border-radius: 5px;
	font-family: "Barlow", sans-serif;
	padding: 10px;
	font-size: 16px;
	margin: 10px 10px 10px 0;
	background-color: #e22f3b;
	transition: all 0.1s ease;
	color: #ffffff;
}

.third-section
	.section-inner
	.posts
	.post
	.post-comments
	.comment-form
	button:hover {
	background-color: #c52a34;
}

.third-section
	.section-inner
	.posts
	.post
	.post-comments
	.comment-form
	button
	i {
	font-size: 16px;
}

.fourth-section {
	display: flex;
	background-color: #ec4a0c;
	justify-content: center;
	padding: 30px 0;
	overflow: hidden;
}

.fourth-section .section-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	width: 100%;
}

.fourth-section .section-inner .user {
	display: flex;
	align-items: center;
	justify-content: start;
	background-color: #14213d;
	width: 50%;
	height: 100%;
	margin: 0 20px;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.fourth-section .section-inner .user img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: top;
}

.fourth-section .section-inner .user span {
	padding: 10px;
	margin-left: 20px;
	color: #ffffff;
}

.fourth-section .section-inner .user span h2 {
	font-family: "Lato", sans-serif;
}

.fourth-section .section-inner .user span h4 {
	font-family: "Barlow", sans-serif;
	color: #fca311;
}

.fifth-section {
	display: flex;
	justify-content: center;
	padding: 30px 0;
	width: 100%;
}

.fifth-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	max-width: 1200px;
	width: 100%;
	position: relative;
}

.fifth-section .section-inner h3 {
	color: #14213d;
	font-family: "Poppins", sans-serif;
	padding: 30px 0;
	position: relative;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}

.fifth-section .section-inner h3::before {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	left: -50px;
}

.fifth-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	right: -50px;
}

.fifth-section .section-inner .swiper {
	max-width: 1140px;
	width: 100%;
	margin-bottom: 30px;
	padding: 0 30px;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user {
	background-color: #ffffff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.02);
}

.fifth-section .section-inner .swiper .swiper-wrapper .user::after {
	content: "";
	position: absolute;
	background-color: #e22f3b;
	z-index: -1;
	top: -35px;
	left: -24px;
	width: 1000px;
	transform: rotateZ(50deg);
	height: 400px;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user img {
	margin: 60px 0 20px 0;
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 100%;
	background-color: #e22f3b;
	border: 5px solid #e22f3b;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user span h4 {
	font-family: "Barlow", sans-serif;
	text-align: center;
	color: #000000;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user span p {
	font-family: "Prompt", sans-serif;
	text-align: center;
	color: #495057;
	margin-bottom: 40px;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user ul {
	color: #14213d;
	position: absolute;
	margin: 0;
	padding: 10px;
	right: 0;
	top: 0;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user ul li a {
	text-decoration: none;
	color: #ffffff;
}

.fifth-section .section-inner .swiper .swiper-wrapper .user ul li a:hover {
	color: #14213d;
}

.fifth-section .section-inner .member-pagination .swiper-pagination-bullet {
	background-color: #14213d;
	height: 3px;
	width: 15px;
	border-radius: 50px;
}

.fifth-section
	.section-inner
	.member-pagination
	.swiper-pagination-bullet-active {
	background-color: #14213d;
}

.fifth-section .section-inner .member-button-next {
	right: 8px;
	top: 60%;
	background-color: #ff6e78ad;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	padding: 5px;
}

.fifth-section .section-inner .member-button-prev {
	left: 8px;
	top: 60%;
	background-color: #ff6e78ad;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	padding: 5px;
}

.fifth-section .section-inner .member-button-next i,
.fifth-section .section-inner .member-button-prev i {
	color: #14213d;
	font-size: 25px;
	display: flex;
}

.fifth-section .section-inner .member-button-next::after,
.fifth-section .section-inner .member-button-prev::after {
	display: none;
}

.sixth-section {
	display: flex;
	justify-content: center;
	background-color: #e8f1f2;
}

.sixth-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	width: 1200px;
}

.sixth-section .section-inner h3 {
	font-family: "Prompt", sans-serif;
	align-self: self-start;
	padding: 30px 0;
	display: flex;
	align-items: center;
	position: relative;
}

.sixth-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #e22f3b;
	height: 3px;
	right: -80%;
	width: 80px;
}

.sixth-section .section-inner .paragraph-wrapper {
	width: 100%;
	padding: 30px;
}

.sixth-section .section-inner .paragraph-wrapper h4 {
	text-align: center;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
}

.sixth-section .section-inner .paragraph-wrapper .paragraph p {
	font-family: "Baloo 2", sans-serif;
	text-align: center;
	font-weight: 500;
	color: #14213d;
}

.sixth-section .section-inner .paragraph-wrapper-1 {
	padding-top: 50px;
}

.sixth-section .section-inner .paragraph-wrapper-1 h4 {
	margin-bottom: 40px;
	color: #023e8a;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.sixth-section .section-inner .paragraph-wrapper-1 h4::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	right: 1000px;
	background-color: #ec4a0c;
}

.sixth-section .section-inner .paragraph-wrapper-1 h4::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	left: 1000px;
	background-color: #ec4a0c;
}

.sixth-section .section-inner .paragraph-wrapper-2 {
	padding-top: 10px;
}

.sixth-section .section-inner .paragraph-wrapper-2 h4 {
	padding-top: 10px;
	color: #e22f3b;
}

.sixth-section .section-inner .paragraph-wrapper-3 {
	text-align: left;
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: start;
}

.sixth-section .section-inner .paragraph-wrapper-3 h5 {
	text-align: left;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.sixth-section .section-inner .paragraph-wrapper-3 h5::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fca311;
}

.sixth-section .section-inner .paragraph-wrapper-3 .paragraph p {
	text-align: left;
	margin-bottom: 40px;
	color: #14213d;
}

.seventh-section {
	display: flex;
	justify-content: center;
	padding: 30px 0;
	width: 100%;
}

.seventh-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	max-width: 1200px;
	position: relative;
	width: 100%;
}

.seventh-section .section-inner h3 {
	color: #14213d;
	font-family: "Poppins", sans-serif;
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.seventh-section .section-inner h3::before {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	left: -50px;
}

.seventh-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	right: -50px;
}

.seventh-section .section-inner .videos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 20px 0 20px 0;
	grid-gap: 15px;
	padding: 15px;
	background-color: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.02);
	width: 100%;
}

.seventh-section .section-inner .videos .video {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.seventh-section .section-inner .videos .video iframe {
	width: 100%;
	height: 100%;
}

.eighth-section {
	display: flex;
	justify-content: center;
	padding: 30px 0;
	background-image: linear-gradient(#14213d, #023e8a);
}

.eighth-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0 20px;
	border-radius: 10px;
	width: 1200px;
}

.eighth-section .section-inner h3 {
	font-family: "Prompt", sans-serif;
	align-self: self-start;
	color: #ffffff;
	padding: 30px 0;
	display: flex;
	align-items: center;
	position: relative;
}

.eighth-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #e22f3b;
	height: 3px;
	right: -100%;
	width: 80px;
}

.eighth-section .section-inner .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
}

.eighth-section .section-inner .gallery a {
	position: relative;
	margin: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eighth-section .section-inner .gallery a i {
	position: absolute;
	color: #ffffff00;
	font-size: 35px;
	z-index: 12;
	transform: scale(5);
	transition: all 0.1s linear;
}

.eighth-section .section-inner .gallery a:hover i {
	color: #ffffffe8;
	transform: scale(1);
}

.eighth-section .section-inner .gallery a img {
	aspect-ratio: 16 / 11;
	width: 100%;
	object-fit: cover;
}

.eighth-section .section-inner .gallery a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	z-index: 10;
	transition: all 0.1s linear;
	opacity: 0;
}

.eighth-section .section-inner .gallery a:hover::after {
	opacity: 100%;
}

.eighth-section .section-inner > a {
	font-family: "Prompt", sans-serif;
	color: #ffffff;
	font-weight: 400;
	text-decoration: none;
	background-color: #ec4a0c;
	border-radius: 50px;
	padding: 8px 20px;
	margin: 30px 0 10px 0;
	transition: all 0.1s linear;
}

.eighth-section .section-inner > a:hover {
	background-color: #cf4109;
	color: #e0e0e0;
}

.ninth-section {
	display: flex;
	justify-content: center;
	padding: 30px 0;
	width: 100%;
}

.ninth-section .section-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0 20px;
	border-radius: 10px;
	max-width: 1200px;
	position: relative;
}

.ninth-section .section-inner h3 {
	color: #14213d;
	font-family: "Poppins", sans-serif;
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.ninth-section .section-inner h3::before {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	left: -50px;
}

.ninth-section .section-inner h3::after {
	content: "";
	position: absolute;
	background-color: #ec4a0c;
	width: 40px;
	height: 3px;
	right: -50px;
}

.ninth-section .section-inner .testimonials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 20px 0 20px 0;
}

.ninth-section .section-inner .testimonials .testimonial {
	display: flex;
	margin: 0 5px;
	margin-bottom: 20px;
	align-items: center;
	padding: 30px 20px;
	background-color: #e8f1f2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
	position: relative;
}

.ninth-section .section-inner .testimonials .testimonial .logo {
	height: 100px;
	object-fit: cover;
	width: 100px;
	margin-right: 20px;
	z-index: 1;
	position: relative;
}

.ninth-section .section-inner .testimonials .testimonial .first-quotes {
	position: absolute;
	width: 40px;
	top: -17px;
	left: 0;
}

.ninth-section .section-inner .testimonials .testimonial .second-quotes {
	position: absolute;
	width: 40px;
	bottom: -17px;
	right: 0;
	transform: rotateY(180deg);
}

.ninth-section .section-inner .testimonials .testimonial .content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.ninth-section .section-inner .testimonials .testimonial .content h4 {
	font-family: "Prompt", sans-serif;
	display: flex;
	align-items: center;
}

.ninth-section .section-inner .testimonials .testimonial .content h4 span {
	font-family: "Baloo 2", sans-serif;
	font-size: 13px;
	font-weight: 300;
	margin-left: 5px;
}

.ninth-section .section-inner .testimonials .testimonial .content p {
	font-family: "Barlow", sans-serif;
	color: #495057;
	overflow: hidden;
	margin: 0;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* ------------------------------Home Page End------------------------------ */

/* ------------------------------Gallery Page Start------------------------------ */

.gallery-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.gallery-page .page-inner {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 30px;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.gallery-page .page-inner .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	width: 100%;
	gap: 20px;
}

.gallery-page .page-inner .gallery a {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-page .page-inner .gallery a i {
	position: absolute;
	color: #ffffff00;
	font-size: 35px;
	z-index: 12;
	transform: scale(5);
	transition: all 0.1s linear;
}

.gallery-page .page-inner .gallery a:hover i {
	color: #ffffffe8;
	transform: scale(1);
}

.gallery-page .page-inner .gallery a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gallery-page .page-inner .gallery a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	z-index: 10;
	transition: all 0.1s linear;
	opacity: 0;
}

.gallery-page .page-inner .gallery a:hover::after {
	opacity: 100%;
}

.gallery-page .page-inner > a {
	font-family: "Prompt", sans-serif;
	color: #ffffff;
	font-weight: 400;
	text-decoration: none;
	background-color: #ec4a0c;
	border-radius: 50px;
	padding: 8px 20px;
	margin: 30px 0 10px 0;
	transition: all 0.1s linear;
}

.gallery-page .page-inner > a:hover {
	background-color: #cf4109;
	color: #e0e0e0;
}

/* ------------------------------Gallery Page End------------------------------ */

/* ------------------------------Contact Us Page Start------------------------------ */

.contact-us-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.contact-us-page .page-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 20px;
	background-color: #ffffff;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.contact-us-page .page-inner form {
	margin: 10px;
}

.contact-us-page .page-inner form input[type="submit"] {
	margin-top: 10px;
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #00aa71;
	color: #ffffff;
	border: 0;
	transition: all 0.1s linear;
}

.contact-us-page .page-inner form input[type="submit"]:hover {
	background-color: #038b5e;
	color: #e0e0e0;
}

.contact-us-page .page-inner form {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.contact-us-page .page-inner form label {
	display: flex;
	flex-direction: column;
	font-family: "Prompt", sans-serif;
	width: 100%;
	font-weight: 500;
}

.complain-page .page-inner form .input-group label h6 {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	margin: 0;
}

.contact-us-page .page-inner form label input,
.contact-us-page .page-inner form label textarea {
	width: calc(100% - 20px);
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
}

.contact-us-page .page-inner form label input:focus,
.contact-us-page .page-inner form label textarea:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

.contact-us-page .page-inner form label input {
	margin: 10px 0 20px 0;
}

.contact-us-page .page-inner form label textarea {
	margin: 10px 0;
}

.contact-us-page .page-inner iframe {
	margin: 10px;
	min-height: 400px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
}

/* ------------------------------Contact Us Page End------------------------------ */

/* ------------------------------Donate Page Start------------------------------ */

.donate-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.donate-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	padding: 20px;
	background-color: #ffffff;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.donate-page .page-inner form {
	display: flex;
	flex-direction: column;
}

.donate-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
}

.donate-page .page-inner form input[type="submit"] {
	margin-top: 10px;
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #00aa71;
	color: #ffffff;
	border: 0;
	align-self: center;
	transition: all 0.1s linear;
}

.donate-page .page-inner form input[type="submit"]:hover {
	background-color: #038b5e;
	color: #e0e0e0;
}

.donate-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
}

.donate-page .page-inner form .input-group-full {
	display: grid;
	grid-template-columns: 1fr;
}

.donate-page .page-inner .radio-group {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 20px 0;
}

.donate-page .page-inner .radio-group label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px;
}

.donate-page .page-inner .radio-group label input {
	margin: 10px;
}

.donate-page .page-inner .radio-group label h6 {
	margin: 0;
	color: #333333;
}

.donate-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
	max-width: 350px;
}

.donate-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: row;
	align-items: start;
	padding: 0 10px;
	width: 100%;
	max-width: 1200px;
}

.donate-page .page-inner form .input-group-full label p {
	font-family: "Lato", sans-serif;
	margin: 10px 0;
}

.donate-page .page-inner form .input-group label h6 {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	margin: 0;
}

.donate-page .page-inner form .input-group label input[type="file"],
.donate-page .page-inner form .input-group label input[type="file"]:focus {
	border: 0;
}

.donate-page .page-inner form .input-group label input,
.donate-page .page-inner form .input-group label textarea,
.donate-page .page-inner form .input-group label select {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	max-width: 350px;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
}

.donate-page .page-inner form .input-group-full label input[type="checkbox"] {
	width: auto;
	margin: 15px 10px;
}

.donate-page .page-inner form .input-group label input:focus,
.donate-page .page-inner form .input-group label textarea:focus,
.donate-page .page-inner form .input-group label select:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* ------------------------------Donate Page End------------------------------ */

/* ------------------------------Volunteer Page Start------------------------------ */

.become-volunteer-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.become-volunteer-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.become-volunteer-page .page-inner .paragraph-wrapper {
	width: 100%;
	background-color: #14213d;
	color: #ffffff;
	padding: 20px;
}

.become-volunteer-page .page-inner .paragraph-wrapper h5 {
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #e22f3b;
}

.become-volunteer-page .page-inner .paragraph-wrapper p {
	margin: 0;
	text-align: center;
	font-family: "Lato", sans-serif;
}

.become-volunteer-page .page-inner form {
	width: 100%;
	padding: 0 20px 20px 20px;
	display: flex;
	flex-direction: column;
}

.become-volunteer-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
}

.become-volunteer-page .page-inner form input[type="submit"] {
	margin-top: 10px;
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #023e8a;
	color: #ffffff;
	border: 0;
	align-self: center;
	transition: all 0.1s linear;
}

.become-volunteer-page .page-inner form input[type="submit"]:hover {
	background-color: #14213d;
	color: #e0e0e0;
}

.become-volunteer-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
}

.become-volunteer-page .page-inner form .input-group-full {
	display: grid;
	grid-template-columns: 1fr;
}

.become-volunteer-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
	max-width: 350px;
}

.become-volunteer-page .page-inner form .input-group label .input-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.become-volunteer-page .page-inner form .input-group label .input-wrapper span {
	color: #c52a34;
}

.become-volunteer-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: row;
	align-items: start;
	padding: 0 10px;
	width: 100%;
	max-width: 1200px;
}

.become-volunteer-page .page-inner form .input-group-full label p {
	font-family: "Lato", sans-serif;
	margin: 10px 0;
}

.become-volunteer-page .page-inner form .input-group label h6 {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	margin: 0;
}

.become-volunteer-page .page-inner form .input-group label input[type="file"],
.become-volunteer-page
	.page-inner
	form
	.input-group
	label
	input[type="file"]:focus {
	border: 0;
	padding: 3px;
}

.become-volunteer-page .page-inner form .input-group label input,
.become-volunteer-page .page-inner form .input-group label textarea,
.become-volunteer-page .page-inner form .input-group label select {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
	max-width: 350px;
}

.become-volunteer-page
	.page-inner
	form
	.input-group-full
	label
	input[type="checkbox"] {
	width: auto;
	margin: 15px 10px;
}

.become-volunteer-page
	.page-inner
	form
	.input-group
	label
	.input-wrapper
	input {
	margin-right: 5px;
	margin-bottom: 10px;
}

.become-volunteer-page .page-inner form .input-group label input:focus,
.become-volunteer-page .page-inner form .input-group label textarea:focus,
.become-volunteer-page .page-inner form .input-group label select:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* ------------------------------Volunteer Page End------------------------------ */

/* ------------------------------Members Page Start------------------------------ */

.become-member-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.become-member-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	max-width: 1200px;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
	overflow: hidden;
}

.become-member-page .page-inner .paragraph-wrapper {
	width: 100%;
	padding: 20px;
	background-color: #14213d;
	color: #ffffff;
}

.become-member-page .page-inner .paragraph-wrapper h5 {
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #e22f3b;
}

.become-member-page .page-inner .paragraph-wrapper p {
	margin: 0;
	text-align: center;
	font-family: "Lato", sans-serif;
}

.become-member-page .page-inner form {
	width: 100%;
	padding: 0 20px 20px 20px;
	display: flex;
	flex-direction: column;
}

.become-member-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
	color: #14213d;
}

.become-member-page .page-inner form input[type="submit"] {
	margin-top: 10px;
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #023e8a;
	color: #ffffff;
	border: 0;
	transition: all 0.1s linear;
	align-self: center;
}

.become-member-page .page-inner form input[type="submit"]:hover {
	background-color: #14213d;
	color: #e0e0e0;
}

.become-member-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
}

.become-member-page .page-inner form .input-group-full {
	display: grid;
	grid-template-columns: 1fr;
}

.become-member-page .page-inner form .input-group-full table {
	font-family: "Lato", sans-serif;
}

.become-member-page .page-inner form .input-group-full table thead th {
	background-color: #14213d;
	color: #ffffff;
}

.become-member-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	max-width: 350px;
	width: 100%;
}

.become-member-page .page-inner form .input-group label .input-wrapper {
	font-family: "Lato", sans-serif;
	display: flex;
	flex-wrap: wrap;
}

.become-member-page .page-inner form .input-group label .input-wrapper a {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	background-color: #00aa71;
	color: #ffffff;
	text-decoration: none;
	margin: 8px 5px;
}

.become-member-page .page-inner form .input-group label .input-wrapper input {
	margin-right: 5px;
	margin-bottom: 10px;
}

.become-member-page .page-inner form .input-group label .input-wrapper span {
	padding: 13px 0;
	color: #c52a34;
}

.become-member-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: row;
	align-items: start;
	padding: 0 10px;
	max-width: 1200px;
	width: 100%;
}

.become-member-page .page-inner form .input-group-full label p {
	font-family: "Lato", sans-serif;
}

.become-member-page .page-inner form .input-group label h6 {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	margin: 0;
}

.become-member-page .page-inner form .input-group label input[type="file"],
.become-member-page
	.page-inner
	form
	.input-group
	label
	input[type="file"]:focus {
	border: 0;
	padding: 3px;
}

.become-member-page .page-inner form .input-group label input,
.become-member-page .page-inner form .input-group label textarea,
.become-member-page .page-inner form .input-group label select {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
	max-width: 350px;
}

.become-member-page
	.page-inner
	form
	.input-group-full
	label
	input[type="checkbox"] {
	width: auto;
	margin: 5px 10px;
}

.become-member-page .page-inner form .input-group label input:focus,
.become-member-page .page-inner form .input-group label textarea:focus,
.become-member-page .page-inner form .input-group label select:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* Photo Preview Styles */
.become-member-page .page-inner form .input-group label #photoPreview {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
}

.become-member-page .page-inner form .input-group label #photoPreview img {
	max-width: 200px;
	max-height: 200px;
	border: 2px solid #14213d;
	border-radius: 8px;
	padding: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.become-member-page .page-inner form .input-group label #photoPreview #removePhoto {
	margin-top: 10px;
	padding: 6px 20px;
	background-color: #dc3545;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: "Barlow", sans-serif;
	font-size: 14px;
	transition: all 0.2s linear;
}

.become-member-page .page-inner form .input-group label #photoPreview #removePhoto:hover {
	background-color: #c82333;
}


/* ------------------------------Members Page End------------------------------ */

/* ------------------------------Complain Page Start------------------------------ */

.complain-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.complain-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.complain-page .page-inner form {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.complain-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
	color: #14213d;
}

.complain-page .page-inner form input[type="submit"] {
	margin-top: 10px;
	padding: 8px 15px;
	border-radius: 100px;
	align-self: center;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #023e8a;
	color: #ffffff;
	border: 0;
	transition: all 0.1s linear;
}

.complain-page .page-inner form input[type="submit"]:hover {
	background-color: #14213d;
	color: #e0e0e0;
}

.complain-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
}

.complain-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
	max-width: 350px;
}

.complain-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: row;
	align-items: start;
	padding: 0 10px;
	width: 100%;
}

.complain-page .page-inner form .input-group-full label p {
	font-family: "Lato", sans-serif;
	margin: 10px 0;
}

.complain-page .page-inner form .input-group label h6 {
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	margin: 0;
}

.complain-page .page-inner form .input-group label input[type="file"],
.complain-page .page-inner form .input-group label input[type="file"]:focus {
	border: 0;
	padding: 3px;
}

.complain-page .page-inner form .input-group label input,
.complain-page .page-inner form .input-group label textarea {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
}

.complain-page .page-inner form .input-group label input:focus,
.complain-page .page-inner form .input-group label textarea:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* ------------------------------Complain Page End------------------------------ */

/* ------------------------------Sign In Page Start------------------------------ */

.sign-in-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.sign-in-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 580px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
	padding-top: 20px;
}

.sign-in-page .page-inner form {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sign-in-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
}

.sign-in-page .page-inner form input[type="submit"] {
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #023e8a;
	color: #ffffff;
	border: 0;
	transition: all 0.1s linear;
}

.sign-in-page .page-inner form input[type="submit"]:hover {
	background-color: #14213d;
	color: #e0e0e0;
}

.sign-in-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.sign-in-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
}

.sign-in-page .page-inner form .input-group-full {
	display: grid;
	grid-template-columns: 1fr;
}

.sign-in-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
}

.sign-in-page .page-inner form .input-group label input {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
}

.sign-in-page .page-inner form .input-group label input:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* ------------------------------Sign In Page End------------------------------ */

/* ------------------------------Sign Up Page Start------------------------------ */

.sign-up-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.sign-up-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 580px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
	padding-top: 20px;
}

.sign-up-page .page-inner form {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sign-up-page .page-inner form h4 {
	margin: 20px 10px 30px 10px;
	font-family: "Prompt", sans-serif;
}

.sign-up-page .page-inner form input[type="submit"] {
	padding: 8px 15px;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Prompt", sans-serif;
	background-color: #023e8a;
	color: #ffffff;
	border: 0;
	transition: all 0.1s linear;
}

.sign-up-page .page-inner form input[type="submit"]:hover {
	background-color: #14213d;
	color: #e0e0e0;
}

.sign-up-page .page-inner form .input-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.sign-up-page .page-inner form .input-group label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
}

.sign-up-page .page-inner form .input-group-full {
	display: grid;
	grid-template-columns: 1fr;
}

.sign-up-page .page-inner form .input-group-full label {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 100%;
}

.sign-up-page .page-inner form .input-group label input[type="file"],
.sign-up-page .page-inner form .input-group label input[type="file"]:focus {
	border: 0;
	padding: 3px;
}

.sign-up-page .page-inner form .input-group label input {
	padding: 6px 10px;
	font-family: "Barlow", sans-serif;
	border-radius: 5px;
	width: 100%;
	margin: 0 10px;
	border: 1px solid #14213d65;
	font-size: 14px;
	transition: all 0.2s linear;
	margin: 10px 0 30px 0;
}

.sign-up-page .page-inner form .input-group label input:focus {
	border: 1px solid #00aa71;
	outline: 0;
}

/* ------------------------------Sign Up Page End------------------------------ */

/* ------------------------------Donors Page Start------------------------------ */

.donors-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.donors-page .page-inner {
	width: 1200px;
	background-color: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.donors-page .page-inner .users {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 15px;
	row-gap: 30px;
	padding: 30px;
}

.donors-page .page-inner .users .user {
	background-color: #14213d;
	display: flex;
	align-items: center;
	border-left: 5px solid #e22f3b;
}

.donors-page .page-inner .users .user img {
	margin: 20px;
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 100%;
}

.donors-page .page-inner .users .user span {
	margin: 10px 10px 10px 0;
}

.donors-page .page-inner .users .user span h4 {
	font-family: "Barlow", sans-serif;
	font-size: 21px;
	color: #ffffff;
}

.donors-page .page-inner .users .user span p {
	font-family: "Barlow", sans-serif;
	color: #ffffff;
	margin: 0;
	font-size: 15px;
}

.donors-page .page-inner .users .user span p span {
	font-family: "Poppins", sans-serif;
	color: #ec4a0c;
	margin: 0;
}

/* ------------------------------Donors Page End------------------------------ */

/* ------------------------------Videos Page Start------------------------------ */

.videos-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.videos-page .page-inner {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 30px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
	width: 1200px;
}

.videos-page .page-inner .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	width: 100%;
	gap: 20px;
}

.videos-page .page-inner .gallery a {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.videos-page .page-inner .gallery a i {
	position: absolute;
	color: #ffffff00;
	font-size: 35px;
	z-index: 12;
	transform: scale(5);
	transition: all 0.1s linear;
}

.videos-page .page-inner .gallery a:hover i {
	color: #ffffffe8;
	transform: scale(1);
}

.videos-page .page-inner .gallery a video {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.videos-page .page-inner .gallery a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	z-index: 10;
	transition: all 0.1s linear;
	opacity: 0;
}

.videos-page .page-inner .gallery a:hover::after {
	opacity: 100%;
}

.videos-page .page-inner > a {
	font-family: "Prompt", sans-serif;
	color: #ffffff;
	font-weight: 400;
	text-decoration: none;
	background-color: #ec4a0c;
	border-radius: 50px;
	padding: 8px 20px;
	margin: 30px 0 10px 0;
	transition: all 0.1s linear;
}

.videos-page .page-inner > a:hover {
	background-color: #cf4109;
	color: #e0e0e0;
}

/* ------------------------------Videos Page End------------------------------ */

/* ------------------------------Management Team Page Start------------------------------ */

.management-team-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.management-team-page .page-inner {
	width: 1200px;
	background-color: #ffffff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.management-team-page .page-inner .users {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 15px;
	row-gap: 30px;
	padding: 30px;
}

.management-team-page .page-inner .users .user {
	background: linear-gradient(#023e8a, #14213d);
	display: flex;
	align-items: center;
	flex-direction: column;
	border-radius: 8px;
	padding: 20px 0;
	border-top: 4px solid #00aa71;
	border-bottom: 4px solid #00aa71;
}

.management-team-page .page-inner .users .user img {
	margin: 20px;
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 100%;
}

.management-team-page .page-inner .users .user span {
	margin: 10px 10px 20px 10px;
}

.management-team-page .page-inner .users .user span h4 {
	font-family: "Prompt", sans-serif;
	font-size: 21px;
	color: #fca311;
	text-align: center;
	font-weight: 500;
}

.management-team-page .page-inner .users .user span p {
	font-weight: 500;
	text-align: center;
	font-family: "Barlow", sans-serif;
	color: #ffffff;
	margin: 0;
	font-size: 15px;
}

/* ------------------------------Management Team Page End------------------------------ */

/* ------------------------------About Us Page Start------------------------------ */

.about-us-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.about-us-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.about-us-page .page-inner .paragraph-wrapper {
	width: 100%;
	padding: 30px;
}

.about-us-page .page-inner .paragraph-wrapper h4 {
	text-align: center;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
}

.about-us-page .page-inner .paragraph-wrapper .paragraph p {
	font-family: "Baloo 2", sans-serif;
	text-align: justify;
	font-weight: 500;
	color: #14213d;
}

.about-us-page .page-inner .paragraph-wrapper-1 {
	padding-top: 50px;
}

.about-us-page .page-inner .paragraph-wrapper-1 h4 {
	margin-bottom: 40px;
	color: #023e8a;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-us-page .page-inner .paragraph-wrapper-1 h4::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	right: 1000px;
	background-color: #ec4a0c;
}

.about-us-page .page-inner .paragraph-wrapper-1 h4::after {
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	left: 1000px;
	background-color: #ec4a0c;
}

.about-us-page .page-inner .paragraph-wrapper-2 {
	padding-top: 10px;
}

.about-us-page .page-inner .paragraph-wrapper-2 h4 {
	padding-top: 10px;
	color: #e22f3b;
}

.about-us-page .page-inner .paragraph-wrapper-3 {
	text-align: left;
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: start;
}

.about-us-page .page-inner .paragraph-wrapper-3 h5 {
	text-align: left;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.about-us-page .page-inner .paragraph-wrapper-3 h5::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fca311;
}

.about-us-page .page-inner .paragraph-wrapper-3 .paragraph p {
	text-align: left;
	margin-bottom: 40px;
	color: #14213d;
}

/* ------------------------------About Us Page End------------------------------ */

/* ------------------------------Our Objective Page Start------------------------------ */

.our-objective-page {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.our-objective-page .page-inner {
	display: grid;
	grid-template-columns: 1fr;
	background-color: #ffffff;
	overflow: hidden;
	width: 1200px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}

.our-objective-page .page-inner .item {
	display: flex;
	align-items: center;
}

.our-objective-page .page-inner .item img {
	width: 250px;
	height: 250px;
	margin: 20px;
	object-fit: cover;
}

.our-objective-page .page-inner .item .content {
	border-top: 2px solid #14213d;
	padding: 20px 40px;
	background-color: #00aa71;
}

.our-objective-page .page-inner .item .content h4 {
	margin: 20px 0;
	font-size: 30px;
	color: #14213d;
	font-family: "Prompt", sans-serif;
}

.our-objective-page .page-inner .item .content p {
	margin: 0;
	color: #f8f9fa;
	font-family: "Lato", sans-serif;
}

/* ------------------------------Our Objective Page End------------------------------ */

/* ------------------------------Events Page Start------------------------------ */

/* ------------------------------Events Page End------------------------------ */

/* ------------------------------Solutions Page Start------------------------------ */

/* ------------------------------Solutions Page End------------------------------ */

/* ------------------------------Crowdfunding Page Start------------------------------ */

/* ------------------------------Crowdfunding Page End------------------------------ */

/* ------------------------------Contact Page Styles Start------------------------------ */

.contact-us-page {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-us-page .page-inner {
	max-width: 1200px;
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contact-info {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	text-align: center;
}

.contact-info h3 {
	color: #023e8a;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 28px;
}

.contact-info p {
	margin: 10px 0;
	color: #14213d;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
}

.contact-info strong {
	color: #023e8a;
	font-weight: 600;
}

.contact-info a {
	color: #e22f3b;
	text-decoration: none;
	transition: all 0.2s linear;
}

.contact-info a:hover {
	text-decoration: underline;
	color: #c52a34;
}

.contact-layout {
	display: flex;
	gap: 30px;
	align-items: stretch;
	width: 100%;
}

.contact-form {
	flex: 1 1 45%;
	min-width: 280px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-form h4 {
	color: #023e8a;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 24px;
}

.contact-form form label {
	display: block;
	margin-bottom: 15px;
}

.contact-form form label h6 {
	margin: 0 0 6px 0;
	color: #14213d;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	font-family: "Barlow", sans-serif;
	font-size: 14px;
	color: #14213d;
	transition: border-color 0.2s linear;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #e22f3b;
	box-shadow: 0 0 0 3px rgba(226, 47, 59, 0.1);
}

.contact-form input[type="submit"] {
	background-color: #e22f3b;
	color: #ffffff;
	padding: 10px 25px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-top: 8px;
	transition: all 0.2s linear;
}

.contact-form input[type="submit"]:hover {
	background-color: #c52a34;
	transform: translateY(-2px);
}

.contact-map {
	flex: 1 1 45%;
	min-width: 280px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
}

.contact-map h4 {
	color: #023e8a;
	font-family: "Prompt", sans-serif;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 24px;
}

.contact-map iframe {
	flex: 1;
	width: 100%;
	border: 0;
	border-radius: 6px;
}

@media (max-width: 900px) {
	.contact-layout {
		flex-direction: column;
		gap: 20px;
	}

	.contact-form {
		flex-basis: 100%;
	}

	.contact-map {
		flex-basis: 100%;
		height: 300px;
	}
}

/* ------------------------------Contact Page Styles End------------------------------ */