
/* FAQ */
.faq {
  text-align: center;
  margin: 4% 0;
  color: #e84d0e;
  font-family: Arial, sans-serif;
}

.faq__header h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.faq__header p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.faq_all_dropdown {
  padding: 0;
  text-align: left;
}

.faq__dropdown {
  margin: 3% 0;
}

.faq__dropdown__title {
  border: 2px #e84d0e solid;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}

.faq__dropdown__title:hover, 
.faq__dropdown__title.active {
  background-color: #e84d0e;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.faq__dropdown__title:hover h2, 
.faq__dropdown__title.active h2 {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.faq__dropdown__title:hover img {
  filter: brightness(0) invert(1);
}

.faq__dropdown h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.faq__dropdown_div {
  font-size: 16px;
  background-color: #cbcbcb;
  color: #000000;
  nopadding: 20px;
  border-radius: 5px;
}

.faq_toggle-icon {
  width: 24px;
  height: 24px;
}

.faq__dropdown__text--hidden .plus-icon {
  display: inline;
}

.faq__dropdown__text--hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.faq__dropdown__text--hidden .link {
  color: #23b8cd;
  text-decoration: none;
} /* fin FAQ */



/*
-----------------------------------------------------------------------------------------------------------------------------------
en dessous de x pixels de largeur
-----------------------------------------------------------------------------------------------------------------------------------
*/
@media screen and (max-device-width: 800px), screen and (max-width: 800px)
{


.faq {
  margin: 0;
}

.faq_all_dropdown {
  padding:0;
}

.faq__dropdown h2 {
  font-size: 16px;
  font-weight: 500;
}

}

