.contenu-entreprise {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin: 30px 0 50px 0;
}

.accordeon-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 70%;
}

.accordeon-item {
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 20px;
  border: 1px solid rgba(184, 183, 184, 0.3);
}

.accordeon-title {
  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 .open{
  display: flex;
  flex-direction: column;
}

.accordeon_image {
  position: absolute;
  left: 25px;
  top: 25px;
  transition: transform 1s ease-in-out, z-index 0.3s ease;
  border-radius: 25px;
  z-index: 1;
}

.title {
  font-size: 22px;
  font-weight: 500;
}

.accordeon_image.active {
  z-index: 10;
}

.accordeon_image:nth-child(2) {
  left: 0;
  top: 30px;
  z-index: 3;
}

.accordeon_image:nth-child(3) {
  left: 15px;
  top: 20px;
  z-index: 2;
}

.accordeon_image:nth-child(4) {
  left: 30px;
  top: 10px;
  z-index: 1;
}

.accordeon-title p {
  transition: margin-left 0.3s ease;
}

.arrow-icon {
  position: absolute;
  right: 20px;
  top: 47%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.accordeon-title:hover .arrow-icon {
  opacity: 1;
  right: 5px;
}

.accordeon-title h3 {
  margin: 0;
}

.accordeon-title.open {
  background-color: #0073aa;
}

.accordeon-title.open h3 {
  color: white;
}

.accordeon-content {
  display: none;
  padding: 10px;
  background-color: #fff;
  margin-top: 0;
  border-radius: 5px;
}

.accordeon-item.open .accordeon-content {
  display: block;
  padding: 0px 20px 20px;
  margin-left: 20px;
}

.accordeon-item.open~.accordeon-image {
  opacity: 1;
  transform: rotate(0deg);
  z-index: 10;/
}

.accordeon-item:not(.open)~.accordeon-image {
  transform: rotate(180deg);
  opacity: 0;
}

.accordeon-item.open~.accordeon-image {
  animation: rotateIn 1s forwards;
}

.en_savoir_plus p{
  margin-right: 15px;
  font-weight: 700;
  font-size: 14px;
}

.en_savoir_plus .arrow-icon{
  margin-right: 15px;
}

.text-violet-active.active{
  color: #823F91;
}

.title_images{
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  position: absolute;
  z-index: 10;
}

.title_images[data-index="0"] {
  bottom: 30px;
  left: 50px;
}

.title_images[data-index="1"] {
  bottom: 60px;
  left: 50px;
}

.title_images[data-index="2"] {
  bottom: 80px;
  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 {
    width: 100%;
  }

  .accordeon-title {
    display: flex;
    flex-direction: column;
  }
}
