/* Animation d’intro */

#intro {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}


/* Chevrons */

#chevron {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  width: 300px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chevron p {
  position: absolute;
  z-index: 2;
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  transition: opacity .3s;
}
#chevron p:hover {
  opacity: .5;
}

#chevron p {
  padding-top: 80px;
}
#chevron p span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: anim-chevrons 2s infinite;
  animation: anim-chevrons 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#chevron p span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#chevron p span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#chevron p span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes anim-chevrons {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anim-chevrons {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



/* Conteneur scrollable sans scrollbar */
#scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}