.section--faqs .section__inner--smaller {
  max-width: 60rem;
}

.section--faqs .section__inner--smaller > p {
  font-size: 1.1rem;
}

.section--faqs .section__inner--smaller > a {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  transition: all .3s linear;
  white-space: nowrap;
  font-size: 1rem;
  margin-bottom: 5rem;
  color: #32a753;
}

.section--faqs .section__inner--smaller > a:after {
  content: " \2192";
}

.section--faqs .faq-item {
  border-bottom: 1px solid #cfd6d9;
}

.section--faqs .faq-item-content {
  display: none;
}

.section--faqs .faq-item-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.section--faqs .faq-item-header p {
  margin: 0;
  font-weight: bold;
  cursor: pointer;
}

.section--faqs .acc_icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 10px;
  width: 20px;
  margin-left: 16px;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease-in-out 0s;
}

.section--faqs .acc_open .acc_icon {
  transform: rotate(180deg);
}

