.product-faq{
    max-width:900px;
    margin:80px auto;
}

.product-faq .faq-title{
    text-align:center;
    margin-bottom:44px;
    font-weight: 900;
}

.product-faq .faq-item{
    border-bottom:1px solid #E5E5E5;
}

.product-faq .faq-question{

    width:100%;

    color: #BF0000;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:none;

    border:none;

    cursor:pointer;

    padding:24px 0;

    font-size:20px;

    font-weight:600;

    text-align:left;

}

.product-faq .faq-answer{

    display:none;

    padding-bottom:24px;

}

.product-faq .faq-answer p{

    margin:0;

}

.product-faq .faq-icon{

    width:18px;

    height:18px;

    position:relative;

    flex-shrink:0;

}

.product-faq .faq-icon::before,
.product-faq .faq-icon::after{

    content:"";

    position:absolute;

    background:#000;

    transition:.3s;

}

.product-faq .faq-icon::before{

    width:18px;

    height:2px;

    top:8px;

    left:0;

}

.product-faq .faq-icon::after{

    width:2px;

    height:18px;

    top:0;

    left:8px;

}

.product-faq .faq-item.active .faq-icon::after{

    transform:scaleY(0);

}