.faq-block {
  margin-bottom: 3em;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  1em 1.5em 1em;
    box-shadow: 1px 1px 3px #b9b9b9;
    border: none;
	  border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}
.faq-question:hover {
    background-color: #eeeeee;
}
.faq-question h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 0;
}
.faq-question .faq-btn {
    font-size: 1.5em;
    color: #00a651;
}
.faq-answer {
    display: none;
    padding: 1em;
    border: 1px solid #e9e9e9;
    margin-top: 1em;
    border-radius: 10px;
}
