.fm-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fm-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fm-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid;
  min-height: 72px;
}

.fm-item:first-child {
  border-top: none;
}

.fm-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: clamp(20px, 4vh, 40px);
  letter-spacing: 0.04em;
  font-family: var(--sans);
  padding: 0 24px;
}

.fm-item-link:hover {
  color: inherit;
}

.fm-marquee {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translate3d(0, 101%, 0);
}

.fm-marquee__inner-wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.fm-marquee__inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: fit-content;
  will-change: transform;
}

.fm-marquee__part {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fm-marquee__part span {
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(18px, 4vh, 36px);
  line-height: 1;
  padding: 0 1vw;
  font-family: var(--sans);
  letter-spacing: 0.04em;
}

.fm-marquee__img {
  width: 200px;
  height: 7vh;
  min-height: 40px;
  margin: 1.5em 2vw;
  border-radius: 50px;
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}
