.faq ul li div p {
  font-size: 11px;
  font-weight: 500;
  line-height: 2;
}
.faq .nw-button {
  width: fit-content;
  margin: 40px auto 0;
}
@media screen and (max-width:1024px) {
  .container.faq li h2 {
    font-size: 14px;
  }
}

/* New design */
.new-faq {
  padding: 50px 0;
}
.new-faq .new-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.new-faq .description {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
}
.new-faq ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.new-faq .question-ctn {
  padding: 0;
  gap: 10px;
  border: 2px solid var(--myrtille300);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  transition: .15s ease;
}
.new-faq ul li h2 button {
  padding: 20px;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  gap: 20px;
}
.new-faq ul li h2 span {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: .15s ease;
}
.new-faq ul li .reponse div {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0.7;
}
.new-faq ul li .reponse ul {
  padding: 0 20px 20px 20px;
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0.7;
  text-align: left;
  list-style: disc;
  list-style-position: inside;
}
.new-faq ul li .reponse p {
  padding: 0 20px 20px 20px;
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 1;
  text-align: left;
}
.new-faq .question-ctn svg {
  transition: .15s ease;
}

.new-faq .question-ctn:hover {
  border-color: var(--myrtille300) !important;
}
.new-faq .question-ctn:hover span {
  color: var(--text) !important;
  opacity: 1 !important;
}
.new-faq .question-ctn:hover svg {
  filter: grayscale(0) !important;
}
.new-faq .question-ctn.hide {
  border: 2px solid rgba(42, 40, 67, 0.2);
}
.new-faq .question-ctn.hide span {
  color: var(--text);
  opacity: 0.6;
}
.new-faq .question-ctn.hide svg {
  filter: grayscale(1);
}

.new-faq .nw-button {
  width: fit-content;
  margin: 20px auto 0;
}