/* Menu CSS */

.mainmenu
{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:888;
	background:rgba(245,250,254,0.75);
	display:none;
}

.mainmenu .scroll
{
	position:absolute;
	width:100%;
	height:auto;
	max-height:100vh;
	overflow:auto;
	padding:80px 0 20px 0;
}

.mainmenu .items
{
	max-width:400px;
	height:auto;
}

.mainmenu .items .title
{
	line-height:20px;
	margin:40px 0 30px 0;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	font-size:13px;
	opacity:0.5;
}

.mainmenu .items .title:first-child
{
	margin-top:0;
}

.mainmenu .items .item
{
	height:40px;
	line-height:40px;
	margin:10px 0 10px 0;
	background:#fff;
	transition:all 0.1s ease-in-out;
	-webkit-transition:all 0.1s ease-in-out;
	border-radius:20px;
	-webkit-border-radius:20px;
	box-shadow:0 5px 20px -10px #3F7FE0;
	-webkit-box-shadow:0 5px 20px -10px #3F7FE0;
	text-align:center;
	font-weight:700;
	color:#5386ff;
	font-size:10px;
	letter-spacing:1px;
	text-transform:uppercase;
}

.mainmenu .items .item:hover
{
	transform:translate(0,-2px);
	-webkit-transform:translate(0,-2px);
	box-shadow:0 7px 20px -8px #3F7FE0;
	-webkit-box-shadow:0 7px 20px -8px #3F7FE0;
}

.mainmenu .items .links
{
	width:auto;
	height:25px;
	margin-top:40px;
}

.mainmenu .items .links .link
{
	width:auto;
	height:25px;
	padding:0 10px 0 12px;
	font-size:8px;
	text-transform:uppercase;
	letter-spacing:1px;
	font-weight:700;
	cursor:pointer;
	color:#33334f;
	transition:all 0.1s ease-in-out;
	-webkit-transition:all 0.1s ease-in-out;
	opacity:0.5;
}

.mainmenu .items .links .link:hover
{
	opacity:0.25;
}

.mainmenu .items .links .link:before
{
	content:"·";
	position:absolute;
	font-size:10px;
	left:0;   
	top:0;
	width:100%; 
	height:100%;
	text-align:left;
}

.mainmenu .items .links .link:first-child:before
{
	display:none;
}