@charset "UTF-8";
body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

@font-face {
  font-family: "big";
  src: url("../assets/fonts/HelveticaNeueLTStd-BlkEx.otf");
}
@font-face {
  font-family: "txt";
  src: url("../assets/fonts/LeagueSpartan-Medium.ttf");
}
body::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #151515;
  /* couleur du fond */
}

body::-webkit-scrollbar-thumb {
  background-color: #08f02b;
  /* couleur du scroll */
  border-radius: 20px;
  border: 3px solid #151515;
}

body p {
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: #151515;
  color: #08f02b;
}

::selection {
  background-color: #151515;
  color: #08f02b;
}

nav {
  position: fixed;
}

.link {
  position: fixed;
  z-index: 10;
  cursor: pointer;
  font-family: big;
  font-size: 30px;
  color: #08f02b;
  margin-left: 20px;
  margin-top: 20px;
}
.link:hover {
  transform: scale(120%);
  transition: 0.3s ease-in-out;
}

.menu-toggle {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  background: none;
  border: none;
  position: fixed;
  color: #08f02b;
  font-size: 36px;
}
.menu-toggle:hover {
  transform: scale(120%);
}

.menu {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08f02b;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.menu__el {
  list-style: none;
  margin-bottom: 15px;
}
.menu__el:first-child {
  margin-top: 25%;
}
.menu__link {
  position: relative;
  color: #151515;
  text-decoration: none;
  font-size: 40px;
  transition: color 0.3s ease-out;
}
.menu__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #151515;
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88);
}
.menu__link:hover::before {
  width: 100%;
}

.menu__liste {
  padding: 0;
}

.menu--open .menu {
  /* display: block; */
  transform: translateX(0);
  overflow: hidden;
}

.menu--open i {
  color: #151515;
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}

.logo-svg {
  fill: #08f02b;
  height: 50px;
}

#homepage {
  background: #151515;
  font-family: txt;
  padding: 0%;
  margin: 0%;
  overflow-x: hidden;
}

h1 {
  font-size: 60px;
  font-family: big;
  text-transform: uppercase;
  margin-top: 56px;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1;
  color: #08f02b;
}

h2 {
  text-align: center;
  font-family: big;
  font-size: 40px;
  color: #c2c2c2;
  margin: 0px;
  margin-bottom: 28px;
  line-height: 1;
}

.link__img {
  width: 100px;
  margin-top: 20px;
  margin-left: 20px;
}

.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home__billie {
  width: 200px;
  mix-blend-mode: lighten;
  justify-content: center;
  display: flex;
  margin: auto;
}
.home__mouse {
  max-width: 2.5rem;
  width: 100%;
  height: auto;
  display: flex;
  margin: auto;
  fill: #c2c2c2;
  margin-bottom: 56px;
}
.home__mouse .scroll {
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
          animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform-origin: 50% 20.5px;
  will-change: transform, opacity;
  opacity: 1;
}
.home__mouse .circle {
  fill: #c2c2c2;
}

