/*---------------------- faq-accordion start ----------------------*/
.faq-accordion .section {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  margin-bottom: 3rem;
}

.faq-accordion .section-head {
  padding: 1rem 0 1.2rem;
}
.faq-accordion .section-title {
  color: #9c3587;
  color: var(--purple-brite);
}

.faq-accordion .section::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.accord-list .accord-icon {
  align-self: start;
}

.accord-list .accord-item {
  display: grid;
  align-items: start;
  grid-gap: 1.3rem;
  gap: 1.3rem;
  grid-template-columns: 60px auto 20px;
  position: relative;
  padding: 1.2rem 0;
}

.accord-list .accord-item.no-icon {
  grid-template-columns: auto 20px;
}

.accord-list .accord-item.closed {
  align-items: center;
}

.accord-list .accord-title {
  margin-bottom: 0.6rem;
  transition: margin 0.2s ease-in-out;
}

.accord-list .accord-item {
  cursor: pointer;
}

.accord-list .accord-item.closed .accord-title {
  margin-bottom: 0;
}

.accord-list .accord-item .accord-detail {
  transition: height 0.2s ease-in-out;
  height: 0;
  overflow: hidden;
}

.accord-list .accord-item.closed .accord-detail {
  height: 0;
}

.accord-list .accord-item .accord-arrow {
  justify-self: end;
}

.accord-list .accord-item .accord-arrow svg {
  transition: transform 0.2s ease-in-out;
  transform: rotate(0deg);
}

.accord-list .accord-item.closed .accord-arrow svg {
  transform: rotate(180deg);
}

.accord-list .accord-item::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.accord-list .accord-item:last-child::after {
  content: inherit;
}

.accord-list .accord-item::before {
  content: "";
  position: absolute;
  background-color: #653780;
  background-color: var(--purple-base);
  left: 50%;
  bottom: 0;
  right: 100%;
  height: 2px;
  transition: right 0.4s ease-in-out, left 0.4s ease-in-out;
  z-index: 1;
}

.accord-list .accord-item:hover::before {
  right: 0;
  left: 0;
}

.accord-detail a.ext-link {
  margin: 1rem 0 1.5rem;
}

.accord-detail a.ext-link::after {
  background-color: var(--purple-base);
}

@media only screen and (min-width: 768px) {
  .faq-accordion .section {
    grid-template-columns: 25% 70%;
    column-gap: 5%;
  }
}

/*---------------------- faq-accordion end ----------------------*/
