.page {
  width: 100%;
  height: 100vh;
  letter-spacing: .03em;
}
header {
  z-index:1000;
  display: flex;
  position: fixed;
  width: 100%;
  height: 70px;
  background: #fff;
  /*color: #fff;*/
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#nav-container {
  z-index: 1000;
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;
}
#nav-container * {
  visibility: visible;
}
.menu-button {
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 70px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #321900;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}
#nav-container:focus-within .menu-button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}
#nav-content {
  text-align: center;
  margin-top: 70px;
  padding: 20px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 70px);
  background: #fff;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
}
#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#nav-content li {
 padding-top: 2rem;
 font-size: 1.5rem;
}
#nav-content li a {
  padding: 10px 5px;
  /*display: block;*/
  text-transform: uppercase;
  transition: color .1s;
}
#nav-content li a:hover {
  color: #BF7497;
}
#nav-content li:not(.small) + .small {
  margin-top: auto;
}
#nav-container:focus-within #nav-content {
  transform: none;
}
a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}
a {
  color: currentColor;
  transition: .2s ease-in-out;
}
ul {
  padding: 0;
  list-style: none;
}

.slick-slide img{
  display:inline;
}
.menu-image{
  max-width: 180px;
}