/*----------------------------------------------*\
	STYLES
	======

	@package projectarchive

\*----------------------------------------------*/
/*
 *
 * ANCHOR Variables
------------------------------------------------*/
:root {
  /* Colors */
  --color-bg: #2B2D2F;
  --color-text: #fff;
  --color-magenta: #FF00FF;
  --color-cyan: #00FFFF;
  --color-yellow: #FFFF00;
  /* Fonts */
  --font-serif: acuta, serif;
  --font-sans: clone-rounded-latin, sans-serif;
  --font-body-text: Inter, sans-serif;
}

/*
 *
 * ANCHOR Global
------------------------------------------------*/
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 1em;
}

@media screen and (min-width: 600px) {
  body {
    margin: 2em;
  }
}

/*
 *
 * ANCHOR Header
------------------------------------------------*/
.header {
  font-family: var(--font-sans);
  padding-bottom: 3em;
  position: relative;
}

@media screen and (min-width: 700px) {
  .header {
    padding-bottom: 4em;
  }
}

.header__wrapper {
  padding-top: 4em;
}

@media screen and (min-width: 700px) {
  .header__wrapper {
    padding-top: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
}

@media screen and (min-width: 1000px) {
  .header__wrapper {
    margin-left: 3em;
    margin-right: 3em;
  }
}

.header__title-wrapper {
  border: 1px solid var(--color-text);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: var(--color-bg);
  position: relative;
}

@media screen and (min-width: 700px) {
  .header__title-wrapper {
    padding-left: 2.5em;
  }
}

.header__title-wrapper:before {
  content: '';
  border: 1px solid var(--color-text);
  position: absolute;
  top: 12px;
  left: -10px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

.header__title-wrapper a {
  text-decoration: none;
  display: block;
}

.header__title {
  font-size: 1.3em;
  font-weight: 300;
}

.header__title__bolder {
  font-weight: 500;
}

.header__title__boldest {
  font-weight: 600;
}

@media screen and (min-width: 480px) {
  .header__title {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 950px) {
  .header__title {
    font-size: 2em;
  }
}

.header__nav-wrapper {
  -ms-grid-column-align: end;
      justify-self: end;
  font-size: 1em;
}

@media screen and (min-width: 700px) {
  .header__nav-wrapper {
    font-size: .8em;
  }
}

@media screen and (min-width: 950px) {
  .header__nav-wrapper {
    font-size: 1em;
  }
}

.header__subtitle {
  font-size: 1em;
  font-family: var(--font-serif);
  padding-top: .5em;
  padding-bottom: .5em;
}

@media screen and (min-width: 950px) {
  .header__subtitle {
    font-size: 1.2em;
  }
}

.nav {
  display: none;
}

@media screen and (min-width: 700px) {
  .nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.menu-is-open .nav {
  display: block;
}

.nav__link {
  display: block;
  padding: 0.5em .75em 0.75em;
  line-height: 1;
  border: 1px solid var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--color-bg);
}

.nav__link--active {
  background-color: var(--color-magenta);
  color: var(--color-bg);
}

.menu-trigger {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 700px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger__button {
  position: relative;
  top: -.25em;
  padding: .5em;
}

.menu-is-open .menu-trigger__button {
  background-color: var(--color-yellow);
}

.menu-trigger svg {
  display: block;
  color: var(--color-text);
}

.menu-is-open .menu-trigger svg {
  color: var(--color-bg);
}

/*
 *
 * ANCHOR Home
------------------------------------------------*/
.seetheshow {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5em;
  padding-top: 4em;
}

.seetheshow h3 {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 2em;
  padding-top: 1em;
  padding-bottom: 2em;
}

.seetheshow__buttons {
  display: block;
}

@media screen and (min-width: 700px) {
  .seetheshow__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.seetheshow__work a {
  display: block;
  padding: 0.7em;
  font-family: var(--font-serif);
  font-size: 2em;
  color: var(--color-bg);
  background-color: var(--color-cyan);
  text-decoration: none;
  margin-left: .5em;
  margin-right: .5em;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .seetheshow__work a {
    padding: 0.7em 3em 0.7em 3em;
    margin-bottom: 0;
  }
}

.seetheshow__designers a {
  display: block;
  padding: 0.7em;
  font-family: var(--font-serif);
  font-size: 2em;
  color: var(--color-bg);
  background-color: var(--color-cyan);
  text-decoration: none;
  margin-left: .5em;
  margin-right: .5em;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .seetheshow__designers a {
    padding: 0.7em 3em 0.7em 3em;
  }
}

.seetheshow__designers a {
  text-decoration: none;
}

.seetheshow__work a {
  text-decoration: none;
}

.quotes {
  margin-top: 4em;
}

.quotes__headline {
  font-family: var(--font-sans);
  border: 1px solid var(--color-text);
  font-size: 2em;
  margin-left: -1em;
  display: inline-block;
  padding-left: 2.5em;
  padding-right: 2.5em;
  padding-top: .5em;
  padding-bottom: .7em;
  background-color: var(--color-bg);
  position: relative;
}

.quotes__headline:before {
  content: '';
  border: 1px solid var(--color-text);
  position: absolute;
  top: -12px;
  left: -10px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

.quotes__wrapper {
  border: 1px solid var(--color-magenta);
  padding: 5em 2em 4em 2em;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 70em;
  margin-top: -1em;
  text-align: center;
}

.quotes__text {
  font-family: var(--font-serif);
  font-size: 2em;
  font-weight: 900;
}

.quotes__attribution {
  font-family: var(--font-body-text);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1.5em;
  display: block;
  text-decoration: none;
}

.quotes__attribution:hover {
  color: var(--color-magenta);
}

.quotes__yearLevel {
  font-family: var(--font-body-text);
  text-transform: uppercase;
  font-weight: 100;
}

.quotes__refresh {
  opacity: .6;
  color: var(--color-magenta);
  cursor: pointer;
  display: inline-block;
  padding: 2em;
}

.quotes__refresh:hover {
  opacity: 1;
}

.quotes__refresh svg {
  width: 1.75em;
  height: auto;
}

/*
 *
 * ANCHOR Designer Detail
------------------------------------------------*/
.designer__projects {
  max-width: 1400px;
  margin: auto;
}

@media screen and (max-width: 1500px) {
  .designer__projects {
    margin-left: 4em;
    margin-right: 3em;
  }
}

@media screen and (max-width: 1000px) {
  .designer__projects {
    margin-left: 2em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 800px) {
  .designer__projects {
    margin-left: 2em;
    margin-right: 2em;
  }
}

@media screen and (max-width: 600px) {
  .designer__projects {
    margin-left: 0;
    margin-right: 0;
  }
}

.designer__project {
  margin-bottom: 6em;
}

@media screen and (min-width: 800px) {
  .designer__project {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr 3fr;
        grid-template-columns: 5fr 3fr;
  }
}

.designer__project__content-wrapper--video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border: 1px solid var(--color-cyan);
  background-color: var(--color-bg);
}

.designer__project__content-wrapper--video iframe, .designer__project__content-wrapper--video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.designer__project__info-wrapper {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 1em 0 2em 0;
}

@media screen and (min-width: 800px) {
  .designer__project__info-wrapper {
    position: relative;
    top: 2em;
    left: -3em;
    z-index: -1;
    padding: 1em 0 2em 3em;
  }
}

.designer__project__title {
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 1em;
  background-color: var(--color-yellow);
  font-family: var(--font-serif);
  color: var(--color-bg);
  font-size: 1.5em;
  padding: .5em 1em .5em 1.3em;
}

.designer__project__description {
  font-family: var(--font-body-text);
  color: var(--color-bg);
  line-height: 1.5em;
  padding-left: 3em;
  padding-right: 3em;
}

@media screen and (max-width: 1000px) {
  .designer__project__description {
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
}

@media screen and (max-width: 480px) {
  .designer__project__description {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.designer__links {
  font-family: var(--font-sans);
  color: var(--color-magenta);
}

.designer__links a {
  padding-left: 1em;
}

.designer__name {
  font-family: var(--font-sans);
  font-size: 3em;
  color: var(--color-magenta);
  font-weight: 600;
}

@media screen and (max-width: 600) {
  .designer__name {
    font-size: 2.5em;
  }
}

.designer__name-wrapper {
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .designer__name-wrapper {
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.designer__year-level {
  font-family: var(--font-sans);
  font-size: 2.5em;
  color: var(--color-magenta);
  font-weight: 300;
}

@media screen and (min-width: 600) {
  .designer__year-level {
    font-size: 3em;
  }
}

.designer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2em;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  max-width: 1400px;
  margin: auto;
  padding-bottom: 3em;
  max-width: 1400px;
  margin: auto;
}

@media screen and (max-width: 1500px) {
  .designer__header {
    margin-left: 4em;
    margin-right: 3em;
  }
}

@media screen and (max-width: 1000px) {
  .designer__header {
    margin-left: 2em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 600px) {
  .designer__header {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.designer__questions {
  border-top: var(--color-text) 1px solid;
  padding-top: 2em;
  padding-bottom: 2em;
  margin-left: 4em;
  margin-right: 4em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

@media screen and (min-width: 800px) {
  .designer__questions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1500px) {
  .designer__questions {
    margin-left: 4em;
    margin-right: 3em;
  }
}

@media screen and (max-width: 1000px) {
  .designer__questions {
    margin-left: 2em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 800px) {
  .designer__questions {
    margin-left: 2em;
    margin-right: 2em;
  }
}

@media screen and (max-width: 600px) {
  .designer__questions {
    margin-left: 1em;
    margin-right: 1em;
  }
}

.designer__question__text {
  font-family: var(--font-serif);
  font-size: 1.2em;
  line-height: 1.1;
  color: var(--color-text);
  padding-bottom: .5em;
  padding-right: 2em;
}

.designer__question__answer {
  font-family: var(--font-sans);
  font-size: 1em;
  padding-bottom: 2em;
  padding-right: 2.2em;
}

/*
 *
 * ANCHOR Slideshow
------------------------------------------------*/
.slideshow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content  auto  max-content;
      grid-template-columns: -webkit-max-content  auto  -webkit-max-content;
      grid-template-columns: max-content  auto  max-content;
  background-color: var(--color-bg);
  border: 1px solid var(--color-cyan);
}

.slideshow--single-item {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.slideshow__items {
  position: relative;
  padding-bottom: calc(75% + .5em);
  /* 4/3 */
}

.slideshow__item {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1em;
}

.slideshow__item--active {
  pointer-events: all;
  opacity: 1;
}

.slideshow__button {
  width: 2em;
  margin: 1.5em 0;
  background-color: var(--color-bg);
  color: var(--color-yellow);
  display: block;
}

@media screen and (min-width: 1000px) {
  .slideshow__button {
    width: 3em;
  }
}

.slideshow__button:hover {
  color: var(--color-cyan);
}

.slideshow__button--prev {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

/*
*
* ANCHOR Designers Landing
------------------------------------------------*/
.designers-listing {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-column-gap: 4em;
          column-gap: 4em;
  row-gap: 4em;
  position: relative;
  max-width: 60em;
  margin: 0 auto;
}

@media screen and (min-width: 480px) {
  .designers-listing {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1000px) {
  .designers-listing {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.designers-listing::before {
  content: '';
  position: absolute;
  z-index: -1;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  background-color: var(--color-cyan);
  top: 2em;
  left: 2em;
  right: 2em;
  bottom: 2em;
}

@media screen and (min-width: 1000px) {
  .designers-listing::before {
    top: 4em;
    left: 6em;
    right: 6em;
    bottom: 4em;
  }
}

.designers-listing__name {
  font-family: var(--font-body-text);
  font-size: 1em;
  text-decoration: none;
}

.designers-listing__year-level {
  border: 1px solid var(--color-text);
  padding: 2em 1em;
  background-color: var(--color-bg);
}

@media screen and (min-width: 900px) {
  .designers-listing__year-level {
    padding: 2em 0 4em 3em;
  }
}

.designers-listing__list {
  -webkit-column-count: 2;
          column-count: 2;
  line-height: 2em;
}

@media screen and (min-width: 480px) {
  .designers-listing__list {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media screen and (min-width: 750px) {
  .designers-listing__list {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

.designers-listing__title {
  font-family: var(--font-serif);
  font-size: 1.5em;
  margin-bottom: .5em;
}

/*
 *
 * ANCHOR Gallery
------------------------------------------------*/
.galleryshow__date {
  font-family: var(--font-serif);
  font-size: 2.5em;
  margin: auto;
  text-align: center;
  padding-bottom: .6em;
}

.galleryshow__location {
  font-family: var(--font-serif);
  font-size: 1.5em;
  text-align: center;
  padding-bottom: 3em;
}

.galleryshow__cover {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3em;
}

.galleryshow__cover-intro {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 3em;
}

.galleryshow__cover-intro p {
  font-family: var(--font-body-text);
  border: 1px solid var(--color-text);
  max-width: 28em;
  padding: 3em 1.6em 1em 3em;
  position: relative;
  background-color: var(--color-bg);
  z-index: -1;
  margin-left: 1em;
  margin-top: -1em;
}

.galleryshow__cover-intro p:before {
  content: '';
  border: 1px solid var(--color-text);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
}

.galleryshow__cover-image {
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--color-magenta);
  padding: 1em;
  background-color: var(--color-bg);
}

@media screen and (min-width: 900px) {
  .galleryshow__cover-image {
    max-width: 100%;
  }
}

.galleryshow__images img {
  padding: 3em;
}

.galleryshow__images-wrapper {
  margin-left: 3em;
  max-width: 1000px;
  padding: 1em;
}

/*
 *
 * ANCHOR Nested Slideshows
------------------------------------------------*/
.nested-slideshows {
  max-width: 65em;
  margin: 0 auto;
}

.nested-slideshows__items {
  position: relative;
  padding-bottom: 75%;
}

.nested-slideshows__item {
  position: absolute;
}

.nested-slideshows__item--active {
  z-index: 100;
}

.nested-slideshows__item--0 {
  top: 0;
  left: 4em;
  right: 4em;
}

.nested-slideshows__item--1 {
  top: 2em;
  left: 2em;
  right: 2em;
}

.nested-slideshows__item--2 {
  top: 4em;
  left: 0;
  right: 0;
}

/*
 *
 * ANCHOR Work Landing
------------------------------------------------*/
.work__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(160px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1em;
  grid-auto-flow: dense;
  margin-left: 4em;
  margin-right: 4em;
  position: relative;
  margin-top: 3em;
}

.work__list:after {
  content: '';
  position: absolute;
  z-index: -2;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  border: 1px solid var(--color-text);
  top: -5.5em;
  left: 0;
  right: 0;
  height: 80vh;
  background-color: var(--color-bg);
}

.work__list:before {
  content: '';
  position: absolute;
  z-index: -1;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  border: 1px solid var(--color-text);
  top: -3em;
  left: -2em;
  right: -2em;
  height: 80vh;
  background-color: var(--color-bg);
}

@media screen and (max-width: 1000px) {
  .work__list {
    margin-left: 2em;
    margin-right: 1em;
  }
}

@media screen and (max-width: 800px) {
  .work__list {
    margin-left: 2em;
    margin-right: 2em;
  }
}

@media screen and (max-width: 600px) {
  .work__list {
    margin-left: 1em;
    margin-right: 1em;
  }
}

.work__item:nth-child(3n) {
  /* every third item */
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

.work__item a {
  display: block;
}

.select-wrapper {
  margin-bottom: 1em;
}

.select-wrapper select {
  background-color: var(--color-bg);
  color: var(--color-cyan);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 1.2em;
  padding: .5em 1em .5em 1em;
  border: var(--color-text) 1px solid;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .select-wrapper select {
    font-size: 1em;
  }
}

.select-wrapper.active select {
  background-color: var(--color-yellow);
  color: var(--color-bg);
}

.filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1em;
          column-gap: 1em;
  padding-bottom: 3em;
}

@media screen and (max-width: 480px) {
  .filter-wrapper {
    font-size: .8em;
  }
}

/*
 *
 * ANCHOR About
------------------------------------------------*/
.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 3fr;
      grid-template-columns: 5fr 3fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  gap: 3em;
}

@media screen and (max-width: 1000px) {
  .about__grid {
    margin: 2em;
    gap: 0;
  }
}

@media screen and (max-width: 680px) {
  .about__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about__text {
  border: 1px solid var(--color-cyan);
  position: relative;
  margin-right: 2em;
  background-color: var(--color-bg);
  margin-bottom: 3em;
}

.about__text:before {
  content: '';
  border: 1px solid var(--color-cyan);
  position: absolute;
  top: -12px;
  left: -10px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
}

.about__text h2 {
  font-family: var(--font-serif);
  font-size: 2em;
  padding: 50px 50px 0px 50px;
}

.about__text h3 {
  font-family: var(--font-serif);
  font-size: 1.5em;
  padding: 5px 50px 10px 50px;
}

.about__text p {
  font-family: var(--font-body-text);
  line-height: 1.5em;
  font-weight: 100;
  padding: 20px 50px 50px 50px;
}

.about__images {
  margin-left: auto;
  margin-right: auto;
}

.about__images img {
  border: 1px solid var(--color-cyan);
  margin-bottom: 1.5em;
  padding: .5em;
}

@media screen and (max-width: 680px) {
  .about__images img {
    max-width: 60%;
  }
}

.about__credits-wrapper {
  padding: 4em 5em 6em 5em;
  background-color: var(--color-magenta);
  margin: 7em -2em -2em -2em;
}

@media screen and (max-width: 680px) {
  .about__credits-wrapper {
    padding-left: 2em;
  }
}

.about__credits {
  padding-bottom: 2em;
}

.about__credits h2 {
  font-family: var(--font-sans);
  font-size: 2em;
}

.about__credits h3 {
  font-family: var(--font-serif);
  font-size: 1.3em;
  padding-bottom: .5em;
}

.about__credits p {
  font-family: var(--font-body-text);
  line-height: 1.5em;
}

/*
 *
 * ANCHOR Marquee Text
------------------------------------------------*/
.header__bg {
  /* TODO: move to correct postion in this file */
  position: absolute;
  top: -2em;
  right: -2em;
  bottom: 0;
  left: -2em;
  z-index: -1;
  color: var(--color-magenta);
  opacity: .125;
  -webkit-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.header:hover .header__bg {
  opacity: .375;
}

.marquee {
  position: relative;
  overflow: hidden;
  --offset: 25vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  --speed: 4s;
}

.marquee--2 {
  --speed: 6s;
}

.marquee--3 {
  --speed: 12s;
}

.marquee__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
  position: relative;
  -webkit-transform: translate3d(var(--move-initial), 0, 0);
          transform: translate3d(var(--move-initial), 0, 0);
  -webkit-animation: marquee var(--speed) ease infinite;
          animation: marquee var(--speed) ease infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.marquee span {
  font-size: 11vw;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
            transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
            transform: translate3d(var(--move-final), 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
            transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
            transform: translate3d(var(--move-final), 0, 0);
  }
}
