.home-faq-row {
  display: flex;
  gap: 80px;
}
.home-faq {
  background: #f9f9f9;
}
.home-faq-row > div {
  width: calc(40% - 40px);
}
.home-faq-row > ul {
  width: calc(60% - 40px);
  margin: 0;
}
.home-faq-row li {
  list-style: none;
  margin: 0;
}
.home-faq-row ul h2 {
  margin: 0;
  color: #1a1c1c;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500 !important;
  font-family: "Inter", sans-serif !important ;
  line-height: 28px !important;
}
.home-faq-row a {
  padding: 24px;

  text-decoration: unset;
}
.faq-content {
  padding-left: 24px;
  padding-right: 24px;
}
.faq-item {
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  background: #fff;

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item:not(:last-of-type) {
  margin-bottom: 18px;
}
.faq-item--active svg {
  transform: rotate(180deg);
}
.faq-item--active svg path {
  fill: #ae0a22;
  transition: 0.3s;
}
.faq-item path {
  transition: 0.3s;
}
.faq-item svg {
  transition: 0.3s;
}
.faq-item--active h2 {
  color: #ae0a22 !important;
  transition: 0.3s;
}
.faq-item h2 {
  transition: 0.3s;
}
@media only screen and (max-width: 991px) {
  .home-faq-row {
    flex-direction: column;
    gap: 30px;
  }
  .home-faq-row > div,
  .home-faq-row > ul {
    width: 100%;
  }
}
