.faq-section {
    position: relative;
    z-index: 1;
}

.faq-section:before {
    content: "";
    display: block;
    border-radius: 680px;
    opacity: 0.6;
    background: #FF6B2C;
    filter: blur(200px);
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    bottom: 0;
}
.accordion-box {
    border-radius: 15px;
    border: 1px solid rgba(17, 24, 39, 0.15);
}

.question {
    padding: 22px 50px 20px 24px;
    position: relative;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 144%;
    color: #111827;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
}

.answer {
    padding: 0 50px 20px 24px;
    display: none;
}
.question:before {
    content: "";
    display: block;
    background-image: url(../images/accordian-arrow.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    height: 24px;
    width: 24px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-box.active .question {
    color: #FF6B2C;
}
.accordion-box.active .question:before{
       background-image: url(../images/accordian-arrow-active.svg);
}
.accordion-box:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width:767px){
    .question {
        padding: 15px 50px 15px 15px;
    }
    .answer {
        padding: 0 50px 15px 15px;
    }
    .question:before {
        right: 15px;
        top: 20px;
        transform: unset;
    }
}