.page-faq {
    position: relative;
}

.page-faq__header {
    position: relative;
    background-image: url("../assets/faq-header.jpg");
    background-position: center;
    background-size: cover;
    /*margin-top: 75px;*/
    color: #fff;
    text-align: center;
}

.page-faq__header h1 {
    position: relative;
    z-index: 9;
    font-size: 2.25rem;
    font-weight: 600;
    padding: 10px 0;
}

.page-faq__header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.32);
}

.faq-item {
    padding: 14px 12px;
    border: 1px solid #E5E5E5;
    margin-top: 20px;
}

.faq-item:nth-child(1) {
    margin-top: 0px;
}

.faq-item > * {
    -webkit-transition: .33s all ease-in-out;
    transition: .33s all ease-in-out;
}

.faq-item__question {
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.faq-item__question p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    width: 85%;
}

.faq-item__icon {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 4px;
}

.faq-item__icon::before, .faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: #333;
    border-radius: 3px;
}

.faq-item__icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-item__icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.faq-item__answer {
    width: 85%;
    opacity: 0;
    line-height: 0;
    font-size: .875rem;
    color: #666;
}

.faq-item__answer ul{
    padding-left: 40px;
    padding-top: 10px;
    display: none;
}

.faq-item--active .faq-item__answer ul{
    display: block;
}

.faq-item--active .faq-item__question p {
    color: #00925B;
}

.faq-item--active .faq-item__icon::after {
    display: none;
}

.faq-item--active .faq-item__icon::before {
    background-color: #00925B;
}

.faq-item--active .faq-item__answer {
    line-height: 1.25;
    opacity: 1;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .page-faq__header {
        margin-top: 71px;
    }
}
/*# sourceMappingURL=faq.css.map */