body {cursor:default;}  
/* custom cursor */
.cursor {
	position: fixed;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: rgba(150,150,150,0.3);
	pointer-events: none;
	mix-blend-mode: difference;
	z-index: 999;
	visibility: hidden;
	opacity:0;
	transition: opacity 0.3s, transform 0.2s;
    -webkit-transition: opacity 0.3s, transform 0.2s;  
}
.cursor.on {
	visibility:visible;
	opacity:0.5;
}

/* section navigation ----------------------------------------- */
#section-menu {
  position: fixed;
  top: 50%;
  right: -90px;
  z-index: 3000;
  text-transform: uppercase;
  -webkit-transition: all ease 0s;
  transition: all ease 0s;  
}
#section-menu:hover { right: 0; }

#section-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#section-menu li { margin-bottom:0; }

#section-menu li a {
  float: none;
  width: 120px;
  clear: both;
  display: block;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.8em;
  text-decoration: none;
  padding: 0 8px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  white-space: nowrap;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;  
}
#section-menu:hover a {
  float: right;
  width: auto;
}  

#section-menu a:hover {   /* ,#section-menu a:focus  */
  background: rgba(0,0,0,0.75);
  font-size: 0.9em;
}
#section-menu .current-menu-item a {
  background: rgba(0,0,0,0.75);
  font-size: 0.9em;
  font-weight: 700;
}

#section-menu a span {
  display: inline-block; 
/*  font-weight: 700;
  position: relative;  */
  width: 15px;  
  margin-right:5px;
  text-align: center;
}
#section-menu:hover a span { display: none; }
