.app {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  font-family: 'Raleway'; }
  .app * {
    box-sizing: border-box; }

a {
  text-decoration: none;
  outline: none; }

button {
  outline: none;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer; }

.menu-button {
  z-index: 1000;
  position: absolute;
  top: 30px;
  left: 30px;
  width: 30px;
  height: 24px; }
  .menu-button:before, .menu-button:after,
  .menu-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.85); }
  .menu-button:before, .menu-button:after {
    content: '';
    top: 50%;
    transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
    -webkit-transform-origin: center;
            transform-origin: center; }
  .menu-button:before {
    -webkit-transform: translateY(-10px) scale3d(0.8, 1, 1);
            transform: translateY(-10px) scale3d(0.8, 1, 1); }
  .menu-button:after {
    -webkit-transform: translateY(10px) scale3d(0.8, 1, 1);
            transform: translateY(10px) scale3d(0.8, 1, 1); }
  .menu-button span {
    overflow: hidden;
    text-indent: 200%;
    transition: opacity 0.25s; }
  .menu-button--open:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg); }
  .menu-button--open:after {
    -webkit-transform: rotate3d(0, 0, -1, 45deg);
            transform: rotate3d(0, 0, -1, 45deg); }
  .menu-button--open span {
    opacity: 0; }

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  padding: 30px;
  opacity: 0;
  background-color: transparent;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: transform 1.2s, opacity 1.2s;
  transition: transform 1.2s, opacity 1.2s, -webkit-transform 1.2s;
  pointer-events: none; }
  .navbar__button {
    width: calc(100% / 3);
    padding: 0 10%; }
  .navbar--open {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
    pointer-events: initial; }

.link {
  display: block;
  position: relative;
  color: white;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase; }
  .link:before {
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: currentColor;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  .link:hover, .link:focus {
    color: #dae37b; }
  .link:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }

.pages-stack {
  z-index: 100;
  -webkit-perspective: 1200px;
          perspective: 1200px;
  -webkit-perspective-origin: center -50%;
          perspective-origin: center -50%;
  pointer-events: none; }

.page {
  position: relative;
  overflow-y: hidden;
  width: 100%;
  height: 100vh;
  padding: 6em 10vw 2em;
  background-color: #272727;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.4);
  transition: opacity 0.45s, -webkit-transform 0.45s;
  transition: transform 0.45s, opacity 0.45s;
  transition: transform 0.45s, opacity 0.45s, -webkit-transform 0.45s;
  transition-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  pointer-events: all; }
  .page--inactive {
    position: absolute;
    top: 0; }
  .page__title {
    margin-bottom: 2em; }
    .page__title h1 {
      margin: 0;
      color: white;
      font-size: 2.123em;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: 2px;
      text-transform: uppercase; }

.home-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%; }
  .home-page__bg {
    z-index: 999;
    position: absolute;
    top: 0;
    bottom: 25vh;
    left: 0;
    right: 0;
    background-color: #B1B8BD;
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(assets/2f5c6758194d28e097922799ee99d565-Home_BG.jpg);
    -webkit-mask-image: linear-gradient(black, transparent);
            mask-image: linear-gradient(black, transparent); }
  .home-page__logo {
    height: 25vh;
    -webkit-filter: invert(1);
            filter: invert(1); }
  .home-page__buttons {
    display: flex;
    align-self: center;
    align-items: center;
    width: 80%; }
    .home-page__buttons button {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      margin: 0 20px;
      border: 5px solid white;
      padding: 20px;
      color: white;
      font-size: 1.5em;
      font-weight: 600;
      transition: all 0.3s; }
      .home-page__buttons button:hover {
        border-color: #dae37b;
        background-color: #dae37b;
        color: #1a1a1a;
        -webkit-transform: scale3d(1.1, 1.1, 1);
                transform: scale3d(1.1, 1.1, 1); }

.menu-page {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .menu-page__content {
    flex: 1; }

.menu-topics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 50px;
  grid-gap: 20px;
  width: 100%;
  height: 100%; }
  .menu-topics__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    right: -1px;
    opacity: 0;
    overflow: hidden;
    background-color: #272727;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    pointer-events: none; }
    .menu-topics__content--open {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
              transform: scale3d(1, 1, 1);
      pointer-events: all; }

