@charset "utf-8";
/* CSS Document */

.hamburger-button {
  box-shadow: 1px 1px 2px #333;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1002;
  background-color: #fff;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  outline: none;
  position: fixed;
  z-index: 6000;
}
.hamburger-button svg {
  height: 25px;
  position: relative;
  width: 25px;
}
.hamburger-button path {
  fill: #000;
}
.hamburger-nav{
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1001;
  padding-top: 10px;
  display: none;
  z-index: 5000;
}
.hamburger-nav ul{
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
  border-collapse: collapse;
  padding: 10px 10px 20px;
}
.hamburger-nav li{
  /* border: 1px solid #fff; */
  text-align: center;
}
.hamburger-nav li:hover{
  background-color: rgba(255,255,255,.6);
}
.hamburger-nav li a{
  /* color: #fff !important; */
  display: block;
  font-size: 127%;
  padding: 20px 10px;
  text-decoration: none;
}
.hamburger-nav li a:hover {
  color: #333 !important;
}
.hamburger-nav #logo{
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
#hamburger-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
}
@media screen and (max-width:1024px) {
	.hamburger-button{
		display: flex;
	}
	.hamburger-nav{
		display: block;
	}
  /* .hamburger-nav .logo_link{
    left: 0;
		position: fixed;
    top: 10px;
		z-index: 30000;
	} */
}
@media screen and (max-width: 539px){
  .hamburger-button{
    top: 12px;
  }
  .hamburger-nav ul{
    display: block;
  }
  .hamburger-nav li{
    margin-top: 10px;
  }
  .hamburger-nav li:first-child{
    margin-top: 0;
  }
}