.cms-faqs-block {
  margin-top: 2rem;
}
.cms-faqs-block .faq-item {
  margin-bottom: 2rem;
}
.cms-faqs-block .faq-item .subtitle-wrapper {
  max-height: 100%;
}
.cms-faqs-block .faq-item .subtitle-wrapper ul {
  list-style: disc;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
}
.cms-faqs-block .faq-item .subtitle-wrapper ol {
  list-style: decimal;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
}
.cms-faqs-block .faq-item .subtitle-wrapper li {
  display: list-item;
}
.cms-faqs-block .faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted #3d348b;
  align-items: center;
  height: 3rem;
}
.cms-faqs-block .faq-question h5 {
  margin-bottom: 0;
}
.cms-faqs-block .faq-answer {
  padding: 10px 0;
  transition: all 0.8s ease;
}
.cms-faqs-block .faq-icon svg {
  transition: transform 0.25s ease;
}
.cms-faqs-block .faq-question.active .faq-icon svg {
  transform: rotate(180deg);
}

.cms-button-block {
  display: flex;
  gap: 1rem;
  justify-content: start;
  margin-bottom: 2rem;
}
.cms-button-block .blue-btn {
  width: 30%;
  background: #3d348b;
  color: white;
  border-radius: 50px;
  padding: 1rem 1.2rem;
  position: relative;
  font-weight: 600;
}
.cms-button-block .blue-btn:hover {
  background: #ffc107;
  color: #3d348b;
}
@media (max-width: 768px) {
  .cms-button-block {
    flex-direction: column;
  }
  .cms-button-block .blue-btn {
    width: 100%;
  }
}