.faq-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;transition:0.3s all linear;
}

.faq-item.active{
background: #F0FFFA;
}

.faq-question .num-sec .num{   background: conic-gradient(from -86.22deg at 63.75% 157.5%, #124837 -162.31deg, #1A7357 54.94deg, #27886A 73.63deg, #59D8B0 110.65deg, #4DC8A1 125.21deg, #52B294 135.06deg, #43B592 143.62deg, #5BB99C 149.15deg, #48B492 155.61deg, #70F9CE 167.25deg, #114334 172.79deg, #124837 197.69deg, #1A7357 414.94deg);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: var(--f-30-20);
    min-width: 60px;}

.faq-width{max-width: 1280px;
    margin: 0 auto;}


.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: var(--f-30-20);
    padding: 10px 0;
    text-align: left;
    display: flex;color:#4b4b4b;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 400;    gap: 1.5rem;
}


.faq-question .num-sec{    display: flex;
    align-items: flex-start;
    gap: 1rem;}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.faq-answer .inner {
    padding: 10px 0;font-size:var(--f-22-16);color:#4b4b4b;padding-left:80px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* large enough to fit answers */
}

.faq-item .arrow {
    transition: transform 0.3s ease;    min-width: 40px;
}

.faq-item .arrow .arr{
    transition: transform 0.3s ease;}

.faq-item.active .arrow .arr {
    transform: rotate(180deg);
    transform-origin: center;
}



@media screen and (max-width: 781px) {


.faq-item{padding:20px 5%;}

.faq-question .num-sec .num{width:40px;height:40px;min-width:40px;}
.faq-question{font-size:18px;}
.faq-item .arrow{min-width:30px;}
.faq-answer .inner{padding-left:0px;}


}












