
.accordion {
  background-color: #fff;
  color: #3A59B4;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  border-bottom: #3A59B4 1px solid;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.4s;
}

.otrotitulo{
  color: #3A59B4;
  font-size: 15px;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .accordion {
    padding: 8px;
    font-size: 12px;
  }
}

.active, .accordion:hover {
  background-color: #fafafa;
}

.accordion:after {
  content: '\002B';
  font-size: 12px !important;
  color: rgb(88, 88, 90);
  font-weight: bold;
  float: left !important;
  margin-right: 5px;
}

.active:after {
  content:' \002D';
  font-size: 12px !important;
}

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