/* Special Section Starts Here */
* {
	box-sizing: border-box;
}

body {
	padding: 0px;
	margin: 0px;
	background-color: green;
	font-family: Carrois Gothic;
}

/* Special Section Ends Here */

/* Header Section Starts Here */
.hc-main {
	display: flex;
	flex-direction: row;
	width: 100%;
	/* background-color: rgb(4, 68, 4); */ 
	background-color: white;
	color: black;
	position: sticky; 
	border-bottom: 2px solid rgb(4, 68, 4); 
	top: 0;
	z-index: 2;
}

.logo-div{
	display: flex;
	flex-direction: row;
	padding-left: 20px;
	width: 30%;
}

.logo-img{
	width: 80px;
	position: absolute;
}

.logo {
	padding-left: 90px;
}

.open-btn,
.close-btn {
	display: none;
}

.nav-div {
	width: 70%;
	display: flex;
	justify-content: end;
	flex-direction: row;
	padding-right: 50px;
	padding-top: 20px;
	height: 60px;
}

.navlink {
	padding-right: 10px;
	padding-left: 10px;
	color: black;
	text-decoration: none;

}

.navlink:hover {
	text-decoration: none;
	border-bottom: 2px solid black;
}

.legend:hover{
	background-color: green;
	color: white;
	border-bottom: 2px solid white;
}

.about-div, .affilate-div {
	display: none;
	flex-direction: column;
	position: absolute;
	background-color: white;
	border: 2px solid black;
	top: 60px;
	right: 55px;
}

.about-child {
	padding-right: 10px;
	padding-left: 10px;
	color: black;
	text-decoration: none;
	border-bottom: 2px solid black;
}

.about-child:hover{
	background-color: green;
	color: white;
}

/* Mobile Responsiveness Sections Starts Here */
@media screen and (max-width: 600px) {
	.nav-div {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: black;
		justify-content: start;
		padding-right: 0px;
		padding-top: 20px;
		position: fixed;
		height: 100%;
		overflow-x: scroll;
	}

	.navlink {
		padding-right: 10px;
		padding-left: 10px;
		color: white;
		text-decoration: none;
		font-size: 30px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.navlink:hover {
		text-decoration: none;
		border-bottom: 2px solid white;
	}

	.logo-img{
		width: 80px;
		height: max-content;
		position: relative;
	}
	
	.logo {
		padding-left: 0px;
	}

	.open-btn {
		display: block;
		margin-left: 170px;
		font-size: 30px;
		margin-top: 20px;
	}

	.close-btn {
		display: block;
		position: fixed;
		margin-left: 250px;
		font-size: 60px;
		margin-top: -20px;
		color: white;
	}

	.about-div, .affilate-div{
		display: none;
		flex-direction: column;
		position: static;
		background-color: white;
		border: 2px solid black;
		/* top: 60px;
		right: 55px; */
	}
}

/* Mobile Responsiveness Sections Ends Here */
/* Header Section Ends Here */

/* Banner Section Starts Here */
.hc4 {
	background-color: red;
	margin-top: -22px;
	height: auto;
	padding: 10px 0px;
}

/* Banner Section Ends Here */

/* Vision and Mission Section Starts Here */

.vm-container{
	width: 100%;
	background-color: transparent;
	display: flex;
	flex-direction: row;
	text-align: center;
}

.mission{
	width:50%;
	background-color: rgb(255 255 255 / 93%);
	padding: 20px;
}

.vision{
	width:50%;
	background-color: white;
	padding: 20px;
}

/* Responsiveness Starts */
@media screen and (max-width: 600px) {
	.vm-container{
		width: 100%;
		background-color: transparent;
		display: flex;
		flex-direction: column;
		text-align: center;
		margin-top: -15px;
	}
	
	.mission {
		width: 94%;
		background-color: rgb(255 255 255 / 93%);
		padding: 20px;
		margin: 2px 10px;
		border-radius: 10px;
		font-size: 17px;
	}
	
	.vision{
		width: 94%;
		background-color: white;
		padding: 20px;
		margin: 2px 10px;
		border-radius: 10px;
		font-size: 17px;
	}
}
/* Responsiveness Ends */
/* Vision and Mission Section Ends Here */

/* Verse Starts Here */
.verse {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	display: block;
	text-align: center;
	background-color: white;
	margin-top: auto;
}

.verse-arabic {
	font-family: Amiri Quran;
	font-size: 30px;
}

/* Verse Ends Here */

/* Before Footer Starts Here */
.bf-sec {
	width: 100%;
	background-color: green;
	display: flex;
	padding: 5px;
}

.bf-sec-div {
	width: 33%;
	padding: 10px;
	margin: 5px;
	background-color: white;
}

.bf-sec-div-btn {
	margin-right: auto;
	margin-left: auto;
	width: 50%;
	display: block;
	text-decoration: none;
	color: white;
	background-color: #7c7777;
	text-align: center;
	padding: 10px 0 10px 0;
	border-radius: 50px;
	transition: background-color 1s;
}

.bf-sec-div-btn:hover {
	background-color: #000000;
}

.qlink{
	text-decoration: none;
	color: black;
}

.qlink:hover{
	text-decoration: underline;
}

/* Mobile Responsiveness Section Starts Here */
@media screen and (max-width: 600px) {
	.verse {
		width: 100%;
		/* margin-right: auto; */
		/* margin-left: auto; */
		display: block;
		/* position: absolute; */
		text-align: center;
		/* background-color: white; */
		margin-top: auto;
	}

	.verse-arabic {
		font-family: Amiri Quran;
		font-size: 30px;
	}

	/* Verse */

	/* Before Footer */
	.bf-sec {
		width: 100%;
		background-color: green;
		display: block;
		/* margin-right: auto; */
		/* margin-left: auto; */
	}

	.bf-sec-div {
		width: 100%;
		background-color: white;
		display: block;
		/* padding: 0px; */
		margin-right: auto;
		margin-left: auto;
	}

	.bf-sec-div-btn {
		margin-right: auto;
		margin-left: auto;
		width: 50%;
		display: block;
		text-decoration: none;
		color: white;
		background-color: #7c7777;
		text-align: center;
		padding: 10px 0 10px 0;
		border-radius: 50px;
		transition: background-color 1s;
	}

	.bf-sec-div-btn:hover {
		background-color: #000000;
	}
}

/* Mobile Responsiveness Section Ends Here */

/* Before Footer Ends Here */

/* Footer Section Starts Here */
.pg-foot {
	background-color: white;
	position: relative;
	margin-bottom: -15px;
	color: black;
	text-align: center;
}

.bck-to-top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 30px;
	z-index: 1;
	font-size: 30px;
	border: none;
	outline: none;
	background-color: white;
	color: black;
	cursor: pointer;
	padding: 3px;
	border-radius: 50px;
	transition: background-color, color 1s;
	border: 1px solid black;
	height: 50px;
	width: 50px;
}

.bck-to-top:hover {
	background-color: black;
	color: white;
}

/* Mobile Responsiveness Section Starts Here */
@media screen and (max-width: 600px) {
	.pg-foot {
		background-color: white;
		position: relative;
		margin-bottom: -15px;
		color: black;
		text-align: center;
	}

	.bck-to-top {
		padding: 4px;
		height: 40px;
		width: 40px;
		font-size: 22px;
	}
}

/* Mobile Responsiveness Section Ends Here */
/* Footer Section Ends Here */