/* CSS Document */

#nav-btn{
	cursor: pointer;
	height: 30px;
	opacity: 0;
	position: absolute;
	width: 30px;
	z-index: 100;
	top: 20px;
	right: 30px;
}
#nav-btn + label{
	display: block;
	height: 4px;
	height: 30px;
	position: absolute;
	top: 40px;
	width: 30px;
	right: 30px;
	left: 30px;
}
#nav-btn + span{
	background-color: #333333;
	cursor: pointer;
	display: block;
	height: 4px;
	position: absolute;
	right: 30px;
	top: 40px;
	width: 30px;
	z-index: 99;
}
#nav-btn + span::before,
#nav-btn + span::after{
	background-color: #333333;
	content: "";
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	width: 30px;
	right: auto;
}
#nav-btn + span::before{
	top: -10px;
}
#nav-btn + span::after{
	bottom: -10px;
}
#nav-btn:checked + span{
	background-color: #F5060A;
}
#nav-btn + span::before,
#nav-btn + span::after{
	transition-delay: 0.3s, 0s;
	transition-duration: 0.3s, 0.3s;
}
#nav-btn + span::before{
	transition-property: top, transform;
}
#nav-btn + span::after{
	transition-property: bottom, transform;
}
#nav-btn:checked + span{
	background: none;
}
#nav-btn:checked + span::before{
	top: 0;
	transform: rotate(45deg);
}
#nav-btn:checked + span::after{
	bottom: 0;
	transform: rotate(-45deg);
}
#nav-btn:checked + span::before,
#nav-btn:checked + span::after{
	transition-delay: 0s, 0.3s;
}
#nav-btn:checked ~ nav{
	left: 0px;
	opacity: 100;
	position: absolute;
	visibility: 1;
	z-index: 98;
}
#nav-btn:checked ~ nav ul{
	transform: translate(-50%, -50%);
}
nav{
	background-repeat: repeat;
	background-position: 0% 0%;
	background-image: none;
	background-color: rgba(233,233,233,0.98);
	background-attachment: scroll;
	height: 100%;
	opacity: 0;
	top: 0px;
	transition: opacity 0.5s ease 0s, visibility 0s ease 0.5s;
	visibility: 0;
	z-index: -1;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
nav ul{
	left: 50%;
	moz-transition: all 1s ease-in-out;
	o-transition: all 1s ease-in-out;
	position: absolute;
	top: 50%;
	transform: translate(-50%, 0%);
	transition: all 1s ease-in-out;
	webkit-transition: all 1s ease-in-out;
}
nav li{
	font-size: 30px;
	list-style: none;
	padding-bottom: 10px;
	text-align: center;
}
nav ul li a:hover{
	color: #999999;
	text-decoration: none;
}
nav li a {
    color: #333333;
    font-size: 70px;
    text-decoration: none;
}
a, a:visited, a:focus{
	color:#333333;
	font-size: 70px;
	text-decoration:none;
}
@media (max-width:1024px){

}

@media (max-width:600px){
nav ul{
	left: 44%;
	}
	nav li a {
    font-size: 50px;
}
a, a:visited, a:focus{
	font-size: 50px;
}

	}