@import url("https://fonts.googleapis.com/css?family=Hind:300,400&display=swap");

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion-item a {
  color: #fff;
}
.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #ffff;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #ffff;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover {
  cursor: pointer;
  color: #ffda08;
}
.accordion button a:hover {
  cursor: pointer;
  color: #ffda08;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #ffff;
  border: 1px solid #ffff;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 0;
  width: 20px;
  height: 20px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  color: #ffda08;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content ul {
  margin: 1rem 0;
  list-style: none;
}

.accordion .accordion-content ul li {
  line-height: 2rem;
}

.accordion .accordion-content ul li a {
  color: #fff;
  font-size: 1rem;
  text-align: left;
  font-weight: 300;
}

.accordion .accordion-content ul li a:hover {
  color: #ffda08;
}
