body {
    background-color: #262626;
    color: #cccccc;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* .accordian{
	width: 30em;
} */

/* Accordian headers */
.section-title {
    background: #7F1416;
    display: block;
    margin: 0;
}

.section-title h3 {
    color: #ffffff;
    padding: 0.2em;
}

/* collapsing-section */
.js .collapsing-section {
    display: none;
}

.collapsing-section p {
    margin: 0;
}

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

.accordion:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

.accordion-btn{
	width: 100%;
	padding: 20px 20px;
	border: none;
	background-color: #FBF4EC;
	border-radius: 20px;
	outline: none !important;
	color: black;
	text-align: left;
	margin-bottom: 4% ;
}