@charset "utf-8";


a {text-decoration: none;}

#navigation {

	position: relative; text-align: center;
}

.toggleMenu {
	display:  none;
	text-transform: uppercase;
	margin: 0 auto ;
	padding: 1rem 0;
	color: #212b34;
	font-weight: 600; 
	letter-spacing: 2px; 
}


.nav {
	list-style: none;
	*zoom: 1;
}
.nav:before,
.nav:after {
	content: " "; 
	display: table; 
}
.nav:after {
	clear: both;
}
.nav ul {
	list-style: none;

}

.nav a {
	position: relative;

}

.nav > li > a {
	display: block;
}

@media screen and (max-width: 720px) {
	.active {
		display: block;
	}
	.nav > li {
		float: none;
	}

	.nav li li .parent:after { content: "\f0d7"; font-family: FontAwesome; float:right;  transform: rotate(-90deg);  }

	.nav li li.hover .parent:after { content: "\f0d7"; font-family: FontAwesome; float:right;  transform: rotate(0deg);  }

	.nav ul {
		display: block;
		width: 100%;
	}
	.nav > li.hover > ul , .nav li li.hover ul {
		position: static;
	}

}