@media(min-width:320px){
    .faq-list .section-title{
        border-bottom: 0;
    }
    .faq-list{
        gap: 16px;
    }
    .faq-list .faq-list__item{
        border-bottom: 1px solid var(--background-light);
    }

    .faq-list .accordion{
        padding: 13px 70px 13px 0px;
        position: relative;
        cursor: pointer;
        font-family: Wix Madefor Text;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: 0;
        margin: 0;

    }
    .faq-list .accordion:after{
        position: absolute;
        top: 12px;
        right: 0px;
        content: '';
        background-image: url('./img/faq-plus.svg');
        background-repeat: no-repeat;
        background-size: auto;
        background-position: center;
        width: 8px;
        height: 8px;
        transition: transform 0.3s ease;
        border: 1px solid var(--main-basic);
        border-radius: 50px;
        padding: 17px;
    }

    .faq-list .opened-faq__item .accordion:after {
        transform: rotate(45deg);
    }

    .faq-list .response{
        display: none;
    }
    .faq-list .opened-faq__item  .response {
        display: block;
        margin-bottom: 25px;
        margin-top: 25px;
    }
}
@media(min-width:425px){
    .faq-list .accordion {
        padding: 13px 148px 13px 0;
        position: relative;
        max-width: 100%;
    }
}
@media(min-width:500px){
    .faq-list .accordion {
        padding: 23px 0px 23px 0px;
    }
}
@media(min-width: 768px) {
    .faq-list .accordion{
        font-family: Wix Madefor Text;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: 0;
    }
}
@media(min-width: 1140px){
     .faq-list .accordion{
        font-family: Wix Madefor Text;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0;
    }

}