.menu-topic {
  display: flex;
  cursor: pointer; }
  .menu-topic__title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    text-transform: uppercase;
    transition: background-color 0.25s, color 0.5s; }
  .menu-topic__bg {
    display: none; }
  .menu-topic__close {
    width: 90px;
    height: 90px;
    background-color: #f73434;
    color: white;
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0); }
    .menu-topic__close i {
      font-size: 4em; }
  .menu-topic__items {
    display: none;
    flex: 1;
    position: relative;
    overflow-y: auto; }
  .menu-topic:hover .menu-topic__title {
    background-color: rgba(255, 255, 255, 0.05);
    color: #dae37b; }
  .menu-topics__content .menu-topic {
    width: 100%;
    height: 100%;
    flex-direction: column;
    cursor: default; }
    .menu-topics__content .menu-topic__title, .menu-topics__content .menu-topic__items {
      padding-left: 1.5rem; }
    .menu-topics__content .menu-topic__title {
      position: relative;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 3.5rem;
      overflow: hidden;
      color: white !important;
      background-color: transparent !important;
      font-size: 1.75em;
      font-weight: 600;
      letter-spacing: 3px;
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
      -webkit-animation: title 0.85s 0.3s 1 forwards;
              animation: title 0.85s 0.3s 1 forwards; }
    .menu-topics__content .menu-topic__bg {
      display: block;
      position: absolute;
      left: 10%;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      background-position: 0;
      background-size: cover;
      background-repeat: no-repeat;
      -webkit-mask-image: linear-gradient(to left, black, transparent);
              mask-image: linear-gradient(to left, black, transparent); }
    .menu-topics__content .menu-topic__close {
      -webkit-animation: close 0.2s 1.2s 1 forwards;
              animation: close 0.2s 1.2s 1 forwards; }
    .menu-topics__content .menu-topic__items {
      display: block;
      opacity: 0.95;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      -webkit-animation: items 0.65s 0.55s 1 forwards;
              animation: items 0.65s 0.55s 1 forwards; }

@-webkit-keyframes title {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes title {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes items {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes items {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes close {
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

@keyframes close {
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.menu-item {
  display: flex;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5em; }
  .menu-item__name {
    display: flex;
    align-items: center;
    flex: 1;
    text-transform: uppercase; }
    .menu-item__name:after {
      content: '';
      flex: 1;
      height: 8px;
      margin: 0 10px;
      background: radial-gradient(lightgrey 2px, transparent 1px) transparent;
      background-size: 12px 8px; }
  .menu-item__price {
    font-size: 1.25em; }
  .menu-item__description {
    display: none; }

.menu-page {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .menu-page__content {
    flex: 1; }

.menu-topics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 50px;
  grid-gap: 20px;
  width: 100%;
  height: 100%; }
  .menu-topics__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    right: -1px;
    opacity: 0;
    overflow: hidden;
    background-color: #272727;
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    pointer-events: none; }
    .menu-topics__content--open {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
              transform: scale3d(1, 1, 1);
      pointer-events: all; }

.menu-topic {
  display: flex;
  cursor: pointer; }
  .menu-topic__title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    text-transform: uppercase;
    transition: background-color 0.25s, color 0.5s; }
  .menu-topic__bg {
    display: none; }
  .menu-topic__close {
    width: 90px;
    height: 90px;
    background-color: #f73434;
    color: white;
    -webkit-transform: scale3d(0, 0, 0);
            transform: scale3d(0, 0, 0); }
    .menu-topic__close i {
      font-size: 4em; }
  .menu-topic__items {
    display: none;
    flex: 1;
    position: relative;
    overflow-y: auto; }
  .menu-topic:hover .menu-topic__title {
    background-color: rgba(255, 255, 255, 0.05);
    color: #dae37b; }
  .menu-topics__content .menu-topic {
    width: 100%;
    height: 100%;
    flex-direction: column;
    cursor: default; }
    .menu-topics__content .menu-topic__title, .menu-topics__content .menu-topic__items {
      padding-left: 1.5rem; }
    .menu-topics__content .menu-topic__title {
      position: relative;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 3.5rem;
      overflow: hidden;
      color: white !important;
      background-color: transparent !important;
      font-size: 1.75em;
      font-weight: 600;
      letter-spacing: 3px;
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
      -webkit-animation: title 0.85s 0.3s 1 forwards;
              animation: title 0.85s 0.3s 1 forwards; }
    .menu-topics__content .menu-topic__bg {
      display: block;
      position: absolute;
      left: 10%;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      background-position: 0;
      background-size: cover;
      background-repeat: no-repeat;
      -webkit-mask-image: linear-gradient(to left, black, transparent);
              mask-image: linear-gradient(to left, black, transparent); }
    .menu-topics__content .menu-topic__close {
      -webkit-animation: close 0.2s 1.2s 1 forwards;
              animation: close 0.2s 1.2s 1 forwards; }
    .menu-topics__content .menu-topic__items {
      display: block;
      opacity: 0.95;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      -webkit-animation: items 0.65s 0.55s 1 forwards;
              animation: items 0.65s 0.55s 1 forwards; }

@keyframes title {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes items {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes close {
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1); } }

.menu-item {
  display: flex;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5em; }
  .menu-item__name {
    display: flex;
    align-items: center;
    flex: 1;
    text-transform: uppercase; }
    .menu-item__name:after {
      content: '';
      flex: 1;
      height: 8px;
      margin: 0 10px;
      background: radial-gradient(lightgrey 2px, transparent 1px) transparent;
      background-size: 12px 8px; }
  .menu-item__price {
    font-size: 1.25em; }
  .menu-item__description {
    display: none; }


/*# sourceMappingURL=styles-10167e7c4b94d73bc983.css.map*/