.mobileshow {
	display: none;
}
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
}
/* Screen 1701 to 3000 px */
@media only screen and (min-width: 1025px) and (max-width: 1460px) {
}
@media only screen and (min-width: 1025px) and (max-width: 1350px) {
}
/* Screen 300 to 767 px */
@media only screen and (min-width: 300px) and (max-width: 767px) {
	.laptopshow {
		display: none;
	}
	.mobileshow {
		display: block;
	}
}
