.contenu-entreprise {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 30px 0 50px 0;
  }
  
  .accordeon-wrapper-2 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
  }
  
  .accordeon-item-2 {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 20px;
    border: 1px solid rgba(184, 183, 184, 0.3);
  }
  
  .accordeon-title-2 {
    display: flex;
    padding: 25px 20px;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .accordeon-item-2 .open{
    display: flex;
    flex-direction: column;
  }
  
  .accordeon_image-2 {
    position: absolute;
    left: 25px;
    top: 25px;
    transition: transform 1s ease-in-out, z-index 0.3s ease;
    border-radius: 25px;
    z-index: 1;
  }
  
  .title-2 {
    font-size: 22px;
    font-weight: 500;
  }
  
  .accordeon_image-2.active {
    z-index: 10;
  }
  
  .accordeon_image-2:nth-child(2) {
    left: 0;
    top: 30px;
    z-index: 3;
  }
  
  .accordeon_image-2:nth-child(3) {
    left: 15px;
    top: 20px;
    z-index: 2;
  }
  
  .accordeon_image-2:nth-child(4) {
    left: 30px;
    top: 10px;
    z-index: 1;
  }
  
  .accordeon-title-2 p {
    transition: margin-left 0.3s ease;
  }
  
  .arrow-icon-2 {
    position: absolute;
    right: 20px;
    top: 47%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
  }
  
  .accordeon-title-2:hover .arrow-icon-2 {
    opacity: 1;
    right: 5px;
  }
  
  .accordeon-title-2 h3 {
    margin: 0;
  }
  
  .accordeon-title-2.open {
    background-color: #0073aa;
  }
  
  .accordeon-title-2.open h3 {
    color: white;
  }
  
  .accordeon-content-2 {
    display: none;
    padding: 10px;
    background-color: #fff;
    margin-top: 0;
    border-radius: 5px;
  }
  
  .accordeon-item-2.open .accordeon-content-2 {
    display: block;
    padding: 0px 20px 20px;
    margin-left: 20px;
  }
  
  .accordeon-item-2.open~.accordeon-image-2 {
    opacity: 1;
    transform: rotate(0deg);
    z-index: 10;/
  }
  
  .accordeon-item-2:not(.open)~.accordeon-image-2 {
    transform: rotate(180deg);
    opacity: 0;
  }
  
  .accordeon-item-2.open~.accordeon-image-2 {
    animation: rotateIn 1s forwards;
  }
  
  .en_savoir_plus-2 p{
    margin-right: 15px;
    font-weight: 700;
    font-size: 14px;
  }
  
  .en_savoir_plus-2 .arrow-icon-2{
    margin-right: 15px;
  }
  
  .text-violet-active-2.active{
    color: #823F91;
  }
  
  .title_images_cdd_cdi-2{
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    position: absolute;
    z-index: 10;
  }
  
  .title_images_cdd_cdi-2[data-index="0"] {
    bottom: 50px;
    left: 50px;
  }
  
  .title_images_cdd_cdi-2[data-index="1"] {
    bottom: 30px;
    left: 40px;
  }
  
  .title_images_cdd_cdi-2[data-index="2"] {
    bottom: 30px;
    left: 60px;
  }
  
  .accordeon-content:first-of-type {
    margin-left: 25px;
  }
  
  @keyframes rotateIn {
    0% {
      transform: rotate(90deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    .accordeon-wrapper-2 {
      width: 100%;
    }
  
    .accordeon-title-2 {
      display: flex;
      flex-direction: column;
    }
  }






/* 3EME ACCORDEON */

  .accordeon-wrapper-3 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
  }
  
  .accordeon-item-3 {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 20px;
    border: 1px solid rgba(184, 183, 184, 0.3);
  }
  
  .accordeon-title-3 {
    display: flex;
    padding: 25px 20px;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .accordeon-item-3.open{
    display: flex;
    flex-direction: column;
  }
  
  .accordeon_image-3 {
    position: absolute;
    left: 25px;
    top: 25px;
    transition: transform 1s ease-in-out, z-index 0.3s ease;
    border-radius: 25px;
    z-index: 1;
  }
  
  .title-3 {
    font-size: 22px;
    font-weight: 500;
  }
  
  .accordeon_image-3.active {
    z-index: 10;
  }
  
  .accordeon_image-3:nth-child(2) {
    left: 0;
    top: 30px;
    z-index: 3;
  }
  
  .accordeon_image-3:nth-child(3) {
    left: 15px;
    top: 20px;
    z-index: 2;
  }
  
  .accordeon_image-3:nth-child(4) {
    left: 30px;
    top: 10px;
    z-index: 1;
  }
  
  .accordeon-title-3 p {
    transition: margin-left 0.3s ease;
  }
  
  .arrow-icon-3 {
    position: absolute;
    right: 20px;
    top: 47%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
  }
  
  .accordeon-title-3:hover .arrow-icon-3 {
    opacity: 1;
    right: 5px;
  }
  
  .accordeon-title-3 h3 {
    margin: 0;
  }
  
  .accordeon-title-3.open {
    background-color: #0073aa;
  }
  
  .accordeon-title-3.open h3 {
    color: white;
  }
  
  .accordeon-content-3 {
    display: none;
    padding: 10px;
    background-color: #fff;
    margin-top: 0;
    border-radius: 5px;
  }
  
  .accordeon-item-3.open .accordeon-content-3 {
    display: block;
    padding: 0px 20px 20px;
    margin-left: 20px;
  }
  
  .accordeon-item-3.open~.accordeon-image-3 {
    opacity: 1;
    transform: rotate(0deg);
    z-index: 10;/
  }
  
  .accordeon-item-3:not(.open)~.accordeon-image-3 {
    transform: rotate(180deg);
    opacity: 0;
  }
  
  .accordeon-item-3.open~.accordeon-image-3 {
    animation: rotateIn 1s forwards;
  }
  
  .en_savoir_plus-3 p{
    margin-right: 15px;
    font-weight: 700;
    font-size: 14px;
  }
  
  .en_savoir_plus-3 .arrow-icon-3{
    margin-right: 15px;
  }
  
  .text-violet-active-3.active{
    color: #823F91;
  }
  
  .title_images_cdd_cdi-3{
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    position: absolute;
    z-index: 10;
  }
  
  .title_images_cdd_cdi-3[data-index="0"] {
    bottom: 50px;
    left: 50px;
  }
  
  .title_images_cdd_cdi-3[data-index="1"] {
    bottom: 30px;
    left: 40px;
  }
  
  .title_images_cdd_cdi-3[data-index="2"] {
    bottom: 30px;
    left: 60px;
  }


    @media screen and (max-width: 1024px) {
    .accordeon-wrapper-3 {
      width: 100%;
    }
  
    .accordeon-title-3 {
      display: flex;
      flex-direction: column;
    }
  }
  