.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border: 2px #106a87 solid;
    margin: 5px 0px;
}
h5 {
    font-size: 16px;
    text-transform: uppercase;
    margin-left: 5px;
    margin-top: 5px;
}
.accordion span {
    font-size: 18px;
    text-transform: uppercase; 
    font-weight: bold;
}
.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #b40303;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 22px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}