#acor_indicaciones{
    margin-top: 15px;
    margin-bottom: 45px;
}


/*--------------------------------------------------ACORDION-------------------------------------------*/

.heading2 {
    color:#616161;  
    padding: 34px 0px;
    cursor: pointer;
    margin-bottom: 3px;
    font-size: 22px;
    border-bottom: 1px solid #616161;
    font-family:"sweet_sans_probold";
}

.heading2:hover {
    color:#bababa;
    border-radius: 0;
}

.heading2:first-child:hover {
    border-radius: 3px 3px 0 0;
}
.heading2:nth-last-child(2):hover{
    border-radius:0 0 3px 3px;
}
.heading2::before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    background-image: url(../img/icon2.png);
    background-repeat: no-repeat;
    width: 19px;
    height: 14px;
    float: left;
    transform: rotate(0);
    transition: all 0.5s;
    margin-top: 6px;
    margin-right: 12px;
}

.active.heading2::before {
    transform: rotate(-180deg);
    background-image: url(../img/icon3.png);
}

.not-active.heading2::before {
    transform: rotate(0deg);
}

.contents2 {
  display: none;
  padding: 10px;
  color:#bababa;
  line-height: 25px;
  font-size: 19px;
  font-family:"sweet_sans_probold";
}
