.accordion-container {
  display: none;
}

.ac {
  margin-bottom: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.ac .ac-trigger {
  font-family: "Akshar";
  font-size: 2.9rem;
  padding: 2rem 2rem 1.8rem;
}

.ac .ac-trigger:focus {
  color: initial;
}

.ac .ac-panel .ac-text {
  font-family: "Akshar";
  font-size: 1.6rem;
  padding: 0 2rem 1rem;
  text-align: left;
}

.ac .ac-trigger::after {
  content: "";
  display: inline-block;
  right: 18px;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-5px, -5px); /* points down */
}

.ac.is-active > .ac-header .ac-trigger::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-135deg) translate(0, 0); /* points up */
}

@media screen and (max-width: 1024px) {
  .accordion-container {
    display: block;
  }
  .ac .ac-trigger {
    font-size: 2rem;
  }
}
