@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

/*BOILER PLATE HTML*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	display: none;
}

.cursor {
	width: 50px;
	height: 50px;
	position: fixed;
	color: white;
	z-index: 8;
	pointer-events: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(5px);
}


/*PRELOADER STAGES*/
.loader-parent {
	position: fixed;
	width: 100%;
	height: 100vh;
	display: grid;
	z-index: 20;
}

.loader-parent::-webkit-scrollbar {
	display: none;
}

.loader-ele-primary {
	position: fixed;
	justify-self: center;
	align-self: center;
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
	z-index: 2;
}

.counter {
	text-align: center;
	color: white;
	font-family: 'Montserrat', sans-serif;
}

.progress-bar {
	width: 400px;
	height: 15px;
	background-color: white;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	animation: bar-runner 1.5s alternate-reverse infinite;
}

@keyframes bar-runner {
	100% {
		clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	}
}

.stripe1,
.stripe2 {
	width: 100%;
	height: 50vh;
	background-color: rgba(0, 0, 0, .8);
}

.welcome-screen {
	/*NNEW*/
	background-color: rgba(0, 0, 0, .75);
	backdrop-filter: blur(10px);
	width: 100%;
	height: 100vh;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 18;
}

.welcome-screen h5 {
	font-size: 4rem;
	letter-spacing: 3px;
	font-family: 'Inter Tight', sans-serif;
	font-weight: lighter;
	color: white;
	letter-spacing: -2px;
}


/*NAVIGATION MENU*/
nav {
	width: 100%;
	display: flex;
	justify-content: center;
	position: fixed;
	z-index: 16;
}

nav img {
	width: 10rem;
}

a {
	text-decoration: none;
	color: white;
}

li {
	list-style: none;
}

.navigation-menu {
	display: flex;
	align-items: center;
}

.link_1 {
	padding-right: 2rem;
}

.link_1 img {
	padding: 20px;
}

.nav-rel {
	position: relative;
}

.clip-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	background-color: rgba(54, 160, 211, 1.0);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	padding: revert;
}

.links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
	grid-gap: 2rem;
	font-family: 'Montserrat', sans-serif;
}

.links li:hover {
	transform: rotateY(360deg);
	transition: 500ms;
}

/*Setting display property of none on mobile menu*/
.mobile {
	display: none;
}

@media (max-width:500px) and (min-width: 300px) {
	.mobile {
		display: unset;
	}

	.navigation-menu {
		display: none;
	}

	.open {
		position: fixed;
		width: 50px;
		z-index: 2;
	}

	.close {
		position: fixed;
		width: 50px;
	}

	.mob-menu {
		position: fixed;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, .8);
		color: white;
		transform: translateX(-100%);
	}

	.mob-lnk {
		height: inherit;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.8rem;
		grid-gap: 5%;
	}

}


/*LANDING PAGE*/
.landing {
	width: 100%;
	height: 100vh;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(17, 17, 17, 1) 85%), url('company-images/Landing-bg.jpg');
	position: relative;
}

.spline-asset {
	width: inherit;
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spline-asset img {
	width: 100%;
}

.resp-content {
	display: none;
}

/*Section Backgrounds*/

.cover {
	background: #111111;
}

/*Section Boiler Plate*/
.section-1,
.section-2,
.section-3 {
	width: 100%;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

/*Content Boiler Plate*/
.content-1,
.content-2,
.content-3 {
	width: 100%;
	height: 100vh;
	display: flex;
	color: white;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, .5);
	scale: .7;
	border-radius: 2rem;
	position: relative;
	font-family: 'Inter Tight', sans-serif;
	font-size: 7rem;
	backdrop-filter: blur(10px);
}



/*SECTIONS GSAP ANIMATED BACKGROUND*/
.background-anim {
	width: 100%;
	height: 100vh;
	position: absolute;
	display: flex;
	grid-gap: 1%;
	align-items: center;
	justify-content: center;
}

.ah,
.ah1,
.ah2 {
	width: 20vw;
	height: 80vh;
	justify-self: center;
	border-radius: 20px;
	overflow-x: hidden;
}

.images1,
.images2,
.images3 {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: bolder;
}

.CTA-txt {
	color: #80878C;
	border-radius: 10px;
	padding: 2%;
	background-color: rgba(14, 89, 146, .3);
	backdrop-filter: blur(3px);
	margin-bottom: 20vh;
}

/*BROCHURES SECTION FORMATTING*/
.sub-content-2 {
	display: flex;
	align-items: center;
	flex-direction: column;
	grid-gap: 40px;
}

.donate {
	display: flex;
	font-size: 2.5rem;
	align-self: flex-end;
	grid-gap: 20px;
}

.sub-content-2 img {
	align-self: center;
	width: 150px;
}


/*MEDIA QUERIES*/
@media (max-width: 500px) and (min-width: 300px) {

	.cursor {
		display: none;
		visibility: hidden;
	}

	.logo img {
		width: 40%;
	}

	.spline-asset {
		display: none;
	}

	.background-anim {
		flex-direction: column;
		grid-gap: 0;
	}

	.ah,
	.ah1,
	.ah2 {
		height: 20vh;
		width: 90vw;
	}

	.content-1,
	.content-2,
	.content-3 {
		writing-mode: vertical-lr;
		text-orientation: upright;
		font-size: 2rem;
		background-color: rgba(0, 0, 0, .7);
		letter-spacing: 10px;
		position: relative;
	}

	.resp-content {
		width: 100%;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.resp-content img {
		width: 65%;
	}
	.donate{
		display: none;
	}
}