.cards_list_actions {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.card p {
  text-align: left;
}

.card ul {
  text-align: left;
  margin-left: 15px;
}

.card ul li {
  list-style-type: disc;
}

.container_titre h3 {
  text-align: left;
}

.liste-parcours {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.liste-parcours .list-element {
  display: flex;
  gap: 20px;
}

.list-element .nombre {
  border-radius: 6px;
  background: #f4f4f4;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: fit-content;
}

.list-element .texte {
  font-size: 18px;
}

.pourcentage-sorties {
  display: flex;
  padding: 15px;
  width: fit-content;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--Vert, #6abf4b);
  margin: 20px 0 20px 0;
}

@media screen and (min-width: 768px) {
  .cards_list_actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .liste-parcours {
    position: relative;
    gap: 20px;
  }

  .list-element {
    position: relative;
    display: flex;
    align-items: center;
  }

  .liste-parcours .list-element {
    display: flex;
    gap: 40px;
  }

  .list-element .ellipse {
    display: flex;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .list-element .texte {
    max-width: 400px;
    font-size: 20px;
  }

  .list-element .ellipse::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 140px);
    background: repeating-linear-gradient(
      to bottom,
      black,
      black 3px,
      transparent 3px,
      transparent 6px
    );
  }

  .list-element:first-child .ellipse::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: repeating-linear-gradient(
      to bottom,
      black,
      black 3px,
      transparent 3px,
      transparent 6px
    );
  }

  .list-element:nth-child(3) .ellipse::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 35px;
    background: repeating-linear-gradient(
      to bottom,
      black,
      black 3px,
      transparent 3px,
      transparent 6px
    );
  }

  .list-element:last-child .ellipse::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: repeating-linear-gradient(
      to bottom,
      black,
      black 3px,
      transparent 3px,
      transparent 6px
    );
  }

  .list-element.inverse {
    flex-direction: row-reverse;
  }

  .list-element .container-nombre {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }

  .list-element.inverse .container-nombre {
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }

  .list-element .container-texte {
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }

  .list-element.inverse .container-texte {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }
}
