
#accordion {
margin-top: 5px;
margin-bottom: 25px;
}

#accordion input {
  display: none;
}
#accordion label {
  background: #9fc8db;
  color: #535250;
  border-radius: .25em;
  cursor: pointer;
  display: block;
  margin-bottom: .125em;
  padding: .25em 1em;
  z-index: 20;

}
#accordion label p{
  color: #535250;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-left: 65px;

}

#accordion label:hover {
  background: #ccc;

    margin-right: 165px;
}
#accordion input:checked + label {
  background: #ccc;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #535250;
  margin-bottom: 0;
}
#accordion article {
  background: #535250;
  height:0px;
  overflow:hidden;
  z-index:10;

    margin-right: 165px;
}
#accordion article p {
    font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: 12px;
    color: #9fc8db;
    margin-left: 80px;
}

#accordion article h4 {
    margin-left: 80px;
    font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 15px;
    color: #9fc8db;
}
#accordion input:checked ~ article {
  border-bottom-left-radius: .25em;
  border-bottom-right-radius: .25em;
  height: auto;
  margin-bottom: .125em;
}