.faq-main-section {
    width: 100%;
    display: block;
    background: rgb(14,26,43);
    padding: 2em 0em;
}

.fullwidth-container {
    display:block;
    width:95%;
    margin:2em 2.5%;
}

@media (max-width: 600px) {
    .fullwidth-container {
        display:block;
        width:100%;
        margin:2em 0%;
    }
}

.faq-main-section h4 {
    color: rgb(204,214,246);
    font-weight: 600;
    line-height: 1.1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0 40px 0px;
    white-space: nowrap;
    font-size: 30px;
    text-shadow: 1px 1px 1px rgb(0,0,0);
    text-align: left;
}

@media (max-width: 1200px) {
    .faq-main-section h4 {
        font-size: 22px
    }
}
@media (max-width: 500px) {
    .faq-main-section h4 {
        font-size: 20px
    }
}

.faq-main-section h4:after {
    content: "";
    display: block;
    position: relative;
    width: 300px;
    height: 1px;
    margin: 0 0 0 20px;
    background: rgba(204,214,246,.2);
    text-shadow: none;
    -webkit-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    transition: all .6s ease-in-out 0s
}
.faq-main-section h4:hover:after{
    width: 180px;
    background: rgba(204,214,246,.6);
}

.faq-main-section h3 {
    font-family: sans-serif;
    margin: 0px;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: -.045em;
    color: #fff;
    text-shadow: 1px 1px 1px rgb(0 0 0);
    text-align: left;
}

@media (max-width: 1200px) {
    .faq-main-section h3 {
        font-size: 30px;
    }
}
@media (max-width: 500px) {
    .faq-main-section h3 {
        font-size: 25px;
    }
}


#faqSection .collapsible {
    background-color: rgb(26,45,75);
    border: 1px solid hsla(0,0%,51.4%,.16);
    border-radius: 7px;
    color: rgb(204,214,246);
    width: 100%;
    font-size: 1.05em;
    line-height: 1.4em;
    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;
}