.faqs-section {
    color: var(--cream);
}
.faqs-section .row{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 10px;
}
.faqs-section .col-left{
    width: 35%;
}
.faqs-section .col-right{
    width: 57%;
}
.faqs-section .col-left .btn{
    padding: 13px 20px 11px 20px;
    margin-top: 15px;
}
.accordion-box .content{
    display: none;
    padding-top: 16px;
    padding-right: 21px;
}
.accordion-box .title{
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}
.accordion-box .title:hover{
    text-decoration: none;
}
.accordion-sign{
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.accordion-sign img{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(13%) saturate(1717%) hue-rotate(309deg) brightness(108%) contrast(86%);
            filter: brightness(0) saturate(100%) invert(99%) sepia(13%) saturate(1717%) hue-rotate(309deg) brightness(108%) contrast(86%);
}
.accordion-sign.opened img{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.accordion-box *:not(.btn){
    color: var(--cream);
}
.accordion-box {
    border-bottom: 2px solid var(--cream);
    padding-bottom: 24px;
    padding-top: 20px;
}
.accordion-box:first-child{
    border-top: 2px solid var(--cream);
}
@media only screen and (max-width: 1199px) {
    .faqs-section .col-left {
        width: 41%;
    }
}
@media only screen and (max-width: 991px) {
    .faqs-section .col-left {
        width: 43%;
    }
}
@media only screen and (max-width: 767px) {
    .faqs-section .col-left,.faqs-section .col-right {
        width: 100%;
    }
    .faqs-section .col-left h2{
        text-align: center;
    }
    .faqs-section .col-left .btn{display: none;}
}