.filtre-annee {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px;
  height: fit-content;
  position: sticky;
  top: 150px;
}
.btn-annee {
  font-family: var(--wp--preset--font-family--playfair);
  font-size: var(--wp--preset--font-size--titre-2);
  font-weight: 400;
  background-color: transparent;
  border: none;
  transition: all 300ms;
  cursor: pointer;
  width: 65px;
  text-align: center;
  position: relative;
}

.btn-annee.current {
  font-weight: 700;
  color: var(--wp--preset--color--fonce);
}

.btn-annee.current::before {
  content: "";
  background-image: url(./img/tourbillon-exp.svg);
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  position: absolute;
  top: -8%;
  left: -70px;
}

.btn-annee.current::after {
  content: "";
  background-image: url(./img/fleche-exp.svg);
  width: 24px;
  height: 17px;
  background-repeat: no-repeat;
  position: absolute;
  top: 30%;
  right: -64px;
}

.btn-annee:hover {
  color: var(--wp--preset--color--fonce);
  font-weight: 700;
  transition: all 300ms;
}

.exp-pro {
  display: flex;
  gap: 30px 80px;
  margin-block-start: 50px !important;
}

@media screen and (max-width: 1024px) {
  .exp-pro {
    flex-wrap: wrap;
  }

  .filtre-annee {
    position: relative;
    top: 0;
    flex-direction: row;
    padding: 40px;
    gap: 30px;
    flex-wrap: wrap;
  }

  .btn-annee,
  .btn-annee:visited,
  .btn-annee:active,
  .btn-annee:focus {
    color: var(--wp--preset--color--noir) !important;
    -webkit-text-fill-color: var(--wp--preset--color--noir) !important;
  }

  .btn-annee.current::after {
    transform: rotate(90deg) translateX(-50%);
    top: 200%;
    right: 28%;
  }
  .btn-annee.current::before {
    top: -180%;
    left: 11%;
  }
}

.experiences-liste {
  width: 100%;
  position: relative;
}

.experiences-liste::after {
  content: "";
  background-image: url(./img/vague-exp.svg);
  width: 105px;
  height: 65px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 100px;
  right: -40px;
  animation: flotter 7s infinite;
}

@keyframes flotter {
  50% {
    transform: translate(20px, 20px);
  }
}

article.experience {
  padding: 50px;
  border-radius: 100px 10px 100px 10px;
  box-shadow: var(--wp--preset--shadow--ombre);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

article.experience p {
  margin: 0;
}

article.experience h3 {
  margin: 0;
}

article.experience .exp-top {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

article.experience .exp-top .duree {
  font-family: var(--wp--preset--font-family--playfair);
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--fonce);
  width: 80px;
  min-width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  font-size: 24px;
}

article.experience .exp-top h3 {
  font-size: var(--wp--preset--font-size--titre-2);
}

article.experience .exp-top h3 span {
  color: var(--wp--preset--color--fonce);
  font-weight: 400;
  font-size: var(--wp--preset--font-size--titre-3);
  text-transform: uppercase;
}

article.experience .exp-top .outils {
  margin: 0 0 0 auto;
}

article.experience .exp-top .outils ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}

@media screen and (max-width: 600px) {
  article.experience .exp-top .outils ul {
    flex-wrap: wrap;
  }
}

article.experience .exp-top .outils ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--wp--preset--color--dore-1);
  text-align: center;
  font-size: 14px;
}
article.experience .exp-top .outils ul li img {
  height: 36px;
  width: auto;
}

article.experience .competences ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
article.experience .competences li {
  padding: 4px 16px;
  background-color: var(--wp--preset--color--clair);
  color: var(--wp--preset--color--middle-1);
  border-radius: 20px;
}
