/**NavBar**/

main{
  padding: 20px 40px;
  max-width: 2000px;
  text-align: right;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(5, 4, 4, 0.863),rgba(24, 1, 1, 0.034));
  z-index: 2;
}
aside{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0b0209da;
  background-image: url(/assets/images/Blank_page.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  z-index: 2;
  -webkit-transition: 0.4s;

}
.open{
  opacity: 1;
  visibility: visible;
}
nav{
  text-align: center;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul h2{
  color: #0b0209;
}
nav ul li{
  align-items: center;
  flex: 1;
  line-height: 14vh;
}
nav ul li a{
  font-size: 1.5em;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: var(--MM_Dark);
}
nav ul li a:hover{
  color: var(--mordecai);
}
nav ul li a:hover::before{
  visibility: visible;
  transform: scaleX(1);
}
nav ul li a::before{
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background: white;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.NavLogo{
  width: 70px;
}
.mollie_Nav{
  width: 90px;
}
button{
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4); 
  color: white;
  border-radius: 8px;
  transition: all .5s ease;
}
button:hover{
  border: 1px solid rgba(255, 255, 255, 1);
}
.close{
  position: fixed;
  top: 40px;
  right: 60px;
  color: var(--MM_light);
  z-index: 11;
  cursor: pointer;
}
.close span::before, span::after{
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: white;
  position: absolute;
  display: block;
  content: "";
}
.close span{
  background: transparent;
}
.close span::before{
  transform: rotate(45deg);
}
.close span::after{
  transform: rotate(-45deg);
}
.outer-close{
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}
/**End of NavBar**/