.blog-faq .faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-faq .faq-item:last-child {
  margin-bottom: 0;
}
.blog-faq .faq-item .faq-question {
  padding: 1.1rem 1.4rem;
  gap: 0.75rem;
  font-family: "Inter 28pt", sans-serif;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.blog-faq .faq-item .faq-question h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(13, 13, 13);
  line-height: 1.5;
  margin: 0;
}
.blog-faq .faq-item .faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(181, 0, 30, 0.3);
  border-radius: 50%;
  color: #b5001e;
  display: flex;
  line-height: 1px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-faq .faq-item .faq-answer {
  max-height: 0;
  display: none;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.4rem 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.0705882353);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.blog-faq .faq-item .faq-answer p {
  font-size: 0.925rem;
  color: rgb(74, 74, 74);
  line-height: 1.85;
  margin: 0.85rem 0px 0px;
}
.blog-faq .faq-item.active .faq-answer {
  display: block;
  max-height: 1000px;
  opacity: 1;
  padding: 0 1.4rem 1.1rem;
}
.blog-faq .faq-item.active .faq-icon {
  border-color: #b5001e;
}

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