#faq-container {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: minmax(50px, auto);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding-left: 2%;
    padding-right: 2%;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.faq-entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-color: var(--dark-gray-3);
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    border-left-width: 30px;
    border-left-style: solid;
    /*border-radius: 5px;*/
    /*box-shadow: var(--service-card-box-shadow);*/

    -webkit-transition: border-color .3s;

    -o-transition: border-color .3s;

    transition: border-color .3s;
}

.bc {
    border-color: var(--brand-color-secondary);
}

.faq-content p {
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.faq-entry hr {
    margin: 0;
}

.faq-header {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.faq-toggle-icon {
    -ms-grid-column-align: end;
        justify-self: end;
}

.faq-title {
    font-family: var(--main-font-family);
    width: 100%;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: start;
}

.faq-content {
    font-family: var(--secondary-font-family);
    width: 100%;
}

.faq-toggle-icon {
    margin-right: 20px;
    height: 20px;
    width: 20px;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-top: 2%;
}

.section-subheader {
    font-family: 'Montserrat Italic', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    max-width: 300px;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.faq-body {
    width: 100%;
    height: 0;
    overflow: hidden;

    -webkit-transition: height .5s ease;

    -o-transition: height .5s ease;

    transition: height .5s ease;
}

.faq-body.show {
    height: 200px;
}

/* These describe the faq close/open icon */

.x-visible {
    height: 3px;
    width: 20px;
    background-color: black;
    -webkit-transform: translate(0, 2px);
        -ms-transform: translate(0, 2px);
            transform: translate(0, 2px);

    -webkit-transition-delay: 1s;

         -o-transition-delay: 1s;

            transition-delay: 1s;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.x-invisible {    
    height: 3px;
    width: 20px;
    background-color: black;
    -webkit-transform: translate(0, -2px) rotate(90deg);
        -ms-transform: translate(0, -2px) rotate(90deg);
            transform: translate(0, -2px) rotate(90deg);    
    -webkit-transition-delay: 1s;    
         -o-transition-delay: 1s;    
            transition-delay: 1s;
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, -webkit-transform .5s;
    -o-transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s, -webkit-transform .5s;

}

.a {
    -webkit-transform: translate(0, 2px) rotate(-180deg);
        -ms-transform: translate(0, 2px) rotate(-180deg);
            transform: translate(0, 2px) rotate(-180deg);
}

.b {
    -webkit-transform: translate(0, -2px) rotate(0);
        -ms-transform: translate(0, -2px) rotate(0);
            transform: translate(0, -2px) rotate(0);
    opacity: 0;
}