
/* General Nav */
.background-nav{
    background-color: blanchedalmond;
	box-shadow: 0px 0px 10px;
}
.GenerealNav{
	height: 100%;
	display: flex;
	justify-content: space-between;
}

@media only screen and (max-width: 1200px){
.GenerealNav{
	display: block;
}	
}

/*End of General Nav*/





/* Title / Left Side  */
.Title{
	display: flex;
	padding: 6px 10px 6px 10px;
}
.Title img{
	width: 50px;
	border-radius: 30px;
	cursor: pointer;
}
.Title a{
	color: blue;
	font-weight: bolder;
	font-size: 2rem;
	padding: 6px 0px 0px 20px;
}
.Title a:hover{
	color: white;
	font-weight: bolder;
	font-size: 1.4rem;
	margin-top: 8px;
	transition: all 5 ease;
}

/* End of Title / Left Side  */





/* Nav Content */
.NavContent{
	display: flex;
	padding: 20px;
}
@media only screen and (max-width: 1200px){
.NavContent{
	margin-top: 0px;
	position: fixed;
	top: -0px;
	width: 100%;
	display: block;
	background-color: lightgray;
	height: 100%;
	z-index: 1;
}	
.NavContent li{
	margin: auto;
	color: red;
}
}
.NavContent li a{
	padding: 0px 30px;	
	color: black;
	font-weight: bold;
	line-height: 20px;
	font-size: 22px;
	cursor: pointer;
}
.NavContent li a:hover{
	background-color: black;
	color: lawngreen;
	font-size: 24px;
	border-radius: 20px;
	height: 16px;
	padding: 0px 20px;
	transition: .7s;
	list-style: none;
	text-decoration: none;
	list-style-type: none;
}
@media only screen and (max-width: 1200px){
.NavContent li a{
	color: blue;
	line-height: 0px;
}
.NavContent li a:hover{
	background-color: yellow;
	border-radius: 20px;
	height: 22px;
	color: red;
	padding: 0px 20px;
	transition: all.7s;
	list-style: none;
	text-decoration: none;
	list-style-type: none;
}	
.NavContent li{
	padding: 40px 10px 20px;
	text-align: center;
}	
}
/*End of Nav Content*/




/*Icon Menu*/
.fa-bars{
	color: blue;
	position: absolute;
	top: 60px;
	right: 0;
	padding: 0px 20px;
    font-size: 30px;
    display: none;
    cursor: pointer;
}
.fa-square-xmark{
	color: black;
	position: absolute;
	top: 60px;
	right: 0;
	padding: 0px 60px;
    font-size: 30px;
    display: none;
    cursor: pointer;
}
@media only screen and (max-width: 1200px){
.fa-bars{
	display: block;
}	
.fa-square-xmark{
	display: block;
}	
}
/*End of Icon Menu*/








/*Off screen Button*/

#ResponsiveNav{
	display: none;
}

@media only screen and (max-width: 1200px){
.NavContent{
	display: none;
	transition: all.5s;
}
#ResponsiveNav:checked~.NavContent{
	display: block;
}
}
/*End of off screen button*/