.defileTexte {
  width: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.918);
  border-radius: 10px;
}

.article {
  position: absolute;
  top: 10px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin: 20px;
}

.article.active {
  opacity: 1;
  z-index: 2;
}

.btnDefile {
  padding: 0;
  margin: 0;
  cursor: pointer;
  margin-top: -40px;
  border: solid 0;
  background-color: rgba(0, 0, 0, 0);
}

.indicators {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.indicators2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #717171;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #0084ff;
}

.Cpuce {
  display: flex;
  gap: 10px;
}

@media (max-width: 1350px) {
  .defileTexte {
    min-width: 350px;
    text-align: center;
  }

  .article {
    position: absolute;
    top: auto;
    left: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
}