$mobile-width: 782px;

@mixin mobile {

	@media (max-width: #{$mobile-width}) {
		@content;
	}
}
