/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?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&display=swap');

:root {
	--white: #fff;
	--black: #000;
	--theme-color: #4d93aa;
	--primary: #006586;
	--secondary: #1E1E1E;
	--primary-light: #00658663;
}

::selection {
	background-color: var(--secondary);
	color: var(--white);
}

/* General Styling */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Poppins", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}


body {
	overflow-x: clip;
}

a,
button {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
}

p {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}

section {
	position: relative;
	padding: 5rem 0;
	overflow: clip;
}

/* LENIS */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* ThemeBtn Start */
.themeBtn {
	min-width: fit-content;
	background-color: var(--primary);
	color: var(--white);
	border: 1px solid transparent;
	border-radius: 0.625rem;
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0.75rem 2.25rem;
}

.themeBtn--light {
	background: var(--theme-color);
}

.themeBtn:hover {
	color: var(--white);
}

/* ThemeBtn End */

/* Heading Start */
.heading {
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--primary);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.subHeading {
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: capitalize;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

/* Heading End */

/* Header Start */
.header-top {
	background: var(--black);
	padding: 0.5rem 0;
}

.header-top p {
	color: var(--white);
	text-align: center;
	margin: 0;
}

.header-main {
	background: var(--secondary);
	padding: 1rem 0;
}

.header-main__logo {
	width: 150px;
}

.header-main__nav li a {
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	padding: 0.35rem 0.25rem;
	margin: 0 1rem;
	text-transform: capitalize;
	position: relative;
}

.header-main__nav li a::after {
	content: "";
	width: 0;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 300ms ease-in-out;
}

.header-main__nav li a:hover::after,
.header-main__nav li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

/* Header End */

/* Banner Start */
.banner {
	padding: 9rem 0 2rem;
}

.banner-details {
	background: var(--primary);
	border-radius: 0.9375rem;
	position: relative;
	padding: 0 4rem;
}

.banner-details__content h1 {
	font-size: 5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.banner-details__content h2 {
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 0.75rem;
}

.banner-details__content p {
	font-size: 1.5rem;
	font-weight: 300;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.25;
	margin-bottom: 1.5rem;
}

.banner-details__img {
	width: 100%;
	height: 700px;
	margin-top: -8rem;
}

.banner-details__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Banner End */

/* Donate Start */
.donate {
	padding: 0;
}

.donate-box {
	background: var(--primary-light);
	border: 1px solid var(--primary);
	border-radius: 0.9375rem;
	display: flex;
	align-items: center;
	gap: 10rem;
	justify-content: space-between;
	padding: 1.5rem;
}

.donate-box__img {
	width: 100%;
	display: flex;
}

.donate-box__img img {
	width: 113px;
	height: 118px;
	border-radius: 100%;
	object-fit: cover;
}

.donate-box__img img:not(:first-child) {
	margin-left: -2rem;
}

.donate-box .title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin: 0;
}

/* Donate End */

/* About Us Start */
.light-text {
	width: 100%;
	font-size: 10vw;
	font-weight: 600;
	color: #00658620;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}

.about__img {
	width: 90%;
	height: 100%;
}

.about__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about__content .curve-text {
	font-size: 1.5rem;
	font-weight: 800;
	font-style: italic;
}

.about__content ul {
	margin-bottom: 1rem;
}

.about__content ul li {
	list-style: disc;
	margin-left: 1rem;
}

.about__content ul li+li {
	margin-top: 0.25rem;
}

.about-rightImg {
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}

/* About Us End */

/* Family Start */
.family-box {
	display: flex;
	border-radius: 0.625rem;
	box-shadow: 0 0 20px 1px #00000020;
	overflow: hidden;
}

.family-box__img {
	width: 50%;
	height: 410px;
}

.family-box__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.family-box__content {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1rem;
}

.family-box__content .quote {
	font-size: 4rem;
	line-height: 1;
	color: var(--primary);
}

.family-box__content .quote:last-child {
	text-align: right;
}

.family-box__content .title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.family-box__content p {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.familySlider {
	padding: 1rem 0.25rem 2.5rem;
}

.familySlider-pagination.swiper-pagination {
	bottom: 0;
}

.familySlider-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: transparent;
	border: 1px solid var(--primary);
	opacity: 1;
}

.familySlider-pagination .swiper-pagination-bullet-active {
	background: var(--primary);
}

/* Family End */

/* Footer Start */
.footer {
	background: url(../images/footer-bg.png) no-repeat center center/cover;
	padding-top: 4rem;
}

.footer-logo {
	width: 250px;
	margin-bottom: 1rem;
}

.footer p {
	color: var(--white);
	margin: 0;
}

:is(.footer-links, .footer-icons) {
	margin-top: 4rem;
}

:is(.footer-links, .footer-icons) h2 {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-links ul li+li {
	margin-top: 0.25rem;
}

.footer-links ul li a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
}

.footer-icons ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-icons ul li a {
	width: 40px;
	aspect-ratio: 1;
	background: var(--white);
	color: var(--primary);
	border-radius: 100%;
	display: grid;
	place-items: center;
}

.footer-icons ul li a i {
	transition: all 0.5s ease-in-out;
}

.footer-icons ul li a:hover i {
	transform: rotateZ(360deg);
}

.copyRight {
	border-top: 1px solid var(--white);
	text-align: center;
	padding: 1rem 0;
	margin-top: 5rem;
}

.copyRight p {
	font-size: 1rem;
}

/* Footer End */

.about__btn {
	gap: 1rem;
	margin: .5rem 0 1.5rem;
}

.donate_about .about__content {
	margin: 8rem 0 0;
}

/* Text Document Start */
.textDocument ul {
	margin: 0 0 1rem 1rem;
}

.textDocument ul li {
	list-style: disc;
}

.textDocument h3 {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.textDocument a {
	color: var(--primary);
	text-decoration: underline !important;
}

/* Text Document End */