.mobile{
    display: none;
}
@media screen and (max-width:900px){
    .desktop{
        display: none!important;
    }
    .mobile{
        display: block;
    }
    body{
        overflow-x: hidden;
    }
    
}