﻿

.navigation {
  background: #f3f3f3;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  overflow: hidden;
  transition: left 0.3s;
  width: 100%;
  z-index: 100;
  
}
.navigation , .navigation a {
  color: #2c373e;
  width: 100%;
  text-align: left;
  z-index: 101;
}
.navigation div {
    margin:10px 0px -50px 0px;
    letter-spacing:1px;
    }
.navigation a {
 
  font-size: 10em;
  margin-left: 200px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family:'Six Caps';
  color:#2c373e;
  text-transform:uppercase;
}
.navigation a:hover {
  color:#b6ff00;
}

.toggle-button {
  display: block;
  padding: 10px;
  position: fixed;
  top: 48vh;
  left: 10px;
  z-index: 9999;
}
.toggle-button .wolverine {
  display: inline-block;
  height: 26px;
  padding: 0px 0px;
  cursor: pointer;
  -webkit-user-select: none;
  opacity: 0.97;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toggle-button .wolverine span {
  display: inline-block;
  text-transform: uppercase;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-left: 0px;
  width: 0px;
  overflow: hidden;
}
.toggle-button .wolverine .claws {
  position: relative;
  top: -2px;
  width: 20px;
  height: 4px;
  background: #2c373e;
  display: inline-block;
}
.toggle-button .wolverine .claws:before, .toggle-button .wolverine .claws:after {
  display: block;
  content: "";
  height: 4px;
  width: 20px;
  background: #2c373e;
  position: absolute;
  z-index: -1;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s 0.2s, -webkit-transform 0.2s ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 0.1s 0.2s ease, -moz-transform 0.2s ease;
  -o-transition: all 0.1s 0.2s ease, -o-transform 0.2s ease;
  transition: all 0.1s 0.2s ease, transform 0.2s ease;
}
.toggle-button .wolverine .claws:before {
  top: 8px;
}
.toggle-button .wolverine .claws:after {
  top: -8px;
}

.nav-control {
  position: fixed;
  left: -9999px;
  width: 100%;
  clip: rect(0, 0, 0, 0);
}
.nav-control:checked ~ .navigation {
  left: 0;
  opacity: 1;
  transition: left 0.3s, opacity 0.3s;
}
.nav-control:checked ~ .navigation ul li {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.nav-control:checked ~ .toggle-button .wolverine .claws {
  -webkit-transition: all 0.1s 0s;
  -webkit-transition-delay: ease;
  -moz-transition: all 0.1s 0s ease;
  -o-transition: all 0.1s 0s ease;
  transition: all 0.1s 0s ease;
  background: transparent !important;
  z-index: 101;
}
.nav-control:checked ~ .toggle-button .wolverine .claws:before, .nav-control:checked ~ .toggle-button .wolverine .claws:after {
  background: #2c373e;
  -webkit-transition: all 0.1s ease, -webkit-transform 0.1s 0.2s;
  -webkit-transition-delay: 0s, ease;
  -moz-transition: all 0.1s ease, -moz-transform 0.1s 0.2s ease;
  -o-transition: all 0.1s ease, -o-transform 0.1s 0.2s ease;
  transition: all 0.1s ease, transform 0.1s 0.2s ease;
  top: 0;
  width: 20px;
}
.nav-control:checked ~ .toggle-button .wolverine .claws:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.nav-control:checked ~ .toggle-button .wolverine .claws:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

@media screen and (max-width: 600px) {

    .navigation div {
        margin: 40px 0px -50px 0px;
        letter-spacing: 1px;
    }
}