.faq h2,
.faq h4 {
    color: #000
}

.accWraper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.fwAccordion {
    grid-template-columns: 1fr;
}

.accWraper>div>div {
    margin-bottom: 12px
}

.accWraper>div>div:last-child {
    margin-bottom: 0
}

.accWrapper {
    overflow: hidden;
}

.accItem {
    border: 1px solid #e5e5e6;
    border-radius: 4px;
    padding: 25px 25px
}

.accItem h4 {
    padding: 0 58px 0 0;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.accItem.active h4 {}

.accItem h4:after {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 32px;
    height: 32px;
    background: url(../../img/plus.svg) center center no-repeat;
    background-size: 100% auto;
    margin-left: 30px;
    transition: all 0.2s;
}

.accItem.active h4:after {
    background-image: url(../../img/minus.svg)
}

.accContent {
    display: grid;
    grid-template-rows: 0fr;
    transition: 300ms grid-template-rows, 300ms opacity;
    opacity: 0;
}

.accContent>div {
    overflow: hidden;
}

.active .accContent>div {
    margin-top: 20px
}

.accItem.active .accContent {
    grid-template-rows: 1fr;
    padding-bottom: 0;
    opacity: 1;
}

@media screen and (max-width:767px) {
    .accItem h5 {
        padding-right: 50px
    }

    .accLeft h2 br {
        display: none
    }
}


.accContent {
    padding: 0 40px 0 0
}

.accContent p {
    margin-top: 0;
}

.accContent p:last-child {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .accWraper {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
}

.noBorderItem .accItem {
    border-bottom: 0
}