.navcent {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	width: 100%;
	text-align: center;
	color: #3F3F36;
	display: block;
	font-size: 1.125em;
	line-height: 49px;
	padding: 0;
	text-transform: none;
	z-index: 300;
	background: #FFF;
}
.navcent ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
.navcent li a {
	color: #3F3F36;
	text-align: center;
	padding: 12px 12px;
	text-decoration: none;
	-moz-transition: all 300ms ease-in-out 0s;
	-ms-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	font-weight: normal;
	font-size: 1.0em;
}
.navcent li a:hover, .navcent .menu-btn:hover {
	text-decoration: none;
	color: #BA9F67;
}
/* menu */

.navcent .menu {
	clear: both;
	max-height: 0px;  /* Collapse nav on first open */
	transition: max-height .2s ease-out;
}
/* menu icon */

.navcent .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 22px 20px;
	position: relative;
	user-select: none;
}
.navcent .menu-icon .navicon {
	background: #969687;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 30px;
}
.navcent .menu-icon .navicon:before, .navcent .menu-icon .navicon:after {
	background: #506547;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}
.navcent .menu-icon .navicon:before {
	top: 10px;
}
.navcent .menu-icon .navicon:after {
	top: -10px;
}
/* menu btn */

.navcent .menu-btn {
	display: none;
}
.navcent .menu-btn:checked ~ .menu {
	max-height: 700px; /* Sets height ofd rop menu Important make sure its long enough !!! */
}
.navcent .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}
.navcent .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
}
.navcent .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}
.navcent .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .navcent .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
}
.top-nav-flags {
	margin: 0px 4px 4px 0px;
	height: 11px;
	width: 16px;
	vertical-align: middle;
	border: 0px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* 48em = 768px */

@media (min-width: 48em) {
.navcent li {
	display: inline-block;
	float: none;
	text-align: center;
}
.navcent li a {
	padding: 10px 10px;
}
.navcent .menu {
	clear: none;
	float: none;
	max-height: none;
}
.navcent .menu-icon {
	display: none;
}
}