@media (min-width: 200px) {

    .text_mobile { display: block;}
    .text_desktop {display:none;}


}

@media (min-width: 890px) {

    .text_mobile { display: none;}
    .text_desktop {display:block;}


}