.accordion {
  background-color:rgba(0,114,147,0.25);
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-top:20px;
  color:#242A38;
  font-family: 'Roboto', sans-serif;
  font-size:20px;
  line-height:24px;
  border-radius: 5px 5px 0px 0px;
}

.active, .accordion:hover {
  background-color:var(--orange) !important;
  color:#FFFFFF;
}

.panel {
  padding: 0 18px;
  background-color:rgba(47,180,74,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p:first-child {
	margin-top:20px;
}
.panel p:last-child {
	margin-bottom:20px;
}