.faqs-group {
  margin-bottom: 30px;
}
.faqs-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

.faqs-item-title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 20px;  
  cursor: pointer;
  position: relative;
}

.faqs-item-title svg {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 0;
  transition: all 0.2s;
}

.faqs-item.active .faqs-item-title svg {
  transform: rotate(90deg);
  transition: all 0.2s;
}

.faqs-item-content {
  color: #696969;  

  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}

.faqs-item.active .faqs-item-content {
  padding-bottom: 20px;

  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}

#button-faq svg{
  margin-right: 10px;
  vertical-align: bottom;
}