/*FAQS*/
#accordion-faq h2 {
    margin: 0;
    text-align: left;
    font-size: 1.2rem;
}

.faq-body p {
    /* margin-top: 20px;*/
}

.faq-body {
    background: #FFFFFF;
    display: block;
    margin-left: 10px;
    /*visibility: hidden;*/
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.faq {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000000;
    cursor: pointer;
}

.faq:last-of-type{
    border-bottom: none;
}

.faq-body.open {
    /*visibility: visible;*/
    max-height: 1000vh;
    transition: max-height 0.5s ease-in;
}

.faq-body ol, .faq-body ul {
    margin-top: 0;
}

#accordion-faq .faq-header {
    padding: 20px 0;
}

#accordion-faq .faq-header:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    text-decoration: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "\f078";
    float: right;
    padding: 10px;
    color: #a61919;
    cursor: pointer;
    transition: all .23s ease-in;
}

#accordion-faq .faq-header.open:before {
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.faq-cta {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #303030;
    line-height: 1.8rem;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #AA0304;
    border-bottom: 2px solid #AA0304;
}

@media (min-width: 64em) {
    #accordion-faq h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 75em) {
    #accordion-faq h2 {
        font-size: 1.65em;
    }

    .faq-cta {
        font-size: 1.4rem;
    }
}