
@import url('https://fonts.googleapis.com/css?family=Ovo');
nav{
	font-family: 'Ovo', serif;
	display: block;
	transition: all 1s ease;
}
divorce{
	display: inline-block;
	}
divorce:after{
	content:' / ';
	color:#CCC;
	}

/* Main Menu */
.mainmenu{
	display: inline-block;
	cursor:pointer;
	outline:none;
	margin: -1px;
}

.mainmenu a{
	text-align:left;
	color:#1d252c;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	display:block;
	border-radius:20px;
}
.mainmenu_big a{
	padding:10px 20px;
	}
.mainmenu_small a{
	padding:10px 20px;
	}
.mainmenu .current,  
.mainmenu:hover > a,
.mainmenu a:hover{
	color:#ff0000;
	}

/* Sub Menu */
.submenu{
	opacity:0;
	position: absolute;
	visibility:hidden;
	transition: all 0.2s ease;
	z-index: 99999;
	background-color:rgba(29,37,44, 0.8);
	background-image: url(arrow.png);
	background-repeat: no-repeat;
	background-position: 40px top;

	margin-top:-7px;
	padding: 20px 10px;
	text-align:left;
	overflow:auto;
}
.submenu span, .submenu small{
	padding-bottom:5px;
	display:block;
}
.submenu a{
	display: block; /*change to inline-block for multi column*/
	border-radius:0px;
	padding: 5px 15px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;	
	color:#FFF;
	font-weight: normal;
}

.submenu a:hover{
	background-color:#131377;
	border-radius:0px;
	color:#FFF;
  padding: 10px 15px;
}
	
.submenu a:last-of-type{
	border-bottom-width: 0px;
}
/*on rollover */
.mainmenu:hover .submenu,
.mainmenu:focus .submenu{
	opacity:1;
	visibility:visible;
}




#toggle, #toggle + label{
	display:none;
	vertical-align:middle;
	cursor:pointer;
	text-align:right;
}

@media only screen and (max-width: 1020px) {
divorce{
	display: none;
	}

#toggle + label{
	display:table-cell;
	float:right;
	margin-right:25px;
}

nav{
	position: fixed;
	top: 0px;
	left: -1800px;
	height:100vh;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background-color:#FFF;
	padding-top:25px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;	
}
#toggle:checked ~ nav {
	left: 0px;
  min-width:50%;
}
.mainmenu{
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
}
.mainmenu a{
	display:block;
	padding:10px 25px;
	color:#000;
}
.mainmenu:hover > a,
.mainmenu a:hover{

	}
.mainmenu:hover .submenu,
.mainmenu:focus .submenu{
	position:static;
}
.submenu{
	max-height:200px;

}
.submenu a{
	padding: 5px 15px;
	color:#FFF;
}
}

