.faq-container {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .faq-container {
    padding-bottom: 7rem;
  }
}
@media (min-width: 992px) {
  .faq-container {
    padding-bottom: 150px;
  }
}
.faq-container .inverse-button-container {
  justify-content: flex-start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .faq-container .inverse-button-container {
    margin-top: 30px;
  }
}

.questions {
  max-width: 850px;
  margin-inline: auto;
}

.faq-item {
  border-top: 1px solid #DCD9D3;
}
.faq-item:last-of-type {
  border-bottom: 1px solid #DCD9D3;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  color: #2F3337;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  /* hide default triangle in some browsers */
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item > summary .chevron {
  display: inline-flex;
  flex: 0 0 auto;
  transition: transform 200ms ease;
  color: #2F3337;
  margin-right: 10px;
}
.faq-item[open] > summary .chevron {
  transform: rotate(180deg);
}
.faq-item .answer {
  color: #2F3337;
  font-size: 1rem;
  line-height: 1.5rem;
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
  margin-bottom: 24px;
}

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