.accordeon-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accordeon button{
  background-color: var(--gris);
  margin: 0 auto 10px;
  /*height: 20px;*/
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blanc);
  text-align: left;
}

.accordeon img{
  display: block;
  margin: 75px auto 0;
  width: 25%;
}


.accordion {
  cursor: pointer;
  padding: 10px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  width: 70%;
  /*border-radius: 20px;*/
}

.active, .accordion:hover {
  background-color: #ffc000;
}

.accordion:after {
  font-size: 1.5rem;
  content: '▼';
  /*color: rgb(227, 21, 19);*/
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "▲";
}

.panel {
  width: 65%;
  margin: 0 auto;
/*  background-color: white;
  color: rgb(220,220,220);*/
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel img{
  width: 70%;
  padding-bottom: 15px;
}

.panel p, .panel li{
  margin: 5px 0 10px;
  padding: .1rem;
}
