.faq_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}

.faq_section .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8rem 0rem;
}

.accordion_wrapper {
  width: 60%;
}

.accordion {
  background-color: var(--black_low);
  color: var(--dark_blue);
  cursor: pointer;
  padding: 1.5rem;
  width: 100%;
  border: none;
  text-align: right;
  outline: none;
  border-radius: 1rem;
  font-size: 15px;
  transition: 0.4s;
}

.accordion_row {
  margin: .5rem 0rem;
  background: var(--black_low);
  box-shadow: var(--box_shadow_normal);
  border-radius: 1rem;
}

.active,
.accordion:hover {
  background-color: var(--light_blue);
}

.panel {
  padding: 0rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.panel span {
  display: block;
  margin-top: 1rem;
}

@media only screen and (max-width: 1140px) {

  .faq_section {
    padding-bottom: 0rem;
  }

  .accordion_wrapper {
    width: 80%;
  }
}