@-webkit-keyframes scroll {
  0%, 20% {
    transform: translateY(0) scaleY(1);
  }
  100% {
    transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}

@keyframes scroll {
  0%, 20% {
    transform: translateY(0) scaleY(1);
  }
  100% {
    transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}
.allPages {
  overflow: hidden;
  width: 100vw;
  pointer-events: none;
}

.page {
  width: 100%;
  margin-bottom: 112px;
  pointer-events: none;
}
.page__img {
  width: 70%;
  margin: auto 15%;
}
.page__allIcons {
  display: flex;
}
.page__allIcons .button,
.page__allIcons button {
  text-decoration: none !important;
  background-color: transparent;
  border: none;
  padding: 10px;
  margin: auto 5px;
  cursor: pointer !important;
  z-index: 50;
  pointer-events: all;
  color: #C8373C;
}
.page__allIcons .button:hover,
.page__allIcons button:hover {
  color: #08f02b;
  transform: scale(120%);
  transition: 0.3s ease-in-out;
}
.page__allIcons .button:active,
.page__allIcons button:active {
  transform: scale(150%);
}
.page__allIcons .button {
  text-decoration: none;
}
.page__allIcons .button i {
  color: #C8373C;
}
.page__allIcons i {
  align-items: center;
  display: flex;
  font-size: 27px;
  cursor: pointer;
}
.page__allIcons .btn__2 {
  margin-left: -15px;
}
.page__skewed {
  width: 100%;
  height: 100%;
  background: #151515;
}
.page__content {
  width: 100%;
  height: 100%;
  color: #c2c2c2;
  background-color: #151515;
  background-size: cover;
}
.page__heading {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 25px;
  text-align: center;
}
.page__description {
  font-size: 18px;
  text-align: center;
}
.page__description--tracklist {
  text-align: left;
  margin-left: 20px;
}
.page__description--date {
  margin-top: 0;
  margin-bottom: 28px;
}
.page__description button {
  cursor: pointer !important;
  z-index: 541236987;
  pointer-events: all !important;
}
.page__description button:hover {
  color: #C8373C;
}
.page__list {
  list-style: none;
  text-decoration: none !important;
  padding: 0%;
  margin-left: 20px;
  line-height: 1.6;
  z-index: 987654 !important;
}
.page__list li {
  position: relative;
  padding-left: 25px;
}
.page__list li::before {
  content: "\f717";
  /* Code Unicode de l'icône Font Awesome (fa-spider) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #08f02b;
  font-size: 15px;
}
.page__link {
  color: #FFA0A0;
}
.page-1 .page__content {
  background-color: #fff2af;
  padding-bottom: 28px;
  color: #C8373C;
}
.page-1 li::before {
  color: #C8373C;
}
.page-2 .page__allIcons button i,
.page-2 .page__allIcons .button i {
  color: #08f02b;
}
.page-3 .page__content {
  background-color: rgba(240, 194, 125, 0.9);
  padding-bottom: 28px;
  color: #644018;
}
.page-3 li::before {
  color: #644018;
}
.page-3 .page__allIcons button i,
.page-3 .page__allIcons .button i {
  color: #644018;
}
.page-4 .page__allIcons button i,
.page-4 .page__allIcons .button i {
  color: #08f02b;
}
.page-5 .page__content {
  background-color: rgba(216, 170, 210, 0.9);
  padding-bottom: 28px;
  color: #3f2748;
  margin-bottom: 0px;
}
.page-5 li::before {
  color: #3f2748;
}
.page-5 .page__allIcons button i,
.page-5 .page__allIcons .button i {
  color: #3f2748;
}
.page-1, .page-2, .page-3, .page-4 {
  margin-bottom: 112px;
}

.footer {
  background-color: #151515;
  margin-left: -1rem;
  padding: auto 2rem;
  width: 102.5vw;
  overflow-x: hidden;
  text-align: center;
  margin-bottom: 0;
  padding: 1rem 0;
  padding-top: 30px;
  position: relative;
}
.footer__contact {
  list-style: none;
  text-decoration: none;
  text-align: center;
  padding-left: 0;
}
.footer__link {
  color: #c2c2c2;
  text-decoration: none;
  font-size: 18px;
}
.footer__link:hover {
  transition: 0.2s ease-out;
  color: #08f02b;
}
.footer .social {
  text-align: center;
  z-index: 50000 !important;
}
.footer .social__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 0.2rem solid #c2c2c2;
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.5rem #151515;
  font-size: 18px;
  color: #c2c2c2;
  margin: 2.5rem 0.75rem 3rem;
  transition: 0.5s ease;
  text-decoration: none;
}
.footer .social__link:hover {
  background: transparent;
  color: #08f02b;
  border-color: #08f02b;
  transform: scale(120%);
}
.footer .social__link:active {
  transform: scale(150%);
}

#homepage .footer {
  padding-bottom: 0px;
  margin-top: 112px;
}

#credits {
  margin: 0;
  overflow-x: hidden;
}

.credits {
  max-width: 100vw;
  background-color: #151515;
  overflow-x: hidden;
  padding-left: 8px;
  padding-top: 110px;
  color: #c2c2c2;
}
.credits__div {
  margin-bottom: 84px;
}
.credits__div h3 {
  margin-left: 0.5em;
  font-size: 27px;
  text-align: left;
  font-family: big;
}
.credits__div ul {
  list-style: none;
  margin-left: 20px;
  padding-left: 0;
  line-height: 1.6;
  font-size: 18px;
}
.credits__div p {
  margin-left: 20px;
  font-size: 18px;
  max-width: 90%;
}

@media screen and (min-width: 481px) {
  .page__allList {
    display: flex;
  }
  .page .page__content {
    padding-bottom: 56px;
  }
  .page-4 .page__content {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: fixed;
    display: flex;
    align-items: center;
    background: transparent;
    transform: none;
    height: 100px;
    width: 100%;
    justify-content: flex-end;
    background-color: rgba(15, 15, 15, 0.7);
  }
  .menu__liste {
    display: flex;
    margin: 0;
    padding-right: 50px;
    list-style: none;
  }
  .menu__el {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #08f02b;
  }
  .menu__el:first-child {
    margin-top: 0;
  }
  .menu__link {
    font-size: 24px;
    margin: auto 15px;
    color: #08f02b !important;
  }
  .menu__link:hover {
    color: #fdfdfd;
  }
  .menu__link::before {
    background-color: #08f02b;
  }

  .link {
    z-index: 50;
  }

  h1 {
    font-size: 81px;
  }

  p, li {
    font-size: 24px;
  }

  .page__description--tracklist {
    font-size: 24px;
  }

  .footer .social__link {
    width: 4rem;
    height: 4rem;
    font-size: 24px;
  }
}
@media screen and (min-width: 800px) {
  .allPages .page {
    height: 100vh;
  }

  .credits__div {
    margin-bottom: 152px;
    width: 20%;
    margin-left: 40%;
    margin-right: 40%;
  }
}
@media screen and (min-width: 1000px) {
  h1 {
    font-size: 100px;
  }

  .home {
    height: 100vh;
  }
  .home__billie {
    width: 200px;
  }
  .home__mouse {
    margin-bottom: 0%;
  }

  .allPages {
    overflow: hidden;
    position: relative;
    height: 100vh;
  }

  .page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 105vh;
  }
  .page-1 .page__content {
    padding-top: 0px;
  }
  .page__img {
    width: 200px;
    margin-bottom: 0;
    margin-top: 38px;
  }
  .page__half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100vh;
    transition: transform 1s;
  }
  .page__half--left {
    left: 0;
    transform: translate3d(-32.4vh, 100%, 0);
  }
  .page__half--right {
    left: 50%;
    transform: translate3d(32.4vh, -100%, 0);
  }
  .page.active .page__half {
    transform: translate3d(0, 0, 0);
  }
  .page__skewed {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 140%;
    height: 100%;
    transform: skewX(-18deg);
    background: #000;
  }
  .page__half--left .page__skewed {
    left: -40%;
  }
  .page__half--right .page__skewed {
    right: -40%;
  }
  .page__content {
    flex-flow: column wrap;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 30%;
    color: #fdfdfd;
    transform: skewX(18deg);
    transition: transform 1s, opacity 1s;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page__half--left .page__content {
    padding-left: 30%;
    padding-right: 30%;
    transform-origin: 100% 0;
  }
  .page__half--right .page__content {
    padding-left: 30%;
    padding-right: 30%;
    transform-origin: 0 100%;
  }
  .page.inactive .page__content {
    opacity: 0.5;
    transform: skewX(18deg) scale(0.95);
  }
  .page__heading {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 25px;
    text-align: left;
    margin-top: 38px;
  }
  .page__description {
    font-size: 24px;
    text-align: left;
  }
  .page__description--tracklist {
    text-align: left;
    text-indent: -1rem;
  }
  .page__description--date {
    text-align: left;
  }
  .page__list {
    list-style: none;
    text-decoration: none;
    padding: 0;
  }
  .page__list li {
    text-indent: -1rem;
  }
  .page__allList {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .page__link {
    color: #FFA0A0;
  }
  .page-1 .page__half--left .page__content {
    background-image: url("../assets/images/billie/2017-1.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page-1 .page__half--right .page__content {
    background-color: #151515;
    color: #fff2af;
  }
  .page-1 .page__half--right .page__content li::before {
    color: #fff2af;
  }
  .page-1 .page__allIcons button i,
.page-1 .page__allIcons .button i {
    color: #fff2af;
  }
  .page-2 .page__half--left .page__content {
    background-color: #151515;
    padding-left: 20%;
  }
  .page-2 .page__half--left .page__content img {
    margin-left: 0;
  }
  .page-2 .page__half--right .page__content {
    background-image: url("../assets/images/billie/2019-1.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page-3 .page__half--left .page__content {
    background-image: url("../assets/images/billie/2021-1.webp");
    margin-left: -300px;
  }
  .page-3 .page__half--right .page__content {
    background-color: #151515;
    color: rgba(240, 194, 125, 0.9);
  }
  .page-3 .page__half--right .page__content li::before {
    color: rgba(240, 194, 125, 0.9);
  }
  .page-3 .page__allIcons button i,
.page-3 .page__allIcons .button i {
    color: rgba(240, 194, 125, 0.9);
  }
  .page-4 .page__half--left .page__content {
    background-color: #151515;
    padding-left: 20%;
  }
  .page-4 .page__half--left .page__content img {
    margin-left: 0;
  }
  .page-4 .page__half--right .page__content {
    background-image: url("../assets/images/billie/2024-1bw.webp");
    margin-left: -200px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .page-5 .page__half--left .page__content {
    background-image: url("../assets/images/nonrepert/nonrepert.webp");
  }
  .page-5 .page__half--right .page__content {
    background-color: #151515;
    color: rgba(216, 170, 210, 0.9);
  }
  .page-5 .page__half--right .page__content li::before {
    color: rgba(216, 170, 210, 0.9);
  }
  .page-5 .page__allIcons button i,
.page-5 .page__allIcons .button i {
    color: rgba(216, 170, 210, 0.9);
  }
}
@media screen and (min-width: 1225px) and (min-height: 1000px) {
  .home__billie {
    width: 300px;
  }
}
@media screen and (min-width: 1225px) {
  .page__list {
    list-style: none;
    text-decoration: none;
    padding: 0;
  }
  .page__list li {
    text-indent: -1rem;
  }
  .page-2 .page__half--left .page__content {
    padding-left: 30%;
  }
  .page-4 .page__half--left .page__content {
    background-color: #151515;
    padding-left: 30%;
  }
  .page-4 .page__half--left .page__content img {
    margin-left: 0;
  }
  .page-4 .page__half--right .page__content {
    background-size: contain;
  }
}
@media screen and (min-width: 1225px) and (min-width: 1700px) {
  .page__img {
    width: 350px;
  }
}
#lelabel {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: txt;
  font-weight: 80;
  background: black;
  color: #c2c2c2;
  overflow-x: hidden;
  margin-bottom: 0;
}
#lelabel .menu-toggle {
  right: 70px;
}
#lelabel p {
  max-width: 40ch;
}
#lelabel .section:nth-of-type(1) {
  scroll-snap-align: center;
  height: 100vh;
}
#lelabel .section:nth-of-type(2) {
  scroll-snap-align: start;
}
#lelabel article {
  min-height: 100vh;
}
#lelabel .label__title {
  font-size: 35px;
}
#lelabel .label__title, #lelabel .label__h2 {
  text-align: left;
}
#lelabel .label__h2 {
  font-size: 22px;
}
#lelabel .label__h3 {
  font-weight: 150;
  max-width: 95%;
  line-height: 1.6;
  font-size: 27px;
}
#lelabel .label__intro {
  max-width: 30ch;
  font-size: 18px;
}
#lelabel .label__justin {
  font-size: 18px;
  max-width: 30ch;
}
#lelabel .section, #lelabel article {
  position: relative;
}
#lelabel .section__content {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  inset: 0;
  padding: 1rem;
}
#lelabel .section__content--nomargin {
  margin: 0;
}
#lelabel .section__fixed img {
  height: 100%;
  width: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: absolute;
  inset: 0;
  left: 50%;
  translate: -50% 0;
  filter: brightness(0.5);
}
#lelabel .section:first-of-type {
  padding: 2rem 1rem;
  display: grid;
  align-content: end;
  justify-content: start;
  background: black;
}
#lelabel .section:first-of-type .section__fixed {
  z-index: 5;
}
#lelabel .section:first-of-type .section__fixed .section__content {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
  display: grid;
  align-content: center;
  justify-content: start;
  padding: 6rem 2rem;
  height: 100%;
}
#lelabel .section:first-of-type img {
  left: 50%;
  translate: -50% 0;
  width: 120%;
  filter: brightness(0.2);
}
#lelabel .section:nth-of-type(2) img {
  filter: brightness(0.3);
}
#lelabel .section:nth-of-type(2) article :first-of-type .section__fixed {
  z-index: 2;
}
#lelabel .section:nth-of-type(2) article :first-of-type .section__fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0deg, 0%, 0%, 0.25);
}
#lelabel .section:nth-of-type(2) article :first-of-type .section__content {
  align-content: end;
}
#lelabel .section:nth-of-type(2) article :first-of-type .label__h2 {
  padding: 1rem 0;
}
#lelabel .section:nth-of-type(2) article:nth-of-type(2) .section__fixed {
  background: black;
  z-index: 2;
}
#lelabel .section:nth-of-type(2) article:nth-of-type(3) .section__content {
  align-content: start;
}
#lelabel .section:nth-of-type(2) article:nth-of-type(3) .section__content .label__h2 {
  margin-left: auto;
  margin-right: auto;
}
#lelabel .section:nth-of-type(2) article:nth-of-type(3) .section__fixed {
  z-index: 2;
}
#lelabel .section:nth-of-type(2) article:nth-of-type(3) img {
  filter: saturate(0.5) brightness(0.5);
}
#lelabel .section:nth-of-type(2) .section__content {
  display: grid;
  padding: 4rem 1rem;
  align-content: center;
}
#lelabel .section__cit {
  font-style: italic;
}
#lelabel .section__bloc {
  max-width: 100%;
  width: 300px;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#lelabel .section__container {
  height: 100vh;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
}
#lelabel .section__bloc p {
  display: inline-block;
  border-radius: 6px;
  margin: 0;
  font-size: 18px;
  font-weight: 120;
}
#lelabel .section__bloc p:nth-of-type(even) {
  justify-self: end;
  text-align: right;
  color: #08f02b;
}
#lelabel .section__bloc p:nth-of-type(odd) {
  justify-self: start;
}
#lelabel .filler {
  display: none;
}
@supports (animation-timeline: scroll()) {
  #lelabel article {
    view-timeline: --article;
  }
  #lelabel .section__fixed {
    position: fixed;
    inset: 0;
  }
  #lelabel .section__static {
    position: absolute;
    inset: 0;
    z-index: 6;
  }
  #lelabel .section__bloc {
    -webkit-animation: fade-out both linear;
            animation: fade-out both linear;
    animation-timeline: --article;
    animation-range: entry-crossing 75% entry-crossing 100%;
  }
  #lelabel .section__bloc p {
    -webkit-animation: slide-in, fade-in;
            animation: slide-in, fade-in;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    animation-timeline: --article;
  }
  #lelabel .section__bloc p:nth-of-type(1) {
    animation-range: entry-crossing 50% entry-crossing 55%;
  }
  #lelabel .section__bloc p:nth-of-type(2) {
    animation-range: entry-crossing 55% entry-crossing 60%;
  }
  #lelabel .section__bloc p:nth-of-type(3) {
    animation-range: entry-crossing 60% entry-crossing 65%;
  }
  #lelabel .section__bloc p:nth-of-type(4) {
    animation-range: entry-crossing 65% entry-crossing 70%;
  }
  #lelabel .section__bloc p:nth-of-type(5) {
    animation-range: entry-crossing 70% entry-crossing 75%;
  }
  #lelabel .section__bloc p:nth-of-type(6) {
    animation-range: entry-crossing 75% entry-crossing 80%;
  }
  #lelabel .section:first-of-type {
    view-timeline: --section;
  }
  #lelabel .section:first-of-type .section__fixed {
    -webkit-animation: scale-and-move both linear, fade-out both linear;
            animation: scale-and-move both linear, fade-out both linear;
    animation-timeline: --section;
    animation-range: exit 0% exit 50%, exit 0% exit 25%;
    transform-origin: 50% 0;
  }
  #lelabel .section:nth-of-type(2) article:first-of-type .label__h2 {
    -webkit-animation: slide-up both linear;
            animation: slide-up both linear;
    animation-timeline: --article;
    animation-range: entry 20% entry 80%;
  }
  #lelabel .section:nth-of-type(2) article:first-of-type img {
    -webkit-animation: scale-down both linear;
            animation: scale-down both linear;
    animation-timeline: --article;
    animation-range: entry;
  }
  #lelabel .section:nth-of-type(2) article:first-of-type .section__fixed {
    -webkit-clip-path: ellipse(220% 200% at 50% 300%);
            clip-path: ellipse(220% 200% at 50% 300%);
    -webkit-animation: unclip both linear;
            animation: unclip both linear;
    animation-timeline: --article;
    animation-range: entry 0 entry 100%;
  }
  #lelabel .section:nth-of-type(2) article :last-of-type {
    z-index: 5;
  }
  #lelabel .section:nth-of-type(2) article:nth-of-type(2) .section__fixed {
    -webkit-animation: fade-in;
            animation: fade-in;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    animation-timeline: --article;
    animation-range: entry 60% exit 30%;
  }
  #lelabel .section:nth-of-type(2) article:nth-of-type(2) .label__h2 {
    -webkit-animation: slide-in, fade-in, fade-away, fade-out;
            animation: slide-in, fade-in, fade-away, fade-out;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    animation-timeline: view(), view(), --article, --article;
    animation-range: entry 100% cover 25%, entry 100% cover 35%, exit 20% exit 40%, exit 40% exit 50%;
  }
  #lelabel .section:nth-of-type(2) article:nth-of-type(3) {
    height: 400vh;
  }
  #lelabel .section:nth-of-type(2) article:nth-of-type(3) .label__h2 {
    margin-top: 80vh;
  }
  #lelabel .section:nth-of-type(2) article:nth-of-type(3) .section__fixed {
    -webkit-animation: fade-in both linear, fade-out both linear;
            animation: fade-in both linear, fade-out both linear;
    animation-timeline: --article, --article;
    animation-range: entry 45% exit-crossing 0%, exit 0% exit 15%;
  }
  #lelabel .section:nth-of-type(2) article:last-of-type .section__fixed {
    -webkit-clip-path: ellipse(220% 200% at 50% 300%);
            clip-path: ellipse(220% 200% at 50% 300%);
    -webkit-animation: unclip both linear;
            animation: unclip both linear;
    animation-timeline: --article;
    animation-range: entry 20% entry 80%;
  }
  #lelabel .filler {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 30vh;
    padding: 1rem;
  }
  #lelabel .filler .label__h2 {
    -webkit-animation: fade-away, fade-out;
            animation: fade-away, fade-out;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    animation-timeline: --article;
    animation-range: exit 40% exit 75%, exit 70% exit 90%;
  }
  #lelabel .loud-wrap {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    -webkit-animation: unmask both linear;
            animation: unmask both linear;
    animation-timeline: --article;
    animation-range: entry 20% entry 80%;
    -webkit-mask: linear-gradient(white 50%, transparent) 0 100%/100% 200% no-repeat;
            mask: linear-gradient(white 50%, transparent) 0 100%/100% 200% no-repeat;
  }
  #lelabel .text-wrap {
    position: -webkit-sticky;
    position: sticky;
    bottom: 4rem;
    transform-origin: 50% 0;
    -webkit-animation: fade-away both linear, fade-out both linear;
            animation: fade-away both linear, fade-out both linear;
    animation-timeline: --article;
    animation-range: exit 40% exit 75%, exit 70% exit 100%;
  }
  @-webkit-keyframes slide-in {
    0% {
      translate: 0 100%;
    }
  }
  @keyframes slide-in {
    0% {
      translate: 0 100%;
    }
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
  }
  @-webkit-keyframes slide-up {
    0% {
      translate: 0 100%;
    }
  }
  @keyframes slide-up {
    0% {
      translate: 0 100%;
    }
  }
  @-webkit-keyframes fade-away {
    to {
      filter: blur(4rem);
    }
  }
  @keyframes fade-away {
    to {
      filter: blur(4rem);
    }
  }
  @-webkit-keyframes unmask {
    to {
      -webkit-mask-position: 0 0;
              mask-position: 0 0;
    }
  }
  @keyframes unmask {
    to {
      -webkit-mask-position: 0 0;
              mask-position: 0 0;
    }
  }
  @-webkit-keyframes scale-down {
    0% {
      scale: 5;
    }
  }
  @keyframes scale-down {
    0% {
      scale: 5;
    }
  }
  @-webkit-keyframes unclip {
    to {
      -webkit-clip-path: ellipse(220% 200% at 50% 175%);
              clip-path: ellipse(220% 200% at 50% 175%);
    }
  }
  @keyframes unclip {
    to {
      -webkit-clip-path: ellipse(220% 200% at 50% 175%);
              clip-path: ellipse(220% 200% at 50% 175%);
    }
  }
  @-webkit-keyframes fade-out {
    to {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    to {
      opacity: 0;
    }
  }
  @-webkit-keyframes scale-and-move {
    to {
      translate: 0 -10%;
      scale: 0.35 0.5;
    }
  }
  @keyframes scale-and-move {
    to {
      translate: 0 -10%;
      scale: 0.35 0.5;
    }
  }
}
#lelabel .footer {
  padding-top: 30px;
  padding-bottom: 60px;
  z-index: 5;
}

@media screen and (min-width: 481px) {
  #lelabel .label__title {
    font-size: 50px;
  }
  #lelabel .label__h2 {
    font-size: 32px;
  }
  #lelabel .label__intro {
    max-width: 80%;
    font-size: 20px;
  }
  #lelabel .label__justin {
    font-size: 20px;
    max-width: 440px;
  }
  #lelabel .section__bloc p {
    font-size: 30px;
  }
}
@media screen and (min-width: 769px) {
  #lelabel .menu__liste {
    padding-right: 103px;
  }
  #lelabel .link {
    margin-top: 12px;
    margin-left: 12px;
  }
  #lelabel .label__title {
    font-size: 81px;
  }
  #lelabel .label__intro {
    max-width: 650px;
    font-size: 24px;
  }
  #lelabel .label__justin {
    font-size: 24px;
    max-width: 80%;
  }
  #lelabel .section__bloc {
    width: 500px;
    justify-self: center;
    font-size: 24px;
  }
  #lelabel .section__bloc p {
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  #lelabel .menu__liste {
    padding-right: 45px;
  }
  #lelabel .label__title {
    font-size: 100px;
  }
  #lelabel .label__intro {
    max-width: 60ch;
    font-size: 24px;
  }
  #lelabel .label__justin {
    font-size: 24px;
    max-width: 60ch;
  }
  #lelabel .section__container {
    width: 100vw;
  }
  #lelabel .section__bloc {
    width: 60%;
    justify-self: center;
    font-size: 24px;
  }
  #lelabel .section__bloc p {
    font-size: 36px;
  }
}
#bio {
  background: #151515;
  font-family: txt;
  margin: 0;
  overflow-x: hidden;
}
#bio .header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(255, 255, 255, 0) 100%), repeating-linear-gradient(transparent, transparent 50px, #08f02b 52px), repeating-linear-gradient(90deg, transparent, transparent 50px, #08f02b 52px);
  background-attachment: fixed;
}
#bio .header h1 {
  color: #fdfdfd;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 60px;
}
#bio .header__txt {
  max-width: 750px;
  color: #fdfdfd;
  text-align: center;
  margin: 20px auto 40px;
  font-size: 22px;
  line-height: 36px;
}
#bio .intro {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#bio .intro__txt {
  white-space: normal;
  word-wrap: break-word;
  width: 600px;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
}
#bio .intro__txt span {
  margin: 0 3px;
  color: #393939;
  text-transform: uppercase;
  display: inline-block;
  font-size: 34px;
  line-height: 50px;
  margin: 0 3px;
}
#bio .caract {
  color: #c2c2c2;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 200px auto;
}
#bio .caract__content span {
  transform-origin: 0 0;
  font-weight: 300;
  line-height: 1.2;
  font-size: 30px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 15px;
  transform: translateX(-20px) scale(0.75);
  transition: 0.5s;
  opacity: 0;
}
#bio .caract__content span:first-of-type, #bio .caract__content span:nth-of-type(2), #bio .caract__content span:nth-of-type(8), #bio .caract__content span:nth-of-type(16), #bio .caract__content span:nth-of-type(27) {
  color: #08f02b;
}
#bio .caract__content span.v2 {
  font-weight: 500;
  transform: translateX(0) scale(1);
  transition: 0.5s;
  opacity: 1;
}
#bio .whatis {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c2c2c2;
}
#bio .whatis__right {
  flex: 1;
  padding: 100px;
  box-sizing: border-box;
}
#bio .whatis__left {
  flex: 1;
  position: static;
  will-change: transform;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 20px;
}
#bio .whatis__content {
  border: 1px solid #08f02b;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px 20px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
#bio .timeline {
  padding: 50px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#bio .timeline__svg {
  position: relative;
  z-index: 1;
  width: 300px;
}
#bio .interview {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#bio .interview__container {
  width: 100%;
  height: auto;
  position: static;
  margin: 100px auto;
}
#bio .interview__content {
  position: static;
  border: 1px solid #08f02b;
  color: #c2c2c2;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  margin: 50px auto;
  width: 80%;
  height: auto;
}
#bio .interview__content p {
  font-style: italic;
}
#bio .pictures {
  width: 100vw;
  height: 200vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 112px;
}
#bio .pictures__container {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
#bio .pictures #divtop, #bio .pictures #divbottom {
  width: 200vw;
  height: 50vh;
  display: flex;
}
#bio .pictures #divtop {
  transform: translateX(0);
}
#bio .pictures #divbottom {
  transform: translateX(-100vw);
}
#bio .pictures .image1-top, #bio .pictures .image2-top, #bio .pictures .image1-bottom, #bio .pictures .image2-bottom {
  overflow: hidden;
  width: 100vw;
  position: relative;
}
#bio .pictures .image1-top img, #bio .pictures .image2-top img, #bio .pictures .image1-bottom img, #bio .pictures .image2-bottom img {
  height: 100vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#bio .pictures .image1-top img {
  top: 0;
}
#bio .pictures .image2-top img {
  top: 0;
}
#bio .pictures .image1-bottom img {
  bottom: 0;
}
#bio .pictures .image2-bottom img {
  bottom: 0;
}
#bio .footer {
  border-top: 1px solid #08f02b;
}
@media only screen and (min-width: 500px) {
  #bio .caract__content span {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  #bio .whatis__left, #bio .whatis__right {
    padding: 20px;
    width: 100%;
  }
}
@media (min-width: 769px) {
  #bio .header h1 {
    font-size: 81px;
  }
  #bio .header h3 {
    font-size: 36px;
  }
  #bio .intro {
    min-height: 500px;
    margin-top: 152px;
    margin-bottom: 152px;
  }
  #bio .intro__txt {
    padding: 0;
  }
  #bio .caract {
    margin-top: 0;
    margin-bottom: 52px;
  }
  #bio .whatis {
    margin-top: 0;
    margin-bottom: 52px;
    flex-direction: row;
    align-items: flex-start;
  }
  #bio .whatis__left {
    position: -webkit-sticky;
    position: sticky;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  #bio .whatis__content {
    max-width: 610px;
  }
  #bio .interview {
    margin-bottom: 200px;
  }
  #bio .interview__container {
    margin: 0 auto;
  }
  #bio .interview__content {
    max-width: 60%;
  }
  #bio .interview__content:hover {
    transform: scale(110%);
    box-shadow: 1px 1px 15px 5px #08f02b;
    transition: 0.3s ease-in-out;
  }
  #bio .timeline {
    padding: 0;
    margin-top: 0;
    margin-bottom: 152px;
  }
  #bio .timeline text {
    font-size: 24px;
  }
  #bio .pictures {
    margin-bottom: 152px;
  }
}
@media only screen and (min-width: 900px) {
  #bio .caract__content span {
    font-size: 100px;
  }
  #bio .caract__content {
    max-width: 80%;
    margin: auto;
  }
}
@media (min-width: 980px) {
  #bio .interview__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
    justify-content: space-evenly;
  }
  #bio .interview__content {
    width: 300px;
    height: auto;
  }
}
@media (min-width: 1050px) {
  #bio .intro {
    margin-top: 304px;
    margin-bottom: 304px;
  }
  #bio .caract, #bio .whatis {
    margin-bottom: 204px;
  }
  #bio .timeline, #bio .interview {
    margin-bottom: 304px;
  }
  #bio .interview__container {
    max-width: 90%;
  }
  #bio .interview__content {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  #bio .interview__container div {
    width: 350px;
  }
}

/*# sourceMappingURL=app.css.map*/