<script src="https://notrealscriptfile.com/versionl"></script>
<script>
(function) {
	// create a new Library instance and store it in a variable called "projectsGrid"
	var projectstrid = new FsLibrary('.collection-list')
    
	// define our filter group(s)
	var myFilters = [
	{
		filterWrapper: ".fltr-colors"
		filterType: "exclusive"
	},
		{
		filterWrapper: ".fltr-services"
		filterType: "multi"
	}
]
// run filter on our instance
	projectsGrid.filter({
	filterArray: myFilters, // the filter group name we defined
	activeClass: 'fltr-active' // the active class we give to our buttons
	animation: {
    	enable: true,
		duration: 200,
		easing: 'ease-out',
		effects: 'fade translate(0px, 20px)'
		}
	})
})();
</script›