.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  padding: 20px;
  text-align:center;
  outline: none;
  transition: 0.4s;
  font-size: 1.5em;
  font-family: schrift;
  font-weight: 600;
  background-color: #00010b;
  
  font-family: schrift;
  line-height: 1.5em;
  font-weight: 500;
  font-size: 1.3em;
  color: #efefef;
}

.active, .accordion:hover {
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-family: schrift;
  border-radius: 3px;
  margin-bottom: 100px;
  background-color: #00010b;
  padding-left: 5px;
  border-style: solid;
  border-color: #efefef;
  border-left-color: #00010b;
  border-right-color: #00010b;
}

