@media only screen and (max-width: 600px) {
  	.desktop {
    	display: none;
  	}
}
@media only screen and (min-width: 600px) {
  	.mobile {
    	display: none;
  	}
}