@charset "utf-8";
/* CSS Document */

/*------------------  MOBILE MENU --------------------------------------------------*/


.MenuClicker {
  display: block;
  text-indent: -5000px;  
  position: absolute;
top: 5px;
right: 10px;

font-size: 4px;
cursor:pointer;
text-align: left;
  
}

.bar1 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 0 0 6px 0;
  transition: 0.4s;
}


.bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}



/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
}


.hovered .bar1, .hovered .bar2, .hovered .bar3
{
background-color: #FF65C3;

}




/* The side navigation menu */
.sidenav {



    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Stay on top */
    top: 0;
    left: 0;
	background-color:rgba(0,0,0,0.9);

    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
	text-align: left;
}

.MenuOpen
{
width: 250px;

}



/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 22px;
    text-decoration: none;
    font-size: 25px;
    color: #FF65C3;
    display: block;
    transition: 0.3s
}



/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #FFDF58;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}



/*------------------ END MOBILE MENU --------------------------------------------------*/