.paragraph.faqs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  background-color: #E6E3E1;
  padding: 55px 0;
  font-size: 16px;
}
.paragraph.faqs .field--name-field-title {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .paragraph.faqs .field--name-field-title {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
  }
}
.paragraph-faq {
  border-radius: 14px;
  border: 1px solid #796E65;
  background-color: #ffffff;
  padding: 25px;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .paragraph-faq {
    padding: 14px;
  }
}
.paragraph-faq .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.paragraph-faq .faq-header .title {
  font-size: 24px;
  font-weight: bold;
  color: #796E65;
}
@media screen and (max-width: 767px) {
  .paragraph-faq .faq-header .title {
    font-size: 13px;
    line-height: 15px;
  }
}
.paragraph-faq .faq-header .action {
  width: 50px;
  height: 50px;
  background-color: #E70030;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .paragraph-faq .faq-header .action {
    width: 25px;
    height: 25px;
  }
}
.paragraph-faq .faq-header .action:before {
  content: "+";
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 30px;
  margin-top: -13px;
}
@media screen and (max-width: 767px) {
  .paragraph-faq .faq-header .action:before {
    width: 15px;
    height: 15px;
    font-size: 15px;
    margin-top: -7px;
  }
}
.paragraph-faq .faq-body {
  font-size: 16px;
  line-height: 25px;
  height: 0;
  opacity: 0;
  display: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .paragraph-faq .faq-body {
    font-size: 12px;
    line-height: 13px;
  }
}
.paragraph-faq .faq-body .field--type-text-long {
  padding-top: 10px;
}
.paragraph-faq .faq-body .field--type-text-long p {
  margin-bottom: 0;
}
.paragraph-faq .faq-body .field--type-text-long:after {
  display: none;
}
.paragraph-faq.active .faq-header .action:before {
  content: "-";
}
.paragraph-faq.active .faq-body {
  height: auto;
  opacity: 1;
  display: block;
  overflow: visible;
  transition: all 0.5s ease-in-out;
}

/*# sourceMappingURL=paragraph-faqs.css.map */
