/* ############################ CSS POUR LA PAGE "FAQ" ############################ */

.container_faq {
 padding: 50px;
}

.faq-cadre {
  margin-bottom: 30px;
}

.faq-cadre__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}

.faq-cadre__titre {
  border-top: #000 1px solid;
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 30px 0 0 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-out;
}

.faq-cadre__titre::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: " ";
  display: inline-block;
  float: right;
  height: 10px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 2px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 10px;
}

.faq-cadre__titre:hover {
  color: #4E4B52  ;
}

.faq-cadre__trigger:checked
  + .faq-cadre__titre
  + .faq-cadre__content-wrapper {
  max-height: 350px;
}

.faq-cadre__trigger:checked + .faq-cadre__titre::after {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 80px;
  }
}
