.faq {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: black;
  padding-bottom: 2em;
}

.faq-content {
  display: flex;
  flex-direction: column;
  padding-top: 80px !important;
  padding: 0 5em;
}

.faq-content h2 {
  text-align: center;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  display: flex;
  background-color: black;
  cursor: pointer;
  padding: 1em;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-family: RodfatTwo;
  color: var(--primary-b);
  font-size: 1.3em;
  letter-spacing: 0.1em;
  justify-content: space-between;
  align-items: center;
}

/* 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) */
.active,
.accordion:hover {
  background-color: var(--secondary-a);
  color: #201516;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 2em;
  /* background-color: var(--secondary-a); */
  display: none;
  overflow: hidden;
  border: 1px solid var(--secondary-a);
}

.panel > p {
  font-size: 1em;
  color: white;
  letter-spacing: none;
}

.accordion > a {
  margin-right: 0;
  color: white;
  text-decoration: none;
  font-size: 2em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-footer {
  text-align: right;
}
