/* Style the buttons that are used to open and close the accordion panel */
.accordion, .accordion2 {
    font-weight: bold;
    font-size: 2.6em;
    background-color: transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
}
.accordion:hover, .accordion2:hover {
    background: rgba(255, 255, 255, 0.03);
}
.accordion-small{
    /* width: 45%; */
    float: none;
    border-top: none;
    display: table;
    text-align: center;
    margin: 0 auto;
    text-transform: initial;
}
.accordion-small:hover{
    background: none;
}
.accordion-small .btn:after, .accordion-small:after{
    display: none;
}
/* .accordion-small.active{
    display: none;
} */
.accordion-small .btn{
    font-family: 'Circular Std Book';
    font-weight: normal;
    color: #001736;
    font-size: 0.85em;
    background: #fce400;
    display: inline-block;
    width: auto;
    border-radius: 3px;
    padding: 0.8em 2em;
}
.accordion-small .btn::before{
    content: 'Veja mais';
}
.accordion-small.active .btn::before{
    content: 'Voltar';
}
.accordion span, .accordion2 span{
    padding: 0; 
    width: 80%;
    display: inline-block;
}
.accordion3.btn2::before{
    content: 'Conheça outras modalidades';
}
.accordion3.btn2.active::before{
    content: 'Voltar';
}
article:last-child .accordion {border-bottom: 2px solid rgba(255, 255, 255, 0.15);}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion-list .active:after {
    background: url(../img/btnH.png)no-repeat center;
}
.accordion-text p{
    color: #fff;
    font-size: 1.6em;
    line-height: 1.7;
    text-align: justify;
}
.accordion-text p b, .accordion-text p strong{
    color: #F5E600;
}
.panel h5{
    font-weight: bold;
    color: #575656;
    font-size: 3.5em;
    margin: 0em 0 0.5em;
}
/*.panel h5:after{
    content: '';
    width: 30px;
    height: 2px;
    display: block;
    background: #102341;
    margin-top: 0.1em;
}*/
.panel img{margin: 0 auto; display: block;}
.accordion:after {
    content: ''; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    width: 25px;
    height: 25px;
    background: url(../images/circle.svg)no-repeat center;
    float: right;
    /* margin-top: 10px; */
    margin-left: 5px;
}

.active:after {
    content: ""; /* Unicode character for "minus" sign (-) */
    background: url(../images/circle-blue.svg)no-repeat center;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 15px 18px;
    background-color: rgba(255, 255, 255, 0.03);
    display: none;
    overflow: hidden;
}
@media screen and (max-width: 600px) {
    .panel img{display: block; /*margin: 2em auto;*/}
    .accordion-text p{text-align: center;}
}
@media screen and (min-width: 900px) {
}