/* 

*   Global

*/

html {
  background-color: #e7e7e7;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: "Helvetica Neue Medium";
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 2rem 4rem;
  font-size: 1.5rem;
  line-height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr
    1rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

.big-text {
  font-size: 2.25rem;
  line-height: 100%;
}

main {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5 / 9;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
ol,
p,
a,
input,
textarea,
button {
  font-size: 1em;
  font-family: "Helvetica Neue Medium";
  line-height: 100%;
  font-weight: normal;
  text-decoration: none;
  color: inherit;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  -webkit-padding-end: 0;
  padding-inline-end: 0;
  -webkit-padding-before: 0;
  padding-block-start: 0;
  -webkit-padding-after: 0;
  padding-block-end: 0;
  list-style: none;
  background-color: #0000;
  outline: none;
  border: none;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 > *,
h2 > *,
h3 > *,
h4 > *,
h5 > *,
h6 > * {
  font-weight: normal;
}

.article-wrapper.error {
  color: #ff0000;
  margin-top: 4rem;
}

a,
input {
  -webkit-transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.mobile-only {
  display: none;
}

img,
video {
  max-width: 100%;
}

section {
  min-height: 100vh;
  min-height: 100lvh;
  min-height: calc(100lvh - 4rem);
  padding-bottom: 10rem;
  padding: 2rem 0 10rem;
  opacity: 1;
  -webkit-transition: opacity 600ms linear;
  -o-transition: opacity 600ms linear;
  transition: opacity 600ms linear;
}

section#landing {
  padding-top: 0;
}

.section-transitioning section {
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

.pseudo-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/*

*   Articles

*/

.article-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.article-wrapper
  > *:not(:first-child, .list-wrapper, .swiper-pagination + .swiper) {
  margin-top: 0.75rem;
}

.list-wrapper ul {
  position: relative;
  -webkit-margin-start: 1.5em;
  margin-inline-start: 1.5em;
}

.list-wrapper ul li::before {
  content: "— ";
  position: absolute;
  left: -2.3ch;
}

.text-wrapper {
  display: block;
}

.text-wrapper p:not(:first-child) {
  text-indent: 1.5em;
  min-height: 1em;
}

.button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 0;
}

.button-link {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* font-size: 1rem; */
  line-height: 100%;
  padding: 0.5em 0.75em 0.25em;
  line-height: 100%;
  /* box-shadow: 0 0 4rem #E7E7E7; */
  cursor: pointer;
  background-color: #e7e7e7;
}

.sponsors-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

.sponsors-wrapper a {
  display: block;
}

.sponsors-wrapper img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 

*   Carousels

*/

.swiper {
  position: relative;
  width: 100%;
  font-size: 0;
  height: calc((100vw - 8rem) / 2 * 0.75);
  overflow: hidden;
  transition: clip-path 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.swiper-pagination + .swiper {
  clip-path: polygon(
    4rem 0%,
    100% 0%,
    100% 100%,
    0% 100%,
    0% 1.25rem,
    4rem 1.25rem
  );
}

.participant-content-wrapper .swiper {
  margin-bottom: 0.75rem;
}

.swiper-pagination {
  font-size: 1.5rem;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  height: 0 !important;
  padding-right: 0.25em;
  line-height: 1em;
  width: fit-content !important;
  z-index: -1 !important;
}

.swiper-wrapper {
  /* height: calc((100vw - 128px) / 9 * 7 /1.5);
    scrollbar-width: none;
    max-height: calc((1600px - 128px) / 9 * 7 / 1.5); */
  /* overflow: hidden; */
  width: 100%;
  height: calc((100vw - 8rem) / 2 * 0.75);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-wrapper {
  position: relative;
  white-space: nowrap;
  font-size: 0;
  min-width: 100%;
  height: 100%;
}

.swiper-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-wrapper {
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
  white-space: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slide-wrapper.hidden {
  visibility: hidden;
}

.no-transition .slide-wrapper {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.swiper-wrapper img {
  width: 100%;
  min-width: 100%;
  height: calc((100vw - 8rem) / 2 * 0.75);
  max-height: 100%;
  max-height: calc((100vw - 8rem) / 2 * 0.75);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper-wrapper img.landscape {
  -o-object-fit: cover;
  object-fit: cover;
}

/* 

*   Navigation

*/

nav {
  position: fixed;
  top: 0;
  left: 4rem;
  height: 100lvh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}

#logo-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0 0 2rem 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0.5em auto;
  grid-template-columns: auto auto;
  gap: 0.5em;
  z-index: 4;
  cursor: pointer;
}

#logo {
  height: 1.71em;
  width: auto;
}

#logo-text {
  white-space: nowrap;
  position: relative;
  top: 0.05em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#nav-indicator-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1),
    -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  /* z-index: 3; */
}

#email-wrapper {
  position: absolute;
  top: 2rem;
}

#email-wrapper > a {
  display: block;
}
.landing #email-wrapper > a,
.landing #email-mobile,
.landing #instagram-mobile {
  -webkit-animation: link-color-shift 10000ms linear infinite;
  animation: link-color-shift 10000ms linear infinite;
}

#email-mobile,
#instagram-mobile {
  display: none;
}

.nav-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: -3rem;
}

