/*-------------------------------------------------------------
                    responsive start
-------------------------------------------------------------*/
.for-mobile {
    display: none;
}
.for-desktop {
    display: block;
}
@media only screen and (max-width:991px) {
    .for-mobile {
        display: block;
    }
    .for-desktop {
        display: none !important;
    }


}





/*-------------------------------------------------------------
                    responsive end
-------------------------------------------------------------*/