
#menu {
  box-shadow: 5px 5px 20px #3a3c41;
  position:absolute;
  width: 0px;
  overflow: hidden;
  top: -20px;
  left: -7px;
  color: #ffffff;
background-color:#423f40;

}

.over{
z-index:10;
}

#menu-content {
  position: relative;
width:200px;
  z-index:20;

}

#blurred-bg-canvas {
  position: absolute;
}

#captured-image {
  display: none;
}

/*
a nice list inside the blurred menu container
*/
#menu-content ul {
  list-style: outside none none;
}
#menu-content ul li {
  padding: 12px;
  white-space: nowrap;
}
#menu-content ul li.first {
  border-top: none;
}
#menu-content ul li.last {
  border-bottom: none;
}


/*
just for the menu Button trigger
the hamburger button with a little gradient effekt
*/
#hamburger {
   cursor: pointer;
  display: block;
  height: 30px;
  padding: 7px;
color:#fff;
font-size:22px;	
  width: 25px;
float:left;
}
/*
The white stripes in the hamburger button
*/
#hamburger div {
  background-color: #fff;
  border: 1px solid #eee;
 
  height: 2px;
  margin-top: 3px;
  width: 90%;
}
/*
The demo content
*/
#content {
  width: 800px;
}
#content img {
  float: left;
  padding: 10px 15px 10px 0
}
p {
  clear:both;
}


#cssmenu {
height:2000px;
background-color:#fff;

}
/* Some stylesheet reset */
#cssmenu > ul {
list-style: none;
margin: 0;
padding: 0;
vertical-align: baseline;
line-height: 1;
}
/* The container */
#cssmenu > ul {
display: block;
position: relative;
}
/* The list elements which contain the links */
#cssmenu > ul li {
display: block;
position: relative;
margin: 0;
padding: 0;
width: 100%;
}

#cssmenu > ul li.bignav {
display: block;
position:static;
margin: 0;
padding: 0;
width: 100%;
}

/* General link styling */
#cssmenu > ul li a {
/* Layout */

display: block;
position: relative;
margin: 0;
border-top: 1px solid #f0f0f5; 
border-bottom: 1px solid #f0f0f5; 
padding: 8px 20px;
/* Typography */

font-family: 'Roboto Slab', serif;
color: #000;
text-decoration: none;  
font-size: 14px;
font-weight: 500;
/* Background & effects */

background: #fff;
}

#cssmenu > ul li a  i{
  color: #000;
  font-size: 16px;
}


  #cssmenu > ul ul li a:hover {
      background: #a32043;
     
  }


  #cssmenu > ul ul li a {
      /* Layout */
      display: block;
      position: relative;
      margin: 0;
      border-top: 1px solid #f6f9ff;
      border-bottom: 1px solid #f6f9ff;
      padding: 8px 20px;
      /* Typography */
      font-family: 'Roboto Slab', serif;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      /* Background & effects */
      color: #fff;
      background: #c71f4c;
  }


/* Rounded corners for the first link of the menu/submenus */
#cssmenu > ul li:first-child > a {

border-top: 0;
}
/* Rounded corners for the last link of the menu/submenus */
#cssmenu > ul li:last-child > a {

border-bottom: 0;
}
/* The hover state of the menu/submenu links */
  #cssmenu > ul li a:hover,
  #cssmenu > ul li:hover > a, #cssmenu > ul li:hover > a i, #cssmenu > ul li:hover .has-sub > a::after, #cssmenu > ul li:hover  > a::after {
      color: #fbe9ed;       
      background: #c71f4c;
      border-color: transparent;
  }
/* The arrow indicating a submenu */
#cssmenu > ul .has-sub > a::after {
  content: "\f285";
position: absolute;
top: 10px;
right: 27px;
width: 0px;
height: 0px;
font-family: bootstrap-icons !important;
color: #000;
font-size: 13px;
font-weight: 100;
/* Creating the arrow using borders */


}

/* Changing the color of the arrow on hover */
#cssmenu > ul li > a:hover::after,
#cssmenu > ul li:hover > a::after {
border-left: 4px solid #fff;
}
#cssmenu > ul li > a:hover::before,
#cssmenu > ul li:hover > a::before {
border-left: 4px solid rgba(0, 0, 0, 0.25);
}
/* THE SUBMENUS */
#cssmenu > ul ul {
position: absolute;
left: 100%;
top: -9999px;
padding-left: 5px;
opacity: 0;
  z-index:1000px;

/* The fade effect, created using an opacity transition */

-webkit-transition: opacity 0.3s ease-in;
-moz-transition: opacity 0.3s ease-in;
transition: opacity 0.3s ease-in;
}
#cssmenu > ul ul li a {
font-size: 13px;
color: #fff !important;
text-transform: capitalize;
}


/* Showing the submenu when the user is hovering the parent link */
#cssmenu > ul li:hover > ul {
top: 0px;
opacity: 1;
z-index: 1;
}