*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
  margin: 0;
  --color-text: #111;
  --color-bg:  #e3e0d8;
  --color-link: #000;
  --color-link-hover: #000;
  --color-border: #a7927b;
  --marquee-bg: #000;
  --marquee-text: #fff;
  --menu-focus: #775e41;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: reason-new, -apple-system, BlinkMacSystemFont, Segoe UI,
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js .loading:after,
.js .loading:before {
  content: "";
  position: fixed;
  z-index: 1000;
}
.js .loading:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}
.js .loading:after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.menu__item-link {
  text-decoration: underline;
  color: var(--color-link);
}
.menu__item-link,
.menu__item-link:hover {
  outline: none;
}
.menu__item-link:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
.menu__item-link:focus {
  outline: none;
  background: #d3d3d3;
}
.menu__item-link:focus-visible,
.menu__item-link:focus:not(:focus-visible) {
  background: transparent;
}
.menu__item-link:focus-visible {
  outline: 2px solid red;
}
.menu-wrap {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: calc(100vh - 13rem);
  position: relative;
  justify-content: center;
}
.menu__item {
  cursor: default;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 -1px var(--color-border);
}
.menu__item:last-child {
  box-shadow: 0 1px var(--color-border), 0 -1px var(--color-border);
}
.menu__item-link {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.menu__item-link:focus,
.menu__item-link:focus-visible {
  color: var(--menu-focus);
}
.menu__item-link:focus:not(:focus-visible) {
  color: var(--color-link);
}
.marquee {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: var(--marquee-bg);
  transform: translate3d(0, 101%, 0);
}
.marquee__inner-wrap {
  height: 100%;
  width: 100%;
  transform: translate3d(0, -101%, 0);
}
.marquee__inner {
  height: 100%;
  width: fit-content;
  align-items: center;
  display: flex;
  position: relative;
  animation: marquee 15s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.marquee span,
.menu__item-link {
  white-space: nowrap;
  font-size: 6vw;
  line-height: 1.2;
  font-weight: 600;
  padding: 1vh 1vw 0;
  text-transform: uppercase;
}
.marquee span {
  text-align: center;
  color: var(--marquee-text);
  font-weight: 400;
}
.marquee__img {
  width: 15vw;
  height: 70%;
  margin: 0 2vw;
  border-radius: 5vw;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (min-width: 53em) {
  .menu-wrap {
    height: 100vh;
  }
}
