/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.single-project {
  background-color: #ffffff;
  color: #131415;
  padding: 0;
}
.single-project__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.917vw, 11.2rem);
  padding-top: 1.6rem;
  padding-bottom: clamp(4rem, 4.167vw, 16rem);
}
@media only screen and (min-width: 1024px) {
  .single-project__inner {
    flex-direction: row;
    align-items: flex-start;
    padding-top: clamp(3.2rem, 3.333vw, 12.8rem);
    padding-left: clamp(4rem, 2.778vw, 10.667rem);
  }
}
.single-project__sidebar {
  display: contents;
}
@media only screen and (min-width: 1024px) {
  .single-project__sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(1.6rem, 1.667vw, 6.4rem);
    flex: 0 0 34.14%;
    min-width: 0;
    padding-inline: 0 clamp(1.2rem, 0.833vw, 3.2rem);
    position: sticky;
    top: calc(clamp(6.6rem, 4.583vw, 17.6rem) + 1.6rem);
    align-self: flex-start;
    max-height: calc(100dvh - clamp(6.6rem, 4.583vw, 17.6rem) - 3.2rem);
    overflow-y: auto;
  }
  @supports not selector(::-webkit-scrollbar) {
    .single-project__sidebar {
      scrollbar-width: thin;
      scrollbar-color: #d9d9d9 transparent;
    }
  }
  .single-project__sidebar::-webkit-scrollbar {
    width: 0.2rem;
  }
  .single-project__sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .single-project__sidebar::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 0.2rem;
  }
  .single-project__sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #858585;
  }
}
.single-project__head {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.111vw, 4.267rem);
  order: 1;
  padding-inline: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .single-project__head {
    padding-inline: 0;
  }
}
.single-project__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.111vw, 4.267rem);
  order: 3;
  padding-inline: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .single-project__body {
    padding-inline: 0;
  }
}
.single-project__back {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: clamp(0.6rem, 0.417vw, 1.6rem);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #131415;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
.single-project__back:active {
  opacity: 0.6;
}
@media (hover: hover) and (pointer: fine) {
  .single-project__back:hover {
    opacity: 0.7;
  }
}
.single-project__back-icon {
  display: inline-flex;
  width: clamp(1.2rem, 0.833vw, 3.2rem);
  height: clamp(1.2rem, 0.833vw, 3.2rem);
  flex-shrink: 0;
}
.single-project__back-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.single-project__title {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(3.2rem, 2.222vw, 8.533rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #131415;
}
.single-project__category {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--c-text-muted);
}
@media only screen and (min-width: 1024px) {
  .single-project__category {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__facts {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 0.556vw, 2.133rem);
  padding: 0;
  margin: 0;
  list-style: none;
}
.single-project__fact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(0.3rem, 0.208vw, 0.8rem);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 1024px) {
  .single-project__fact {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__fact-label {
  color: var(--c-text-muted);
}
.single-project__fact-value {
  color: #131415;
}
.single-project__description {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--c-text-muted);
}
@media only screen and (min-width: 1024px) {
  .single-project__description {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__description p {
  margin: 0 0 clamp(2rem, 1.389vw, 5.333rem);
}
.single-project__description p:last-child {
  margin-bottom: 0;
}
.single-project__description-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: clamp(0.8rem, 0.556vw, 2.133rem);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.12rem + 0.333vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #131415;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.single-project__description-toggle:active {
  opacity: 0.6;
}
@media (hover: hover) and (pointer: fine) {
  .single-project__description-toggle:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1024px) {
  .single-project__description-toggle {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__description.--js-clamped .single-project__description-toggle {
  display: inline-flex;
}
.single-project__description-toggle .single-project__description-toggle-less {
  display: none;
}
.single-project__description-toggle[aria-expanded=true] .single-project__description-toggle-more {
  display: none;
}
.single-project__description-toggle[aria-expanded=true] .single-project__description-toggle-less {
  display: inline;
}
.single-project__divider {
  border: 0;
  height: 1px;
  background-color: #d9d9d9;
  margin-inline: -1.6rem;
  width: auto;
  flex-shrink: 0;
}
@media only screen and (min-width: 1024px) {
  .single-project__divider {
    margin-inline: 0;
    width: 100%;
  }
}
.single-project__floor {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.111vw, 4.267rem);
}
.single-project__floor.--tabbed .single-project__floor-item:not(.--active) {
  display: none;
}
.single-project__floor.--tabbed .single-project__floor-slide-title {
  display: none;
}
.single-project__floor.--tabbed .single-project__floor-list {
  gap: 0;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor.--tabbed .single-project__floor-item:not(.--active) {
    display: flex;
  }
  .single-project__floor.--tabbed .single-project__floor-slide-title {
    display: block;
  }
  .single-project__floor.--tabbed .single-project__floor-list {
    gap: clamp(4.8rem, 3.333vw, 12.8rem);
  }
}
.single-project__floor-item.--enter .single-project__floor-slide-title,
.single-project__floor-item.--enter .single-project__floor-link,
.single-project__floor-item.--enter .single-project__floor-exec {
  animation: sp-plan-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.single-project__floor-item.--enter .single-project__floor-exec {
  animation-delay: 0.1s;
}
.single-project__floor-item.--enter .single-project__explication-item {
  animation: sp-list-in 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(1) {
  animation-delay: 0.18s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(2) {
  animation-delay: 0.23s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(3) {
  animation-delay: 0.28s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(4) {
  animation-delay: 0.33s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(5) {
  animation-delay: 0.38s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(6) {
  animation-delay: 0.43s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(7) {
  animation-delay: 0.48s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(8) {
  animation-delay: 0.53s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(9) {
  animation-delay: 0.58s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(10) {
  animation-delay: 0.63s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(11) {
  animation-delay: 0.68s;
}
.single-project__floor-item.--enter .single-project__explication-item:nth-child(12) {
  animation-delay: 0.73s;
}
.single-project__floor-exec {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.12rem + 0.333vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #131415;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor-exec {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__floor-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-inline: -1.6rem;
  padding-inline: 1.6rem;
}
.single-project__floor-tabs::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor-tabs {
    display: none;
  }
}
.single-project__floor-tab {
  flex: 0 0 auto;
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  background-color: #f2f2f2;
  color: #131415;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.single-project__floor-tab.--active {
  background-color: #000;
  color: #fff;
}
.single-project__floor-tab:active {
  opacity: 0.85;
}
.single-project__floor-list {
  display: flex;
  flex-direction: column;
  gap: clamp(4.8rem, 3.333vw, 12.8rem);
}
.single-project__floor-item {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.111vw, 4.267rem);
}
.single-project__floor-slide-title {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.12rem + 0.333vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #131415;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor-slide-title {
    font-size: clamp(1.2rem, 0.833vw, 3.2rem);
  }
}
.single-project__floor-link {
  display: block;
  width: 100%;
  cursor: zoom-in;
  transition: opacity 0.2s ease-in-out;
}
.single-project__floor-link:active {
  opacity: 0.85;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor-link {
    width: 100%;
  }
}
.single-project__floor-figure {
  display: block;
  width: 100%;
  aspect-ratio: 343/271;
}
@media only screen and (min-width: 1024px) {
  .single-project__floor-figure {
    aspect-ratio: 478/341;
  }
}
.single-project__floor-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-project__explication-list {
  counter-reset: expl;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single-project__explication-item {
  counter-increment: expl;
  display: flex;
  align-items: center;
  min-height: clamp(4.4rem, 3.056vw, 11.733rem);
  padding: clamp(1.2rem, 0.833vw, 3.2rem) clamp(1.6rem, 1.111vw, 4.267rem);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: clamp(1.4rem, 0.972vw, 3.733rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #131415;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
}
.single-project__explication-item:active {
  background-color: #f2f2f2;
}
@media (hover: hover) and (pointer: fine) {
  .single-project__explication-item:hover {
    background-color: #f2f2f2;
  }
}
.single-project__explication-item::before {
  content: counter(expl);
  flex: 0 0 clamp(3rem, 2.083vw, 8rem);
  font-variant-numeric: tabular-nums;
}
.single-project__explication-title {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: clamp(3rem, 2.083vw, 8rem);
}
.single-project__explication-value {
  flex: 0 0 auto;
  text-align: right;
}
.single-project__gallery {
  order: 2;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .single-project__gallery {
    flex: 1 1 0;
    min-width: 0;
    overflow: visible;
  }
  .single-project__gallery .single-project__gallery-track {
    display: flex;
    flex-direction: column;
    gap: clamp(1.6rem, 1.111vw, 4.267rem);
    transform: none !important;
  }
}
.single-project__photo {
  width: auto;
  height: 30.2rem;
  margin: 0;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .single-project__photo {
    width: 100%;
    height: auto;
    overflow: visible;
  }
}
.single-project__photo-link {
  display: block;
  height: 100%;
  width: auto;
  line-height: 0;
  cursor: zoom-in;
  transition: opacity 0.2s ease-in-out;
}
.single-project__photo-link:active {
  opacity: 0.85;
}
@media only screen and (min-width: 1024px) {
  .single-project__photo-link {
    width: 100%;
    height: auto;
  }
}
.single-project__photo-img {
  display: block;
  height: 100%;
  width: auto;
}
@media only screen and (min-width: 1024px) {
  .single-project__photo-img {
    width: 100%;
    height: auto;
  }
}
.single-project__gallery-progress {
  height: 0.2rem;
  margin-top: clamp(2rem, 1.389vw, 5.333rem);
  margin-inline: 1.6rem;
  background-color: #d9d9d9;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .single-project__gallery-progress {
    display: none;
  }
}
.single-project__gallery-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background-color: #131415;
  transition: width 0.3s ease;
}

@keyframes sp-plan-in {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes sp-list-in {
  from {
    opacity: 0;
    transform: translateX(2.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .single-project__floor-item.--enter * {
    animation: none;
  }
}