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

/* Navbar */


#menuToggle
{
  display: block;
  position: relative;
  top: 0px;
  right: 20px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 18px;
  right: -8px;
  
  float: right;

  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  top: -26px;
  margin-bottom: 5px;
  position: relative;

  background: #fff;
  border-radius: 2px;

  float: right;
  clear: both;
  
  z-index: 1;
  
  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;
}
#menuToggle input:hover ~ span
{
    background: #FFFF00 !important;
}
#menuToggle input ~ span
{
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#menuToggle span:nth-last-child(3)
{
  width: 24px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#menuToggle input:hover ~ span:nth-last-child(3)
{
  width: 33px;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  width: 33px;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle 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 input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100%;
  height: 110vh;
  margin: -63px 0 200px 20px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ffff0099;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(0%, -100%);
  
  transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
  overflow: hidden !important;
}
#menu a {
  color: #333 !important;
  font-weight: 800;
}
#menu li:hover {
  opacity: 0.8 !important;
  padding-right: 25px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
.project-info {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.project-info h6{
	color: #fff !important;
}