#faq {
  margin-top: 60px;
  background-color: #2a2a2b;
  padding: 50px 0;
}

#questions {
  width: 80%;
  margin: auto;
  font-family: montserrat;
}

.question-item {
  border-top: 2px solid #01bf63;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
}

.question-item:last-child {
  border-bottom: 2px solid #01bf63;
}

.question {
  font-size: 14px;
  user-select: none;
}

.answer {
  margin-top: 0;
  margin-right: 50px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: none;
}

.question-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  height: 100%;
  gap: 20px;
}

.showAnswer {
  user-select: none;
  font-family: bebasNeue;
  color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  rotate: 90deg;
  background-color: transparent;
  border: none;
  outline: none;
  transition: 300ms ease-in-out;
}

.question-item .active {
  display: block;
}
