/*HERO MEDIA QUERY*/
.tablet-only { display: none; }

/* Shows an element when on tablet devices */
@media only screen 
and (min-width: 640px) 
and (max-width: 1024px) {

.desktop-only { display: none; } 
.tablet-only { display: block; }

}