.accordion {
  background-color: #fff;
  color: #676767;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-family: droid serif;
  font-weight: bold;
  transition: 0.4s;
}

.accordion:hover {
  background-color: #70A940;
}
.accordion:after {
  content: '\002B';
  color: #676767;
  font-weight: bold;
  font-size: 24px;
  float: right;
  margin-left: 5px;
}
.active:after {
  content: "\2212";
  font-size: 24px;
}
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-family: Lato;
  font-size: 16px; 
}
.responsive { 
  max-width: 100%;
  height: auto;
}
