@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes borderfade {
  0% {
    border-left: 2px solid rgba(255, 255, 255, 0);
  }
  100% {
    border-left: 2px solid rgb(255, 255, 255);
  }
}
@keyframes borderfade {
  0% {
    border-left: 2px solid rgba(255, 255, 255, 0);
  }
  100% {
    border-left: 2px solid rgb(255, 255, 255);
  }
}
.button_container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 30px;
  width: 40px;
  cursor: pointer;
  z-index: 1000;
  border: 15px solid transparent;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  -webkit-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  transform: rotate(405deg);
  background: #fff;
  top: calc(50% - 1px);
}

.button_container.active .middle {
  opacity: 0;
  background: #fff;
}

.button_container.active .bottom {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  background: #fff;
  bottom: calc(50% - 1px);
}

.button_container span {
  background: #fff;
  border: none;
  border-radius: 3px;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
  transform-origin: center center;
}

.button_container span:nth-of-type(1) {
  top: 0;
}

.button_container span:nth-of-type(2) {
  top: calc(50% - 1px);
}

.button_container span:nth-of-type(3) {
  bottom: 0;
}

.overlay {
  position: fixed;
  background-size: 108vw;
  background-position: left center;
  background-blend-mode: multiply;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 998;
  display: grid;
  grid-template-rows: 1fr max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
}

.overlay.insta {
  z-index: 1;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  height: auto;
  display: block;
  width: 300px;
}

.overlay.open li a, .overlay.open li h2, .overlay.open li span {
  opacity: 0;
  display: inline-block;
  -webkit-animation: fadeInRight 0.25s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.overlay.open li:nth-of-type(2) a {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.overlay.open li:nth-of-type(2) > ul > li:nth-of-type(1) a {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.overlay.open li:nth-of-type(2) > ul > li:nth-of-type(2) a {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.overlay.open li:nth-of-type(2) > ul > li:nth-of-type(3) a {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.overlay.open li:nth-of-type(3) a {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.overlay.open li:nth-of-type(4) a, .overlay.open li:nth-of-type(5) a {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(6) span, .overlay.open li:nth-of-type(6) h2 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.overlay.open li:nth-of-type(6) span {
  padding-right: 10px;
}

.overlay.open li ul {
  border-left: 2px solid rgba(255, 255, 255, 0);
  -webkit-animation: borderfade 1.5s ease forwards;
  animation: borderfade 1.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

#navwrap img {
  max-width: 50px;
  margin: 0;
}

#navwrap nav {
  grid-row: 2;
  grid-column: 2;
  position: relative;
  height: auto;
  width: auto;
  width: 300px;
  text-align: center;
  border-top: none;
  border-bottom: none;
  margin: 0 auto;
  color: #fff;
  display: flex;
  font-size: 24px;
  background-color: #f1e9d7;
  background-image: url("/resources/04.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: 400px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#navwrap nav a {
  color: #000;
  display: inline-block;
  font-size: 24px;
  line-height: 45px;
  min-height: 45px;
  position: relative;
  opacity: 0;
  text-decoration: none;
  overflow: hidden;
  border: none;
  padding: 0 10px 0 10px;
  width: 260px;
}
#navwrap nav a h3 {
  font-weight: 600;
}

#navwrap nav li:last-of-type h2 a {
  font-size: 36px;
  padding: 0 0 0 10px;
  line-height: 36px;
  height: 30px;
  overflow: visible;
  display: inline-block;
}
#navwrap nav li:last-of-type h2 a.contact {
  display: none;
}

#navwrap nav a:hover {
  text-decoration: underline;
}

#navwrap ul {
  position: relative;
  padding: 0;
  margin-top: 0;
}

#navwrap ul li a {
  padding: 10px 20px;
  text-align: center;
}

#navwrap nav a.title {
  margin-bottom: 30px;
}

/*# sourceMappingURL=menu.css.map */
