/* Styles for responsive design and media queries */

.mobileshow {
	display: none;
}
/* Screen 320px to 767px */
@media only screen and (min-width: 320px) and (max-width: 767px) {
	.laptopshow {
		display: none;
	}
	.mobileshow {
		display: block;
	}
}
