@charset "UTF-8";
.accordian-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  border-radius: 15px;
  background-color: rgb(180, 151, 124);
  border-color: rgb(68, 48, 34);
  margin-top: 5%;
  margin-bottom: 5%;
}

.accordian-holder details p {
  word-break: break-word;
  overflow-wrap: break-word;
  color: rgb(68, 48, 34);
  margin-left: 7%;
  margin-right: 7%;
  font-family: "Philosopher", sans-serif;
  font-size: 1.2rem;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary {
  list-style: none;
  cursor: pointer;
  margin-left: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Philosopher", sans-serif;
  font-size: 1.4rem;
  margin-right: 5%;
}

details summary::after {
  content: "›";
  float: right;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(90deg);
}/*# sourceMappingURL=get-involved.css.map */