/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    font-weight: 900;
    background-color: transparent;
    border-left: 3px solid #FF8B27;
    color: #FF8B27;
    font-size: 1.8em;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

/* 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, .accordion:hover {
    background-color: rgba(255, 139, 39, 0.24);
}
.accordion-text p{
    color: #000;
    font-size: 1.7em;
    line-height: 1.5;
}
.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{width: 100%; max-width: 200px;}
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #FF8B27;
    float: right;
    margin-left: 5px;
}

.accordion .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 15px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}
@media screen and (max-width: 600px) {
    .panel img{display: block; margin: 2em auto;}
    .accordion-text p{text-align: center;}
}