.accordion {
  background-color: #eee;
  color: #021C57;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1rem;
  transition: 0.4s;
  font-weight:bold;
}

.accordion .active{
	
}
.accordion:hover {
  background-color:#00000029;
  color:#000000;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}