@mixin desktop {
	@media only screen and (min-width: 1280px) {
		@content;
	}
}

@mixin tablet {
	@media only screen and (max-width: 1280px) {
		@content;
	}
}

@mixin mobile {
	@media only screen and (max-width: 768px) {
		@content;
	}
}
