@charset "UTF-8";

/*===== nav========*/
#overlay-input{display: none}
nav li{display: block}
nav a{display: block;font-size: 1.3vw;text-align: center;padding:4% 0}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@media screen and (max-width: 769px) {
	}
nav a{	
text-shadow: 2px 2px 10px #fff ,
-2px 2px 15px #fff ,
2px -2px 15px #fff ,
-2px -2px 15px #fff;
	}
	
.BG{
/*	background-image: url(../img/bg.jpg);
*/	
	background-color: #f1f4fb;
	background-size: cover;
	background-position: center top;
}
#overlay-button {
  position: fixed;
  right: 1em;
  top: 3em;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #3f3f3f;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
	filter: drop-shadow(1px 1px 1px #fff);

}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #3f3f3f;
	filter: drop-shadow(1px 1px 1px #fff);

  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #3f3f3f;
}

input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
  height: 100vh;
  width: 100vw;
/*  background: #ec6451;*/
  z-index: 999;
  visibility: hidden;
  position: fixed;
}
#overlay.active {

}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
/*  height: 100vh;*/
  padding-left: 0;
  list-style-type: none;
	padding-top: 10%
}
#overlay ul li {
  padding: 0.5em;
}
#overlay ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
}
#overlay ul li a:hover {
  color: #000!important;
}

/*=======================*/
