
/* CSS Document */

.button_container {
    position: fixed;
    top: 30px;
    right: 32px;
    height: 16px;
    width: 16px;
    cursor: pointer;
    z-index: 101;
    transition: opacity 0.25s ease;
}
.button_container:hover {
}
.button_container.active .top {
    transform: translateY(6px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    transform: translateY(-6px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #fff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
    z-index: 101;
}
.button_container span:nth-of-type(2) {
    top: 6px;
}
.button_container span:nth-of-type(3) {
    top: 12px;
}
.waku {
    position: fixed;
    top: 20px;
    right: 20px;
    pointer-events: none;
    width: 40px;
    z-index: 102;
}
.overlay {
    position: fixed;
    background: #313c49;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 100;
}
.overlay.open {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}
.overlay.open li {
    -webkit-animation: fadeInRight 0.3s ease forwards;
          animation: fadeInRight 0.3s ease forwards;
    -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
    -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.overlay .logo {
    display: none;
}
.overlay .qr {
    display: none;
}
.overlay nav {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
}
.overlay ul {
    padding: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}
.overlay ul li {
    display: block;
    position: relative;
    opacity: 0;
    width: 100%;
    padding: 6px 0;
}
.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 180%;
    letter-spacing: .1em;
}
.overlay ul li a span {
    display: block;
    font-size: 50%;
    letter-spacing: .2em;
    line-height: 1em;
    padding-top: .5em;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 10%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 10%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}