.nav-link-wrapper {
  /* display: flex;
    flex-flow: row nowrap; */
  position: relative;
  padding: 0.5rem 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  color: #6a6a6a;
  -webkit-transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-link-wrapper:hover,
.landing .nav-link-wrapper,
.color-01 .nav-link-wrapper.color-01,
.color-02 .nav-link-wrapper.color-02,
.color-03 .nav-link-wrapper.color-03 {
  color: #000;
}

.nav-link-wrapper.color-01 span {
  -webkit-transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: text-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.nav-link {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-marker-wrapper {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 2.5rem;
  overflow: visible;
  padding-right: 0.75rem;
  /* left: -3rem; */
}

.nav-marker {
  position: absolute;
  top: 25%;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -webkit-filter: blur(0.25rem);
  filter: blur(0.25rem);
  border: solid 0.25rem #e7e7e7;
  background-color: #e7e7e700;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
    -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
    -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
    transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
    transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
    transform 300ms cubic-bezier(0.3, 1, 0.5, 1),
    -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.nav-link-wrapper:hover .nav-marker,
.color-01 .nav-link-wrapper.color-01 .nav-marker,
.color-02 .nav-link-wrapper.color-02 .nav-marker,
.color-03 .nav-link-wrapper.color-03 .nav-marker {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

/* 

*   Landing

*/

#landing p {
  margin-bottom: 1em;
}

/* 

*   Participant·e·s

*/

#participants-search-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 1em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-bottom: solid 0.25rem #000000;
  padding: 2rem 0 0.25rem;
  z-index: 2;
  overflow: hidden;
  margin-top: -2rem;
  /* background-color: #E7E7E700; */
}
#participants-search-wrapper.show-background {
  background-color: #e7e7e7;
}

#participants-search-wrapper .pseudo-background {
  /* opacity: 0; */
  visibility: hidden;
}
#participants-search-wrapper.show-background .pseudo-background {
  /* opacity: 1; */
  visibility: visible;
  /* transition: none; */
}

#participants-search {
  -webkit-appearance: none;
  width: 100%;
  position: absolute;
  color: #0000;
  caret-color: #000000;
  left: 0;
  bottom: 0.1em;
  text-shadow: none;
  z-index: 1;
}
#participants-search-label {
  position: relative;
  z-index: 2;
  cursor: text;
}

#participants-search::-webkit-search-decoration,
#participants-search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

#participants-search::-webkit-input-placeholder {
  color: #e7e7e7;
  opacity: 0;
}

#participants-search::-moz-placeholder {
  color: #e7e7e7;
  opacity: 0;
}

#participants-search:-ms-input-placeholder {
  color: #e7e7e7;
  opacity: 0;
}

