/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */

#container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

/* Menu Appearance */
.pushy {
	position: fixed;
/*   width: 200px; */
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 9999;
/* 	background: rgba(79, 149, 81, 0.98); */
/* 	background: rgba(49, 161, 197, 0.98); */
	background: rgba(49, 197, 141, 0.98);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
/* enables momentum scrolling in iOS overflow elements */
}
.pushy ul {
	display: table;
	list-style: none;
	height: 80%;
	width: 100%;
	
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.pushy ul li {
	display: table-row;
}
.pushy ul:first-child {
/* 	margin-top: 50px; */
}
.pushy a {
	display: block;
	color: #fff;
	padding: 15px 30px;
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 300;
	
	-webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.pushy a:hover {
	opacity: 0.7;
	color: #fff;
	text-decoration: none;
	background: none;
}
@media only screen and (min-width: 320px) {
	.pushy a {
		font-size: 2em;
	}
}
@media only screen and (min-width: 768px) {
	.pushy a {
		font-size: 3.5em;
	}
}




.pushy.pushy-left {
	left: 0;
}
.pushy.pushy-right {
	right: 0;
}

.pushy-content {
	visibility: hidden;
	height: 100%;
}

/* Menu Movement */
.pushy-left {
	-webkit-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
	-webkit-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.pushy-right {
	-webkit-transform: translate3d(200px, 0, 0);
	-ms-transform: translate3d(200px, 0, 0);
	transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
	-webkit-transform: translate3d(-200px, 0, 0);
	-ms-transform: translate3d(-200px, 0, 0);
	transform: translate3d(-200px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
	visibility: visible;
	text-align: center;
}


/* Menu Transitions */
#container,
.pushy,
.push {
	transition: transform 0.7s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
	transition: visibility 0.7s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}




