*{
/*HERE S THE BREAKPOINT FOR SMART PHONES */
@media screen and (max-width: 479px) {
	#tablet{
		display: none;
	}
	#desktop{
		display:none;
	}
} 


/*HERE S THE BREAKPOINT FOR TABLETS */
@media screen and (min-width: 767px) and (max-width: 1365px) {
	#desktop{
		display: none;
	}
	#mobile{
		display: none;
	}
} 


/*HERE S THE BREAKPOINT FOR DESKTOPS */
@media screen and (min-width: 1920px){
	#mobile{
		display: block;
	}
	#tablet{
		display: none;
	}
	img class="mobile" {
		display: none
	}
} 
}