#participants-search::-ms-input-placeholder {
  color: #e7e7e7;
  opacity: 0;
}

#participants-search::placeholder {
  color: #e7e7e7;
  opacity: 0;
}

.color-01 #participants-search-label {
  color: #6a6a6a;
}
.color-02 #participants-search-label {
  color: #6a6a6a;
}
.color-03 #participants-search-label {
  color: #6a6a6a;
}
.color-01 #participants-search-label.active {
  pointer-events: none;
  color: #000000;
}
.color-02 #participants-search-label.active {
  pointer-events: none;
  color: #000000;
}
.color-03 #participants-search-label.active {
  pointer-events: none;
  color: #000000;
}

#participants-list {
  padding-bottom: 4rem;
}
#participants-list li {
  position: relative;
}

.participant-letter-wrapper {
  position: absolute;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  padding: 0.65rem 1rem 0.25rem 0;
  opacity: 1;
  -webkit-transition: opacity 150ms linear,
    height 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: opacity 150ms linear, height 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: opacity 150ms linear, height 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.participant-letter-wrapper.hidden {
  opacity: 0 !important;
}

.participant-letter {
  display: inline-block;
  position: -webkit-sticky;
  position: sticky;
  top: 4.5rem;
  width: 1em;
  /* text-align: center; */
}

.hidden .participant-letter {
  opacity: 0;
}

.participant-wrapper.closed {
  height: auto;
}

/* .participant-wrapper.closed a {
    text-shadow: none;
} */

.participant-wrapper.closed .participant-content-wrapper {
  display: none;
}

.participant-wrapper .participant-content-wrapper {
  display: inherit;
}

.participant-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-bottom: solid 0.25rem #000000;
  -webkit-transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1),
    opacity 300ms linear, margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear,
    margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear,
    margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.socials-wrapper {
  margin-bottom: 0.25rem;
}

.participant-wrapper a {
  text-shadow: 0 0 0 #e7e7e700;
  -webkit-transition: text-shadow 250ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: text-shadow 250ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: text-shadow 250ms cubic-bezier(0.3, 1, 0.5, 1);
}

.participant-wrapper.opened a {
  text-shadow: 0 0 0.75rem #e7e7e7;
  -webkit-transition: text-shadow 250ms 50ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: text-shadow 250ms 50ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: text-shadow 250ms 50ms cubic-bezier(0.3, 1, 0.5, 1);
}

.hidden .participant-wrapper,
.participant-wrapper.hidden {
  margin-top: -0.25rem !important;
  height: 0 !important;
  opacity: 0;
  -webkit-transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1),
    opacity 300ms linear, margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
  -o-transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear,
    margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
  transition: height 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear,
    margin 300ms cubic-bezier(0.3, 1, 0.5, 1);
}

.participant-wrapper h2 {
  cursor: pointer;
  padding: 0.65rem 0 0;
  -webkit-user-select: none;
  user-select: none;
}

/* 

*   Footer

*/

