a{
  color: #636972;
}

a:link {
  text-decoration: none;
  cursor: pointer;
  color: #636972;
}

a:link {
  text-decoration: none;
  cursor: pointer;
  color: #636972;
}

a:visited {
  cursor: pointer;
  color: #636972;
}

a:active {
  cursor: pointer;
  color: #636972;
}

a:hover {
  cursor: pointer;
  color: #636972;
}

li{
  color: #636972;
}

#mobileBtn {
  display: none;
}

#mobileBtn:checked~label {
  position: static;
}

#mobileBtn:checked~label .icon-cancel {
  display: block;
}

#mobileBtn:checked~label .icon-bar {
  display: none;
}

#mobileBtn:checked~.shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

#mobileBtn:checked~.mobileNav {
  display: block;
  animation-name: fadeInDown;
  animation-duration: 0.4s;
}

.mobileNav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: #FAFAFA;
}

.mobileNav ul {
  margin-top: 35px;
  margin-bottom: 0px;
}

.mobileNav li {
  font-size: 20px;
  width: 80%;
  padding: 15px;
  list-style: none;
  border-bottom: solid 1px #eee;
}

.shade {
  display: none;
}

.icon-bar {
  display: none;
  width: 22px;
  height: 3px;
  border-radius: 1px;
  margin: 5px;
  background-color: #636972;
}

@media (max-width: 500px) {
  .icon-bar {
    display: block;
  }
}

.icon-cancel {
  display: none;
  z-index: 104;
  position: fixed;
  top: 25px;
  left:25px;
  margin: 5px;
  width: 20px;
  height: 3px;
  background: #636972;
  line-height: 0;
  font-size: 0;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
}

.icon-cancel:after {
  content: '/';
  display: block;
  width: 20px;
  height: 3px;
  background: #636972;
  -webkit-transform: rotate(-90deg);
}

.icon-label {
  display: none;
  z-index: 101;
  position: fixed;
  top: 15px;
  width: 50px;
  height: 40px;
  background: #eee;
  border-radius: 3px;
}

@media (max-width: 500px) {
  .icon-label {
    display: block;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
  animation-duration: 1.5s;
}
