.faq-categories-choices {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.faq-categorie-btn {
    border-radius: 5px;
    padding: 50px 0;
    cursor: pointer;
    border: 1px solid #dcdcdc;
    transition: all .2s;
    margin: .5vw;
    flex: 1;
    max-width: 330px;
    box-sizing: border-box;
}
@media only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .faq-categories-choices {
        flex-direction: column;
    }
    .faq-categorie-btn {
        max-width: 90%;
        width: 90%;
        align-self: center;
    }
}
.faq-categorie-btn:hover {
    box-shadow: 0 0px 0.3px rgba(0, 0, 0, 0.029),
  0 0px 0.7px rgba(0, 0, 0, 0.043),
  0 0px 1.3px rgba(0, 0, 0, 0.053),
  0 0px 2.2px rgba(0, 0, 0, 0.062),
  0 0px 4.2px rgba(0, 0, 0, 0.072),
  0 0px 10px rgba(0, 0, 0, 0.1);
}
.faq-categorie-btn i {
    font-size: 35px;
    padding-bottom: 20px;
}
.faq-categorie-btn div {
    font-weight: bold;
    font-size: 1.2rem;
}
.faq-questions-block {
    background: #f8f8f8;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 20px 0;
}
.faq-intitule-block {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}
.faq-intitule-block i {
    padding-right: 10px;
}
.faq-intitule {
    font-weight: bold;
}
.faq-reponse {
    padding: 15px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    height: 0;
    display: none;
    opacity: 0;
    overflow: hidden;
    transition: all .2s;
}
.faq-reponse p {
    margin: 0;
    line-height: 1.6rem;
}
.faq-reponse a {
    color: #da091B;
}
.faq-categorie {
    display: none;
}
.faq-reponse img {
    /*width: 100%;
    padding: 10px 0;*/
    width: 500px;
    max-width: 100%;
    margin: 10px auto;
    display: block;
}