.defaultPolice {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
}
@keyframes oscillate {
  0% {
    color: #e6007e;
  }
  50% {
    color: #0095db;
  }
  100% {
    color: #e6007e;
  }
}
@keyframes bgOscillate {
  0% {
    background-color: #e6007e;
  }
  50% {
    background-color: #0095db;
  }
  100% {
    background-color: #e6007e;
  }
}
.fiche {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.fiche .entete {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}
.fiche .entete a {
  width: 20px;
  height: 20px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transition: 0.2s ease;
}
.fiche .entete .precedent {
  transform: rotate(-45deg);
}
.fiche .entete .precedent:hover {
  transform: scale(1.2) rotate(-45deg);
}
.fiche .entete .suivant {
  transform: rotate(135deg);
}
.fiche .entete .suivant:hover {
  transform: scale(1.2) rotate(135deg);
}
.fiche .entete > span {
  width: 20px;
}
.fiche .entete #titre {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.fiche .entete #titre h1 {
  margin: 0;
  text-align: center;
  font-size: 32px;
}
.fiche .entete #titre p {
  margin: 0;
  text-align: center;
  font-size: 24px;
}
.fiche .ficheTalent {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.fiche .ficheTalent .colGauche {
  display: grid;
  grid-auto-rows: max-content;
  gap: 16px;
}
.fiche .ficheTalent .colGauche .photoPrincipale,
.fiche .ficheTalent .colGauche .videoPrincipale {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.fiche .ficheTalent .colGauche .videoPrincipale {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fiche .ficheTalent .colGauche .videoPrincipale img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fiche .ficheTalent .colGauche .videoPrincipale::before {
  content: " ";
  width: 85px;
  height: 85px;
  position: absolute;
  z-index: 5;
  background: transparent url('/media/img/btPlay.png') center center no-repeat;
  background-size: auto;
  background-size: 100%;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: 0.2s ease-in-out;
}
.fiche .ficheTalent .colGauche .videoPrincipale:hover::before {
  opacity: 1;
}
.fiche .ficheTalent .colGauche .imagesSecondaires {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.fiche .ficheTalent .colGauche .imagesSecondaires .element-item {
  width: 230px;
  height: auto;
  margin-bottom: 5px;
}
.fiche .ficheTalent .colGauche .imagesSecondaires .element-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.fiche .ficheTalent .description {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.fiche .ficheTalent .description .infosAgence {
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  border-left: 2px solid #000000;
  position: relative;
  padding-left: 10px;
}
.fiche .ficheTalent .description .infosAgence .info {
  font-size: 16px;
}
.fiche .ficheTalent .description .infosAgence .info p {
  margin: 0;
}
.fiche .ficheTalent .description .infosAgence .info p b {
  font-weight: 600;
}
.fiche .ficheTalent .description .infosAgence .info a {
  text-decoration: none;
  color: #000000;
  text-wrap: nowrap;
  transition: 0.2s ease;
}
.fiche .ficheTalent .description .infosAgence .info a:hover {
  color: #e6007e;
}
.fiche .ficheTalent .description .infosAgence .btnPDF {
  border: 1px solid #e30613;
  border-radius: 4px;
  padding: 5px 5px 5px 10px;
  text-decoration: none;
  color: #e30613;
  font-weight: 600;
  background: url("/media/img/picto_flecheBas.png") no-repeat;
  background-size: 15px;
  background-position: right 5px center;
  padding-right: 25px;
}
.fiche .ficheTalent .description .infosAgence .btnPDF:hover {
  color: #ffffff;
  background: #e30613 url("/media/img/picto_flecheBas_b.png") no-repeat;
  background-size: 15px;
  background-position: right 5px center;
}
.fiche .ficheTalent .description .infosLangues b {
  font-weight: 600;
}
.fiche .ficheTalent .description .infosLignesCV {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.fiche .ficheTalent .description .infosLignesCV h2 {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
  transition: 0.2s ease;
}
.fiche .ficheTalent .description .infosLignesCV h2::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 35%;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(-135deg) translateY(50%);
}
.fiche .ficheTalent .description .infosLignesCV h2.opened::after {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.fiche .ficheTalent .description .infosLignesCV h2:hover {
  color: #e6007e;
}
.fiche .ficheTalent .description .infosLignesCV h2:hover::after {
  border-color: #e6007e;
}
.fiche .ficheTalent .description .infosLignesCV .lignesCV {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.fiche .ficheTalent .description .infosLignesCV .lignesCV h3 {
  margin: 0;
}
.fiche .ficheTalent .description .infosLignesCV .lignesCV h3 b {
  text-transform: uppercase;
  font-weight: 600;
}
.fiche .ficheTalent .description .infosLignesCV .lignesCV p {
  margin: 0;
  margin-bottom: 20px;
  padding-left: 40px;
  font-style: italic;
}
.fiche .ficheTalent .description .infosLignesCV .lignesCV.opened {
  display: flex;
}
/* responsive mobile */
@media (max-width: 1150px) {
  .fiche .ficheTalent {
    width: 100%;
    max-width: 700px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
  }
  .fiche .ficheTalent .colGauche {
    width: 100%;
    order: 2;
  }
  .fiche .ficheTalent .colGauche .imagesSecondaires .element-item {
    width: 49%;
  }
  .fiche .ficheTalent .description {
    order: 1;
  }
  .fiche .ficheTalent .description .infosAgence {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV {
    width: 100%;
    align-items: center;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV h3 {
    text-align: center;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV p {
    text-align: center;
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .fiche .ficheTalent .colGauche .imagesSecondaires .element-item {
    width: 100%;
  }
  .fiche .ficheTalent .description .infosAgence {
    flex-direction: column;
    justify-content: center;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV {
    align-items: flex-start;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV h3 {
    text-align: left;
  }
  .fiche .ficheTalent .description .infosLignesCV .lignesCV p {
    text-align: left;
  }
}
