.parent-container {
    padding: 0 20px 0 20px;
    width: 100%;
    /* text-align: center; */
}

.faq {
    list-style: none;
    padding-left: 40px;
    padding-right: 20px
}

.faq li {
    border-bottom: 1px solid #999999;
    margin-bottom: 15px
}

.faq li.active .answer {
    max-height: 275px !important;
    padding-bottom: 25px;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease
}

.faq li.active .question {
    color: #808080;
    transition: color 0.5s ease
}

.faq .answer {
    color: #090909;
    font-size: 16px;
    line-height: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding-bottom 0.5s ease;
    position: relative;
}

.answer i {
    position: absolute;
    font-size: 24px;
    left: 0;
    top: 20px;
}

.answer .con {
    padding: 10px 0;
}

.answer .a_content {
    padding: 20px;
    padding-left: 30px;
    border-top: 2px dashed lightgrey;
    position: relative;
}

.faq .plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: absolute;
    width: 21px;
    left: -40px;
    top: 50%;
    z-index: 2
}

.faq .plus-minus-toggle:before,
.faq .plus-minus-toggle:after {
    background: #000;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    width: 21px;
    transition: transform 500ms ease
}

.faq .plus-minus-toggle:after {
    transform-origin: center
}

.faq .plus-minus-toggle.collapsed:after {
    transform: rotate(90deg)
}

.faq .plus-minus-toggle.collapsed:before {
    transform: rotate(180deg)
}

.faq .question {
    color: #090909;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.5s ease;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .faq .question {
        font-size: 18px
    }
}