.faq-main-section {
    width: 100%;
    display: block;
    /*background: rgb(14,26,43);*/
    padding: 0em 0em;
}

.fullwidth-container {
    display:block;
    width:95%;
    margin:2em 2.5%;
}

@media (max-width: 600px) {
    .fullwidth-container {
        display:block;
        width:100%;
        margin:2em 0%;
    }
}

#faqSection .collapsible {
    background-color: white;
    border: 1px solid hsla(0,0%,31.4%,1);
    border-radius: 7px;
    color: rgb(0,0,0);
    width: 100%;
    font-size: 1.15em;
    line-height: 1.5em;
    padding: 12px;
    text-align:left;
    cursor: pointer;
}
#faqSection .collapsible:after {
    content:"\002B";
    font-weight:bold;
    float:right;
    margin-left:5px
}
#faqSection .active:after {
    content:"\2212"
}
#faqSection .faq-content {
    overflow: hidden;
    -webkit-transition: all .25s ease 0s;
    -o-transition: all .25s ease 0s;
    transition: all .25s ease 0s;
    background: white;
    border: 1px solid hsla(0,0%,51.4%,.16);
    padding: 1em;
    border-radius: 7px;
    max-height: 0px;
    visibility: hidden;
}