
@media (min-width: 220px) and (max-width:991px){
    .wm-accordion {
        width: 100%;
        background-color: #f1cfba !important;
        border: none;
        outline: none;
        text-align: left;
        padding: 15px 20px;
        position:relative;
        cursor: pointer;
        transition: background-color 0.2s linear;
    }
    .wm-accordion:after {
        font-family: 'bootstrap-icons';
        content: "\F64D";
        font-size: 18px;
        font-weight: 900;
        color: #fff;
        position:absolute;
        top:50%;
        right:20px;
        -webkit-transform:translateY(-50%);
        -moz-transform:translateY(-50%);
        transform:translateY(-50%);
    }
    
    .wm-accordion.active:after {
        content: "\F2EA";
    }
    .wm-accordion .font1{
        margin-bottom:0;
        font-size: 20px;
        color: #fff;
        font-weight: 600;
        font-family: 'Quicksand';
    }
    .wm-accordion-panel {
        /*display: none;
        padding-top:20px;*/
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }
}