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

.faq-section .column-right {
    width: 55%;
   
}
.faq-title h2 {
    margin-bottom: 0;
}
.accordion-boxes {
    background: var(--light-gray);
}
.accordion-boxes:not(:last-child){
    margin-bottom: 20px;;
}
.answer { 
    display: none;
    padding: 0 40px 25px 25px;
}
.question {
    padding: 25px 40px 25px 25px;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    line-height: 28px;
    color: var(--black);
    font-weight: 600;
}
.question:before {
    content: "";
    display: block;
    background-image: url(../images/plus.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-boxes.active {
    background: var(--white);

}
.accordion-boxes.active .accordion-box .question:before{
     background-image: url(../images/minus.png);
}




@media only screen and (max-width:1399px){
   
}
@media only screen and (max-width:1199px){
   .question {
        font-size: 20px;
        line-height: 24px;
    }
}
@media only screen and (max-width:991px){
    .faq-section .column-left {
        width: 100%;
    }
    .faq-section .column-right {
        width: 100%;
        margin-top: 40px;
    }
}
@media only screen and (max-width:767px){

}
@media only screen and (max-width:575px){
   
}