*, *:before, *:after {
    box-sizing: border-box
}

.faqs-page a{
    text-decoration: underline;
}

.faq-header{
    margin: 30px auto;
    text-align: center;
    font-size: 20px;
}

.faq-accordion{
    width: 60%;
    margin: 0 auto 50px auto;
    text-align: left;
}
.faq-accordion .accordion-title {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    color: #292F36;
    font-size: 15px;
    font-weight: 300;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
}

.faq-accordion .content h3{
    color: #F50A3F;
}

.faq-accordion .accordion-title:hover,
.faq-accordion .accordion-title:hover::after {
    cursor: pointer;
    color: #12BA00;
}

.faq-accordion .accordion-title:hover::after {
    border: 1px solid #12BA00;
}

.faq-accordion .accordion-title.active {
    color: #12BA00;
    border-bottom: 1px solid #12BA00;
}

.faq-accordion .accordion-title::after {
    font-family: 'Ionicons';
    content: '+';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 15px;
    color: #7288a2;
    padding: 5px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #7288a2;
    text-align: center;
}

.faq-accordion .accordion-title.active::after {
    font-family: 'Ionicons';
    content: '-';
    color: #12BA00;
    border: 1px solid #12BA00;
}

.faq-accordion .content {
    margin: 0;
    opacity: 0;
    padding: 0 1rem;
    max-height: 0;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    clear: both;
    -webkit-transition: all 0.2s ease 0.15s;
    -o-transition: all 0.2s ease 0.15s;
    transition: all 0.2s ease 0.15s;
}

.faq-accordion .content p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
}

.faq-accordion .content.active {
    opacity: 1;
    padding: 1rem;
    max-height: 100%;
    -webkit-transition: all 0.35s ease 0.15s;
    -o-transition: all 0.35s ease 0.15s;
    transition: all 0.35s ease 0.15s;
}

@media only screen and (max-width: 768px) {
    .faq-accordion{
        width: 95%;
    }
}
