.collapsible {
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border-bottom:none;
  border-right:none;
  border-left:none;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: left;
  outline: none;
  font-size: 20px;
  background:none;
  color:#f1f1e5;
  transition:background-color .2s linear;
}
.active-drop{
    #font-weight:bolder;
    background:#d63131;
    border:none;
    margin-top:1px;
}

.active-drop, .collapsible:hover {
    color:#fff;
}

.collapsible:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active-drop:after {
  content: "\2212";
}

.drop-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.content h1{
    padding-top:30px;
}