.faq-section{
    margin-top: 60px;
    padding: 0;
    background: none;
}

.faq-items{
    display: grid;
    gap: 15px;
}

.faq-item{
    overflow: hidden;
    background: #fff;
    box-shadow: none;
}

#content-wrapper .faq-item h3{
    margin: 0;
}

#content-wrapper .faq-item h3 button,
#content-wrapper .faq-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    padding: 20px 20px;
    border: 0;
    background: #fff;
    color: #000;
}

#content-wrapper .faq-title h3{
    margin: 0;
}

.faq-item h3 button span,
.faq-title > span{
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: none;
}

.faq-item h3 button span:before,
.faq-item h3 button span:after,
.faq-title > span:before,
.faq-title > span:after{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 2px;
    background: #e40009;
    transition: .2s;
}

.faq-item h3 button span:after,
.faq-title > span:after{
    transform: rotate(90deg);
}

.faq-item.active h3 button span:after,
.faq-item.active .faq-title > span:after{
    transform: rotate(0);
}

.faq-content{
    display: none;
    padding: 0 50px 20px 20px;
    border: 1px solid #e40009;
    border-top: 0;
}

.faq-content p:last-child{
    margin-bottom: 0;
}

@media(max-width:767px){
    .faq-section{
        margin-top: 40px;
    }

    #content-wrapper .faq-item h3 button,
    #content-wrapper .faq-title{
        gap: 20px;
        padding: 156px;
    }

    .faq-content{
        padding: 0 15px 20px;
    }
}

