@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");
* {
  box-sizing: border-box;
  user-select: none;
}

.navbar {
  background: black;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
  background: black;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ul-mobile img {
    display: none;
  }
}

h2 {
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  color: #ccc;
  width: 90vw;
  max-width: 1200px;
}

section {
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;
  will-change: transform;
}

section .outer,
section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  will-change: transform;
}

section .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}

section .bg h2 {
  z-index: 2;
}

section .bg .clip-text {
  overflow: hidden;
}

.bg {
  position: relative;
}

.bg iframe {
  position: absolute;
}

.bg video {
  position: absolute;
}

.vimeo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#progress-bar-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 2px;
  /* Largeur de la barre de progression */
  height: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.5);
  /* Couleur de fond de la barre de progression */
}

#progress-bar {
  width: 100%;
  /* La largeur de la barre de progression sera ajustée dynamiquement */
  height: 0;
  background-color: #ffa800;
  /* Couleur de la barre de progression */
}

/* CURSOR */
html:hover .cursor {
  opacity: 1;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
@media (max-width: 800px) {
  .cursor {
    display: none;
  }
}

.cursor--hover .cursor-inner {
  transform: scale(0.5);
  opacity: 0;
}

.cursor--hover .cursor-outer {
  transform: scale(1.4);
  border-color: #000;
  opacity: 1;
}

.cursor-move-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  z-index: 10;
}

.cursor-move-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.cursor-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cursor-inner i {
  position: absolute;
  top: -2px;
  font-size: 11px;
}

.cursor-outer {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-sizing: border-box;
  transition: border 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#section-list-realisation {
  position: fixed;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  z-index: 11;
}
#section-list-realisation ul {
  list-style: none;
}
#section-list-realisation li {
  list-style: none;
}
#section-list-realisation #section-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#section-list-realisation #section-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: right;
  overflow: hidden;
  width: 250px;
}
#section-list-realisation a {
  display: block;
  padding: 5px 10px;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  letter-spacing: 4px;
  transition: 0.1s;
}
#section-list-realisation span {
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: block;
}
#section-list-realisation .active-section span {
  background-color: white;
}
#section-list-realisation .active-li a {
  color: #ffa800 !important;
  transform: scale(1.2) translateX(-10px) !important;
  transition: transform 0.3s ease;
}
#section-list-realisation .active-li span {
  background-color: white !important;
}
#section-list-realisation a:hover {
  color: #ffa800;
  transition: 0.2s linear;
}

#section-list {
  position: fixed;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  z-index: 11;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

#section-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#section-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: right;
  overflow: hidden;
  width: 250px;
}

#pauseButton {
  position: absolute;
  z-index: 999;
  right: 1%;
  bottom: 2%;
  background: none;
  border: none;
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

#pauseButton i {
  font-size: 25px;
  position: relative;
  left: 2px;
  color: white;
}

#section-list a {
  display: block;
  padding: 5px 10px;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  letter-spacing: 4px;
  transition: 0.1s;
}

#section-list span {
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: block;
}

.active-section span {
  background-color: white;
}

.active-li a {
  color: #ffa800 !important;
  /* font-size: 25px;
   */
  transform: scale(1.2) translateX(-10px) !important;
  transition: transform 0.3s ease;
}

.active-li span {
  background-color: white !important;
}

#section-list a:hover {
  color: #ffa800;
  transition: 0.2s linear;
}

.scroll-btn {
  background: none;
  border: none;
  position: relative;
  left: 50px;
  display: none;
}

#scroll-up-btn img {
  rotate: 271deg;
  width: 50px;
}

#scroll-down-btn img {
  rotate: 90deg;
  width: 50px;
}

/*# sourceMappingURL=slider-films.min.css.map */
