{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/up2YRVwwWANTh0PAu02i/688aaAP8oXKiQh7BZ7CB/lnvA6N5oz.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import WorksBlogs from\"https://framerusercontent.com/modules/aOBnThnxberJpruOeqOp/EFeCbhLMtPVdXbQiGCrV/APYrZ63z6.js\";import Button from\"https://framerusercontent.com/modules/2qMWTbEXoJz2VTg9jHaG/yGNyEh2tHBay3PMLzl6b/DaxzklVZH.js\";const ButtonFonts=getFonts(Button);const RichTextWithFX=withFX(RichText);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"Y7wy4wc_l\",\"BEeSzRgp8\",\"J28t9iLVm\",\"Z4b95SLxp\",\"C1qJOlsXH\",\"vm9exGxMQ\",\"HgS9qi9A9\"];const serializationHash=\"framer-mgS46\";const variantClassNames={BEeSzRgp8:\"framer-v-48vgaa\",C1qJOlsXH:\"framer-v-1fomhtv\",HgS9qi9A9:\"framer-v-1fhzb78\",J28t9iLVm:\"framer-v-1m67y1l\",vm9exGxMQ:\"framer-v-1y48fvw\",Y7wy4wc_l:\"framer-v-o7fp92\",Z4b95SLxp:\"framer-v-a4jmg7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:30,delay:0,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"advertising\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"event\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"graphic art\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"branding\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Publications\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"video\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"web design\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"Web Design\":\"HgS9qi9A9\",Adv:\"Y7wy4wc_l\",Branding:\"Z4b95SLxp\",evnt:\"BEeSzRgp8\",Graphic:\"J28t9iLVm\",Pubs:\"C1qJOlsXH\",vid:\"vm9exGxMQ\"};const getProps=({direction,direction3,gap,height,id,width,...props})=>{return{...props,dM8EEXhXh:humanReadableEnumMap[direction]??direction??props.dM8EEXhXh??\"row\",LeG2SrU_p:humanReadableEnumMap[direction3]??direction3??props.LeG2SrU_p??\"row\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Y7wy4wc_l\",y1ihwgpqZ:gap??props.y1ihwgpqZ??10};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,dM8EEXhXh,LeG2SrU_p,y1ihwgpqZ,kx5xMkAWpvKQBTBqcx,ueUHdyldPvKQBTBqcx,ShGzRxzrIvKQBTBqcx,pvrnQiGF2vKQBTBqcx,NUzKCiFolvKQBTBqcx,gsxWqF81KvKQBTBqcx,Lq1qMCNy0vKQBTBqcx,idvKQBTBqcx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y7wy4wc_l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const NPiIkoRU7fxzen0=activeVariantCallback(async(...args)=>{setVariant(\"Y7wy4wc_l\");});const NPiIkoRU71gki6=activeVariantCallback(async(...args)=>{setVariant(\"Z4b95SLxp\");});const NPiIkoRU717vmtki=activeVariantCallback(async(...args)=>{setVariant(\"BEeSzRgp8\");});const NPiIkoRU71uyh30b=activeVariantCallback(async(...args)=>{setVariant(\"J28t9iLVm\");});const NPiIkoRU76h8bxt=activeVariantCallback(async(...args)=>{setVariant(\"C1qJOlsXH\");});const NPiIkoRU711dj5pi=activeVariantCallback(async(...args)=>{setVariant(\"vm9exGxMQ\");});const NPiIkoRU712rjzfb=activeVariantCallback(async(...args)=>{setVariant(\"HgS9qi9A9\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"HgS9qi9A9\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-o7fp92\",className,classNames),\"data-framer-name\":\"Adv\",layoutDependency:layoutDependency,layoutId:\"Y7wy4wc_l\",ref:refBinding,style:{...style},...addPropertyOverrides({BEeSzRgp8:{\"data-framer-name\":\"evnt\"},C1qJOlsXH:{\"data-framer-name\":\"Pubs\"},HgS9qi9A9:{\"data-framer-name\":\"Web Design\"},J28t9iLVm:{\"data-framer-name\":\"Graphic\"},vm9exGxMQ:{\"data-framer-name\":\"vid\"},Z4b95SLxp:{\"data-framer-name\":\"Branding\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fdhaf2\",layoutDependency:layoutDependency,layoutId:\"kJIDY2kCA\",style:{\"--15xl6d5\":y1ihwgpqZ},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-53115\",layoutDependency:layoutDependency,layoutId:\"pXO65OGeG\",style:{\"--1kq2lz8\":dM8EEXhXh,\"--p21qfu\":dM8EEXhXh===\"column\"?0:\"calc(0px / 2)\",\"--zn7nyz\":dM8EEXhXh===\"row\"?0:\"calc(0px / 2)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gzyukt-container\",layoutDependency:layoutDependency,layoutId:\"hjoXb6HNY-container\",nodeId:\"hjoXb6HNY\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"hjoXb6HNY\",layoutId:\"hjoXb6HNY\",pUqK5LOBv:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Advertising\",yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",...addPropertyOverrides({BEeSzRgp8:{NPiIkoRU7:NPiIkoRU7fxzen0,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"},C1qJOlsXH:{NPiIkoRU7:NPiIkoRU7fxzen0,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"},HgS9qi9A9:{yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"},J28t9iLVm:{NPiIkoRU7:NPiIkoRU7fxzen0,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"},vm9exGxMQ:{yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"},Z4b95SLxp:{NPiIkoRU7:NPiIkoRU7fxzen0,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t0b7wb-container\",layoutDependency:layoutDependency,layoutId:\"R6Jt0qeF_-container\",nodeId:\"R6Jt0qeF_\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"R6Jt0qeF_\",layoutId:\"R6Jt0qeF_\",NPiIkoRU7:NPiIkoRU71gki6,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Branding\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({Z4b95SLxp:{pUqK5LOBv:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5qijim-container\",layoutDependency:layoutDependency,layoutId:\"OvAy8Y91S-container\",nodeId:\"OvAy8Y91S\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"OvAy8Y91S\",layoutId:\"OvAy8Y91S\",NPiIkoRU7:NPiIkoRU717vmtki,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Event Design\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({BEeSzRgp8:{pUqK5LOBv:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1un29z5-container\",layoutDependency:layoutDependency,layoutId:\"FtpxtwCEX-container\",nodeId:\"FtpxtwCEX\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"FtpxtwCEX\",layoutId:\"FtpxtwCEX\",NPiIkoRU7:NPiIkoRU71uyh30b,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Graphic Design\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({J28t9iLVm:{NPiIkoRU7:undefined,pUqK5LOBv:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o9oaa\",layoutDependency:layoutDependency,layoutId:\"u0NZ2WqX9\",style:{\"--1w1fw5r\":LeG2SrU_p===\"row\"?0:\"calc(0px / 2)\",\"--gfhvs0\":LeG2SrU_p,\"--kky663\":LeG2SrU_p===\"column\"?0:\"calc(0px / 2)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v2sj5h-container\",layoutDependency:layoutDependency,layoutId:\"I6UAc6wlL-container\",nodeId:\"I6UAc6wlL\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"I6UAc6wlL\",layoutId:\"I6UAc6wlL\",NPiIkoRU7:NPiIkoRU76h8bxt,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Publications\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({C1qJOlsXH:{pUqK5LOBv:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qo5v36-container\",layoutDependency:layoutDependency,layoutId:\"qtmZ2eas1-container\",nodeId:\"qtmZ2eas1\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"qtmZ2eas1\",layoutId:\"qtmZ2eas1\",NPiIkoRU7:NPiIkoRU711dj5pi,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Video\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({vm9exGxMQ:{yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v9ofhr-container\",layoutDependency:layoutDependency,layoutId:\"An9c8i_l0-container\",nodeId:\"An9c8i_l0\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"An9c8i_l0\",layoutId:\"An9c8i_l0\",NPiIkoRU7:NPiIkoRU712rjzfb,pUqK5LOBv:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\",variant:\"mOgT9HnHb\",width:\"100%\",wyTK8qWxZ:\"Web Design\",yMl0lud29:\"var(--token-d8400aa8-db4e-4878-9c66-5ea0ea9bf25c, rgb(0, 151, 118))\",...addPropertyOverrides({HgS9qi9A9:{yMl0lud29:\"var(--token-3a87ac6b-ad29-4909-b092-0fba3bd5ecd8, rgb(242, 108, 83))\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j428ba\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"BVcCSTa_X\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Advertising\"})}),className:\"framer-1j86l9j\",fonts:[\"GF;Nunito Sans-300\"],layoutDependency:layoutDependency,layoutId:\"lFpMIlru0\",style:{\"--extracted-r6o4lv\":\"var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BEeSzRgp8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Event Design\"})})},C1qJOlsXH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Publications\"})})},HgS9qi9A9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Web Design\"})})},J28t9iLVm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Graphic Design\"})})},vm9exGxMQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Videos\"})})},Z4b95SLxp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtMzAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Branding\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18u58c4\",\"data-framer-name\":\"Adv\",layoutDependency:layoutDependency,layoutId:\"vKQBTBqcx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"advertising\"},type:\"BinaryOperation\"}},...addPropertyOverrides({BEeSzRgp8:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"event\"},type:\"BinaryOperation\"}}},C1qJOlsXH:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Publications\"},type:\"BinaryOperation\"}}},HgS9qi9A9:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"web design\"},type:\"BinaryOperation\"}}},J28t9iLVm:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"graphic art\"},type:\"BinaryOperation\"}}},vm9exGxMQ:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"video\"},type:\"BinaryOperation\"}}},Z4b95SLxp:{query:{from:{alias:\"vKQBTBqcx\",data:WorksBlogs,type:\"Collection\"},select:[{collection:\"vKQBTBqcx\",name:\"kx5xMkAWp\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ueUHdyldP\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"ShGzRxzrI\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"NUzKCiFol\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"gsxWqF81K\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"Lq1qMCNy0\",type:\"Identifier\"},{collection:\"vKQBTBqcx\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"vKQBTBqcx\",name:\"pvrnQiGF2\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"branding\"},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gsxWqF81K:gsxWqF81KvKQBTBqcx,id:idvKQBTBqcx,kx5xMkAWp:kx5xMkAWpvKQBTBqcx,Lq1qMCNy0:Lq1qMCNy0vKQBTBqcx,NUzKCiFol:NUzKCiFolvKQBTBqcx,pvrnQiGF2:pvrnQiGF2vKQBTBqcx,ShGzRxzrI:ShGzRxzrIvKQBTBqcx,ueUHdyldP:ueUHdyldPvKQBTBqcx},index)=>{kx5xMkAWpvKQBTBqcx??=\"\";ShGzRxzrIvKQBTBqcx??=\"\";pvrnQiGF2vKQBTBqcx??=\"\";NUzKCiFolvKQBTBqcx??=\"\";gsxWqF81KvKQBTBqcx??=\"\";Lq1qMCNy0vKQBTBqcx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vKQBTBqcx-${idvKQBTBqcx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Lq1qMCNy0:Lq1qMCNy0vKQBTBqcx},children:/*#__PURE__*/_jsx(Link,{href:kx5xMkAWpvKQBTBqcx,motionChild:true,nodeId:\"WrhE9hHUT\",openInNewTab:false,scopeId:\"lnvA6N5oz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gi77ao framer-12b359\",layoutDependency:layoutDependency,layoutId:\"WrhE9hHUT\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:526,intrinsicWidth:526,pixelHeight:526,pixelWidth:526,sizes:\"352px\",...toResponsiveImage(ueUHdyldPvKQBTBqcx)},className:\"framer-1ac0aau\",\"data-framer-name\":\"Rectangle 93\",layoutDependency:layoutDependency,layoutId:\"oMoyUGHBV\",style:{borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mszahz\",layoutDependency:layoutDependency,layoutId:\"b7iuGfOYm\",style:{backgroundColor:\"rgba(255, 255, 255, 0.84)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hp51h9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JA0FjdqTq-container\",nodeId:\"JA0FjdqTq\",rendersWithMotion:true,scopeId:\"lnvA6N5oz\",style:{rotate:225},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"JA0FjdqTq\",layoutId:\"JA0FjdqTq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-57bb2f\",layoutDependency:layoutDependency,layoutId:\"QbtsRrFBY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNTAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"Title\"})}),className:\"framer-1ojjskn\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",fonts:[\"GF;Nunito Sans-500\"],layoutDependency:layoutDependency,layoutId:\"pC8TNoa63\",style:{\"--extracted-r6o4lv\":\"var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146))\"},text:ShGzRxzrIvKQBTBqcx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rfqouw\",layoutDependency:layoutDependency,layoutId:\"aK5h35wMF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1me3z9x\",layoutDependency:layoutDependency,layoutId:\"az0gZ_fec\",style:{backgroundColor:\"rgb(207, 207, 207)\",borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d60b52c3-ec57-4b6a-9a56-02ebe18ac1bc, rgb(36, 53, 115)))\"},children:\"promotional design\"})}),className:\"framer-10kmh3u\",fonts:[\"GF;Nunito Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"mKb7XEr_g\",style:{\"--extracted-r6o4lv\":\"var(--token-d60b52c3-ec57-4b6a-9a56-02ebe18ac1bc, rgb(36, 53, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pvrnQiGF2vKQBTBqcx,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sd27m6\",layoutDependency:layoutDependency,layoutId:\"cX7WMXg6z\",style:{backgroundColor:\"rgb(207, 207, 207)\",borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"print\"})}),className:\"framer-j7chzi\",fonts:[\"GF;Nunito Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"TsiejKv7N\",style:{\"--extracted-r6o4lv\":\"var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NUzKCiFolvKQBTBqcx,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6t68c6\",layoutDependency:layoutDependency,layoutId:\"KFozbxCW_\",style:{backgroundColor:\"rgb(207, 207, 207)\",borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146)))\"},children:\"illustration\"})}),className:\"framer-18nyfzq\",fonts:[\"GF;Nunito Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ie_I2BLLA\",style:{\"--extracted-r6o4lv\":\"var(--token-e9dd86eb-e7a2-484d-a761-54f1d44bd2d8, rgb(34, 65, 146))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gsxWqF81KvKQBTBqcx,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})},idvKQBTBqcx);})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mgS46.framer-12b359, .framer-mgS46 .framer-12b359 { display: block; }\",\".framer-mgS46.framer-o7fp92 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-mgS46 .framer-fdhaf2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--15xl6d5)) * 1px); height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mgS46 .framer-53115 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--1kq2lz8); flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mgS46 .framer-gzyukt-container, .framer-mgS46 .framer-1t0b7wb-container, .framer-mgS46 .framer-5qijim-container, .framer-mgS46 .framer-1un29z5-container, .framer-mgS46 .framer-v2sj5h-container, .framer-mgS46 .framer-qo5v36-container, .framer-mgS46 .framer-v9ofhr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mgS46 .framer-o9oaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--gfhvs0); flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mgS46 .framer-1j428ba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-mgS46 .framer-1j86l9j { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-mgS46 .framer-18u58c4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; z-index: 6; }\",\".framer-mgS46 .framer-gi77ao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 383px; justify-content: flex-start; padding: 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mgS46 .framer-1ac0aau { flex: none; height: 231px; position: relative; width: 352px; }\",\".framer-mgS46 .framer-mszahz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 13px; top: 15px; width: 32px; }\",\".framer-mgS46 .framer-hp51h9-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-mgS46 .framer-57bb2f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 331px; }\",\".framer-mgS46 .framer-1ojjskn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mgS46 .framer-rfqouw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mgS46 .framer-1me3z9x, .framer-mgS46 .framer-sd27m6, .framer-mgS46 .framer-6t68c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mgS46 .framer-10kmh3u, .framer-mgS46 .framer-j7chzi, .framer-mgS46 .framer-18nyfzq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mgS46.framer-o7fp92, .framer-mgS46 .framer-fdhaf2, .framer-mgS46 .framer-53115, .framer-mgS46 .framer-o9oaa, .framer-mgS46 .framer-1j428ba, .framer-mgS46 .framer-18u58c4, .framer-mgS46 .framer-gi77ao, .framer-mgS46 .framer-mszahz, .framer-mgS46 .framer-57bb2f, .framer-mgS46 .framer-rfqouw, .framer-mgS46 .framer-1me3z9x, .framer-mgS46 .framer-sd27m6, .framer-mgS46 .framer-6t68c6 { gap: 0px; } .framer-mgS46.framer-o7fp92 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-mgS46.framer-o7fp92 > :first-child, .framer-mgS46 .framer-fdhaf2 > :first-child, .framer-mgS46 .framer-1j428ba > :first-child, .framer-mgS46 .framer-gi77ao > :first-child, .framer-mgS46 .framer-57bb2f > :first-child, .framer-mgS46 .framer-1me3z9x > :first-child, .framer-mgS46 .framer-sd27m6 > :first-child, .framer-mgS46 .framer-6t68c6 > :first-child { margin-top: 0px; } .framer-mgS46.framer-o7fp92 > :last-child, .framer-mgS46 .framer-fdhaf2 > :last-child, .framer-mgS46 .framer-1j428ba > :last-child, .framer-mgS46 .framer-gi77ao > :last-child, .framer-mgS46 .framer-57bb2f > :last-child, .framer-mgS46 .framer-1me3z9x > :last-child, .framer-mgS46 .framer-sd27m6 > :last-child, .framer-mgS46 .framer-6t68c6 > :last-child { margin-bottom: 0px; } .framer-mgS46 .framer-fdhaf2 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--15xl6d5)) * 1px) / 2); margin-top: calc(calc(max(0, var(--15xl6d5)) * 1px) / 2); } .framer-mgS46 .framer-53115 > * { margin-bottom: var(--zn7nyz); margin-left: var(--p21qfu); margin-right: var(--p21qfu); margin-top: var(--zn7nyz); } .framer-mgS46 .framer-53115 > :first-child, .framer-mgS46 .framer-o9oaa > :first-child { margin-left: 0px; margin-top: 0px; } .framer-mgS46 .framer-53115 > :last-child, .framer-mgS46 .framer-o9oaa > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-mgS46 .framer-o9oaa > * { margin-bottom: var(--1w1fw5r); margin-left: var(--kky663); margin-right: var(--kky663); margin-top: var(--1w1fw5r); } .framer-mgS46 .framer-1j428ba > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-mgS46 .framer-18u58c4 > *, .framer-mgS46 .framer-mszahz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mgS46 .framer-18u58c4 > :first-child, .framer-mgS46 .framer-mszahz > :first-child, .framer-mgS46 .framer-rfqouw > :first-child { margin-left: 0px; } .framer-mgS46 .framer-18u58c4 > :last-child, .framer-mgS46 .framer-mszahz > :last-child, .framer-mgS46 .framer-rfqouw > :last-child { margin-right: 0px; } .framer-mgS46 .framer-gi77ao > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-mgS46 .framer-57bb2f > *, .framer-mgS46 .framer-1me3z9x > *, .framer-mgS46 .framer-sd27m6 > *, .framer-mgS46 .framer-6t68c6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mgS46 .framer-rfqouw > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-mgS46.framer-v-1y48fvw .framer-gi77ao { height: 414px; }\",\".framer-mgS46.framer-v-1fhzb78 .framer-gi77ao { height: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1074\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BEeSzRgp8\":{\"layout\":[\"fixed\",\"auto\"]},\"J28t9iLVm\":{\"layout\":[\"fixed\",\"auto\"]},\"Z4b95SLxp\":{\"layout\":[\"fixed\",\"auto\"]},\"C1qJOlsXH\":{\"layout\":[\"fixed\",\"auto\"]},\"vm9exGxMQ\":{\"layout\":[\"fixed\",\"auto\"]},\"HgS9qi9A9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dM8EEXhXh\":\"direction\",\"LeG2SrU_p\":\"direction3\",\"y1ihwgpqZ\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlnvA6N5oz=withCSS(Component,css,\"framer-mgS46\");export default FramerlnvA6N5oz;FramerlnvA6N5oz.displayName=\"expertise\";FramerlnvA6N5oz.defaultProps={height:1074,width:1200};addPropertyControls(FramerlnvA6N5oz,{variant:{options:[\"Y7wy4wc_l\",\"BEeSzRgp8\",\"J28t9iLVm\",\"Z4b95SLxp\",\"C1qJOlsXH\",\"vm9exGxMQ\",\"HgS9qi9A9\"],optionTitles:[\"Adv\",\"evnt\",\"Graphic\",\"Branding\",\"Pubs\",\"vid\",\"Web Design\"],title:\"Variant\",type:ControlType.Enum},dM8EEXhXh:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},LeG2SrU_p:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction 3\",type:ControlType.Enum},y1ihwgpqZ:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerlnvA6N5oz,[{explicitInter:true,fonts:[{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GiClnsV8kA_Ykqw.woff2\",weight:\"300\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G5ClnsV8kA_Ykqw.woff2\",weight:\"500\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\",weight:\"400\"}]},...ButtonFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlnvA6N5oz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"dM8EEXhXh\\\":\\\"direction\\\",\\\"LeG2SrU_p\\\":\\\"direction3\\\",\\\"y1ihwgpqZ\\\":\\\"gap\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BEeSzRgp8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J28t9iLVm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z4b95SLxp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C1qJOlsXH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vm9exGxMQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HgS9qi9A9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1074\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ButtonFonts", "getFonts", "DaxzklVZH_default", "RichTextWithFX", "withFX", "RichText2", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "direction", "direction3", "gap", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "dM8EEXhXh", "LeG2SrU_p", "y1ihwgpqZ", "kx5xMkAWpvKQBTBqcx", "ueUHdyldPvKQBTBqcx", "ShGzRxzrIvKQBTBqcx", "pvrnQiGF2vKQBTBqcx", "NUzKCiFolvKQBTBqcx", "gsxWqF81KvKQBTBqcx", "Lq1qMCNy0vKQBTBqcx", "idvKQBTBqcx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "NPiIkoRU7fxzen0", "args", "NPiIkoRU71gki6", "NPiIkoRU717vmtki", "NPiIkoRU71uyh30b", "NPiIkoRU76h8bxt", "NPiIkoRU711dj5pi", "NPiIkoRU712rjzfb", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "DaxzklVZH_default", "RichTextWithFX", "transition2", "animation", "animation1", "ChildrenCanSuspend", "APYrZ63z6_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "Image2", "toResponsiveImage", "Icon", "RichText2", "css", "FramerlnvA6N5oz", "withCSS", "lnvA6N5oz_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "PhosphorFonts"]
}
