.faq-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: #E8E9E1;
  width: 100%;
  padding: 20px;
  &>h1 {
    margin-bottom: 0;
    text-align: center;
  }
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;

  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  /* font-size: 1.3rem; */
  /* line-height: 1.5em; */
  color: #424242;
  background-color: #E8E9E1;
  cursor: pointer;
  padding: 1rem 40px 1rem 20px;
  width: min(90vw, 800px);
  text-align: left;
  border: none;
  border: 1px solid #073431;
  border-radius: 10px;
  transition: 0.4s;
}
.accordion>h3 {
  text-align: left;
  font-size: 1.8rem;
  margin: 0;
}

.accordion::after {
  content: '\25BC';
  font-family: 'DM Serif Display', sans-serif;
  position: absolute;
  right: 20px;
  color: #424242;
  transition: 0.4s;
}
.accordion.active::after {
  transform: rotateX(180deg);
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active, .accordion:hover {
  background-color: #073431;
  & h3 {
    color: #B59155;
  }
  &::after {
    color: #B59155;
  }
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 1rem;
  width: min(90vw, 800px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel>.accordion_point {
  font-weight: bold;
  margin-bottom: 0;
}
.panel>.accordion_text {
  /* padding-left: 2rem;
  margin-top: 0; */
}
.panel>ul  {
  padding-left: 3rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .panel {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1440px) {}
@media screen and (min-width: 2000px) {}
