
 a
 {
   text-decoration: none;
   color: #232323;
   
   transition: color 0.3s ease;
 }

 #header_mobile {
    display:none;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height:5%;
}

#menuToggle_black
{
    display:none;
position: absolute;
margin-left:85%; 
margin-top:-12%;
z-index: 5;
-webkit-user-select: none;
user-select: none;
}


#menuToggle_black input
{
display:none;
width:33px;
height:20px;
top:10%;
position: absolute;
opacity: 0; /* hide this */
z-index: 7; /* and place it over the hamburger */
background-color: transparent;
-webkit-touch-callout: none;
}



#menuToggle_black span
{
    display:none;
margin-bottom: 5px;
position: relative;
background: black;
border-radius: 3px;
z-index: 5;
width: 33px;
height: 4px;   
transform-origin: 4px 0px;
 
transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
             background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
             opacity 0.55s ease;

}

#menu_black
{
display:none;
position: absolute; 
height:110vh;
width: 100vw;
padding:50px;
padding-top: 125px;
right: -5px;
background-color: rgba(255, 255, 255, 0.7);
list-style-type: none;
-webkit-font-smoothing: antialiased;
z-index:-5;
/* to stop flickering of text in safari */

overflow-y:scroll;
transform-origin: 0% 0%;
transform: translate(100%, 0);
transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  margin: -100px 0 0 0;
}



#menu_black li
{
display:none;
padding: 10px 0;
font-size: 22px;
color:black;

}



#menuToggle_black span:first-child
{
transform-origin: 0% 0%;
}



#menuToggle_black span:nth-last-child(2)
{
transform-origin: 0% 100%;
}

/* 
* Transform all the slices of hamburger
* into a crossmark.
*/
#menuToggle_black input:checked ~ span
{
opacity: 1;
transform: rotate(45deg) translate(-2px, -1px);
background: black;
}

/*
* But let's hide the middle one.
*/
#menuToggle_black input:checked ~ span:nth-last-child(3)
{
opacity: 0;
transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
#menuToggle_black input:checked ~ span:nth-last-child(2)
{
opacity: 1;
transform: rotate(-45deg) translate(0, -1px);
}

#menuToggle_black input:checked ~ ul
{
transform: none;
opacity: 1;
}


.menu{
  transform:scale(0.8);

}

 

 


 @media screen and (max-width: 990px) {

  #menuToggle_black
  {
    display:block;
   position: absolute;
    top: 10%;
    right: 5%;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  
  
  
  #menuToggle_black input
  {
    display: block;
    position: absolute;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    
    -webkit-touch-callout: none;
  }
 
  
  #menuToggle_black span
  {
    display: block;
    margin-bottom: 5px;
    position: relative;
    background: black;
    border-radius: 3px;
    
    z-index: 1;
  }
 
  
 
  
  #menuToggle_black input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
  

 
 
  #menu_black
  {
    display:block;
    position: fixed;
    height:110vh;
    width: 100%;
    padding: 0;
    padding-top: 170px;
    right:0;
    background-color: rgba(255, 255, 255, 1);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    overflow-y:scroll;
  }

  
  #menu_black li
  {
    display:block;
    padding: 10px 0;
    /*border-bottom: 1px solid rgba(58, 15, 15, 0.1);*/
    font-size: 22px;
    color:black;
    width:60%;
    margin-left:20%;
    text-align:center;
  }
 
 
 
  #menuToggle_black input:checked ~ ul
  {
    transform: none;
    opacity: 1;
  }
 
 
  
  
 /* Normal menu */
 
 #menuToggle
  {
    display:block;
   position: fixed;
    top: 3%;
    right: 3%;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  
  #menuToggle input
  {
    display: block;
    position: absolute;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    
    -webkit-touch-callout: none;
  }
  
  
  #menuToggle span
  {
    display: block;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    
    z-index: 1;
    
 
  }
  
  
  #menuToggle input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
 
  #menu
  {
    display:block;
    position: fixed;
    height:100vh;
    width: 200px;
    padding: 50px;
    padding-top: 125px;
    right: -120px;
    background-color: rgba(255, 255, 255, 0.7);
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    overflow-y:scroll;
   
  }
 
  #menu li
  {
    padding: 10px 0;
    font-size: 22px;
    color:black;
  }
  
 
  #menuToggle input:checked ~ ul
  {
    transform: none;
    opacity: 1;
  }
 
  
 /*Credit : https://codepen.io/erikterwan/pen/grOZxx */
 
 
  }
 
 
 
 