*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 150px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #33ccff;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #33ccff;
	background: #33ccff;
	transition: 1s;
}


/*----- info -----*/

.info{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
h1{
	font-size: 36px;
	font-weight: 600;
}
p{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
.row{
	margin-top: 3%;
	display: flex;
	justify-content: space-between;
}
.info-col{
	flex-basis: 31%;
	background: #ccf2ff;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.info-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

/*----- organisation chart -----*/

.chart{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
h1{
	font-size: 36px;
	font-weight: 600;
}
p{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
.row{
	margin-top: 3%;
	display: flex;
	justify-content: space-between;
	
}
.chart-col{
	flex-basis: 100%;
	background: #ccf2ff;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.chart-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

/*----- photos -----*/

.photos{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
.photos-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.photos-col img{
	width: 100%;
	border-radius: 10px;
}
.more-btn{
	display: inline-block;
	text-decoration: none;
	color: #000000;
	border: 1px solid #000000;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.more-btn:hover{
	border: 1px solid #33ccff;
	background: #33ccff;
	transition: 1s;
}


/*----- contact us -----*/

.contact{
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/background.png);
	background-position: center;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}
.contact h1{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}

/*------ footer -----*/

.footer{
	background: #111;
	height: auto;
	width: 100%;
	text-align: center;
	padding-top: 40px;
	color: #fff;
}
.footer-content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.footer-content h3{
	font-size: 1.8rem;
	text-transform: capitalize;
	font-weight: 400;
	line-height: 3rem;
}
.footer-content p{ 
	max-width: 500px;
	margin: 10px auto;
	line-height: 28px;
	font-size: 14px;
}
.socials{
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 1rem 0 3rem 0;
}
.socials li{
	margin: 0 10px;
}
.socials a{
	text-decoration: none;
	color: #fff;
}
.socials li a{
	font-size: 1.1rem;
	transition: color .4s ease;
}
.socials a:hover i{
	color: aqua;
}
.footer-bottom{
	background: #000;
	width: 100vw;
	padding: 20px 0;
	text-align: center;
}
.footer-bottom p{
	font-size: 14px;
	word-spacing: 2px;
	text-transform: capitalize;
}
.footer-bottom span{
	text-transform: uppercase;
	opacity: .4;
	font-weight: 200;
}
.header-one{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/about-us.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.header-two{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/contact.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}

.container{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
iframe{
	width: 80%;
	height: 500px;
}
.header-three{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/contact.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.contain h1{
	text-align: center;
}
.contain p{
	text-align: center;
	padding-bottom: 20px;
}

.contain{
	width: 80%;
	margin: 50px auto;
}
.contact-box{
	background: #fff;
	display: flex;
}
.contact-left{
	flex-basis: 60%;
	padding: 40px 60px;
}
.contact-right{
	flex-basis: 40%;
	padding: 40px;
	background: #0086b3;
	color: #fff;
}
.input-row{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.input-row .input-group{
	flex-basis: 45%;
}
input{
	width: 100%;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	padding-bottom: 5px;
}
textarea{
	width: 100%;
	border: 1px solid #ccc;
	outline: none;
	padding: 10px;
	box-sizing: border-box;
}
label{
	margin-bottom: 6px;
	display: block;
	color: #0086b3;
}
button{
	background: #0086b3;
	width: 100px;
	border: none;
	outline: none;
	color: #fff;
	height: 35px;
	border-radius: 30px;
	margin-top: 20px;
	box-shadow: 0px 5px 15px 0px rgba(28,0,181,0.3);
}
.contact-left h5{
	color: #0086b3;
	font-weight: 600;
	margin-bottom: 30px;
}
.contact-right h5{
	font-weight: 600;
	margin-bottom: 30px;
}
tr td:first-child{
	padding-right: 20px;
} 
tr td{
	padding-top: 20px;
}

/*----- donate -----*/


.header-three{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/donate.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.donate{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
.donate-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.donate-col img{
	width: 100%;
	border-radius: 10px;
}
.donate-col p{
	padding: 0;
	text-align: center;
}
.donate-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
}
.header-four{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/photo.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.header-five{
	min-height: 60vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/azrel.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}

	