.scene {
  width: 100vw;
  height: calc(100vh - 230px);
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel {
  width: 100%;
  height: calc(100vh - 200px);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: 55px;
}
.carousel__cell {
  aspect-ratio: 3 / 2;
  height: auto;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: white;
  font-size: 4vw;
  backface-visibility: hidden;
  height: calc(100vh - 280px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
#workshop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 130px 0 50px 0;
}
#workshop img {
  width: 90%;
  border-radius: 6px;
}
#title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--titre);
  text-transform: uppercase;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 140px;
  border-radius: 50px;
  height: fit-content;
  padding: 3px 14px;
  box-shadow: 0px 0px 3px 1px rgba(19, 104, 195, 0.52);
}
#arrow-left,
#arrow-right {
  position: absolute;
  top: calc(50% + 55px);
  font-size: 2.8rem;
  color: var(--background);
  z-index: 100000;
  font-weight: 900;
  text-shadow: 0 0 5px #000000;
  animation: clignotement 1.4s infinite;
  cursor: pointer;
  user-select: none;
  pointer-events: none;
  transform: translateY(-50%);
}
@keyframes clignotement {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  #workshop {
    display: flex;
    padding-top: 145px;
  }
  .scene {
    display: none;
  }
  #arrow-left,
  #arrow-right {
    display: none;
  }
  #title {
    top: 90px !important;
    font-size: 22px !important;
    border-bottom: 2px solid var(--titre);
    width: 90%;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
  }
}
@media (min-width: 769px) {
  #workshop {
    display: none;
  }
  .scene {
    display: flex;
  }
  html,
  body {
    margin: 0;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    height: 100vh;
  }
  #footer {
    position: absolute;
    bottom: 0;
  }
}
