#accordion {
    width: 60%;
    margin: auto;
}
.faq {
	width: 100% !important;
}
.accordion-toggle {
    width: 100%;
    float: left;
    cursor: pointer;
    border: 1px dashed #ccc;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion-toggle h6 {
    width: 90%;
    float: left;
    color: #000;
    padding: 0 2%;
    font-size: 1em;
	font-weight: 500;
    margin: 0 !important;
}
.accordion-content {
    float: left;
    width: 100%;
}
.accordion-content p {
    padding: 3%;
    text-align: justify;
}
.plus, .minus {
    width: 7%;
    padding: 16px 0;
    background-color: #3876b9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plus:after, .minus:after {
    content: "\f067";
    position: relative;
    top: 0px;
    display: inline-block;
    float: right;
    color: #fff;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    font-family: 'FontAwesome';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.minus:after {
    content: "\f068";
}
@media only screen and (max-width: 768px) {
    .accordion-toggle h6 {
        font-size: 0.9em;
    }
}