/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background:  #fff;
    font-size: 20px;
    color: #361e5c;
    cursor: pointer;
    padding: 20px;
	padding-bottom: 35px;
    width: 100%;
    text-align: left;
    border: solid;
    border-color:#361e5c;
    border-width:1px;
    outline: none;
    transition: 0.4s;
    margin-bottom:8px;
    font-family: 'Open Sans',sans-serif;
	border-radius: 5px;
	margin-bottom: 20px;
}

button.accordionb {
    color: #201a57;
    border-color:#201a57;
}

/* 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) */
button.accordion.active, button.accordion:hover {
    background: #361e5c;
    color:#fff;
}


button.accordionb.active, button.accordionb:hover {
    background: #361e5c;
    color:#fff;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 20px 18px 20px;
    font-size:18px;
    color:#361e5c;
    display: none;
}

div.panelb {
    padding: 20px 18px 20px;
    color: #201a57;
    border-color: #201a57;
    text-align: left;
	line-height:22px;
    font-size:18px;
    display: none;
}


div.panelb a {
   text-decoration: underline !important;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block !important;
}

div.panelb.show {
    display: block !important;
}


button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    /*color: #fff;*/
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}


@media (max-width: 992px) {
    button.accordion {
        font-size: 16px;
    }

    .banner h2 {
        margin-top: 20px;
    }

}