footer {
  font-size: 1rem;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
    line-height: 110%;
    display: block;
  }

  .big-text {
    font-size: 1.5rem;
    line-height: 100%;
  }

  .big-text-mobile {
    font-size: 2.25rem;
    line-height: 100%;
  }

  .mobile-only {
    display: inherit;
  }

  .mobile-hidden {
    display: none;
  }

  section {
    min-height: 100vh;
    min-height: 100lvh;
    min-height: calc(100lvh - 2rem);
    min-height: 0;
    padding: 1rem 0 4rem;
    opacity: 1;
  }

  /* 
    
    *   Articles

    */

  .article-wrapper {
    font-size: 1rem;
    line-height: 110%;
    /* gap: .5rem; */
  }

  .article-wrapper
    > *:not(:first-child, .list-wrapper, .swiper-pagination + .swiper) {
    margin-top: 0.5rem;
  }

  .article-wrapper .list-wrapper ul {
    -webkit-margin-start: 1.5em;
    margin-inline-start: 1.5em;
  }

  .sponsors-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  /* 

    *   Carousels

    */

  .swiper {
    height: calc(100vw * 0.75);
    margin-bottom: 0.75rem;
  }

  .swiper-wrapper {
    height: calc(100vw * 0.75);
  }

  .swiper-wrapper img {
    height: calc(100vw * 0.75);
    max-height: calc(100vw * 0.75);
  }

  /* 

    *   Navigation

    */

  nav {
    position: fixed;
    padding: 0.5rem 1rem;
    left: 0;
    display: block;
    height: auto;
    width: 100vw;
    overflow: hidden;
    background-color: #e7e7e7;
    -webkit-box-shadow: 0 0.75rem 0.75rem #e7e7e7;
    box-shadow: 0 0.75rem 0.75rem #e7e7e7;
    -webkit-transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
    -o-transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1),
      background-color 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1),
      background-color 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1),
      background-color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      -webkit-box-shadow 300ms cubic-bezier(0.3, 1, 0.5, 1);
  }

  .nav-wrapper {
    left: 0;
  }

  .landing nav {
    /* background-color: #E7E7E700; */
    /* box-shadow: 0 .75rem .75rem #E7E7E700; */
  }

  #logo-wrapper {
    padding: 0 0 1rem 1rem;
    -webkit-transform: translate3d(1rem, 0, 0);
    transform: translate3d(1rem, 0, 0);
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
    -o-transition: transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.3, 1, 0.5, 1),
      -webkit-transform 300ms cubic-bezier(0.3, 1, 0.5, 1);
    -webkit-filter: drop-shadow(0 0 0.25rem #e7e7e7);
    filter: drop-shadow(0 0 0.25rem #e7e7e7);
  }

  .landing #logo-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  #logo-text {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }

  .landing #logo-text {
    opacity: 1;
    pointer-events: all;
  }

  nav .pseudo-background {
    -webkit-box-shadow: inset 0 -0.5rem 0.25rem #e7e7e7;
    box-shadow: inset 0 -0.5rem 0.25rem #e7e7e7;
  }

  #email-mobile,
  #instagram-mobile {
    display: inherit;
  }

  .nav-link-wrapper {
    display: block;
    position: relative;
    padding: 0;
    height: 0;
    opacity: 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    color: #6a6a6a;
    -webkit-transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      height 300ms cubic-bezier(0.3, 1, 0.5, 1),
      padding 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear;
    -o-transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      height 300ms cubic-bezier(0.3, 1, 0.5, 1),
      padding 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear;
    transition: color 300ms cubic-bezier(0.3, 1, 0.5, 1),
      height 300ms cubic-bezier(0.3, 1, 0.5, 1),
      padding 300ms cubic-bezier(0.3, 1, 0.5, 1), opacity 300ms linear;
  }

  .landing .nav-link-wrapper,
  .opened .nav-link-wrapper,
  .color-01 .nav-link-wrapper.color-01,
  .color-02 .nav-link-wrapper.color-02,
  .color-03 .nav-link-wrapper.color-03 {
    padding: 0.5rem 0;
    color: #000;
    height: 1rem;
    opacity: 1;
  }

  .nav-marker-wrapper {
    position: relative;
    /* height: 100%; */
    height: 0;
    width: 1.3rem;
    top: -1.1rem;
    overflow: visible;
    margin-right: 0.75rem;
    left: 0rem;
    display: inline-block;
  }

  .nav-marker {
    position: relative;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* 

    *   Landing

    */

  #landing {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    min-height: calc(100vh - 2rem);
    min-height: 100lvh;
    min-height: calc(100lvh - 2rem);
  }

  /* 

    *   Participant·e·s

    */

  #participants-search-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 1em;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-bottom: solid 0.25rem #000000;
    padding: 5.5rem 0 0.25rem;
    z-index: 2;
    overflow: hidden;
    margin-top: -2rem;
  }

  footer {
    display: none;
  }
}
