nav {
  font-size: 1em;
  padding: 10px 0;
  text-align: left;
  top: 0;
}

.fixed {
	background-color: rgba(100,100,100,1.00);
	position: fixed;
	width: 100%;
	padding: 20px 10% 0;
	text-align: left;
	text-indent: 20px;
	z-index: 100;

}

.navigation {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}

.burger {
  display: inline-block;
  border: 0;
  background: none;
  outline: 0;
  cursor: pointer;
  border-bottom: 3px solid currentColor;
  width: 28px;
  transition: border-bottom 1s ease-in-out;
  -webkit-transition: border-bottom 1s ease-in-out;
  text-align: center;
  color: rgba(0,0,0,1.00);
}
.burger::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.burger:before {
  content: "";
  display: block;
  border-bottom: 3px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger:after {
  content: "";
  display: block;
  border-bottom: 4px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger-check {
  display: none;
  background-color: initial;
}
.burger-check:checked ~ .burger {
  border-bottom: 4px solid transparent;
  transition: border-bottom 0.8s ease-in-out;
  -webkit-transition: border-bottom 0.8s ease-in-out;
}
.burger-check:checked ~ .burger:before {
  transform: rotate(-405deg) translateY(1px) translateX(-3px);
  -webkit-transform: rotate(-405deg) translateY(1px) translateX(-3px);
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger-check:checked ~ .burger:after {
  transform: rotate(405deg) translateY(-4px) translateX(-5px);
  -webkit-transform: rotate(405deg) translateY(-4px) translateX(-5px);
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger-check:checked ~ .navigation {
  max-height: 500px;
  width: 60%;
  transition: max-height 0.5s ease-in-out;
  margin: 10px;
}

/*L I N K  S T Y L E S*/
a {
  color: inherit;
}
small {
  font-size: 1em;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
  font-size: 2em;
  padding: 5px 0;
  line-height: 1.5em;
  font-weight: 500;
}
a {
  text-decoration: none;
}
li a:hover {
  text-decoration: none; 
  color: rgba(255,255,255,1.00);
}

