.desktop {
	display: flex;
}
.device,
.tablet,
.mobile {
	display: none;
}

@media only screen and (max-width:1024px) {
	.desktop {
		display: none;
	}
	.device,
	.tablet {
		display: flex;
	}
}

@media only screen and (max-width:767px) {
	.mobile {
		display: flex;
	}
}
