#fqrs {
    max-width: 1000px;
    margin: 40px auto;
    width: 600px;
    min-height: 50px;
    /* background: blue; */
    border-radius: 5px;
}
.subapartado {
    width: 600px;
    min-height: 50px;
    background: #0C0654;
}

.title{
    width: 600px;
    min-height: 50px;
    /* background: red; */
    overflow: hidden;
    border-bottom: 1px solid black;
}

p.titler{
    margin: 13px;
    color: white;
}

.info{
    width: 600px;
    height: 0;
    background: #f5f5f5;
    overflow: hidden;
    -webkit-transition: height 0.5s;
    /* transition: height 0.2s; */
}

p.infor {
    margin: 20px;
    text-align: left;
    color: black
}

.subapartado:hover .info{
    height: 80px;
}