h3,
p {
  color: white;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.faq {
  max-width: 65vw;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid white;
  cursor: pointer;
}

.question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.question h3 {
  font-size: 2vw;
}

.reponse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.4s ease;
}

.reponse p {
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 1.7vw;
}

.faq.active .reponse {
  max-height: 300px;
  animation: fade 1s ease-in-out;
}

.faq.active svg {
  transform: rotate(180deg);
}

svg {
  transition: transform 0.5s ease-in;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}



@media screen and (min-width:1600px) {
  .footer .disclaimer li {
		font-size: 30px;
	}
    .question h3 {
    font-size: 28px;
  }
  
  
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 24px;
  }


}

@media screen and (min-width: 820px) and (max-width: 1024px) {}

@media screen and (min-width:768px) and (max-width:820px) {
  .question h3 {
    font-size: 14px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 12px;
  }

}

@media screen and (min-width:414px) and (max-width:768px) {
  .question h3 {
    font-size: 20px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 18px;
  }

}

@media screen and (min-width:375px) and (max-width:414px) {
  .question h3 {
    font-size: 14px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 12px;
  }

}

@media screen and (min-width:350px) and (max-width:375px) {
  .question h3 {
    font-size: 14px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 12px;
  }

}

@media screen and (max-width: 350px) {
  .question h3 {
    font-size: 14px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 12px;
  }
  
}

@media screen and (max-width:1024px) and (orientation:landscape) {
  .question h3 {
    font-size: 25px;
  }
  .reponse p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 20px;
  }
  .header .stroke {
    font-size:60px
  }
}

@media screen and (max-width:932px) and (orientation:landscape) {}

@media screen and (max-width:844px) and (orientation:landscape) {}