


#acordeon-general{
  display: block;
  margin: 0 auto;
  width: 50%; 
  padding-top: 20px;
 font-family: 'DM Sans', sans-serif;
}

.accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
 font-family: 'DM Sans', sans-serif;
  width: 100%;
  border: none;
  text-align: left;
  border-radius: 10px;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

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

.accordion:after {
     content: '\002B';
     color: #fff;
     background-color: #014f9a;
     font-weight: bold;
     float: right;
     border-radius: 100px;
     margin-left: 0;
     display: block;
     width: 27px;
     text-align: center;
     height: 27px;
     margin-left: 43px;
     font-size: 22px;
     padding-left: 0px;
}

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

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

.panel p{
  text-align: left;
    padding: 20px;
    font-family: 'DM Sans', sans-serif;
}


@media (max-width:760px) {
  #acordeon-general {
    display: block;
    margin: 0 auto;
    width: 95%!important;
    padding-top: 20px;
   font-family: 'DM Sans', sans-serif;
}
.accordion {
    background-color: #e7e7e7;
    font-family: 'DM Sans', sans-serif;
    color: #444;
    cursor: pointer;
    padding: 18px!important;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}
}


