.faq-section .column-row {}

.faq-section .column-row .column-left {
    width: 32%;
}

.faq-section .column-row .column-right {
    width: 49.25%;
}

.faq-section .column-row .column-left .content-wraper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accordion-box:not(:last-child) {
    margin-bottom: 30px;
}

.accordion-box {
    background: rgba(74, 48, 64, 0.5);
    box-shadow: 2px 2px 1px -2px rgba(255, 255, 255, 1) inset;
    border-radius: 16px;
    counter-increment: step;
}

.accordion-box .question {
    padding: 16px 60px 16px 52px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.accordion-box .answer {
    padding: 0 16px 16px 16px;
    display: none;
}

.accordion-box .question:after {
    content: "";
    display: block;
    background-color: rgba(234, 21, 125, 1);
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-box.active .question:after{
       background-image: url(../images/up-arrow.svg);
}
.accordion-box .question:before {
    content: "";
    display: block;
    content: counter(step, decimal-leading-zero); /* 01, 02, 03... */
    position: absolute;
    left: 16px;
    top: 50%;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    transform: translateY(-50%);
    background: linear-gradient(118deg, #F3F1EB 30.95%, #FF38B9 126.85%);
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Liberation Serif';

}
@media only screen and (max-width:1399px){
    .faq-section .column-row .column-left {
        width: 35%;
    }
}
@media only screen and (max-width:1199px){
     .accordion-box:not(:last-child) {
        margin-bottom: 16px;
    }
}
@media only screen and (max-width:991px){
     .accordion-box:not(:last-child) {
        margin-bottom: 16px;
    }
   .faq-section .column-row .column-left {
        width: 40%;
    }
}
@media only screen and (max-width:767px){
    .faq-section .column-row .column-right {
        width: 100%;
        margin-top: 32px;
    }
     .faq-section .column-row .column-left {
        width: 100%;
    }
    .faq-section .column-row .column-left .content-wraper {
        text-align: center;
    }
}