.toggleMenu {
    display:  none;
	text-decoration: none !important;		
	color: #FFF !important;
}
nav ul.nav {
    list-style: none;	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;	
	margin: 25px 0 0;
	padding: 0;
	clear: both;
	text-align: left;
}
nav .nav:before,
nav .nav:after {
    content: " "; 
    display: table; 
}
nav .nav:after {
    clear: both;
}
nav .nav ul {
    list-style: none;
	margin: 0;
}
nav .nav a {
	display: block;
    padding: 8px 15px;
    color: #000;
    font-weight: 700;	
    text-decoration: none;
}
nav .nav li {
    position: relative;
	white-space: nowrap;	
    float: left;
	margin: 0;
}
nav .nav li ul li {
	display: block;
	width: 100%;
	padding: 0 15px;
	background: #FFFFFF;
}
nav .nav a:hover, nav .nav a:active, nav .nav a:focus , nav .nav a.nav-selected {
	color: rgb(83, 174, 47);
}
nav .nav > li > ul {
    position: absolute;
	display: block;
	left: 0;
    height: 0;		
	overflow: hidden;
	margin-top: 1px;
	transition: all 0.1s;
	transition-delay: 0.1s;	
}
nav .nav > li:hover > ul {
	height: 300px;	
	transition: all 0.75s;	
	transition-delay: 0s;
}
nav .nav li li a {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
	font-size: 100%;	
	font-weight: 300;
	border-bottom: #a8a7a7 1px solid;
}
nav .nav li li:last-of-type a {
	border-bottom: none;
}

@media screen and (max-width: 1280px) {
.navigation {
	padding-top: 0;
	right: 0;
}	
 nav .active {
     display: block;
 }
.toggleMenu:after {
	display:block;
	position:absolute;
	right:20px;
	top:20px;
	cursor:pointer;		
	z-index: 95;		
	content:"";
	background: url('ham1.svg') no-repeat;
	background-size: contain;
	background-position: center;
	width: 50px;
	height: 50px;
}
.toggleMenu.active:after {
	z-index: 999;		
	background: url('ham2.svg') no-repeat;
	background-size: contain;	
	background-position: center;
}	
nav {
	position: absolute;
	top: 0;
	right: 0;
	padding: 100px 0 20px;
	background: rgb(83, 174, 47);
	margin-top: 0;
	width: 350px;
	z-index: -1;
}
nav ul.nav {
	display: block;
	margin: 0;
}	
nav .nav > li {
    float: none;
	display: block;
	background: transparent;
	margin: 0 20px 20px;
}
nav .nav a {
    padding: 5px 15px;
	background: transparent;
	color: #FFF;
	border-bottom: #FFF 1px solid;
}	
nav .nav li li a {
	padding: 5px 15px;
	color: #C4F7AF;	
	border-bottom: #C4F7AF 1px solid;
}
nav .nav a:hover, nav .nav a:active, nav .nav a:focus, nav .nav a.nav-selected {
	background: #FFF;
	color: rgb(83, 174, 47);
}
nav .nav > li > ul {
    position: relative;
    height: auto;
	margin-top: 0;
}
nav .nav > li:hover > ul {
	height: auto;	
	box-shadow: none;
}	
nav .nav ul {
    display: block;
    width: 100%;
}
nav .nav li ul li {	
	margin: 0;
	background: transparent;
}	
}