



.brc {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
    
}

.accordion {
    width: 100%;
    padding: 0 5px;
    border: 2px solid #6db5ff;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    margin: 10px 0;
    align-items: center;
}

.accordion .icon {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(images/plus.png) no-repeat 5px 6px #2196f3;
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}

.accordion h5 {
    font-size: 29px;
    margin: 5px;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: #fff;
    transition: all .5s ease-in;
   
}

.actived .icon {
    background: url(images/minus.png) no-repeat 5px 5px #2196f3;
}

.actived {
    color: #2196f3;
}

.actived h5 {
    color: #2196f3;
}


.panel {
    padding: 0 15px;
    border-left: 1px solid #2196f3;
    margin-left: 25px;
    font-size: 30px;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease-in;
}