.page-content {
  width: 1200px;
  max-width: 100%;
  margin: 50px auto;
  padding: 20px;
}

h1 {
  color: #576855;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

h2 {
  margin-top: 45px;
  text-transform: uppercase;
  color: #333232;
  font-size: 23px;
  font-weight: bold;
}
@media (max-width: 750px) {
  h2 {
    font-size: 17px;
  }
}

.faq-question-container:first-of-type {
  border-top: 1px solid gainsboro;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0px;
  border-bottom: 1px solid gainsboro;
}
.faq-question:hover {
  text-decoration: underline;
  cursor: pointer;
}
.faq-question h2 {
  margin: 0;
  padding-right: 10px;
}
.faq-question img {
  height: 15px;
  transform: rotate(90deg);
  transition: 0.2s transform;
  user-select: none;
}
.faq-question img.open {
  transform: rotate(0deg);
}

.faq-answer {
  overflow-y: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 0.1s, padding 0.1s;
}
.faq-answer.open {
  padding-top: 10px;
  max-height: 1000px;
}

/*# sourceMappingURL=faq.css.map */
