{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js", "ssg:https://framerusercontent.com/modules/20gkOEWCHuDGEVgDQLA4/J9EO5IWqalX7dZYWa1J0/bnagblXJQ.js", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framerusercontent.com/modules/5iWWWB1bT64YP3mKKYSi/ZQXY3rOmGJVkhMiCArR3/ywmfPg6Td.js", "ssg:https://framerusercontent.com/modules/yGoqGVtYChLCAmpA0zMt/5sENz2Y64V3TWpstvewG/GmJX9wZ_Z.js", "ssg:https://framerusercontent.com/modules/qIR9GQnlsGdWvCakMoOa/jruMawfy9f7FWsa7dZu7/Gy5dsSOJa.js", "ssg:https://framerusercontent.com/modules/d7MusP8rZRjEf2tRW2s0/o7WKblLYLljtE6LsfUFp/GyKJqP2Z6.js", "ssg:https://framerusercontent.com/modules/j5H5xdctYBG43IKtKWRP/2xLAETxRdyvW8SmYN7m1/G2PcQjA9C.js", "ssg:https://framerusercontent.com/modules/svNyV0jjYiFh09uNhbPV/2r4S4h9tdnZKldT7B6ua/eIuM0M4EB.js", "ssg:https://framerusercontent.com/modules/eXWSgozGKbVsHypkb0j9/Xl2iCPDgAPBz7w1CnAbp/y2aW366zJ.js", "ssg:https://framerusercontent.com/modules/ajOkJEDiRB6aUHz6QGeQ/I3DsJpaf62nG7q9v8Fyp/pNHeRDjTh.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rFpfgYRHQzAmkLVpAl8U/FgpTPy7UfOtgR0cxJlMQ/rWBnQ01qE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/opnlkrPt6eS2CZUYno0j/oy4OKyvkoyLcncVIWvND/SJt7fXVzX.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/35lTh5dmllVLuNTYdrmy/3EeJFjOI3OXycXglPOLR/xxobpGKc2.js\";const VideoFonts=getFonts(Video);const serializationHash=\"framer-TkKNa\";const variantClassNames={mgQpaY7KC:\"framer-v-1621ah3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({height,id,image,number,paragraph,title,videoURL,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,kB1rNTf7X:(_ref=paragraph!==null&&paragraph!==void 0?paragraph:props.kB1rNTf7X)!==null&&_ref!==void 0?_ref:\"Every project begins with a deep dive into understanding the brand, its goals, and its audience. Through research and collaboration, this phase uncovers key insights that lay the foundation for strategic and impactful design solutions.\",Mz0wvNH6v:(_ref1=title!==null&&title!==void 0?title:props.Mz0wvNH6v)!==null&&_ref1!==void 0?_ref1:\"Gain Insight\",rFExBnb6h:(_ref2=number!==null&&number!==void 0?number:props.rFExBnb6h)!==null&&_ref2!==void 0?_ref2:\"03\",y33fYjAOj:(_ref3=videoURL!==null&&videoURL!==void 0?videoURL:props.y33fYjAOj)!==null&&_ref3!==void 0?_ref3:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",ZLxZW1prj:(_ref4=image!==null&&image!==void 0?image:props.ZLxZW1prj)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=1024 885w,https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=2048 1771w,https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png 1844w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rFExBnb6h,Mz0wvNH6v,kB1rNTf7X,ZLxZW1prj,y33fYjAOj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mgQpaY7KC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(y33fYjAOj);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1621ah3\",className,classNames),\"data-framer-name\":\"Approach Card\",layoutDependency:layoutDependency,layoutId:\"mgQpaY7KC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkagpy\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"cLDG28XAX\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(ZLxZW1prj)},className:\"framer-emzotn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"inemSwkGC\"}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d1oic0-container\",layoutDependency:layoutDependency,layoutId:\"KRYZ678sy-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KRYZ678sy\",isMixedBorderRadius:false,layoutId:\"KRYZ678sy\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:y33fYjAOj,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pe1wlw\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"amutuyNbq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fvq5o5\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"xA4BKTU4F\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-edoz5b\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"A4IU27TsG\",style:{backgroundColor:\"rgb(235, 236, 239)\",borderBottomLeftRadius:55,borderBottomRightRadius:55,borderTopLeftRadius:55,borderTopRightRadius:55},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",style:{\"--framer-text-alignment\":\"center\"},children:\"03\"})}),className:\"framer-69j1gw\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rFIsEqTVa\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rFExBnb6h,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Refinement\"})}),className:\"framer-1ria88n\",\"data-framer-name\":\"Refinement\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k6cbYd_ZA\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Mz0wvNH6v,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\"})}),className:\"framer-tujbi1\",\"data-framer-name\":\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PIQQv4SNF\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:kB1rNTf7X,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TkKNa.framer-a6ks7o, .framer-TkKNa .framer-a6ks7o { display: block; }\",\".framer-TkKNa.framer-1621ah3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 384px; }\",\".framer-TkKNa .framer-jkagpy { align-content: center; align-items: center; aspect-ratio: 0.9365853658536586 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 410px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TkKNa .framer-emzotn { flex: none; height: 100%; position: relative; width: 100%; z-index: 2; }\",\".framer-TkKNa .framer-d1oic0-container { flex: none; height: 100%; left: 0px; position: absolute; top: calc(49.81684981684984% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-TkKNa .framer-pe1wlw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TkKNa .framer-1fvq5o5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TkKNa .framer-edoz5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 9px 20px 9px 20px; position: relative; width: min-content; }\",\".framer-TkKNa .framer-69j1gw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TkKNa .framer-1ria88n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TkKNa .framer-tujbi1 { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TkKNa.framer-1621ah3, .framer-TkKNa .framer-jkagpy, .framer-TkKNa .framer-pe1wlw, .framer-TkKNa .framer-1fvq5o5, .framer-TkKNa .framer-edoz5b { gap: 0px; } .framer-TkKNa.framer-1621ah3 > *, .framer-TkKNa .framer-pe1wlw > *, .framer-TkKNa .framer-1fvq5o5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-TkKNa.framer-1621ah3 > :first-child, .framer-TkKNa .framer-pe1wlw > :first-child, .framer-TkKNa .framer-1fvq5o5 > :first-child { margin-top: 0px; } .framer-TkKNa.framer-1621ah3 > :last-child, .framer-TkKNa .framer-pe1wlw > :last-child, .framer-TkKNa .framer-1fvq5o5 > :last-child { margin-bottom: 0px; } .framer-TkKNa .framer-jkagpy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TkKNa .framer-jkagpy > :first-child, .framer-TkKNa .framer-edoz5b > :first-child { margin-left: 0px; } .framer-TkKNa .framer-jkagpy > :last-child, .framer-TkKNa .framer-edoz5b > :last-child { margin-right: 0px; } .framer-TkKNa .framer-edoz5b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 614.5\n * @framerIntrinsicWidth 383.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rFExBnb6h\":\"number\",\"Mz0wvNH6v\":\"title\",\"kB1rNTf7X\":\"paragraph\",\"ZLxZW1prj\":\"image\",\"y33fYjAOj\":\"videoURL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbnagblXJQ=withCSS(Component,css,\"framer-TkKNa\");export default FramerbnagblXJQ;FramerbnagblXJQ.displayName=\"About / Core Value\";FramerbnagblXJQ.defaultProps={height:614.5,width:383.5};addPropertyControls(FramerbnagblXJQ,{rFExBnb6h:{defaultValue:\"03\",displayTextArea:false,title:\"Number\",type:ControlType.String},Mz0wvNH6v:{defaultValue:\"Gain Insight\",displayTextArea:false,title:\"Title\",type:ControlType.String},kB1rNTf7X:{defaultValue:\"Every project begins with a deep dive into understanding the brand, its goals, and its audience. Through research and collaboration, this phase uncovers key insights that lay the foundation for strategic and impactful design solutions.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},ZLxZW1prj:{__defaultAssetReference:\"data:framer/asset-reference,cqfVQIgw5jhzxuDXnMuX2ze2kI.png?originalFilename=Rectangle+747814387.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},y33fYjAOj:{defaultValue:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",placeholder:\"../example.mp4\",title:\"Video URL\",type:ControlType.String}});addFonts(FramerbnagblXJQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbnagblXJQ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"614.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"rFExBnb6h\\\":\\\"number\\\",\\\"Mz0wvNH6v\\\":\\\"title\\\",\\\"kB1rNTf7X\\\":\\\"paragraph\\\",\\\"ZLxZW1prj\\\":\\\"image\\\",\\\"y33fYjAOj\\\":\\\"videoURL\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"383.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bnagblXJQ.map", "const o=e=>e;let t;var h=e=>(t||(t=o(e.createElement(\"path\",{d:\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"}),\"Home\")),t);export{h as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useMemo,useRef}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/material-icons/Home.js@0.0.32\";import{defaultEvents,useIconSelection,getIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const moduleBaseUrl=\"https://framer.com/m/material-icons/\";const icons={AcUnit:15,AccessAlarm:15,AccessAlarms:15,AccessTime:15,AccessTimeFilled:0,Accessibility:7,AccessibilityNew:0,Accessible:15,AccessibleForward:0,AccountBalance:2,AccountBalanceWallet:0,AccountBox:15,AccountCircle:7,AccountTree:15,AdUnits:15,Adb:15,Add:15,AddAPhoto:15,AddAlarm:15,AddAlert:15,AddBox:15,AddBusiness:15,AddCircle:15,AddCircleOutline:0,AddComment:15,AddIcCall:15,AddLink:15,AddLocation:15,AddLocationAlt:2,AddModerator:15,AddPhotoAlternate:0,AddReaction:15,AddRoad:15,AddShoppingCart:2,AddTask:15,AddToDrive:15,AddToHomeScreen:2,AddToPhotos:15,AddToQueue:15,Addchart:15,Adjust:15,AdminPanelSettings:0,Agriculture:15,Air:15,AirlineSeatFlat:2,AirplaneTicket:2,AirplanemodeActive:0,AirplanemodeInactive:0,Airplay:15,AirportShuttle:2,Alarm:15,AlarmAdd:15,AlarmOff:15,AlarmOn:15,Album:15,AlignHorizontalLeft:0,AlignHorizontalRight:0,AlignVerticalBottom:0,AlignVerticalCenter:0,AlignVerticalTop:0,AllInbox:15,AllInclusive:15,AllOut:15,AltRoute:15,AlternateEmail:2,Analytics:15,Anchor:15,Android:15,Animation:15,Announcement:15,Aod:15,Apartment:15,Api:15,AppBlocking:15,AppRegistration:2,AppSettingsAlt:2,Apple:0,Approval:15,Apps:15,Architecture:15,Archive:15,ArrowBack:15,ArrowBackIos:15,ArrowBackIosNew:2,ArrowCircleDown:2,ArrowCircleUp:7,ArrowDownward:7,ArrowDropDown:7,ArrowDropDownCircle:0,ArrowDropUp:15,ArrowForward:15,ArrowForwardIos:2,ArrowLeft:15,ArrowRight:15,ArrowRightAlt:7,ArrowUpward:15,ArtTrack:15,Article:15,AspectRatio:15,Assessment:15,Assignment:15,AssignmentInd:7,AssignmentLate:2,AssignmentReturn:0,AssignmentReturned:0,AssignmentTurnedIn:0,Assistant:15,AssistantDirection:0,AssistantPhoto:2,Atm:15,AttachEmail:15,AttachFile:15,AttachMoney:15,Attachment:15,Attractions:15,Attribution:15,Audiotrack:15,AutoAwesome:15,AutoAwesomeMosaic:0,AutoAwesomeMotion:0,AutoDelete:15,AutoFixHigh:15,AutoFixNormal:7,AutoFixOff:15,AutoGraph:15,AutoStories:15,AutofpsSelect:7,Autorenew:15,AvTimer:15,BabyChangingStation:0,Backpack:15,Backspace:15,Backup:15,BackupTable:15,Badge:15,BakeryDining:15,Balcony:15,Ballot:15,BarChart:15,BatchPrediction:2,Bathroom:15,Bathtub:15,Battery20:15,Battery30:15,Battery50:15,Battery60:15,Battery80:15,Battery90:15,BatteryAlert:15,BatteryCharging20:0,BatteryCharging30:0,BatteryCharging50:0,BatteryCharging60:0,BatteryCharging80:0,BatteryCharging90:0,BatteryChargingFull:0,BatteryFull:15,BatterySaver:15,BatteryStd:15,BatteryUnknown:2,BeachAccess:15,Bed:15,BedroomBaby:15,BedroomChild:15,BedroomParent:7,Bedtime:15,Beenhere:15,Bento:15,BikeScooter:15,Biotech:15,Blender:15,Block:15,Bloodtype:15,Bluetooth:15,BluetoothAudio:2,BluetoothConnected:0,BluetoothDisabled:0,BluetoothDrive:2,BluetoothSearching:0,BlurCircular:15,BlurLinear:15,BlurOff:15,BlurOn:15,Bolt:15,Book:15,BookOnline:15,Bookmark:15,BookmarkAdd:15,BookmarkAdded:7,BookmarkBorder:2,BookmarkRemove:2,Bookmarks:15,BorderAll:15,BorderBottom:15,BorderClear:15,BorderColor:15,BorderHorizontal:0,BorderInner:15,BorderLeft:15,BorderOuter:15,BorderRight:15,BorderStyle:15,BorderTop:15,BorderVertical:2,BrandingWatermark:0,BreakfastDining:2,Brightness1:15,Brightness2:15,Brightness3:15,Brightness4:15,Brightness5:15,Brightness6:15,Brightness7:15,BrightnessAuto:2,BrightnessHigh:2,BrightnessLow:7,BrightnessMedium:0,BrokenImage:15,BrowserNotSupported:0,BrunchDining:15,Brush:15,BubbleChart:15,BugReport:15,Build:15,BuildCircle:15,Bungalow:15,BurstMode:15,BusAlert:15,Business:15,BusinessCenter:2,Cabin:15,Cable:15,Cached:15,Cake:15,Calculate:15,CalendarToday:7,CalendarViewDay:2,CalendarViewMonth:0,CalendarViewWeek:0,Call:15,CallEnd:15,CallMade:15,CallMerge:15,CallMissed:15,CallMissedOutgoing:0,CallReceived:15,CallSplit:15,CallToAction:15,Camera:15,CameraAlt:15,CameraEnhance:7,CameraFront:15,CameraIndoor:15,CameraOutdoor:7,CameraRear:15,CameraRoll:15,Cameraswitch:15,Campaign:15,Cancel:15,CancelPresentation:0,CancelScheduleSend:0,CarRental:15,CarRepair:15,CardGiftcard:15,CardMembership:2,CardTravel:15,Carpenter:15,Cases:15,Casino:15,Cast:15,CastConnected:7,CastForEducation:0,CatchingPokemon:2,Category:15,Celebration:15,CellWifi:15,CenterFocusStrong:0,CenterFocusWeak:2,Chair:15,ChairAlt:15,Chalet:15,ChangeCircle:15,ChangeHistory:7,ChargingStation:2,Chat:15,ChatBubble:15,ChatBubbleOutline:0,Check:15,CheckBox:15,CheckBoxOutlineBlank:0,CheckCircle:15,CheckCircleOutline:0,Checkroom:15,ChevronLeft:15,ChevronRight:15,ChildCare:15,ChildFriendly:7,ChromeReaderMode:0,Circle:15,CircleNotifications:0,Class:15,CleanHands:15,CleaningServices:0,Clear:15,ClearAll:15,Close:15,CloseFullscreen:2,ClosedCaption:7,ClosedCaptionOff:0,Cloud:15,CloudCircle:15,CloudDone:15,CloudDownload:7,CloudOff:15,CloudQueue:15,CloudUpload:15,Code:15,CodeOff:15,Coffee:15,CoffeeMaker:15,Collections:15,CollectionsBookmark:0,ColorLens:15,Colorize:15,Comment:15,CommentBank:15,Commute:15,Compare:15,CompareArrows:7,CompassCalibration:0,Compress:15,Computer:15,ConfirmationNumber:0,ConnectedTv:15,Construction:15,ContactMail:15,ContactPage:15,ContactPhone:15,ContactSupport:2,Contactless:15,Contacts:15,ContentCopy:15,ContentCut:15,ContentPaste:15,ContentPasteOff:2,ControlCamera:7,ControlPoint:15,CopyAll:15,Copyright:15,Coronavirus:15,CorporateFare:7,Cottage:15,Countertops:15,Create:15,CreateNewFolder:2,CreditCard:15,CreditCardOff:7,CreditScore:15,Crib:15,Crop:15,Crop169:15,Crop32:15,Crop54:15,Crop75:15,CropDin:15,CropFree:15,CropLandscape:7,CropOriginal:15,CropPortrait:15,CropRotate:15,CropSquare:15,Dangerous:15,DarkMode:15,Dashboard:15,DashboardCustomize:0,DataSaverOff:15,DataSaverOn:15,DataUsage:15,DateRange:15,Deck:15,Dehaze:15,Delete:15,DeleteForever:7,DeleteOutline:7,DeleteSweep:15,DeliveryDining:2,DepartureBoard:2,Description:15,DesignServices:2,DesktopMac:15,DesktopWindows:2,Details:15,DeveloperBoard:2,DeveloperBoardOff:0,DeveloperMode:7,DeviceHub:15,DeviceThermostat:0,DeviceUnknown:7,Devices:15,DevicesOther:15,DialerSip:15,Dialpad:15,Dining:15,DinnerDining:15,Directions:15,DirectionsBike:2,DirectionsBoat:2,DirectionsBoatFilled:0,DirectionsBus:7,DirectionsBusFilled:0,DirectionsCar:7,DirectionsCarFilled:0,DirectionsOff:7,DirectionsRailway:0,DirectionsRun:7,DirectionsSubway:0,DirectionsTransit:0,DirectionsWalk:2,DirtyLens:15,DisabledByDefault:0,DiscFull:15,Dns:15,DoDisturb:15,DoDisturbAlt:15,DoDisturbOff:15,DoDisturbOn:15,DoNotDisturb:15,DoNotDisturbAlt:2,DoNotDisturbOff:2,DoNotDisturbOn:2,DoNotStep:15,DoNotTouch:15,Dock:15,DocumentScanner:2,Domain:15,DomainDisabled:2,DomainVerification:0,Done:15,DoneAll:15,DoneOutline:15,DonutLarge:15,DonutSmall:15,DoorBack:15,DoorFront:15,DoorSliding:15,Doorbell:15,DoubleArrow:15,DownhillSkiing:2,Download:15,DownloadDone:15,DownloadForOffline:0,Downloading:15,Drafts:15,DragHandle:15,DragIndicator:7,DriveEta:15,DriveFileMove:7,DriveFolderUpload:0,Dry:15,DryCleaning:15,Duo:15,Dvr:15,DynamicFeed:15,DynamicForm:15,EMobiledata:15,Earbuds:15,EarbudsBattery:2,East:15,Eco:15,EdgesensorHigh:2,EdgesensorLow:7,Edit:15,EditAttributes:2,EditLocation:15,EditLocationAlt:2,EditNotifications:0,EditOff:15,EditRoad:15,EightK:15,EightKPlus:15,EightMp:15,EightteenMp:15,Eject:15,Elderly:15,ElectricBike:15,ElectricCar:15,ElectricMoped:7,ElectricRickshaw:0,ElectricScooter:2,ElectricalServices:0,Elevator:15,ElevenMp:15,Email:15,EmojiEmotions:7,EmojiEvents:15,EmojiFlags:15,EmojiFoodBeverage:0,EmojiNature:15,EmojiObjects:15,EmojiPeople:15,EmojiSymbols:15,EmojiTransportation:0,Engineering:15,EnhancedEncryption:0,Equalizer:15,Error:15,ErrorOutline:15,Escalator:15,EscalatorWarning:0,Euro:15,EuroSymbol:15,EvStation:15,Event:15,EventAvailable:2,EventBusy:15,EventNote:15,EventSeat:15,ExitToApp:15,Expand:15,ExpandLess:15,ExpandMore:15,Explicit:15,Explore:15,ExploreOff:15,Exposure:15,Extension:15,ExtensionOff:15,Face:15,FaceRetouchingOff:0,Facebook:15,FactCheck:15,FamilyRestroom:2,FastForward:15,FastRewind:15,Fastfood:15,Favorite:15,FavoriteBorder:2,FeaturedPlayList:0,FeaturedVideo:7,Feed:15,Feedback:15,Female:15,Fence:15,Festival:15,FiberDvr:15,FiberManualRecord:0,FiberNew:15,FiberPin:15,FiberSmartRecord:0,FileCopy:15,FileDownload:15,FileDownloadDone:0,FileDownloadOff:2,FilePresent:15,FileUpload:15,Filter:15,Filter1:15,Filter2:15,Filter3:15,Filter4:15,Filter5:15,Filter6:15,Filter7:15,Filter8:15,Filter9:15,Filter9Plus:15,FilterAlt:15,FilterBAndW:15,FilterCenterFocus:0,FilterDrama:15,FilterFrames:15,FilterHdr:15,FilterList:15,FilterNone:15,FilterTiltShift:2,FilterVintage:7,FindInPage:15,FindReplace:15,Fingerprint:15,FireExtinguisher:0,Fireplace:15,FirstPage:15,FitScreen:15,FitnessCenter:7,FiveG:15,FiveK:15,FiveKPlus:15,FiveMp:15,FivteenMp:15,Flag:15,Flaky:15,Flare:15,FlashAuto:15,FlashOff:15,FlashOn:15,FlashlightOff:7,FlashlightOn:15,Flatware:15,Flight:15,FlightLand:15,FlightTakeoff:7,Flip:15,FlipCameraAndroid:0,FlipCameraIos:7,FlipToBack:15,FlipToFront:15,Flourescent:15,FlutterDash:15,FmdBad:15,FmdGood:15,Folder:15,FolderOpen:15,FolderShared:15,FolderSpecial:7,FollowTheSigns:2,FontDownload:15,FontDownloadOff:2,FoodBank:15,FormatAlignCenter:0,FormatAlignJustify:0,FormatAlignLeft:2,FormatAlignRight:0,FormatBold:15,FormatClear:15,FormatColorFill:2,FormatColorReset:0,FormatColorText:2,FormatIndentDecrease:0,FormatIndentIncrease:0,FormatItalic:15,FormatLineSpacing:0,FormatListBulleted:0,FormatListNumbered:0,FormatPaint:15,FormatQuote:15,FormatShapes:15,FormatSize:15,FormatStrikethrough:0,FormatUnderlined:0,Forum:15,Forward:15,Forward10:15,Forward30:15,Forward5:15,ForwardToInbox:2,Foundation:15,FourGMobiledata:2,FourGPlusMobiledata:0,FourK:15,FourKPlus:15,FourMp:15,FourteenMp:15,FreeBreakfast:7,Fullscreen:15,FullscreenExit:2,Functions:15,GMobiledata:15,GTranslate:15,Gamepad:15,Games:15,Garage:15,Gavel:15,Gesture:15,GetApp:15,Gif:15,GitHub:0,Gite:15,GolfCourse:15,Google:0,GppBad:15,GppGood:15,GppMaybe:15,GpsFixed:15,GpsNotFixed:15,GpsOff:15,Grade:15,Gradient:15,Grading:15,Grain:15,GraphicEq:15,Grass:15,Grid3x3:15,Grid4x4:15,GridGoldenratio:2,GridOff:15,GridOn:15,GridView:15,Group:15,GroupAdd:15,GroupWork:15,Groups:15,HMobiledata:15,HPlusMobiledata:2,Hail:15,Handyman:15,Hardware:15,Hd:15,HdrAuto:15,HdrAutoSelect:7,HdrEnhancedSelect:0,HdrOff:15,HdrOffSelect:15,HdrOn:15,HdrOnSelect:15,HdrPlus:15,HdrStrong:15,HdrWeak:15,Headphones:15,HeadphonesBattery:0,Headset:15,HeadsetMic:15,HeadsetOff:15,Healing:15,HealthAndSafety:2,Hearing:15,HearingDisabled:2,Height:15,Help:15,HelpCenter:15,HelpOutline:15,Hevc:15,HideImage:15,HideSource:15,HighQuality:15,Highlight:15,HighlightAlt:15,HighlightOff:15,Hiking:15,History:15,HistoryEdu:15,HistoryToggleOff:0,HolidayVillage:2,Home:15,HomeMax:15,HomeMini:15,HomeRepairService:0,HomeWork:15,HorizontalRule:2,HorizontalSplit:2,HotTub:15,Hotel:15,HourglassBottom:2,HourglassDisabled:0,HourglassEmpty:2,HourglassFull:7,HourglassTop:15,House:15,HouseSiding:15,Houseboat:15,HowToReg:15,HowToVote:15,Http:15,Https:15,Hvac:15,IceSkating:15,Icecream:15,Image:15,ImageAspectRatio:0,ImageNotSupported:0,ImageSearch:15,ImagesearchRoller:0,ImportContacts:2,ImportExport:15,ImportantDevices:0,Inbox:15,Info:15,Input:15,InsertChart:15,InsertComment:7,InsertDriveFile:2,InsertEmoticon:2,InsertInvitation:0,InsertLink:15,InsertPhoto:15,Insights:15,Instagram:0,Inventory:15,Inventory2:15,InvertColors:15,InvertColorsOff:2,IosShare:15,Iron:15,Iso:15,Kayaking:15,Keyboard:15,KeyboardAlt:15,KeyboardArrowDown:0,KeyboardArrowLeft:0,KeyboardArrowRight:0,KeyboardArrowUp:2,KeyboardBackspace:0,KeyboardCapslock:0,KeyboardHide:15,KeyboardReturn:2,KeyboardTab:15,KeyboardVoice:7,KingBed:15,Kitchen:15,Kitesurfing:15,Label:15,LabelImportant:2,LabelOff:15,Landscape:15,Language:15,Laptop:15,LaptopChromebook:0,LaptopMac:15,LaptopWindows:7,LastPage:15,Launch:15,Layers:15,LayersClear:15,Leaderboard:15,LeakAdd:15,LeakRemove:15,LegendToggle:15,Lens:15,LensBlur:15,LibraryAdd:15,LibraryAddCheck:2,LibraryBooks:15,LibraryMusic:15,Light:15,LightMode:15,Lightbulb:15,LineStyle:15,LineWeight:15,LinearScale:15,Link:15,LinkOff:15,LinkedCamera:15,LinkedIn:0,Liquor:15,List:15,ListAlt:15,LiveHelp:15,LiveTv:15,Living:15,LocalActivity:7,LocalAirport:15,LocalAtm:15,LocalBar:15,LocalCafe:15,LocalCarWash:15,LocalDining:15,LocalDrink:15,LocalFireDepartment:0,LocalFlorist:15,LocalGasStation:2,LocalGroceryStore:0,LocalHospital:7,LocalHotel:15,LocalLaundryService:0,LocalLibrary:15,LocalMall:15,LocalMovies:15,LocalOffer:15,LocalParking:15,LocalPharmacy:7,LocalPhone:15,LocalPizza:15,LocalPlay:15,LocalPolice:15,LocalPostOffice:2,LocalPrintshop:2,LocalSee:15,LocalShipping:7,LocalTaxi:15,LocationCity:15,LocationDisabled:0,LocationOff:15,LocationOn:15,LocationSearching:0,Lock:15,LockClock:15,LockOpen:15,Login:15,Logout:15,Looks:15,Looks3:15,Looks4:15,Looks5:15,Looks6:15,LooksOne:15,LooksTwo:15,Loop:15,Loupe:15,LowPriority:15,Loyalty:15,LteMobiledata:7,LtePlusMobiledata:0,Luggage:15,LunchDining:15,Mail:15,MailOutline:15,Male:15,ManageAccounts:2,ManageSearch:15,Map:15,MapsHomeWork:15,MapsUgc:15,Margin:15,MarkAsUnread:15,MarkChatRead:15,MarkChatUnread:2,MarkEmailRead:7,MarkEmailUnread:2,Markunread:15,MarkunreadMailbox:0,Masks:15,Maximize:15,MediaBluetoothOff:0,MediaBluetoothOn:0,Mediation:15,MedicalServices:2,Medication:15,MeetingRoom:15,Memory:15,Menu:15,MenuBook:15,MenuOpen:15,MergeType:15,Message:15,Mic:15,MicExternalOff:2,MicExternalOn:7,MicNone:15,MicOff:15,Microwave:15,MilitaryTech:15,Minimize:15,MissedVideoCall:2,Mms:15,MobileFriendly:2,MobileOff:15,MobileScreenShare:0,MobiledataOff:7,Mode:15,ModeComment:15,ModeEdit:15,ModeEditOutline:2,ModeNight:15,ModeStandby:15,ModelTraining:7,MonetizationOn:2,Money:15,MoneyOff:15,MoneyOffCsred:7,Monitor:15,MonitorWeight:7,MonochromePhotos:0,Mood:15,MoodBad:15,Moped:15,More:15,MoreHoriz:15,MoreTime:15,MoreVert:15,MotionPhotosAuto:0,MotionPhotosOff:2,Mouse:15,MoveToInbox:15,Movie:15,MovieCreation:7,MovieFilter:15,Moving:15,Mp:15,MultilineChart:2,MultipleStop:15,Museum:15,MusicNote:15,MusicOff:15,MusicVideo:15,MyLocation:15,Nat:15,Nature:15,NaturePeople:15,NavigateBefore:2,NavigateNext:15,Navigation:15,NearMe:15,NearMeDisabled:2,NearbyError:15,NearbyOff:15,NetworkCell:15,NetworkCheck:15,NetworkLocked:7,NetworkWifi:15,NewReleases:15,NextPlan:15,NextWeek:15,Nfc:15,NightShelter:15,Nightlife:15,Nightlight:15,NightlightRound:2,NightsStay:15,NineK:15,NineKPlus:15,NineMp:15,NineteenMp:15,NoAccounts:15,NoBackpack:15,NoCell:15,NoDrinks:15,NoEncryption:15,NoFlash:15,NoFood:15,NoLuggage:15,NoMeals:15,NoMeetingRoom:7,NoPhotography:7,NoSim:15,NoStroller:15,NoTransfer:15,NordicWalking:7,North:15,NorthEast:15,NorthWest:15,NotAccessible:7,NotInterested:7,NotListedLocation:0,NotStarted:15,Note:15,NoteAdd:15,NoteAlt:15,Notes:15,NotificationAdd:2,Notifications:7,NotificationsActive:0,NotificationsNone:0,NotificationsOff:0,NotificationsPaused:0,OfflineBolt:15,OfflinePin:15,OfflineShare:15,OndemandVideo:7,OneK:15,OneKPlus:15,OneKk:15,OnlinePrediction:0,Opacity:15,OpenInBrowser:7,OpenInFull:15,OpenInNew:15,OpenInNewOff:15,OpenWith:15,OtherHouses:15,Outbound:15,Outbox:15,OutdoorGrill:15,Outlet:15,Padding:15,Pages:15,Pageview:15,Paid:15,Palette:15,PanTool:15,Panorama:15,PanoramaFishEye:2,PanoramaHorizontal:0,PanoramaPhotosphere:0,PanoramaVertical:0,PanoramaWideAngle:0,Paragliding:15,Park:15,PartyMode:15,Password:15,Pattern:15,Pause:15,PauseCircle:15,PauseCircleFilled:0,PauseCircleOutline:0,PausePresentation:0,Payment:15,Payments:15,PedalBike:15,Pending:15,PendingActions:2,People:15,PeopleAlt:15,PeopleOutline:7,PermCameraMic:7,PermContactCalendar:0,PermDataSetting:2,PermIdentity:15,PermMedia:15,PermPhoneMsg:15,PermScanWifi:15,Person:15,PersonAdd:15,PersonAddAlt:15,PersonAddAlt1:7,PersonAddDisabled:0,PersonOff:15,PersonOutline:7,PersonPin:15,PersonPinCircle:2,PersonRemove:15,PersonRemoveAlt1:0,PersonSearch:15,PersonalVideo:7,PestControl:15,PestControlRodent:0,Pets:15,Phone:15,PhoneAndroid:15,PhoneCallback:7,PhoneDisabled:7,PhoneEnabled:15,PhoneForwarded:2,PhoneInTalk:15,PhoneIphone:15,PhoneLocked:15,PhoneMissed:15,PhonePaused:15,Phonelink:15,PhonelinkErase:2,PhonelinkLock:7,PhonelinkOff:15,PhonelinkRing:7,PhonelinkSetup:2,Photo:15,PhotoAlbum:15,PhotoCamera:15,PhotoCameraBack:2,PhotoCameraFront:0,PhotoFilter:15,PhotoLibrary:15,PhotoSizeSelectLarge:0,PhotoSizeSelectSmall:0,Piano:15,PianoOff:15,PictureAsPdf:15,PictureInPicture:0,PictureInPictureAlt:0,PieChart:15,PieChartOutline:2,Pin:15,PinDrop:15,Pinterest:0,PivotTableChart:2,Place:15,Plagiarism:15,PlayArrow:15,PlayCircle:15,PlayCircleFilled:0,PlayCircleOutline:0,PlayDisabled:15,PlayForWork:15,PlayLesson:15,PlaylistAdd:15,PlaylistAddCheck:0,PlaylistPlay:15,Plumbing:15,PlusOne:15,Podcasts:15,PointOfSale:15,Policy:15,Poll:15,Pool:15,PortableWifiOff:2,Portrait:15,PostAdd:15,Power:15,PowerInput:15,PowerOff:15,PowerSettingsNew:0,PregnantWoman:7,PresentToAll:15,Preview:15,PriceChange:15,PriceCheck:15,Print:15,PrintDisabled:7,PriorityHigh:15,PrivacyTip:15,Psychology:15,Public:15,PublicOff:15,Publish:15,PublishedWithChanges:0,PushPin:15,QrCode:15,QrCode2:15,QrCodeScanner:7,QueryBuilder:15,QueryStats:15,QuestionAnswer:2,Queue:15,QueueMusic:15,QueuePlayNext:7,Quickreply:15,Quiz:15,RMobiledata:15,Radar:15,Radio:15,RadioButtonChecked:0,RadioButtonUnchecked:0,RailwayAlert:15,RamenDining:15,RateReview:15,RawOff:15,RawOn:15,ReadMore:15,Receipt:15,ReceiptLong:15,RecentActors:15,Recommend:15,RecordVoiceOver:2,Reddit:0,Redeem:15,Redo:15,ReduceCapacity:2,Refresh:15,RememberMe:15,Remove:15,RemoveCircle:15,RemoveCircleOutline:0,RemoveDone:15,RemoveFromQueue:2,RemoveModerator:2,RemoveRedEye:15,RemoveShoppingCart:0,Reorder:15,Repeat:15,RepeatOn:15,RepeatOne:15,RepeatOneOn:15,Replay:15,Replay10:15,Replay30:15,Replay5:15,ReplayCircleFilled:0,Reply:15,ReplyAll:15,Report:15,ReportGmailerrorred:0,ReportOff:15,ReportProblem:7,RequestPage:15,RequestQuote:15,ResetTv:15,RestartAlt:15,Restaurant:15,RestaurantMenu:2,Restore:15,RestoreFromTrash:0,RestorePage:15,Reviews:15,RiceBowl:15,RingVolume:15,Roofing:15,Room:15,RoomPreferences:2,RoomService:15,Rotate90DegreesCcw:0,RotateLeft:15,RotateRight:15,Router:15,Rowing:15,RssFeed:15,Rsvp:15,Rtt:15,Rule:15,RuleFolder:15,RunCircle:15,RunningWithErrors:0,RvHookup:15,SafetyDivider:7,Sailing:15,Sanitizer:15,Satellite:15,Save:15,SaveAlt:15,SavedSearch:15,Savings:15,Scanner:15,ScatterPlot:15,Schedule:15,ScheduleSend:15,Schema:15,School:15,Science:15,Score:15,ScreenLockLandscape:0,ScreenLockPortrait:0,ScreenLockRotation:0,ScreenRotation:2,ScreenSearchDesktop:0,ScreenShare:15,Screenshot:15,Sd:15,SdCard:15,SdCardAlert:15,SdStorage:15,Search:15,SearchOff:15,Security:15,SecurityUpdate:2,SecurityUpdateGood:0,Segment:15,SelectAll:15,SelfImprovement:2,Sell:15,Send:15,SendAndArchive:2,SendToMobile:15,SensorDoor:15,SensorWindow:15,Sensors:15,SensorsOff:15,SentimentNeutral:0,SentimentSatisfied:0,SetMeal:15,Settings:15,SettingsApplications:0,SettingsBluetooth:0,SettingsBrightness:0,SettingsCell:15,SettingsEthernet:0,SettingsInputAntenna:0,SettingsInputHdmi:0,SettingsInputSvideo:0,SettingsOverscan:0,SettingsPhone:7,SettingsPower:7,SettingsRemote:2,SettingsSuggest:2,SettingsVoice:7,SevenK:15,SevenKPlus:15,SevenMp:15,SeventeenMp:15,Share:15,ShareLocation:7,Shield:15,Shop:15,Shop2:15,ShopTwo:15,ShoppingBag:15,ShoppingBasket:2,ShoppingCart:15,ShortText:15,Shortcut:15,ShowChart:15,Shower:15,Shuffle:15,ShuffleOn:15,ShutterSpeed:15,Sick:15,SignalCellular0Bar:0,SignalCellular1Bar:0,SignalCellular2Bar:0,SignalCellular3Bar:0,SignalCellular4Bar:0,SignalCellularAlt:0,SignalCellularNoSim:0,SignalCellularNodata:0,SignalCellularNull:0,SignalCellularOff:0,SignalWifi0Bar:2,SignalWifi1Bar:2,SignalWifi1BarLock:0,SignalWifi2Bar:2,SignalWifi2BarLock:0,SignalWifi3Bar:2,SignalWifi3BarLock:0,SignalWifi4Bar:2,SignalWifi4BarLock:0,SignalWifiBad:7,SignalWifiOff:7,SimCard:15,SimCardAlert:15,SimCardDownload:2,SingleBed:15,Sip:15,SixK:15,SixKPlus:15,SixMp:15,SixteenMp:15,SixtyFps:15,SixtyFpsSelect:2,Skateboarding:7,SkipNext:15,SkipPrevious:15,Sledding:15,Slideshow:15,SlowMotionVideo:2,SmartButton:15,SmartDisplay:15,SmartScreen:15,SmartToy:15,Smartphone:15,SmokeFree:15,SmokingRooms:15,Sms:15,SmsFailed:15,SnippetFolder:7,Snooze:15,Snowboarding:15,Snowmobile:15,Snowshoeing:15,Soap:15,SocialDistance:2,Sort:15,SortByAlpha:15,Source:15,South:15,SouthEast:15,SouthWest:15,Spa:15,SpaceBar:15,Speaker:15,SpeakerGroup:15,SpeakerNotes:15,SpeakerNotesOff:2,SpeakerPhone:15,Speed:15,Spellcheck:15,Splitscreen:15,Sports:15,SportsBar:15,SportsBaseball:2,SportsBasketball:0,SportsCricket:7,SportsEsports:7,SportsFootball:2,SportsGolf:15,SportsHandball:2,SportsHockey:15,SportsKabaddi:7,SportsMma:15,SportsMotorsports:0,SportsRugby:15,SportsScore:15,SportsSoccer:15,SportsTennis:15,SportsVolleyball:0,SquareFoot:15,StackedBarChart:2,StackedLineChart:0,Stairs:15,Star:15,StarBorder:15,StarBorderPurple500:0,StarHalf:15,StarOutline:15,StarPurple500:7,StarRate:15,Stars:15,StayCurrentLandscape:0,StayCurrentPortrait:0,StayPrimaryLandscape:0,StayPrimaryPortrait:0,StickyNote2:15,Stop:15,StopCircle:15,StopScreenShare:2,Storage:15,Store:15,StoreMallDirectory:0,Storefront:15,Storm:15,Straighten:15,Stream:15,Streetview:15,StrikethroughS:2,Stroller:15,Style:15,Subject:15,Subscript:15,Subscriptions:7,Subtitles:15,SubtitlesOff:15,Subway:15,Summarize:15,Superscript:15,SupervisedUserCircle:0,SupervisorAccount:0,Support:15,SupportAgent:15,Surfing:15,SurroundSound:7,SwapCalls:15,SwapHoriz:15,SwapHorizontalCircle:0,SwapVert:15,SwapVerticalCircle:0,Swipe:15,SwitchAccount:7,SwitchCamera:15,SwitchLeft:15,SwitchRight:15,SwitchVideo:15,Sync:15,SyncAlt:15,SyncDisabled:15,SyncProblem:15,SystemSecurityUpdate:0,SystemUpdate:15,SystemUpdateAlt:2,Tab:15,TabUnselected:7,TableChart:15,TableRows:15,TableView:15,Tablet:15,TabletAndroid:7,TabletMac:15,Tag:15,TagFaces:15,TakeoutDining:7,TapAndPlay:15,Tapas:15,Task:15,TaskAlt:15,TaxiAlert:15,Telegram:0,TenMp:15,Terrain:15,TextFields:15,TextFormat:15,TextRotateUp:15,TextRotateVertical:0,TextRotationAngleup:0,TextRotationDown:0,TextRotationNone:0,TextSnippet:15,Textsms:15,Texture:15,TheaterComedy:7,Theaters:15,Thermostat:15,ThermostatAuto:2,ThirteenMp:15,ThirtyFps:15,ThirtyFpsSelect:2,ThreeDRotation:2,ThreeGMobiledata:0,ThreeK:15,ThreeKPlus:15,ThreeMp:15,ThreeP:15,ThreeSixty:15,ThumbDown:15,ThumbDownAlt:15,ThumbDownOffAlt:2,ThumbUp:15,ThumbUpAlt:15,ThumbUpOffAlt:7,ThumbsUpDown:15,TimeToLeave:15,Timelapse:15,Timeline:15,Timer:15,Timer10:15,Timer10Select:7,Timer3:15,Timer3Select:15,TimerOff:15,TimesOneMobiledata:0,Title:15,Toc:15,Today:15,ToggleOff:15,ToggleOn:15,Toll:15,Tonality:15,Topic:15,TouchApp:15,Tour:15,Toys:15,TrackChanges:15,Traffic:15,Train:15,Tram:15,Transform:15,Transgender:15,TransitEnterexit:0,Translate:15,TravelExplore:7,TrendingDown:15,TrendingFlat:15,TrendingUp:15,TripOrigin:15,Try:15,Tty:15,Tune:15,Tungsten:15,TurnedIn:15,TurnedInNot:15,Tv:15,TvOff:15,TwelveMp:15,TwentyFourMp:15,TwentyOneMp:15,TwentyThreeMp:7,TwentyTwoMp:15,TwentyZeroMp:15,Twitter:0,TwoK:15,TwoKPlus:15,TwoMp:15,TwoWheeler:15,Umbrella:15,Unarchive:15,Undo:15,UnfoldLess:15,UnfoldMore:15,Unpublished:15,Unsubscribe:15,Upcoming:15,Update:15,UpdateDisabled:2,Upgrade:15,Upload:15,UploadFile:15,Usb:15,UsbOff:15,Verified:15,VerifiedUser:15,VerticalAlignBottom:0,VerticalAlignCenter:0,VerticalAlignTop:0,VerticalSplit:7,Vibration:15,VideoCall:15,VideoCameraBack:2,VideoCameraFront:0,VideoLabel:15,VideoLibrary:15,VideoSettings:7,VideoStable:15,Videocam:15,VideocamOff:15,VideogameAsset:2,VideogameAssetOff:0,ViewAgenda:15,ViewArray:15,ViewCarousel:15,ViewColumn:15,ViewComfy:15,ViewCompact:15,ViewDay:15,ViewHeadline:15,ViewInAr:15,ViewList:15,ViewModule:15,ViewQuilt:15,ViewSidebar:15,ViewStream:15,ViewWeek:15,Vignette:15,Villa:15,Visibility:15,VisibilityOff:7,VoiceChat:15,VoiceOverOff:15,Voicemail:15,VolumeDown:15,VolumeMute:15,VolumeOff:15,VolumeUp:15,VolunteerActivism:0,VpnKey:15,VpnLock:15,Vrpano:15,Wallpaper:15,Warning:15,WarningAmber:15,Wash:15,Watch:15,WatchLater:15,Water:15,WaterDamage:15,WaterfallChart:2,Waves:15,WbAuto:15,WbCloudy:15,WbIncandescent:2,WbIridescent:15,WbShade:15,WbSunny:15,WbTwilight:15,Wc:15,Web:15,WebAsset:15,WebAssetOff:15,Weekend:15,West:15,WhatsApp:0,Whatshot:15,WheelchairPickup:0,WhereToVote:15,Widgets:15,Wifi:15,WifiCalling:15,WifiCalling3:15,WifiLock:15,WifiOff:15,WifiProtectedSetup:0,WifiTethering:7,WifiTetheringOff:0,Window:15,WineBar:15,Work:15,WorkOff:15,WorkOutline:15,Workspaces:15,WrapText:15,WrongLocation:7,Wysiwyg:15,Yard:15,YouTube:0,YoutubeSearchedFor:0,ZoomIn:15,ZoomOut:15,ZoomOutMap:15};const iconKeys=Object.keys(icons);const weightOptions=[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\",\"Outlined\",];const styleKeyOptions={15:[...weightOptions],7:[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\"],2:[\"Filled\",\"Sharp\"]};const styleOptionPropKeys=Object.keys(styleKeyOptions).map(optionKey=>`iconStyle${optionKey}`);const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * MATERIAL\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored,style}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Get props to use for deps array\nconst styleOptionProps=styleOptionPropKeys.map(prop=>props[prop]);// Get style of icon\nconst iconStyle=useMemo(()=>{const iconStyleKey=icons[iconKey];if(!iconStyleKey)return;const activeStyle=props[`iconStyle${iconStyleKey}`];if(activeStyle===\"Filled\")return;return activeStyle;},[...styleOptionProps]);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// If bad search or doesn't exist, show null state\nif(typeof icons[iconKey]!==\"number\"){setSelectedIcon(null);return;}// Get the selected module\ntry{const style=iconStyle?iconStyle:\"\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}${style}.js@0.0.32`;// console.log(iconModuleUrl)\nconst module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey,...styleOptionProps]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined,...style},focusable:\"false\",viewBox:\"0 0 24 24\",color:color,children:SelectedIcon}):emptyState});}Icon.displayName=\"Material\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,weight:\"Filled\",mirrored:false};function hideStyleOptions(props,styleOptions){const{selectByList,iconSearch,iconSelection}=props;const styleOptionsNumber=parseInt(styleOptions);const name=getIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const icon=icons[name];if(!icon||styleOptionsNumber===0)return true;if(icon===styleOptionsNumber)return false;else return true;}addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Material site](https://fonts.google.com/icons)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...Object.keys(styleKeyOptions).reduce((result,optionKey)=>{result[`iconStyle${optionKey}`]={type:ControlType.Enum,title:\"Style\",defaultValue:\"Filled\",options:styleKeyOptions[optionKey],hidden:props=>hideStyleOptions(props,optionKey)};return result;},{}),...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Material.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"WyDMT5Sl5\",\"to3SJuATP\",\"xC9s5IZFQ\",\"lezFB8hJw\"];const serializationHash=\"framer-5BCj5\";const variantClassNames={lezFB8hJw:\"framer-v-nblr08\",to3SJuATP:\"framer-v-1bzjmg5\",WyDMT5Sl5:\"framer-v-cuxx36\",xC9s5IZFQ:\"framer-v-1hgqc4t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Cursor Grey Left\":\"lezFB8hJw\",\"Cursor Grey Right\":\"xC9s5IZFQ\",\"Cursor Left\":\"to3SJuATP\",\"Cursor Right\":\"WyDMT5Sl5\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,C1aHFofEm:tap!==null&&tap!==void 0?tap:props.C1aHFofEm,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WyDMT5Sl5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,C1aHFofEm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WyDMT5Sl5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1j0b5pp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(C1aHFofEm){const res=await C1aHFofEm(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cuxx36\",className,classNames),\"data-framer-name\":\"Cursor Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WyDMT5Sl5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1j0b5pp,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(50px)\",backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:0,WebkitBackdropFilter:\"blur(50px)\",...style},variants:{lezFB8hJw:{rotate:180},to3SJuATP:{rotate:180}},...addPropertyOverrides({lezFB8hJw:{\"data-framer-name\":\"Cursor Grey Left\"},to3SJuATP:{\"data-framer-name\":\"Cursor Left\"},xC9s5IZFQ:{\"data-framer-name\":\"Cursor Grey Right\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vs30ro-container\",layoutDependency:layoutDependency,layoutId:\"hRmy59VjY-container\",style:{opacity:1,rotate:180},variants:{lezFB8hJw:{opacity:.25},xC9s5IZFQ:{opacity:.25}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c3a55a0f-d2a0-4565-bb3a-bbd6f1087b74, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Chevron\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hRmy59VjY\",layoutId:\"hRmy59VjY\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5BCj5.framer-1dylxdt, .framer-5BCj5 .framer-1dylxdt { display: block; }\",\".framer-5BCj5.framer-cuxx36 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5BCj5 .framer-vs30ro-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5BCj5.framer-cuxx36 { gap: 0px; } .framer-5BCj5.framer-cuxx36 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5BCj5.framer-cuxx36 > :first-child { margin-left: 0px; } .framer-5BCj5.framer-cuxx36 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"to3SJuATP\":{\"layout\":[\"fixed\",\"fixed\"]},\"xC9s5IZFQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lezFB8hJw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C1aHFofEm\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerywmfPg6Td=withCSS(Component,css,\"framer-5BCj5\");export default FramerywmfPg6Td;FramerywmfPg6Td.displayName=\"Utilities / Chevron - Cursor\";FramerywmfPg6Td.defaultProps={height:30,width:30};addPropertyControls(FramerywmfPg6Td,{variant:{options:[\"WyDMT5Sl5\",\"to3SJuATP\",\"xC9s5IZFQ\",\"lezFB8hJw\"],optionTitles:[\"Cursor Right\",\"Cursor Left\",\"Cursor Grey Right\",\"Cursor Grey Left\"],title:\"Variant\",type:ControlType.Enum},C1aHFofEm:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerywmfPg6Td,[{explicitInter:true,fonts:[]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerywmfPg6Td\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"to3SJuATP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xC9s5IZFQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lezFB8hJw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"C1aHFofEm\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ywmfPg6Td.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1NH1by26SU8ILEmrzhFh/0B9ntYdouGpLoafDQvTp/bUU3wN9fx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/35lTh5dmllVLuNTYdrmy/3EeJFjOI3OXycXglPOLR/xxobpGKc2.js\";import UtilitiesChevronCursor from\"https://framerusercontent.com/modules/5iWWWB1bT64YP3mKKYSi/ZQXY3rOmGJVkhMiCArR3/ywmfPg6Td.js\";const UtilitiesChevronCursorFonts=getFonts(UtilitiesChevronCursor);const cycleOrder=[\"OGufm1PK7\",\"gZrR_wNEe\",\"Nz4MOnU5b\",\"UyPUKQvBu\",\"u8lbWYdKm\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"];const serializationHash=\"framer-KJ2w3\";const variantClassNames={gZrR_wNEe:\"framer-v-p7k4a7\",nfIH1Lex6:\"framer-v-1p4kj45\",Nz4MOnU5b:\"framer-v-i5zk0u\",OGufm1PK7:\"framer-v-o7ut5h\",Pct_HBONR:\"framer-v-yra54q\",u8lbWYdKm:\"framer-v-1jv3kvc\",UyPUKQvBu:\"framer-v-1xkgne\",X49Pc4fS1:\"framer-v-1m3mjdh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:.2,duration:.4,ease:[0,0,1,1],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 humanReadableVariantMap={\"Slide 1\":\"OGufm1PK7\",\"Slide 2\":\"gZrR_wNEe\",\"Slide 3\":\"Nz4MOnU5b\",\"Slide 4\":\"UyPUKQvBu\",\"Tablet 1\":\"u8lbWYdKm\",\"Tablet 2\":\"Pct_HBONR\",\"Tablet 3\":\"nfIH1Lex6\",\"Tablet 4\":\"X49Pc4fS1\"};const getProps=({cursorEndLeft,cursorLeft,cursorRight,height,id,image1,image2,image3,image4,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,BwmASNSxY:(_ref=image2!==null&&image2!==void 0?image2:props.BwmASNSxY)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/nNCyCPdGshL81u34qVwK6jPzAso.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nNCyCPdGshL81u34qVwK6jPzAso.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/nNCyCPdGshL81u34qVwK6jPzAso.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/nNCyCPdGshL81u34qVwK6jPzAso.jpg 1920w\"},kBM7Fv7NS:cursorEndLeft!==null&&cursorEndLeft!==void 0?cursorEndLeft:props.kBM7Fv7NS,ObBlL2Bkk:cursorLeft!==null&&cursorLeft!==void 0?cursorLeft:props.ObBlL2Bkk,subcL21wx:(_ref1=image1!==null&&image1!==void 0?image1:props.subcL21wx)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/3FfagizkSDELNwWIPRv2AZGWPo.png?scale-down-to=512\"},V82VkGTJX:(_ref2=image4!==null&&image4!==void 0?image4:props.V82VkGTJX)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/BYQAIfNLqyQKTntpQcyoJwwH8wQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BYQAIfNLqyQKTntpQcyoJwwH8wQ.png?scale-down-to=1024 989w,https://framerusercontent.com/images/BYQAIfNLqyQKTntpQcyoJwwH8wQ.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/BYQAIfNLqyQKTntpQcyoJwwH8wQ.png 2324w\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"OGufm1PK7\",VcuWulVmE:(_ref4=image3!==null&&image3!==void 0?image3:props.VcuWulVmE)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/PgAyl84UJURb9BCPOfB9Y3302U.jpg?scale-down-to=512\"},xSoFtQf1E:cursorRight!==null&&cursorRight!==void 0?cursorRight:props.xSoFtQf1E};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,subcL21wx,BwmASNSxY,VcuWulVmE,V82VkGTJX,ObBlL2Bkk,xSoFtQf1E,kBM7Fv7NS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OGufm1PK7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearsrd0iv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gZrR_wNEe\"),5e3);});const onAppear1fnafab=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OGufm1PK7\"),5e3);});const onAppearwptwzl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Pct_HBONR\"),5e3);});const onAppear1gda7rf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nfIH1Lex6\"),5e3);});const onAppear1htt72s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"X49Pc4fS1\"),5e3);});const onAppeargjzfwm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"u8lbWYdKm\"),5e3);});const onTap1updlcu=activeVariantCallback(async(...args)=>{setVariant(\"gZrR_wNEe\");});const onTaprycw1u=activeVariantCallback(async(...args)=>{setVariant(\"Nz4MOnU5b\");});const onTap1hx5aqe=activeVariantCallback(async(...args)=>{setVariant(\"Pct_HBONR\");});const onTap13hko33=activeVariantCallback(async(...args)=>{setVariant(\"nfIH1Lex6\");});const onTapbza0uy=activeVariantCallback(async(...args)=>{setVariant(\"X49Pc4fS1\");});const onTap1i3ppsl=activeVariantCallback(async(...args)=>{setVariant(\"OGufm1PK7\");});const onTap24r2x6=activeVariantCallback(async(...args)=>{setVariant(\"u8lbWYdKm\");});useOnVariantChange(baseVariant,{default:onAppearsrd0iv,gZrR_wNEe:onAppear1fnafab,nfIH1Lex6:onAppear1htt72s,Pct_HBONR:onAppear1gda7rf,u8lbWYdKm:onAppearwptwzl,X49Pc4fS1:onAppeargjzfwm});const isDisplayed=()=>{if([\"Nz4MOnU5b\",\"UyPUKQvBu\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const isDisplayed1=()=>{if([\"u8lbWYdKm\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"gZrR_wNEe\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-o7ut5h\",className,classNames),\"data-framer-name\":\"Slide 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OGufm1PK7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gZrR_wNEe:{\"data-framer-name\":\"Slide 2\"},nfIH1Lex6:{\"data-framer-name\":\"Tablet 3\"},Pct_HBONR:{\"data-framer-name\":\"Tablet 2\"},u8lbWYdKm:{\"data-framer-name\":\"Tablet 1\"},X49Pc4fS1:{\"data-framer-name\":\"Tablet 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eepakn\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"KysWqqsra\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-itkka9\",\"data-framer-cursor\":xSoFtQf1E,\"data-framer-name\":\"Cursor Hover - Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ogppCplnb\",onTap:onTap1updlcu,...addPropertyOverrides({gZrR_wNEe:{onTap:onTaprycw1u},nfIH1Lex6:{onTap:onTapbza0uy},Pct_HBONR:{onTap:onTap13hko33},u8lbWYdKm:{onTap:onTap1hx5aqe},X49Pc4fS1:{\"data-framer-cursor\":undefined,\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w51wj2\",\"data-framer-cursor\":kBM7Fv7NS,\"data-framer-name\":\"Cursor Hover - Left\",layoutDependency:layoutDependency,layoutId:\"BZ9W_HTFn\",...addPropertyOverrides({gZrR_wNEe:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap1i3ppsl},nfIH1Lex6:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap1hx5aqe},Pct_HBONR:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap24r2x6},X49Pc4fS1:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap13hko33}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pk6soq\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"xRx5pS2Gf\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-490)/2)+0+490-490),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(subcL21wx)},className:\"framer-q6z16p\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"sOde_wnGI\",...addPropertyOverrides({nfIH1Lex6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(subcL21wx)}},Pct_HBONR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(subcL21wx)}},u8lbWYdKm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+324-324),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(subcL21wx)}},X49Pc4fS1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(subcL21wx)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-490)/2)+0+490-490),pixelHeight:4746,pixelWidth:3575,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}},className:\"framer-dl0zbv\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"KrOE5su4r\",...addPropertyOverrides({gZrR_wNEe:{background:{alt:\"\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-490)/2)+0+490-490),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}}},nfIH1Lex6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:4746,pixelWidth:3575,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}}},Pct_HBONR:{background:{alt:\"\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}}},u8lbWYdKm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+324-324),pixelHeight:4746,pixelWidth:3575,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}}},X49Pc4fS1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4746,intrinsicWidth:3575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:4746,pixelWidth:3575,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(BwmASNSxY),...{positionX:\"center\",positionY:\"bottom\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5848,intrinsicWidth:3904,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-490)/2)+0+490-490),pixelHeight:5848,pixelWidth:3904,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(VcuWulVmE)},className:\"framer-1bmbqm4\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"JGZ6jgvkz\",...addPropertyOverrides({nfIH1Lex6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5848,intrinsicWidth:3904,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:5848,pixelWidth:3904,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(VcuWulVmE)}},Pct_HBONR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5848,intrinsicWidth:3904,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:5848,pixelWidth:3904,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(VcuWulVmE)}},u8lbWYdKm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5848,intrinsicWidth:3904,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+324-324),pixelHeight:5848,pixelWidth:3904,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(VcuWulVmE)}},X49Pc4fS1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5848,intrinsicWidth:3904,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:5848,pixelWidth:3904,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(VcuWulVmE)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4670,intrinsicWidth:3736,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-490)/2)+0+490-490),pixelHeight:4670,pixelWidth:3736,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,...toResponsiveImage(V82VkGTJX)},className:\"framer-2es1e1\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"fNvCD83Gp\",...addPropertyOverrides({nfIH1Lex6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4670,intrinsicWidth:3736,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:4670,pixelWidth:3736,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(V82VkGTJX)}},Pct_HBONR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4670,intrinsicWidth:3736,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:4670,pixelWidth:3736,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(V82VkGTJX)}},u8lbWYdKm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4670,intrinsicWidth:3736,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+324-324),pixelHeight:4670,pixelWidth:3736,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(V82VkGTJX)}},X49Pc4fS1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4670,intrinsicWidth:3736,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+320-320),pixelHeight:4670,pixelWidth:3736,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,...toResponsiveImage(V82VkGTJX)}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({nfIH1Lex6:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006},Pct_HBONR:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006},u8lbWYdKm:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+147.00000000000009},X49Pc4fS1:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yyf498-container\",layoutDependency:layoutDependency,layoutId:\"JY_ikNdlO-container\",style:{opacity:0},variants:{nfIH1Lex6:{opacity:1},Pct_HBONR:{opacity:1},u8lbWYdKm:{opacity:1},X49Pc4fS1:{opacity:1}},children:/*#__PURE__*/_jsx(UtilitiesChevronCursor,{height:\"100%\",id:\"JY_ikNdlO\",layoutId:\"JY_ikNdlO\",style:{height:\"100%\",width:\"100%\"},variant:\"to3SJuATP\",width:\"100%\",...addPropertyOverrides({u8lbWYdKm:{variant:\"lezFB8hJw\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({nfIH1Lex6:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006},Pct_HBONR:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006},u8lbWYdKm:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-324)/2)+0+147.00000000000009},X49Pc4fS1:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||324)-0-320)/2)+0+145.00000000000006}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14lgqaz-container\",layoutDependency:layoutDependency,layoutId:\"j8fSh5r6q-container\",children:/*#__PURE__*/_jsx(UtilitiesChevronCursor,{height:\"100%\",id:\"j8fSh5r6q\",layoutId:\"j8fSh5r6q\",style:{height:\"100%\",width:\"100%\"},variant:\"WyDMT5Sl5\",width:\"100%\",...addPropertyOverrides({X49Pc4fS1:{variant:\"xC9s5IZFQ\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1etietn\",\"data-framer-name\":\"Slider Wrapper\",layoutDependency:layoutDependency,layoutId:\"gJ2nQFnw7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3lh1w\",\"data-framer-name\":\"Testimonial Container\",layoutDependency:layoutDependency,layoutId:\"S9pjJZzuE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7iiuj\",\"data-framer-name\":\"Testimonial 1\",layoutDependency:layoutDependency,layoutId:\"rfm2lbuPz\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:0},Pct_HBONR:{opacity:0},X49Pc4fS1:{opacity:0}},children:[/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({gZrR_wNEe:{value:transition3},nfIH1Lex6:{value:transition3},Pct_HBONR:{value:transition3},X49Pc4fS1:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"After four years of collaboration, I continue to be impressed by Dennis\u2019 ability to uncover fresh perspectives and innovative tools to elevate our brand experience. His contributions have been pivotal in shaping the brand\u2019s expression to what it is today.\"'})}),className:\"framer-1l68bh2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hZ5kM15y1\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{gZrR_wNEe:{opacity:0},Pct_HBONR:{opacity:0},X49Pc4fS1:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({gZrR_wNEe:{value:transition3},nfIH1Lex6:{value:transition3},Pct_HBONR:{value:transition3},X49Pc4fS1:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p6y29k\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"PQ9FHePpU\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},Pct_HBONR:{opacity:0},X49Pc4fS1:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Vincent Laine\"})}),className:\"framer-102xsdz\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fV3W41mDy\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Head of Design, Db\"})}),className:\"framer-qfvok4\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mfW7Czzb4\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s3jcf\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"deTqwMNHu\",style:{opacity:1},variants:{nfIH1Lex6:{opacity:0},X49Pc4fS1:{opacity:0}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({gZrR_wNEe:{value:transition2},Pct_HBONR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Over the past year we have re-imagined the direction of the business. Dennis has been diligent in his approach ensuring that everything from sales tools to marketing assets are both beautifully designed and built to scale.\"'})}),className:\"framer-1ym10j7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nz7qZBLph\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{gZrR_wNEe:{opacity:1},Pct_HBONR:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gZrR_wNEe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Over the past years we have re-imagined the direction of the business. Dennis has been diligent in his approach ensuring that everything from sales tools to marketing assets are both beautifully designed and built to scale.\"'})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({gZrR_wNEe:{value:transition2},Pct_HBONR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10evknl\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"SKOvDWa02\",style:{opacity:0},variants:{gZrR_wNEe:{opacity:1},Pct_HBONR:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Jonathan Weaver\"})}),className:\"framer-uhlaxp\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qvFfbVBGa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"CMO, Db\"})}),className:\"framer-1e56wy2\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JWveVDKjT\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13hwg0x\",\"data-framer-name\":\"Testimonial 3\",layoutDependency:layoutDependency,layoutId:\"nccruNJML\",style:{opacity:0},variants:{nfIH1Lex6:{opacity:1}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({nfIH1Lex6:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Collaborating with In-House was a pure joy! They paid attention to our needs and transformed our concepts into a breathtaking actuality. Their ideas and originality in their designs sincerely distinguish them.\"'})}),className:\"framer-xcbvnq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uinqHECRD\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{nfIH1Lex6:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({nfIH1Lex6:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fsuedj\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"jCfQ4aM9s\",style:{opacity:0},variants:{nfIH1Lex6:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Nick White\"})}),className:\"framer-1nl7c9o\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jTSQzIPAA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Founder of Sensa\"})}),className:\"framer-kkt640\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DOwIIgm6W\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drocc1\",\"data-framer-name\":\"Testimonial 4\",layoutDependency:layoutDependency,layoutId:\"jFZjM32Vv\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:0},Pct_HBONR:{opacity:0}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({X49Pc4fS1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"Even after a four-year-long collaboration, Dennis' talent in unveiling fresh perspectives and innovative instruments for bolstering our brand's story consistently astonishes me. His contributions have been pivotal in shaping the brand's depiction to what it is today.\"})}),className:\"framer-1ard1ys\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QlymaJRfc\",onTap:onTap1i3ppsl,style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{X49Pc4fS1:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({X49Pc4fS1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eum4kx\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"T7OjdSwYv\",style:{opacity:0},variants:{X49Pc4fS1:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Vincent Laine\"})}),className:\"framer-1ew62ir\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bpz_GguK7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Head of Design, Sony\"})}),className:\"framer-1dkup9p\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AUkqa_KKG\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k6bnj9\",\"data-framer-name\":\"Controls\",layoutDependency:layoutDependency,layoutId:\"SrJLdRhgx\",style:{backgroundColor:\"rgb(243, 243, 245)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8co0s3\",\"data-framer-name\":\"Dot 1\",layoutDependency:layoutDependency,layoutId:\"x__zR5Mv7\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{gZrR_wNEe:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},nfIH1Lex6:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},Pct_HBONR:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},X49Pc4fS1:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}},...addPropertyOverrides({gZrR_wNEe:{\"data-highlight\":true,onTap:onTap1i3ppsl},nfIH1Lex6:{\"data-highlight\":true,onTap:onTap24r2x6},Pct_HBONR:{\"data-highlight\":true,onTap:onTap24r2x6},X49Pc4fS1:{\"data-highlight\":true,onTap:onTap24r2x6}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tr9v6p\",\"data-framer-name\":\"Dot 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PPfNR46yO\",onTap:onTap1updlcu,style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{gZrR_wNEe:{backgroundColor:\"rgb(0, 0, 0)\"},Pct_HBONR:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({nfIH1Lex6:{onTap:onTap1hx5aqe},Pct_HBONR:{\"data-highlight\":undefined,onTap:undefined},u8lbWYdKm:{onTap:onTap1hx5aqe},X49Pc4fS1:{onTap:onTap1hx5aqe}},baseVariant,gestureVariant)})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KJ2w3.framer-dfgu2y, .framer-KJ2w3 .framer-dfgu2y { display: block; }\",\".framer-KJ2w3.framer-o7ut5h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1170px; }\",\".framer-KJ2w3 .framer-1eepakn { align-content: center; align-items: center; aspect-ratio: 1.183673469387755 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 490px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KJ2w3 .framer-itkka9 { bottom: 0px; cursor: pointer; flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; width: 49%; z-index: 2; }\",\".framer-KJ2w3 .framer-1w51wj2 { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 51%; z-index: 3; }\",\".framer-KJ2w3 .framer-1pk6soq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KJ2w3 .framer-q6z16p { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-KJ2w3 .framer-dl0zbv { bottom: 0px; flex: none; height: 100%; left: calc(150.00000000000003% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-KJ2w3 .framer-1bmbqm4 { bottom: 0px; flex: none; height: 100%; left: calc(250% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-KJ2w3 .framer-2es1e1 { bottom: 0px; flex: none; height: 100%; left: calc(350% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-KJ2w3 .framer-yyf498-container { flex: none; height: 30px; left: 10px; position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; z-index: 1; }\",\".framer-KJ2w3 .framer-14lgqaz-container { flex: none; height: 30px; position: absolute; right: 10px; top: calc(50.00000000000002% - 30px / 2); width: 30px; z-index: 1; }\",\".framer-KJ2w3 .framer-1etietn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KJ2w3 .framer-1c3lh1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 252px; overflow: visible; padding: 0px; position: relative; width: 420px; }\",\".framer-KJ2w3 .framer-1k7iiuj, .framer-KJ2w3 .framer-1s3jcf, .framer-KJ2w3 .framer-13hwg0x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 1px; width: 420px; z-index: 1; }\",\".framer-KJ2w3 .framer-1l68bh2, .framer-KJ2w3 .framer-1ym10j7, .framer-KJ2w3 .framer-xcbvnq, .framer-KJ2w3 .framer-1ew62ir, .framer-KJ2w3 .framer-1dkup9p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KJ2w3 .framer-p6y29k, .framer-KJ2w3 .framer-10evknl, .framer-KJ2w3 .framer-fsuedj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KJ2w3 .framer-102xsdz, .framer-KJ2w3 .framer-qfvok4, .framer-KJ2w3 .framer-uhlaxp, .framer-KJ2w3 .framer-1e56wy2, .framer-KJ2w3 .framer-1nl7c9o, .framer-KJ2w3 .framer-kkt640 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KJ2w3 .framer-drocc1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 1px; width: 420px; z-index: 1; }\",\".framer-KJ2w3 .framer-1ard1ys { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KJ2w3 .framer-1eum4kx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KJ2w3 .framer-k6bnj9 { align-content: flex-start; align-items: flex-start; bottom: -70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 7px 10px 7px 10px; position: absolute; width: min-content; z-index: 9; }\",\".framer-KJ2w3 .framer-8co0s3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 7px; }\",\".framer-KJ2w3 .framer-tr9v6p { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 7px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-o7ut5h, .framer-KJ2w3 .framer-1eepakn, .framer-KJ2w3 .framer-1pk6soq, .framer-KJ2w3 .framer-1etietn, .framer-KJ2w3 .framer-1c3lh1w, .framer-KJ2w3 .framer-1k7iiuj, .framer-KJ2w3 .framer-p6y29k, .framer-KJ2w3 .framer-1s3jcf, .framer-KJ2w3 .framer-10evknl, .framer-KJ2w3 .framer-13hwg0x, .framer-KJ2w3 .framer-fsuedj, .framer-KJ2w3 .framer-drocc1, .framer-KJ2w3 .framer-1eum4kx, .framer-KJ2w3 .framer-k6bnj9 { gap: 0px; } .framer-KJ2w3.framer-o7ut5h > *, .framer-KJ2w3 .framer-1pk6soq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KJ2w3.framer-o7ut5h > :first-child, .framer-KJ2w3 .framer-1eepakn > :first-child, .framer-KJ2w3 .framer-1pk6soq > :first-child, .framer-KJ2w3 .framer-1c3lh1w > :first-child, .framer-KJ2w3 .framer-k6bnj9 > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-o7ut5h > :last-child, .framer-KJ2w3 .framer-1eepakn > :last-child, .framer-KJ2w3 .framer-1pk6soq > :last-child, .framer-KJ2w3 .framer-1c3lh1w > :last-child, .framer-KJ2w3 .framer-k6bnj9 > :last-child { margin-right: 0px; } .framer-KJ2w3 .framer-1eepakn > *, .framer-KJ2w3 .framer-1c3lh1w > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3 .framer-1etietn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KJ2w3 .framer-1etietn > :first-child, .framer-KJ2w3 .framer-1k7iiuj > :first-child, .framer-KJ2w3 .framer-p6y29k > :first-child, .framer-KJ2w3 .framer-1s3jcf > :first-child, .framer-KJ2w3 .framer-10evknl > :first-child, .framer-KJ2w3 .framer-13hwg0x > :first-child, .framer-KJ2w3 .framer-fsuedj > :first-child, .framer-KJ2w3 .framer-drocc1 > :first-child, .framer-KJ2w3 .framer-1eum4kx > :first-child { margin-top: 0px; } .framer-KJ2w3 .framer-1etietn > :last-child, .framer-KJ2w3 .framer-1k7iiuj > :last-child, .framer-KJ2w3 .framer-p6y29k > :last-child, .framer-KJ2w3 .framer-1s3jcf > :last-child, .framer-KJ2w3 .framer-10evknl > :last-child, .framer-KJ2w3 .framer-13hwg0x > :last-child, .framer-KJ2w3 .framer-fsuedj > :last-child, .framer-KJ2w3 .framer-drocc1 > :last-child, .framer-KJ2w3 .framer-1eum4kx > :last-child { margin-bottom: 0px; } .framer-KJ2w3 .framer-1k7iiuj > *, .framer-KJ2w3 .framer-1s3jcf > *, .framer-KJ2w3 .framer-13hwg0x > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-KJ2w3 .framer-p6y29k > *, .framer-KJ2w3 .framer-10evknl > *, .framer-KJ2w3 .framer-fsuedj > *, .framer-KJ2w3 .framer-1eum4kx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KJ2w3 .framer-drocc1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-KJ2w3 .framer-k6bnj9 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-1w51wj2, .framer-KJ2w3.framer-v-p7k4a7 .framer-8co0s3, .framer-KJ2w3.framer-v-yra54q .framer-1w51wj2, .framer-KJ2w3.framer-v-yra54q .framer-8co0s3, .framer-KJ2w3.framer-v-1p4kj45 .framer-1w51wj2, .framer-KJ2w3.framer-v-1p4kj45 .framer-8co0s3, .framer-KJ2w3.framer-v-1m3mjdh .framer-1w51wj2, .framer-KJ2w3.framer-v-1m3mjdh .framer-8co0s3 { cursor: pointer; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-1pk6soq, .framer-KJ2w3.framer-v-yra54q .framer-1pk6soq, .framer-KJ2w3.framer-v-1p4kj45 .framer-1pk6soq, .framer-KJ2w3.framer-v-1m3mjdh .framer-1pk6soq { gap: 0px; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-q6z16p, .framer-KJ2w3.framer-v-yra54q .framer-q6z16p { left: calc(-49.99999999999998% - 100% / 2); order: 0; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-dl0zbv, .framer-KJ2w3.framer-v-yra54q .framer-dl0zbv { left: calc(50.00000000000002% - 100% / 2); order: 1; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-1bmbqm4, .framer-KJ2w3.framer-v-yra54q .framer-1bmbqm4 { left: calc(150.00000000000003% - 100% / 2); order: 2; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-2es1e1, .framer-KJ2w3.framer-v-yra54q .framer-2es1e1 { left: calc(250% - 100% / 2); order: 3; }\",\".framer-KJ2w3.framer-v-p7k4a7 .framer-1c3lh1w { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-v-p7k4a7 .framer-1pk6soq { gap: 0px; } .framer-KJ2w3.framer-v-p7k4a7 .framer-1pk6soq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3.framer-v-p7k4a7 .framer-1pk6soq > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-v-p7k4a7 .framer-1pk6soq > :last-child { margin-right: 0px; } }\",\".framer-KJ2w3.framer-v-1jv3kvc.framer-o7ut5h, .framer-KJ2w3.framer-v-yra54q.framer-o7ut5h, .framer-KJ2w3.framer-v-1p4kj45.framer-o7ut5h, .framer-KJ2w3.framer-v-1m3mjdh.framer-o7ut5h { gap: 0px; width: 780px; }\",\".framer-KJ2w3.framer-v-1jv3kvc .framer-1eepakn { aspect-ratio: 1.2037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 324px); }\",\".framer-KJ2w3.framer-v-1jv3kvc .framer-1pk6soq { flex: 1 0 0px; width: 1px; }\",\".framer-KJ2w3.framer-v-1jv3kvc .framer-1c3lh1w, .framer-KJ2w3.framer-v-1jv3kvc .framer-1k7iiuj, .framer-KJ2w3.framer-v-1jv3kvc .framer-1s3jcf, .framer-KJ2w3.framer-v-yra54q .framer-1k7iiuj, .framer-KJ2w3.framer-v-yra54q .framer-1s3jcf, .framer-KJ2w3.framer-v-yra54q .framer-13hwg0x, .framer-KJ2w3.framer-v-yra54q .framer-drocc1, .framer-KJ2w3.framer-v-1p4kj45 .framer-1k7iiuj, .framer-KJ2w3.framer-v-1p4kj45 .framer-1s3jcf, .framer-KJ2w3.framer-v-1p4kj45 .framer-13hwg0x, .framer-KJ2w3.framer-v-1p4kj45 .framer-drocc1, .framer-KJ2w3.framer-v-1m3mjdh .framer-1k7iiuj, .framer-KJ2w3.framer-v-1m3mjdh .framer-1s3jcf, .framer-KJ2w3.framer-v-1m3mjdh .framer-13hwg0x, .framer-KJ2w3.framer-v-1m3mjdh .framer-drocc1 { width: 320px; }\",\".framer-KJ2w3.framer-v-1jv3kvc .framer-k6bnj9, .framer-KJ2w3.framer-v-yra54q .framer-k6bnj9, .framer-KJ2w3.framer-v-1p4kj45 .framer-k6bnj9, .framer-KJ2w3.framer-v-1m3mjdh .framer-k6bnj9 { bottom: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-v-1jv3kvc.framer-o7ut5h { gap: 0px; } .framer-KJ2w3.framer-v-1jv3kvc.framer-o7ut5h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3.framer-v-1jv3kvc.framer-o7ut5h > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-v-1jv3kvc.framer-o7ut5h > :last-child { margin-right: 0px; } }\",\".framer-KJ2w3.framer-v-yra54q .framer-1eepakn, .framer-KJ2w3.framer-v-1p4kj45 .framer-1eepakn, .framer-KJ2w3.framer-v-1m3mjdh .framer-1eepakn { aspect-ratio: 1.203125 / 1; height: var(--framer-aspect-ratio-supported, 324px); }\",\".framer-KJ2w3.framer-v-yra54q .framer-yyf498-container, .framer-KJ2w3.framer-v-1p4kj45 .framer-yyf498-container, .framer-KJ2w3.framer-v-1m3mjdh .framer-yyf498-container { order: 4; }\",\".framer-KJ2w3.framer-v-yra54q .framer-14lgqaz-container, .framer-KJ2w3.framer-v-1p4kj45 .framer-14lgqaz-container, .framer-KJ2w3.framer-v-1m3mjdh .framer-14lgqaz-container { order: 5; }\",\".framer-KJ2w3.framer-v-yra54q .framer-1c3lh1w, .framer-KJ2w3.framer-v-1p4kj45 .framer-1c3lh1w, .framer-KJ2w3.framer-v-1m3mjdh .framer-1c3lh1w { order: 0; width: 320px; }\",\".framer-KJ2w3.framer-v-yra54q .framer-tr9v6p, .framer-KJ2w3.framer-v-1m3mjdh .framer-itkka9 { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-v-yra54q.framer-o7ut5h, .framer-KJ2w3.framer-v-yra54q .framer-1pk6soq { gap: 0px; } .framer-KJ2w3.framer-v-yra54q.framer-o7ut5h > *, .framer-KJ2w3.framer-v-yra54q .framer-1pk6soq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3.framer-v-yra54q.framer-o7ut5h > :first-child, .framer-KJ2w3.framer-v-yra54q .framer-1pk6soq > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-v-yra54q.framer-o7ut5h > :last-child, .framer-KJ2w3.framer-v-yra54q .framer-1pk6soq > :last-child { margin-right: 0px; } }\",\".framer-KJ2w3.framer-v-1p4kj45 .framer-q6z16p { left: calc(-149.99999999999997% - 100% / 2); order: 0; }\",\".framer-KJ2w3.framer-v-1p4kj45 .framer-dl0zbv { left: calc(-49.99999999999998% - 100% / 2); order: 1; }\",\".framer-KJ2w3.framer-v-1p4kj45 .framer-1bmbqm4 { left: calc(50.00000000000002% - 100% / 2); order: 2; }\",\".framer-KJ2w3.framer-v-1p4kj45 .framer-2es1e1 { left: calc(150.00000000000003% - 100% / 2); order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-v-1p4kj45.framer-o7ut5h, .framer-KJ2w3.framer-v-1p4kj45 .framer-1pk6soq { gap: 0px; } .framer-KJ2w3.framer-v-1p4kj45.framer-o7ut5h > *, .framer-KJ2w3.framer-v-1p4kj45 .framer-1pk6soq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3.framer-v-1p4kj45.framer-o7ut5h > :first-child, .framer-KJ2w3.framer-v-1p4kj45 .framer-1pk6soq > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-v-1p4kj45.framer-o7ut5h > :last-child, .framer-KJ2w3.framer-v-1p4kj45 .framer-1pk6soq > :last-child { margin-right: 0px; } }\",\".framer-KJ2w3.framer-v-1m3mjdh .framer-q6z16p { left: calc(-250% - 100% / 2); order: 0; }\",\".framer-KJ2w3.framer-v-1m3mjdh .framer-dl0zbv { left: calc(-149.99999999999997% - 100% / 2); order: 1; }\",\".framer-KJ2w3.framer-v-1m3mjdh .framer-1bmbqm4 { left: calc(-49.99999999999998% - 100% / 2); order: 2; }\",\".framer-KJ2w3.framer-v-1m3mjdh .framer-2es1e1 { left: calc(50.00000000000002% - 100% / 2); order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2w3.framer-v-1m3mjdh.framer-o7ut5h, .framer-KJ2w3.framer-v-1m3mjdh .framer-1pk6soq { gap: 0px; } .framer-KJ2w3.framer-v-1m3mjdh.framer-o7ut5h > *, .framer-KJ2w3.framer-v-1m3mjdh .framer-1pk6soq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2w3.framer-v-1m3mjdh.framer-o7ut5h > :first-child, .framer-KJ2w3.framer-v-1m3mjdh .framer-1pk6soq > :first-child { margin-left: 0px; } .framer-KJ2w3.framer-v-1m3mjdh.framer-o7ut5h > :last-child, .framer-KJ2w3.framer-v-1m3mjdh .framer-1pk6soq > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 490\n * @framerIntrinsicWidth 1170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gZrR_wNEe\":{\"layout\":[\"fixed\",\"auto\"]},\"Nz4MOnU5b\":{\"layout\":[\"fixed\",\"auto\"]},\"UyPUKQvBu\":{\"layout\":[\"fixed\",\"auto\"]},\"u8lbWYdKm\":{\"layout\":[\"fixed\",\"auto\"]},\"Pct_HBONR\":{\"layout\":[\"fixed\",\"auto\"]},\"nfIH1Lex6\":{\"layout\":[\"fixed\",\"auto\"]},\"X49Pc4fS1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"subcL21wx\":\"image1\",\"BwmASNSxY\":\"image2\",\"VcuWulVmE\":\"image3\",\"V82VkGTJX\":\"image4\",\"ObBlL2Bkk\":\"cursorLeft\",\"xSoFtQf1E\":\"cursorRight\",\"kBM7Fv7NS\":\"cursorEndLeft\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGmJX9wZ_Z=withCSS(Component,css,\"framer-KJ2w3\");export default FramerGmJX9wZ_Z;FramerGmJX9wZ_Z.displayName=\"About / Testimonial Slider\";FramerGmJX9wZ_Z.defaultProps={height:490,width:1170};addPropertyControls(FramerGmJX9wZ_Z,{variant:{options:[\"OGufm1PK7\",\"gZrR_wNEe\",\"Nz4MOnU5b\",\"UyPUKQvBu\",\"u8lbWYdKm\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"],optionTitles:[\"Slide 1\",\"Slide 2\",\"Slide 3\",\"Slide 4\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\",\"Tablet 4\"],title:\"Variant\",type:ControlType.Enum},subcL21wx:{__defaultAssetReference:\"data:framer/asset-reference,3FfagizkSDELNwWIPRv2AZGWPo.png?originalFilename=Rectangle+747814413.png&preferredSize=small\",title:\"Image 1\",type:ControlType.ResponsiveImage},BwmASNSxY:{__defaultAssetReference:\"data:framer/asset-reference,nNCyCPdGshL81u34qVwK6jPzAso.jpg?originalFilename=sayan-majhi-KKM8XwL6n2A-unsplash+%281%29.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},VcuWulVmE:{__defaultAssetReference:\"data:framer/asset-reference,PgAyl84UJURb9BCPOfB9Y3302U.jpg?originalFilename=photo-1712148910821-8fe718c418af%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHwyMXx8fHx8fDJ8fDE3MTIyMTI0MDR8%26ixlib%3Drb-4.0.jpg&preferredSize=small\",title:\"Image 3\",type:ControlType.ResponsiveImage},V82VkGTJX:{__defaultAssetReference:\"data:framer/asset-reference,BYQAIfNLqyQKTntpQcyoJwwH8wQ.png?originalFilename=Db+Image.png&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},ObBlL2Bkk:{title:\"Cursor Left\",type:ControlType.CustomCursor},xSoFtQf1E:{title:\"Cursor - Right\",type:ControlType.CustomCursor},kBM7Fv7NS:{title:\"Cursor End - Left\",type:ControlType.CustomCursor}});addFonts(FramerGmJX9wZ_Z,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...UtilitiesChevronCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGmJX9wZ_Z\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"subcL21wx\\\":\\\"image1\\\",\\\"BwmASNSxY\\\":\\\"image2\\\",\\\"VcuWulVmE\\\":\\\"image3\\\",\\\"V82VkGTJX\\\":\\\"image4\\\",\\\"ObBlL2Bkk\\\":\\\"cursorLeft\\\",\\\"xSoFtQf1E\\\":\\\"cursorRight\\\",\\\"kBM7Fv7NS\\\":\\\"cursorEndLeft\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gZrR_wNEe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nz4MOnU5b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UyPUKQvBu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u8lbWYdKm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pct_HBONR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nfIH1Lex6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X49Pc4fS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1170\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"490\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GmJX9wZ_Z.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/35lTh5dmllVLuNTYdrmy/3EeJFjOI3OXycXglPOLR/xxobpGKc2.js\";const cycleOrder=[\"TAVSi7b5s\",\"xCPDMxJk2\",\"DQi5IH1Hx\",\"jTtUP8UDI\",\"yV30k5by_\",\"nVqc0ULuT\",\"X0thC1TX2\",\"TcrojhvrH\",\"F2EA5KIN9\",\"McwrlDYZJ\"];const serializationHash=\"framer-DfmcT\";const variantClassNames={DQi5IH1Hx:\"framer-v-1msid8g\",F2EA5KIN9:\"framer-v-91i9fp\",jTtUP8UDI:\"framer-v-1pqhp5w\",McwrlDYZJ:\"framer-v-1rf6bdc\",nVqc0ULuT:\"framer-v-166h1r7\",TAVSi7b5s:\"framer-v-7uzknj\",TcrojhvrH:\"framer-v-rtbx7k\",X0thC1TX2:\"framer-v-1ujmyiw\",xCPDMxJk2:\"framer-v-1svnayu\",yV30k5by_:\"framer-v-1hmayzt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[.22,1,.36,1],type:\"tween\"};const transition3={delay:0,duration:1.4,ease:[.16,1,.3,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={delay:.1,duration:.7,ease:[0,0,1,1],type:\"tween\"};const transition5={delay:0,duration:.3,ease:[.22,1,.36,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition6={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Logo card - Logo Large Mobile active\":\"TcrojhvrH\",\"Logo card - Logo Large Mobile\":\"X0thC1TX2\",\"Logo card - Logo Large\":\"TAVSi7b5s\",\"Logo card - Logo Small Mobile active\":\"McwrlDYZJ\",\"Logo card - Logo Small Mobile\":\"F2EA5KIN9\",\"Logo Card - Small Logo\":\"jTtUP8UDI\",\"Logo card active - Small Logo\":\"nVqc0ULuT\",\"Logo card active\":\"DQi5IH1Hx\",\"Logo card hover\":\"yV30k5by_\"};const getProps=({about,height,id,logo,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,lC72oufb2:(_ref=about!==null&&about!==void 0?about:props.lC72oufb2)!==null&&_ref!==void 0?_ref:\"Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start. Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start.\",o1yMRfyyP:(_ref1=logo!==null&&logo!==void 0?logo:props.o1yMRfyyP)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/hsei5rHUukEuidOH2KXinZq578.png\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"TAVSi7b5s\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,o1yMRfyyP,lC72oufb2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TAVSi7b5s\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1jjyy6x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"xCPDMxJk2\");});const onTap7fyovx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"DQi5IH1Hx\");});const onMouseLeave1u3k2u7=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"TAVSi7b5s\");});const onTap1r32sm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xCPDMxJk2\");});const onMouseEntergefjmg=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"yV30k5by_\");});const onTapccs3xg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"nVqc0ULuT\");});const onMouseLeaveiqsbv9=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"jTtUP8UDI\");});const onTap1r5ggq6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"yV30k5by_\");});const onTap1wny6fi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TcrojhvrH\");});const onTapp7nimh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"X0thC1TX2\");});const onTap1n5jebh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"McwrlDYZJ\");});const onTap11shfrg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"F2EA5KIN9\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({DQi5IH1Hx:{value:transition3},F2EA5KIN9:{value:transition2},McwrlDYZJ:{value:transition3},nVqc0ULuT:{value:transition3},TcrojhvrH:{value:transition3},X0thC1TX2:{value:transition2},xCPDMxJk2:{value:transition2},yV30k5by_:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7uzknj\",className,classNames),\"data-framer-name\":\"Logo card - Logo Large\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TAVSi7b5s\",onMouseEnter:onMouseEnter1jjyy6x,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(225, 225, 225)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({DQi5IH1Hx:{\"data-framer-name\":\"Logo card active\",onMouseEnter:undefined,onTap:onTap1r32sm},F2EA5KIN9:{\"data-framer-name\":\"Logo card - Logo Small Mobile\",onMouseEnter:undefined,onTap:onTap1n5jebh},jTtUP8UDI:{\"data-framer-name\":\"Logo Card - Small Logo\",onMouseEnter:onMouseEntergefjmg},McwrlDYZJ:{\"data-framer-name\":\"Logo card - Logo Small Mobile active\",onMouseEnter:undefined,onTap:onTap11shfrg},nVqc0ULuT:{\"data-framer-name\":\"Logo card active - Small Logo\",onMouseEnter:undefined,onTap:onTap1r5ggq6},TcrojhvrH:{\"data-framer-name\":\"Logo card - Logo Large Mobile active\",onMouseEnter:undefined,onTap:onTapp7nimh},X0thC1TX2:{\"data-framer-name\":\"Logo card - Logo Large Mobile\",onMouseEnter:undefined,onTap:onTap1wny6fi},xCPDMxJk2:{\"data-framer-name\":\"Logo card hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1u3k2u7,onTap:onTap7fyovx},yV30k5by_:{\"data-framer-name\":\"Logo card hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveiqsbv9,onTap:onTapccs3xg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-104susu\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"UJKICiy8k\",...addPropertyOverrides({DQi5IH1Hx:{transformTemplate:transformTemplate1},McwrlDYZJ:{transformTemplate:transformTemplate1},nVqc0ULuT:{transformTemplate:transformTemplate1},TcrojhvrH:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition4,...addPropertyOverrides({F2EA5KIN9:{value:transition5},X0thC1TX2:{value:transition5},xCPDMxJk2:{value:transition5},yV30k5by_:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start. Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start.\"})}),className:\"framer-1uez0x3\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q_xgVrYNl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:lC72oufb2,variants:{DQi5IH1Hx:{opacity:1},McwrlDYZJ:{opacity:1},nVqc0ULuT:{opacity:1},TcrojhvrH:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({F2EA5KIN9:{value:transition6},X0thC1TX2:{value:transition6},xCPDMxJk2:{value:transition6},yV30k5by_:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohwxju\",\"data-framer-name\":\"plus\",layoutDependency:layoutDependency,layoutId:\"lG5OpplLK\",style:{opacity:0,rotate:0},variants:{DQi5IH1Hx:{opacity:1,rotate:45},F2EA5KIN9:{opacity:1},McwrlDYZJ:{opacity:1,rotate:45},nVqc0ULuT:{opacity:1,rotate:45},TcrojhvrH:{opacity:1,rotate:45},X0thC1TX2:{opacity:1},xCPDMxJk2:{opacity:1},yV30k5by_:{opacity:1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2hyvvd\",layoutDependency:layoutDependency,layoutId:\"hfHzDAG5Z\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4d3bdi\",layoutDependency:layoutDependency,layoutId:\"aHiZu1J9K\",style:{backgroundColor:\"rgb(225, 225, 225)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rn17kn\",layoutDependency:layoutDependency,layoutId:\"EKXPc56ZG\",style:{backgroundColor:\"rgb(225, 225, 225)\"}})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0065u\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"rCMyeSaZr\",...addPropertyOverrides({DQi5IH1Hx:{transformTemplate:transformTemplate2},McwrlDYZJ:{transformTemplate:transformTemplate2},nVqc0ULuT:{transformTemplate:transformTemplate2},TcrojhvrH:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||277)-0-40)/2+0+0)+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1mwory8\",\"data-framer-name\":\"Logo SVG\",layoutDependency:layoutDependency,layoutId:\"XPH3NFsMb\",...addPropertyOverrides({DQi5IH1Hx:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+28+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.2455)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},F2EA5KIN9:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||277)-0-30)/2+0+0)+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3375)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},jTtUP8UDI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||277)-0-30)/2+0+0)+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3375)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},McwrlDYZJ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+28+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.201)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},nVqc0ULuT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+28+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.201)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},TcrojhvrH:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+28+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.2455)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}},yV30k5by_:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||277)-0-30)/2+0+0)+0),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3375)`,...toResponsiveImage(o1yMRfyyP),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DfmcT.framer-h3ahou, .framer-DfmcT .framer-h3ahou { display: block; }\",\".framer-DfmcT.framer-7uzknj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 277px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 277px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DfmcT .framer-104susu { align-content: flex-start; align-items: flex-start; bottom: -90px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 174px; justify-content: flex-start; left: calc(50.18050541516248% - 85.5595667870036% / 2); overflow: visible; padding: 0px; position: absolute; width: 86%; z-index: 1; }\",\".framer-DfmcT .framer-1uez0x3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DfmcT .framer-1ohwxju { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 20px; width: 30px; z-index: 1; }\",\".framer-DfmcT .framer-2hyvvd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 30px; }\",\".framer-DfmcT .framer-4d3bdi { flex: none; height: 15px; left: calc(50.00000000000002% - 1px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 15px / 2); width: 1px; }\",\".framer-DfmcT .framer-rn17kn { flex: none; height: 1px; left: calc(50.00000000000002% - 15px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 15px; }\",\".framer-DfmcT .framer-1l0065u { align-content: center; align-items: center; aspect-ratio: 3.116279069767442 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-DfmcT .framer-1mwory8 { flex: none; height: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DfmcT.framer-7uzknj, .framer-DfmcT .framer-104susu, .framer-DfmcT .framer-1ohwxju, .framer-DfmcT .framer-1l0065u { gap: 0px; } .framer-DfmcT.framer-7uzknj > *, .framer-DfmcT .framer-104susu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DfmcT.framer-7uzknj > :first-child, .framer-DfmcT .framer-104susu > :first-child { margin-top: 0px; } .framer-DfmcT.framer-7uzknj > :last-child, .framer-DfmcT .framer-104susu > :last-child { margin-bottom: 0px; } .framer-DfmcT .framer-1ohwxju > *, .framer-DfmcT .framer-1l0065u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DfmcT .framer-1ohwxju > :first-child, .framer-DfmcT .framer-1l0065u > :first-child { margin-left: 0px; } .framer-DfmcT .framer-1ohwxju > :last-child, .framer-DfmcT .framer-1l0065u > :last-child { margin-right: 0px; } }\",\".framer-DfmcT.framer-v-1svnayu.framer-7uzknj, .framer-DfmcT.framer-v-1hmayzt.framer-7uzknj, .framer-DfmcT.framer-v-1ujmyiw.framer-7uzknj, .framer-DfmcT.framer-v-91i9fp.framer-7uzknj { cursor: pointer; }\",\".framer-DfmcT.framer-v-1msid8g.framer-7uzknj, .framer-DfmcT.framer-v-166h1r7.framer-7uzknj, .framer-DfmcT.framer-v-rtbx7k.framer-7uzknj, .framer-DfmcT.framer-v-1rf6bdc.framer-7uzknj { cursor: pointer; padding: 20px; }\",\".framer-DfmcT.framer-v-1msid8g .framer-104susu, .framer-DfmcT.framer-v-166h1r7 .framer-104susu, .framer-DfmcT.framer-v-rtbx7k .framer-104susu, .framer-DfmcT.framer-v-1rf6bdc .framer-104susu { align-content: center; align-items: center; bottom: unset; height: min-content; left: 50%; order: 0; top: 53%; width: 86%; }\",\".framer-DfmcT.framer-v-1msid8g .framer-1ohwxju, .framer-DfmcT.framer-v-166h1r7 .framer-1ohwxju, .framer-DfmcT.framer-v-rtbx7k .framer-1ohwxju, .framer-DfmcT.framer-v-1rf6bdc .framer-1ohwxju { order: 1; }\",\".framer-DfmcT.framer-v-1msid8g .framer-1l0065u { aspect-ratio: 3.0930232558139537 / 1; height: var(--framer-aspect-ratio-supported, 22px); left: 50%; order: 2; position: absolute; top: 28px; width: 25%; z-index: 1; }\",\".framer-DfmcT.framer-v-1pqhp5w .framer-1l0065u, .framer-DfmcT.framer-v-1hmayzt .framer-1l0065u { height: var(--framer-aspect-ratio-supported, 30px); width: 34%; }\",\".framer-DfmcT.framer-v-166h1r7 .framer-1l0065u { aspect-ratio: 3.0930232558139537 / 1; height: var(--framer-aspect-ratio-supported, 18px); left: 50%; order: 2; position: absolute; top: 28px; width: 20%; z-index: 1; }\",\".framer-DfmcT.framer-v-1ujmyiw .framer-1l0065u { height: var(--framer-aspect-ratio-supported, 64px); }\",\".framer-DfmcT.framer-v-rtbx7k .framer-1l0065u { aspect-ratio: 3.0930232558139537 / 1; height: var(--framer-aspect-ratio-supported, 65px); left: 50%; order: 2; position: absolute; top: 28px; width: 25%; z-index: 1; }\",\".framer-DfmcT.framer-v-91i9fp .framer-1l0065u { height: var(--framer-aspect-ratio-supported, 64px); width: 34%; }\",\".framer-DfmcT.framer-v-1rf6bdc .framer-1l0065u { aspect-ratio: 3.0930232558139537 / 1; height: var(--framer-aspect-ratio-supported, 65px); left: 50%; order: 2; position: absolute; top: 28px; width: 20%; z-index: 1; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 277\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xCPDMxJk2\":{\"layout\":[\"fixed\",\"fixed\"]},\"DQi5IH1Hx\":{\"layout\":[\"fixed\",\"fixed\"]},\"jTtUP8UDI\":{\"layout\":[\"fixed\",\"fixed\"]},\"yV30k5by_\":{\"layout\":[\"fixed\",\"fixed\"]},\"nVqc0ULuT\":{\"layout\":[\"fixed\",\"fixed\"]},\"X0thC1TX2\":{\"layout\":[\"fixed\",\"fixed\"]},\"TcrojhvrH\":{\"layout\":[\"fixed\",\"fixed\"]},\"F2EA5KIN9\":{\"layout\":[\"fixed\",\"fixed\"]},\"McwrlDYZJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"o1yMRfyyP\":\"logo\",\"lC72oufb2\":\"about\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGy5dsSOJa=withCSS(Component,css,\"framer-DfmcT\");export default FramerGy5dsSOJa;FramerGy5dsSOJa.displayName=\"About / Client Card\";FramerGy5dsSOJa.defaultProps={height:277,width:277};addPropertyControls(FramerGy5dsSOJa,{variant:{options:[\"TAVSi7b5s\",\"xCPDMxJk2\",\"DQi5IH1Hx\",\"jTtUP8UDI\",\"yV30k5by_\",\"nVqc0ULuT\",\"X0thC1TX2\",\"TcrojhvrH\",\"F2EA5KIN9\",\"McwrlDYZJ\"],optionTitles:[\"Logo card - Logo Large\",\"Logo card hover\",\"Logo card active\",\"Logo Card - Small Logo\",\"Logo card hover\",\"Logo card active - Small Logo\",\"Logo card - Logo Large Mobile\",\"Logo card - Logo Large Mobile active\",\"Logo card - Logo Small Mobile\",\"Logo card - Logo Small Mobile active\"],title:\"Variant\",type:ControlType.Enum},o1yMRfyyP:{__defaultAssetReference:\"data:framer/asset-reference,hsei5rHUukEuidOH2KXinZq578.png?originalFilename=Aloi+Logo.png&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},lC72oufb2:{defaultValue:\"Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start. Ora has crafted and delivered a visual campaign beyond our expectation. We immediately got a head start.\",displayTextArea:true,title:\"About\",type:ControlType.String}});addFonts(FramerGy5dsSOJa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGy5dsSOJa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"277\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xCPDMxJk2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DQi5IH1Hx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jTtUP8UDI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yV30k5by_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nVqc0ULuT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X0thC1TX2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TcrojhvrH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F2EA5KIN9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"McwrlDYZJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"277\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"o1yMRfyyP\\\":\\\"logo\\\",\\\"lC72oufb2\\\":\\\"about\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gy5dsSOJa.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5YwGKMBgWurN2zd1c52G/1AZHbTP1hjiSeRXLe3xP/sA1pdkMlu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/0bXSz6DllXCpZSCNxwKM/bv617vdj4rXS3KAnFYuJ/zL0fEbriV.js\";import UtilitiesScrollMore from\"https://framerusercontent.com/modules/73KypLZtNVE9zsFkvrjX/OXZQ78H5HzBHopaDShRa/YjypPLli_.js\";const VideoFonts=getFonts(Video);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const UtilitiesScrollMoreFonts=getFonts(UtilitiesScrollMore);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"UhIJ8NjKA\",\"O2CEwdnyD\",\"CY1W0rQc5\"];const serializationHash=\"framer-IRa3j\";const variantClassNames={CY1W0rQc5:\"framer-v-i2l6lo\",O2CEwdnyD:\"framer-v-1tleehh\",UhIJ8NjKA:\"framer-v-102r04k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const transition2={delay:.5,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:67};const transition3={delay:.6,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.8,duration:1.4,ease:[.25,1,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={delay:.9,duration:1.4,ease:[.25,1,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 humanReadableVariantMap={\"Header Active\":\"O2CEwdnyD\",\"Header Mobile\":\"CY1W0rQc5\",Header:\"UhIJ8NjKA\"};const getProps=({height,id,poster,uRL,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Q9MpMF_yE:poster!==null&&poster!==void 0?poster:props.Q9MpMF_yE,twBEjiRp1:(_ref=uRL!==null&&uRL!==void 0?uRL:props.twBEjiRp1)!==null&&_ref!==void 0?_ref:\"https://ena-supply.b-cdn.net/Ora/740047_Woman%20Model%20Projection%20Vj_By_Ira_Belsky_Artlist_HD%20comp.mp4\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"UhIJ8NjKA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,twBEjiRp1,Q9MpMF_yE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UhIJ8NjKA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdi4leu=activeVariantCallback(async(...args)=>{setVariant(\"CY1W0rQc5\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"CY1W0rQc5\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-102r04k\",className,classNames),\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"UhIJ8NjKA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CY1W0rQc5:{\"data-framer-name\":\"Header Mobile\"},O2CEwdnyD:{\"data-framer-name\":\"Header Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(Q9MpMF_yE)},className:\"framer-ihis5g\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"E_ldIFrah\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0},variants:{O2CEwdnyD:{borderBottomLeftRadius:10,borderBottomRightRadius:10}},...addPropertyOverrides({CY1W0rQc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||900)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||900)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(Q9MpMF_yE)}},O2CEwdnyD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-15-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-15)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(Q9MpMF_yE)}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-smvxe9-container\",layoutDependency:layoutDependency,layoutId:\"eoQBk8NNN-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"eoQBk8NNN\",isMixedBorderRadius:false,layoutId:\"eoQBk8NNN\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(Q9MpMF_yE),posterEnabled:true,srcType:\"URL\",srcUrl:twBEjiRp1,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpk6fc\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"c_hPyxslH\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.39) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0},variants:{O2CEwdnyD:{borderBottomLeftRadius:10,borderBottomRightRadius:10}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uw3a9b\",\"data-framer-name\":\"stack\",layoutDependency:layoutDependency,layoutId:\"gRcdkm57M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13kbdxb\",layoutDependency:layoutDependency,layoutId:\"OmBF2T5hQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7ts96\",layoutDependency:layoutDependency,layoutId:\"TDO7XsU1y\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Helping brands set the\"})}),className:\"framer-2tf9dt\",\"data-framer-appear-id\":\"2tf9dt\",\"data-framer-name\":\"Designing brands today for tomorrow.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"GT4pyaXj1\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CY1W0rQc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1s1wek\",\"data-styles-preset\":\"zL0fEbriV\",children:\"Helping brands\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ifea99\",layoutDependency:layoutDependency,layoutId:\"JOpr6_12W\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1s1wek\",\"data-styles-preset\":\"zL0fEbriV\",children:\"set the tone for\"})}),className:\"framer-jhj0v9\",\"data-framer-appear-id\":\"jhj0v9\",\"data-framer-name\":\"Designing brands today for tomorrow.\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"MFKbTcJIE\",onTap:onTapdi4leu,optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tqocwm\",layoutDependency:layoutDependency,layoutId:\"U_wj4MhLa\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"tone for what's next\"})}),className:\"framer-i8k6sp\",\"data-framer-appear-id\":\"i8k6sp\",\"data-framer-name\":\"Designing brands today for tomorrow.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"nnRvfjww1\",optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CY1W0rQc5:{animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1s1wek\",\"data-styles-preset\":\"zL0fEbriV\",children:\"what's next\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1-228.48+45+121.47999999999999,...addPropertyOverrides({CY1W0rQc5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||900)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||900)-0)*1)/2)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||900)-0)*1-152+0+105},O2CEwdnyD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-15-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-15)*1)/2)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-15)*1-208.48+35+121.47999999999999}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-49oxbq-container\",\"data-framer-appear-id\":\"49oxbq\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"DKNemfgJb-container\",optimized:true,style:{transformPerspective:1200},...addPropertyOverrides({CY1W0rQc5:{animate:animation6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(UtilitiesScrollMore,{height:\"100%\",id:\"DKNemfgJb\",layoutId:\"DKNemfgJb\",TWVH1Vrqk:\"Read more\",variant:\"l9jXd55vl\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IRa3j.framer-sg1z7c, .framer-IRa3j .framer-sg1z7c { display: block; }\",\".framer-IRa3j.framer-102r04k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-IRa3j .framer-ihis5g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IRa3j .framer-smvxe9-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-IRa3j .framer-1bpk6fc { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\".framer-IRa3j .framer-1uw3a9b { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 45px; position: absolute; width: 100%; z-index: 3; }\",\".framer-IRa3j .framer-13kbdxb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IRa3j .framer-d7ts96, .framer-IRa3j .framer-1ifea99, .framer-IRa3j .framer-tqocwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IRa3j .framer-2tf9dt, .framer-IRa3j .framer-i8k6sp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IRa3j .framer-jhj0v9 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IRa3j .framer-49oxbq-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IRa3j.framer-102r04k, .framer-IRa3j .framer-ihis5g, .framer-IRa3j .framer-1uw3a9b, .framer-IRa3j .framer-13kbdxb, .framer-IRa3j .framer-d7ts96, .framer-IRa3j .framer-1ifea99, .framer-IRa3j .framer-tqocwm { gap: 0px; } .framer-IRa3j.framer-102r04k > *, .framer-IRa3j .framer-d7ts96 > *, .framer-IRa3j .framer-1ifea99 > *, .framer-IRa3j .framer-tqocwm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IRa3j.framer-102r04k > :first-child, .framer-IRa3j .framer-d7ts96 > :first-child, .framer-IRa3j .framer-1ifea99 > :first-child, .framer-IRa3j .framer-tqocwm > :first-child { margin-left: 0px; } .framer-IRa3j.framer-102r04k > :last-child, .framer-IRa3j .framer-d7ts96 > :last-child, .framer-IRa3j .framer-1ifea99 > :last-child, .framer-IRa3j .framer-tqocwm > :last-child { margin-right: 0px; } .framer-IRa3j .framer-ihis5g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IRa3j .framer-ihis5g > :first-child, .framer-IRa3j .framer-1uw3a9b > :first-child, .framer-IRa3j .framer-13kbdxb > :first-child { margin-top: 0px; } .framer-IRa3j .framer-ihis5g > :last-child, .framer-IRa3j .framer-1uw3a9b > :last-child, .framer-IRa3j .framer-13kbdxb > :last-child { margin-bottom: 0px; } .framer-IRa3j .framer-1uw3a9b > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-IRa3j .framer-13kbdxb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-IRa3j.framer-v-1tleehh.framer-102r04k { padding: 0px 15px 15px 15px; }\",\".framer-IRa3j.framer-v-1tleehh .framer-ihis5g { order: 0; will-change: var(--framer-will-change-override, transform); }\",\".framer-IRa3j.framer-v-1tleehh .framer-1uw3a9b { padding: 35px; }\",\".framer-IRa3j.framer-v-i2l6lo.framer-102r04k { height: 900px; width: 320px; }\",\".framer-IRa3j.framer-v-i2l6lo .framer-1uw3a9b { padding: 0px 15px 30px 15px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"O2CEwdnyD\":{\"layout\":[\"fixed\",\"fixed\"]},\"CY1W0rQc5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"twBEjiRp1\":\"uRL\",\"Q9MpMF_yE\":\"poster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGyKJqP2Z6=withCSS(Component,css,\"framer-IRa3j\");export default FramerGyKJqP2Z6;FramerGyKJqP2Z6.displayName=\"About / About Header\";FramerGyKJqP2Z6.defaultProps={height:600,width:1200};addPropertyControls(FramerGyKJqP2Z6,{variant:{options:[\"UhIJ8NjKA\",\"O2CEwdnyD\",\"CY1W0rQc5\"],optionTitles:[\"Header\",\"Header Active\",\"Header Mobile\"],title:\"Variant\",type:ControlType.Enum},twBEjiRp1:{defaultValue:\"https://ena-supply.b-cdn.net/Ora/740047_Woman%20Model%20Projection%20Vj_By_Ira_Belsky_Artlist_HD%20comp.mp4\",placeholder:\"../example.mp4\",title:\"URL\",type:ControlType.String},Q9MpMF_yE:{title:\"Poster\",type:ControlType.ResponsiveImage}});addFonts(FramerGyKJqP2Z6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...UtilitiesScrollMoreFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGyKJqP2Z6\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"twBEjiRp1\\\":\\\"uRL\\\",\\\"Q9MpMF_yE\\\":\\\"poster\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"600\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O2CEwdnyD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CY1W0rQc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"G17o5Sr6E\",\"KeyWnLI_S\"];const serializationHash=\"framer-UzDh9\";const variantClassNames={G17o5Sr6E:\"framer-v-1cc29hu\",KeyWnLI_S:\"framer-v-5ok06p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Minus:\"KeyWnLI_S\",Plus:\"G17o5Sr6E\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"G17o5Sr6E\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G17o5Sr6E\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({KeyWnLI_S:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cc29hu\",className,classNames),\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"G17o5Sr6E\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({KeyWnLI_S:{\"data-framer-name\":\"Minus\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18gkozr\",layoutDependency:layoutDependency,layoutId:\"PQpUtNJCQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ro21h\",layoutDependency:layoutDependency,layoutId:\"AvC95IURt\",style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:0},variants:{KeyWnLI_S:{rotate:180}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11rmt1n\",layoutDependency:layoutDependency,layoutId:\"ef87vUvh_\",style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:90},variants:{KeyWnLI_S:{rotate:180}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UzDh9.framer-1h0wdea, .framer-UzDh9 .framer-1h0wdea { display: block; }\",\".framer-UzDh9.framer-1cc29hu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22px; }\",\".framer-UzDh9 .framer-18gkozr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UzDh9 .framer-ro21h { flex: none; height: 1px; overflow: hidden; position: relative; width: 15px; }\",\".framer-UzDh9 .framer-11rmt1n { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UzDh9.framer-1cc29hu, .framer-UzDh9 .framer-18gkozr { gap: 0px; } .framer-UzDh9.framer-1cc29hu > *, .framer-UzDh9 .framer-18gkozr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UzDh9.framer-1cc29hu > :first-child, .framer-UzDh9 .framer-18gkozr > :first-child { margin-left: 0px; } .framer-UzDh9.framer-1cc29hu > :last-child, .framer-UzDh9 .framer-18gkozr > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 22\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KeyWnLI_S\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG2PcQjA9C=withCSS(Component,css,\"framer-UzDh9\");export default FramerG2PcQjA9C;FramerG2PcQjA9C.displayName=\"Accordion / Accordion plus\";FramerG2PcQjA9C.defaultProps={height:22,width:22};addPropertyControls(FramerG2PcQjA9C,{variant:{options:[\"G17o5Sr6E\",\"KeyWnLI_S\"],optionTitles:[\"Plus\",\"Minus\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerG2PcQjA9C,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG2PcQjA9C\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KeyWnLI_S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"22\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"22\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G2PcQjA9C.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rFpfgYRHQzAmkLVpAl8U/FgpTPy7UfOtgR0cxJlMQ/rWBnQ01qE.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/35lTh5dmllVLuNTYdrmy/3EeJFjOI3OXycXglPOLR/xxobpGKc2.js\";import AccordionAccordionPlus from\"https://framerusercontent.com/modules/j5H5xdctYBG43IKtKWRP/2xLAETxRdyvW8SmYN7m1/G2PcQjA9C.js\";const AccordionAccordionPlusFonts=getFonts(AccordionAccordionPlus);const enabledGestures={OUeYHcKWQ:{hover:true}};const cycleOrder=[\"OUeYHcKWQ\",\"mmF4yyMK8\",\"eKFjHFTvK\",\"XBNQ5qCBP\",\"k0Zzq91kB\",\"GyuKgksKB\"];const serializationHash=\"framer-eW1SA\";const variantClassNames={eKFjHFTvK:\"framer-v-1bamxmb\",GyuKgksKB:\"framer-v-pn4avj\",k0Zzq91kB:\"framer-v-623g2l\",mmF4yyMK8:\"framer-v-191iv29\",OUeYHcKWQ:\"framer-v-1o0e764\",XBNQ5qCBP:\"framer-v-cibicv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 humanReadableVariantMap={\"Desktop -  Closed\":\"OUeYHcKWQ\",\"Desktop - Open\":\"GyuKgksKB\",\"Mobile - Closed\":\"XBNQ5qCBP\",\"Mobile - Open\":\"k0Zzq91kB\",\"Tablet - Closed\":\"mmF4yyMK8\",\"Tablet - Open\":\"eKFjHFTvK\"};const getProps=({height,id,number,paragraph,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,h1ZthYPRp:(_ref=number!==null&&number!==void 0?number:props.h1ZthYPRp)!==null&&_ref!==void 0?_ref:\"01\",T8rQFvSBR:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.T8rQFvSBR)!==null&&_ref1!==void 0?_ref1:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"OUeYHcKWQ\",W88zB8mIG:(_ref3=title!==null&&title!==void 0?title:props.W88zB8mIG)!==null&&_ref3!==void 0?_ref3:\"Brand Identity\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,h1ZthYPRp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OUeYHcKWQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1u83njm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"eKFjHFTvK\");});const onTapwtfasj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mmF4yyMK8\");});const onTap1tceenb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"k0Zzq91kB\");});const onTapkeboek=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XBNQ5qCBP\");});const onTap1jfs64k=activeVariantCallback(async(...args)=>{setVariant(\"GyuKgksKB\");});const onTap65t8tl=activeVariantCallback(async(...args)=>{setVariant(\"eKFjHFTvK\");});const onTap18iix5v=activeVariantCallback(async(...args)=>{setVariant(\"mmF4yyMK8\");});const onTap1jfzh66=activeVariantCallback(async(...args)=>{setVariant(\"k0Zzq91kB\");});const onTapz3k2f4=activeVariantCallback(async(...args)=>{setVariant(\"XBNQ5qCBP\");});const onTapgmkdcg=activeVariantCallback(async(...args)=>{setVariant(\"OUeYHcKWQ\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1o0e764\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop -  Closed\",layoutDependency:layoutDependency,layoutId:\"OUeYHcKWQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"OUeYHcKWQ-hover\":{\"data-framer-name\":undefined},eKFjHFTvK:{\"data-framer-name\":\"Tablet - Open\",\"data-highlight\":true,onTap:onTapwtfasj},GyuKgksKB:{\"data-framer-name\":\"Desktop - Open\"},k0Zzq91kB:{\"data-framer-name\":\"Mobile - Open\",\"data-highlight\":true,onTap:onTapkeboek},mmF4yyMK8:{\"data-framer-name\":\"Tablet - Closed\",\"data-highlight\":true,onTap:onTap1u83njm},XBNQ5qCBP:{\"data-framer-name\":\"Mobile - Closed\",\"data-highlight\":true,onTap:onTap1tceenb}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ee1f8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UCRnaMxM_\",onTap:onTap1jfs64k,...addPropertyOverrides({eKFjHFTvK:{onTap:onTap18iix5v},GyuKgksKB:{onTap:onTapgmkdcg},k0Zzq91kB:{onTap:onTapz3k2f4},mmF4yyMK8:{onTap:onTap65t8tl},XBNQ5qCBP:{onTap:onTap1jfzh66}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41olmt\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"RulvIcv0u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"01\"})}),className:\"framer-2986qs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xqLYjL1Ik\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.4},text:h1ZthYPRp,variants:{\"OUeYHcKWQ-hover\":{opacity:1},eKFjHFTvK:{opacity:1},GyuKgksKB:{opacity:1},k0Zzq91kB:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Art Direction\"})}),className:\"framer-a96rl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FcSkR7tng\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+79,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yboem3-container\",layoutDependency:layoutDependency,layoutId:\"PuO7ZA4Ty-container\",style:{opacity:.4},children:/*#__PURE__*/_jsx(AccordionAccordionPlus,{height:\"100%\",id:\"PuO7ZA4Ty\",layoutId:\"PuO7ZA4Ty\",style:{height:\"100%\",width:\"100%\"},variant:\"G17o5Sr6E\",width:\"100%\",...addPropertyOverrides({eKFjHFTvK:{variant:\"KeyWnLI_S\"},GyuKgksKB:{variant:\"KeyWnLI_S\"},k0Zzq91kB:{variant:\"KeyWnLI_S\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sjqlwn\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"H7KWdGZXC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tant9h\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"SwEOrlBcm\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-opttsd\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"l4p7q2Amp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\"})}),className:\"framer-1cowc6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"by6uq9KNS\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:T8rQFvSBR,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eW1SA.framer-wz17gf, .framer-eW1SA .framer-wz17gf { display: block; }\",\".framer-eW1SA.framer-1o0e764 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 61px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-eW1SA .framer-ee1f8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-eW1SA .framer-41olmt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eW1SA .framer-2986qs { flex: 0.2 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eW1SA .framer-a96rl { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eW1SA .framer-1yboem3-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-eW1SA .framer-1sjqlwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eW1SA .framer-1tant9h { flex: 0.2 0 0px; height: 26px; overflow: hidden; position: relative; width: 1px; }\",\".framer-eW1SA .framer-opttsd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; width: 1px; }\",\".framer-eW1SA .framer-1cowc6 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eW1SA.framer-1o0e764, .framer-eW1SA .framer-ee1f8h, .framer-eW1SA .framer-41olmt, .framer-eW1SA .framer-1sjqlwn, .framer-eW1SA .framer-opttsd { gap: 0px; } .framer-eW1SA.framer-1o0e764 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eW1SA.framer-1o0e764 > :first-child, .framer-eW1SA .framer-opttsd > :first-child { margin-top: 0px; } .framer-eW1SA.framer-1o0e764 > :last-child, .framer-eW1SA .framer-opttsd > :last-child { margin-bottom: 0px; } .framer-eW1SA .framer-ee1f8h > *, .framer-eW1SA .framer-41olmt > *, .framer-eW1SA .framer-1sjqlwn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-eW1SA .framer-ee1f8h > :first-child, .framer-eW1SA .framer-41olmt > :first-child, .framer-eW1SA .framer-1sjqlwn > :first-child { margin-left: 0px; } .framer-eW1SA .framer-ee1f8h > :last-child, .framer-eW1SA .framer-41olmt > :last-child, .framer-eW1SA .framer-1sjqlwn > :last-child { margin-right: 0px; } .framer-eW1SA .framer-opttsd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-eW1SA.framer-v-191iv29 .framer-1cowc6, .framer-eW1SA.framer-v-1bamxmb .framer-1cowc6, .framer-eW1SA.framer-v-cibicv .framer-1cowc6, .framer-eW1SA.framer-v-623g2l .framer-1cowc6 { width: 90%; }\",\".framer-eW1SA.framer-v-1bamxmb.framer-1o0e764 { height: min-content; }\",\".framer-eW1SA.framer-v-1bamxmb .framer-opttsd { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eW1SA.framer-v-1bamxmb .framer-opttsd { gap: 0px; } .framer-eW1SA.framer-v-1bamxmb .framer-opttsd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eW1SA.framer-v-1bamxmb .framer-opttsd > :first-child { margin-top: 0px; } .framer-eW1SA.framer-v-1bamxmb .framer-opttsd > :last-child { margin-bottom: 0px; } }\",\".framer-eW1SA.framer-v-cibicv.framer-1o0e764 { height: 57px; width: 390px; }\",\".framer-eW1SA.framer-v-623g2l.framer-1o0e764 { height: min-content; padding: 0px 0px 20px 0px; width: 390px; }\",\".framer-eW1SA.framer-v-pn4avj.framer-1o0e764 { cursor: unset; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-eW1SA[data-border=\"true\"]::after, .framer-eW1SA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 61\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mmF4yyMK8\":{\"layout\":[\"fixed\",\"fixed\"]},\"eKFjHFTvK\":{\"layout\":[\"fixed\",\"auto\"]},\"XBNQ5qCBP\":{\"layout\":[\"fixed\",\"fixed\"]},\"k0Zzq91kB\":{\"layout\":[\"fixed\",\"auto\"]},\"GyuKgksKB\":{\"layout\":[\"fixed\",\"auto\"]},\"wWYqwg9lu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"title\",\"T8rQFvSBR\":\"paragraph\",\"h1ZthYPRp\":\"number\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereIuM0M4EB=withCSS(Component,css,\"framer-eW1SA\");export default FramereIuM0M4EB;FramereIuM0M4EB.displayName=\"Accordion / Accordion Row\";FramereIuM0M4EB.defaultProps={height:61,width:600};addPropertyControls(FramereIuM0M4EB,{variant:{options:[\"OUeYHcKWQ\",\"mmF4yyMK8\",\"eKFjHFTvK\",\"XBNQ5qCBP\",\"k0Zzq91kB\",\"GyuKgksKB\"],optionTitles:[\"Desktop -  Closed\",\"Tablet - Closed\",\"Tablet - Open\",\"Mobile - Closed\",\"Mobile - Open\",\"Desktop - Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Brand Identity\",displayTextArea:true,title:\"Title\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},h1ZthYPRp:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String}});addFonts(FramereIuM0M4EB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...AccordionAccordionPlusFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereIuM0M4EB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"title\\\",\\\"T8rQFvSBR\\\":\\\"paragraph\\\",\\\"h1ZthYPRp\\\":\\\"number\\\"}\",\"framerIntrinsicHeight\":\"61\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mmF4yyMK8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eKFjHFTvK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XBNQ5qCBP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k0Zzq91kB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyuKgksKB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wWYqwg9lu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AccordionAccordionRow from\"https://framerusercontent.com/modules/svNyV0jjYiFh09uNhbPV/2r4S4h9tdnZKldT7B6ua/eIuM0M4EB.js\";const AccordionAccordionRowFonts=getFonts(AccordionAccordionRow);const cycleOrder=[\"xg9ucDTK2\",\"mUInUr0Cu\",\"dMgW5If7b\"];const serializationHash=\"framer-sRqGJ\";const variantClassNames={dMgW5If7b:\"framer-v-13rmgic\",mUInUr0Cu:\"framer-v-1hnp2bp\",xg9ucDTK2:\"framer-v-1txrvcx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};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 humanReadableVariantMap={\"FAQ Mobile\":\"dMgW5If7b\",\"FAQ Tablet\":\"mUInUr0Cu\",FAQ:\"xg9ucDTK2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xg9ucDTK2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xg9ucDTK2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1txrvcx\",className,classNames),\"data-framer-name\":\"FAQ\",layoutDependency:layoutDependency,layoutId:\"xg9ucDTK2\",ref:ref??ref1,style:{...style},...addPropertyOverrides({dMgW5If7b:{\"data-framer-name\":\"FAQ Mobile\"},mUInUr0Cu:{\"data-framer-name\":\"FAQ Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zvaaiw-container\",\"data-framer-name\":\"Accordion Row\",layoutDependency:layoutDependency,layoutId:\"IzO0LZjyG-container\",name:\"Accordion Row\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"01\",height:\"100%\",id:\"IzO0LZjyG\",layoutId:\"IzO0LZjyG\",name:\"Accordion Row\",style:{width:\"100%\"},T8rQFvSBR:\"Creating cohesive and memorable identities that reflect a brand\u2019s essence and values. From logos to complete visual systems, each element is crafted to resonate with the audience and set the foundation for impactful brand communication.\",variant:\"OUeYHcKWQ\",W88zB8mIG:\"Brand Identity\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+61,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mrukm3-container\",layoutDependency:layoutDependency,layoutId:\"oIl2_gvhp-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"02\",height:\"100%\",id:\"oIl2_gvhp\",layoutId:\"oIl2_gvhp\",style:{width:\"100%\"},T8rQFvSBR:\"Designing intuitive and visually engaging websites that combine aesthetics with functionality. From structure to visuals, every detail is tailored to ensure a seamless digital presence that captures attention and drives results.\",variant:\"OUeYHcKWQ\",W88zB8mIG:\"Web Design\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+122,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jvj3kh-container\",layoutDependency:layoutDependency,layoutId:\"cqPnO3m30-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"03\",height:\"100%\",id:\"cqPnO3m30\",layoutId:\"cqPnO3m30\",style:{width:\"100%\"},T8rQFvSBR:\"Designing user interfaces and experiences that prioritize clarity, functionality, and engagement. By focusing on user needs, each design balances beauty and usability to create intuitive interactions that leave a lasting impression.\",variant:\"OUeYHcKWQ\",W88zB8mIG:\"UI/UX Design\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+183,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ejs32-container\",layoutDependency:layoutDependency,layoutId:\"c0yI7OEt6-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"04\",height:\"100%\",id:\"c0yI7OEt6\",layoutId:\"c0yI7OEt6\",style:{width:\"100%\"},T8rQFvSBR:\"Bringing brands to life through immersive experiences, from retail concepts to physical activations and packaging. This service bridges the gap between digital and physical, delivering environments and events that captivate audiences and create meaningful connections.\",variant:\"OUeYHcKWQ\",W88zB8mIG:\"Experience Design\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+244,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-syms8x-container\",layoutDependency:layoutDependency,layoutId:\"weIy5ue0x-container\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"05\",height:\"100%\",id:\"weIy5ue0x\",layoutId:\"weIy5ue0x\",style:{width:\"100%\"},T8rQFvSBR:\"Crafting tangible expressions of a brand through thoughtfully designed books, packaging, hangtags, and other printed matter. Every detail is considered\u2014from typography to materials\u2014to ensure a cohesive and lasting impact. Print becomes more than a medium; it\u2019s an extension of the brand\u2019s story, meant to be held, experienced, and remembered.\",variant:\"OUeYHcKWQ\",W88zB8mIG:\"Print Design\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sRqGJ.framer-16n4jht, .framer-sRqGJ .framer-16n4jht { display: block; }\",\".framer-sRqGJ.framer-1txrvcx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-sRqGJ .framer-zvaaiw-container, .framer-sRqGJ .framer-mrukm3-container, .framer-sRqGJ .framer-1jvj3kh-container, .framer-sRqGJ .framer-4ejs32-container, .framer-sRqGJ .framer-syms8x-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sRqGJ.framer-1txrvcx { gap: 0px; } .framer-sRqGJ.framer-1txrvcx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sRqGJ.framer-1txrvcx > :first-child { margin-top: 0px; } .framer-sRqGJ.framer-1txrvcx > :last-child { margin-bottom: 0px; } }\",\".framer-sRqGJ.framer-v-1hnp2bp.framer-1txrvcx { width: 810px; }\",\".framer-sRqGJ.framer-v-13rmgic.framer-1txrvcx { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 305\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mUInUr0Cu\":{\"layout\":[\"fixed\",\"auto\"]},\"dMgW5If7b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framery2aW366zJ=withCSS(Component,css,\"framer-sRqGJ\");export default Framery2aW366zJ;Framery2aW366zJ.displayName=\"Accordion / Accordion\";Framery2aW366zJ.defaultProps={height:305,width:1e3};addPropertyControls(Framery2aW366zJ,{variant:{options:[\"xg9ucDTK2\",\"mUInUr0Cu\",\"dMgW5If7b\"],optionTitles:[\"FAQ\",\"FAQ Tablet\",\"FAQ Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery2aW366zJ,[{explicitInter:true,fonts:[]},...AccordionAccordionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery2aW366zJ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mUInUr0Cu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dMgW5If7b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"305\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y2aW366zJ.map", "// Generated by Framer (ab6b6d5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js\";import FooterEnaLogo from\"#framer/local/canvasComponent/AHHq0AFcU/AHHq0AFcU.js\";import GlobalSectionCTA from\"#framer/local/canvasComponent/bDuMp2cg2/bDuMp2cg2.js\";import AboutCoreValue from\"#framer/local/canvasComponent/bnagblXJQ/bnagblXJQ.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/CA2UVAOBt/CA2UVAOBt.js\";import FooterFooter from\"#framer/local/canvasComponent/CPt2kErNr/CPt2kErNr.js\";import NavigationNavigationDesktop from\"#framer/local/canvasComponent/F0lbt84nG/F0lbt84nG.js\";import AboutTestimonialSlider from\"#framer/local/canvasComponent/GmJX9wZ_Z/GmJX9wZ_Z.js\";import AboutClientCard from\"#framer/local/canvasComponent/Gy5dsSOJa/Gy5dsSOJa.js\";import AboutAboutHeader from\"#framer/local/canvasComponent/GyKJqP2Z6/GyKJqP2Z6.js\";import NewsNewsArticle from\"#framer/local/canvasComponent/jt2UFqllB/jt2UFqllB.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/lw0LfyniE/lw0LfyniE.js\";import TextLinkTextLinkArrow from\"#framer/local/canvasComponent/MS7fGSvo6/MS7fGSvo6.js\";import NavigationMobileFullNavigation from\"#framer/local/canvasComponent/uL6YOTdAZ/uL6YOTdAZ.js\";import AccordionAccordion from\"#framer/local/canvasComponent/y2aW366zJ/y2aW366zJ.js\";import UtilitiesChevronCursor from\"#framer/local/canvasComponent/ywmfPg6Td/ywmfPg6Td.js\";import News from\"#framer/local/collection/x14H8Qaae/x14H8Qaae.js\";import*as sharedStyle2 from\"#framer/local/css/bUU3wN9fx/bUU3wN9fx.js\";import*as sharedStyle from\"#framer/local/css/SJt7fXVzX/SJt7fXVzX.js\";import*as sharedStyle1 from\"#framer/local/css/xxobpGKc2/xxobpGKc2.js\";import metadataProvider from\"#framer/local/webPageMetadata/pNHeRDjTh/pNHeRDjTh.js\";const NavigationNavigationDesktopFonts=getFonts(NavigationNavigationDesktop);const NavigationNavigationDesktopWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationDesktop);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationNavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationMobile);const NavigationMobileFullNavigationFonts=getFonts(NavigationMobileFullNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const AboutAboutHeaderFonts=getFonts(AboutAboutHeader);const AboutAboutHeaderWithVariantAppearEffect=withVariantAppearEffect(AboutAboutHeader);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const GlobalLineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(GlobalLineAnimationGlobal);const AboutCoreValueFonts=getFonts(AboutCoreValue);const AccordionAccordionFonts=getFonts(AccordionAccordion);const AboutClientCardFonts=getFonts(AboutClientCard);const AboutTestimonialSliderFonts=getFonts(AboutTestimonialSlider);const SlideshowFonts=getFonts(Slideshow);const TextLinkTextLinkArrowFonts=getFonts(TextLinkTextLinkArrow);const NewsNewsArticleFonts=getFonts(NewsNewsArticle);const GlobalSectionCTAFonts=getFonts(GlobalSectionCTA);const GlobalSectionCTAWithVariantAppearEffect=withVariantAppearEffect(GlobalSectionCTA);const FooterFooterFonts=getFonts(FooterFooter);const UtilitiesChevronCursorFonts=getFonts(UtilitiesChevronCursor);const FooterEnaLogoFonts=getFonts(FooterEnaLogo);const breakpoints={aklxOWTlU:\"(min-width: 1200px)\",AwhOnpHay:\"(max-width: 809px)\",JWlDAB7wN:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MPmMG\";const variantClassNames={aklxOWTlU:\"framer-v-cnf1rz\",AwhOnpHay:\"framer-v-xctdjl\",JWlDAB7wN:\"framer-v-hjt3b8\"};const transition1={delay:0,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref:document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"aklxOWTlU\",Phone:\"AwhOnpHay\",Tablet:\"JWlDAB7wN\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"aklxOWTlU\"};};const cursor={component:UtilitiesChevronCursor,variant:\"to3SJuATP\"};const cursor1={component:UtilitiesChevronCursor,variant:\"WyDMT5Sl5\"};const cursor2={component:UtilitiesChevronCursor,variant:\"lezFB8hJw\"};const cursor3={alignment:\"start\",component:FooterEnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"ACadg8MmF\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hPeIhZb7Qc37uWYd0c,PnlMQ9LWmc37uWYd0c,JdMjytSDKc37uWYd0c,odk7MCjnWc37uWYd0c,sXjwZPlEdc37uWYd0c,idc37uWYd0c,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-MPmMG`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-MPmMG`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AwhOnpHay\")return false;return true;};const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AwhOnpHay\")return true;return false;};const elementId=useRouteElementId(\"SwVjGceLR\");const ref3=React.useRef(null);const elementId1=useRouteElementId(\"WpGM4Tu3O\");const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JWlDAB7wN\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"JWlDAB7wN\")return true;return false;};const elementId2=useRouteElementId(\"fVgZxeUpO\");const ref4=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"tjYrbNY12\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"1a8cyqa\":cursor3,\"1gxl120\":cursor2,\"1q54p9j\":cursor1,\"1xsxq08\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aklxOWTlU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-cnf1rz\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rj2wfk\",\"data-framer-name\":\"Buy Template Module\",name:\"Buy Template Module\"}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ag4w9u-container hidden-xctdjl\",layoutScroll:true,children:/*#__PURE__*/_jsx(NavigationNavigationDesktopWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref2,target:\"lQ7T5v16X\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"dwIjkdJ33\",layoutId:\"dwIjkdJ33\",style:{width:\"100%\"},variant:\"glROJL_vL\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:59,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1mkd901-container hidden-cnf1rz hidden-hjt3b8\",\"data-framer-appear-id\":\"1mkd901\",\"data-framer-name\":\"Navigation Mobile\",id:\"1mkd901\",initial:animation1,layoutScroll:true,name:\"Navigation Mobile\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:overlay.visible?\"PPFOyo3m8\":\"BrEWvSRFO\"}},children:/*#__PURE__*/_jsx(NavigationNavigationMobileWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref2,target:\"DEBd6oizS\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"ptm10zKYh\",layoutId:\"ptm10zKYh\",name:\"Navigation Mobile\",style:{width:\"100%\"},variant:overlay.visible?\"xFNqp1zcf\":\"BrEWvSRFO\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-16kqe9u\"),\"data-framer-portal-id\":\"1mkd901\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JDZHARKlT\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:cx(scopingClassNames,\"framer-kswl8i-container\"),\"data-framer-portal-id\":\"1mkd901\",exit:animation2,initial:animation4,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileFullNavigation,{height:\"100%\",id:\"sGrNivHhm\",layoutId:\"sGrNivHhm\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-5s77dq\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-19w6r52\",\"data-framer-name\":\"Section Hero\",id:elementId,name:\"Section Hero\",ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:900,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max(100vw, 1px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17y77xv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{__framer__variantAppearEffectEnabled:undefined,variant:\"CY1W0rQc5\"}},children:/*#__PURE__*/_jsx(AboutAboutHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref2,target:\"O2CEwdnyD\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"z76TOsBuO\",layoutId:\"z76TOsBuO\",Q9MpMF_yE:addImageAlt({src:\"https://framerusercontent.com/images/5zfmeIGIme40DkgNsxrzjhauSrg.png\",srcSet:\"https://framerusercontent.com/images/5zfmeIGIme40DkgNsxrzjhauSrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/5zfmeIGIme40DkgNsxrzjhauSrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5zfmeIGIme40DkgNsxrzjhauSrg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5zfmeIGIme40DkgNsxrzjhauSrg.png 2908w\"},\"\"),style:{height:\"100%\",width:\"100%\"},twBEjiRp1:\"https://res.cloudinary.com/dvyfxkxbt/video/upload/v1737545349/Smooth_Glass_Circles_Looping_uhd_2930649_h3pptg.mp4\",variant:\"UhIJ8NjKA\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9kv4b\",\"data-framer-name\":\"Section Header - Trigger\",id:elementId1,name:\"Section Header - Trigger\",ref:ref2}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-glf5ib\",\"data-framer-name\":\"Section Intro\",name:\"Section Intro\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"calc(100vw - 30px)\",y:1046,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aya5zp-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"Krqw2otnI\",layoutId:\"Krqw2otnI\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nkf3jp\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qgfui4\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Introduction\"})}),className:\"framer-1cz5488\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],name:\"Introduction\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vntaum\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Helping brands set the tone for what\u2019s next through design that combines creativity, strategy, and impact. Kullen specializes in crafting brand identities, web design, UI/UX, experience design, and retail concepts that resonate with audiences and position brands for the future. Every project is tailored to align with unique goals, creating cohesive and compelling designs that stand out in competitive markets.\"})}),className:\"framer-px28gr\",\"data-framer-name\":\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",fonts:[\"Inter\"],name:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"With a focus on clarity, innovation, and detail, each solution is designed to leave a lasting impression. From building visual identities to creating seamless digital and physical experiences, Kullen delivers designs that not only communicate but inspire action. The work goes beyond aesthetics, blending form and function to help brands shape what\u2019s next in their industries.\"})}),className:\"framer-eeufri\",\"data-framer-name\":\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",fonts:[\"Inter\"],name:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-wvbo1t\",\"data-framer-name\":\"Section Approach\",name:\"Section Approach\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13m96o2\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mrcw9b\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"max(100vw - 30px, 1px)\",y:1395,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lczjkp-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"gXHuQ1Inn\",layoutId:\"gXHuQ1Inn\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Approach\"})}),className:\"framer-1wa3c4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cc03mr\",\"data-framer-name\":\"Value Wrapper\",name:\"Value Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:\"max(100vw - 30px, 1px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"max((max(100vw - 30px, 1px) - 30px) / 3, 1px)\",y:1526,children:/*#__PURE__*/_jsx(Container,{className:\"framer-169rezr-container\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"cey5LCl0t\",kB1rNTf7X:\"Every project begins with a deep dive into understanding the brand, its goals, and its audience. Through research and collaboration, this phase uncovers key insights that lay the foundation for strategic and impactful design solutions.\",layoutId:\"cey5LCl0t\",Mz0wvNH6v:\"Gain Insight\",rFExBnb6h:\"01\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/JHZmCe9YaCslmFDufuEYU8dRnP8.jpg\",srcSet:\"https://framerusercontent.com/images/JHZmCe9YaCslmFDufuEYU8dRnP8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JHZmCe9YaCslmFDufuEYU8dRnP8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JHZmCe9YaCslmFDufuEYU8dRnP8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JHZmCe9YaCslmFDufuEYU8dRnP8.jpg 2344w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:\"max(100vw - 30px, 1px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"max((max(100vw - 30px, 1px) - 30px) / 3, 1px)\",y:1526,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86hxk9-container\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"e3X2xyixM\",kB1rNTf7X:\"With insights in place, the focus shifts to crafting designs that align with the brand\u2019s vision and objectives. From conceptual exploration to refined solutions, this phase ensures that every element is thoughtful, cohesive, and value-adding.\",layoutId:\"e3X2xyixM\",Mz0wvNH6v:\"Design Development\",rFExBnb6h:\"02\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/WVOiRQWGFK9Ac6Sog24yr3dstI.gif\",srcSet:\"https://framerusercontent.com/images/WVOiRQWGFK9Ac6Sog24yr3dstI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/WVOiRQWGFK9Ac6Sog24yr3dstI.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/WVOiRQWGFK9Ac6Sog24yr3dstI.gif 1600w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:\"max(100vw - 30px, 1px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:614,width:\"max((max(100vw - 30px, 1px) - 30px) / 3, 1px)\",y:1526,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11y984a-container\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"tJwWqwL5p\",kB1rNTf7X:\"The final step is bringing the design to life across all touchpoints. Whether it\u2019s launching a website, rolling out a brand identity, or delivering a seamless retail concept, this phase ensures a flawless execution that delivers real-world impact.\",layoutId:\"tJwWqwL5p\",Mz0wvNH6v:\"Execution\",rFExBnb6h:\"03\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg\",srcSet:\"https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/oMoU0ik8TWGSUhZsAmDCJYoEM3Q.jpg 6000w\"},\"\")})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3m7hrf\",\"data-framer-name\":\"Section Services\",name:\"Section Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpnxid\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfbyyd\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"calc(100vw - 30px)\",y:2260,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qb4kvx-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"beBHfKOni\",layoutId:\"beBHfKOni\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Services\"})}),className:\"framer-4449xu\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],name:\"Introduction\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dsw670\",\"data-framer-name\":\"Services Wraper\",name:\"Services Wraper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:\"max(100vw - 30px, 1px)\",y:2391,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpfxo9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"dMgW5If7b\"},JWlDAB7wN:{variant:\"mUInUr0Cu\"}},children:/*#__PURE__*/_jsx(AccordionAccordion,{height:\"100%\",id:\"djrH_db0k\",layoutId:\"djrH_db0k\",style:{width:\"100%\"},variant:\"xg9ucDTK2\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-19e9daq\",\"data-framer-name\":\"Section Clients\",name:\"Section Clients\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-slt7xf\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"calc(100vw - 30px)\",y:2816,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ykoza8-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"AwqVH_uhw\",layoutId:\"AwqVH_uhw\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Select clients\"})}),className:\"framer-ywagtp\",\"data-framer-name\":\"Our clients\",fonts:[\"Inter\"],name:\"Our clients\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwwu7u\",\"data-framer-name\":\"Container\",name:\"Container\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wc5k0 hidden-hjt3b8\",\"data-framer-name\":\"Client Row\",name:\"Client Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:277,width:\"max(100vw - 30px, 20px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275.5,width:\"max((100vw - 75px) / 4, 1px)\",y:2996.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ekpth1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"X0thC1TX2\"}},children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"DfHvcXEsJ\",layoutId:\"DfHvcXEsJ\",lC72oufb2:\"Aloi is a legaltech company revolutionizing legal workflows through proprietary AI. Services delivered include Brand Identity, Web Design, and UI/UX Design. \",style:{height:\"100%\",width:\"100%\"},variant:\"TAVSi7b5s\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:277,width:\"max(100vw - 30px, 20px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:\"max((100vw - 75px) / 4, 1px)\",y:2947,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u9cc4e-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"X0thC1TX2\"}},children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"gaioQTpY_\",layoutId:\"gaioQTpY_\",lC72oufb2:\"Db is a journey brand, with a wide range of bags and luggage. Services delivered include Communications Design, Retail Concept, Web Design.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png\",srcSet:\"https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png 2556w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"TAVSi7b5s\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:277,width:\"max(100vw - 30px, 20px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"max((100vw - 75px) / 4, 1px)\",y:2996,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qe4lds-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"F2EA5KIN9\"}},children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"ym0YOXFB_\",layoutId:\"ym0YOXFB_\",lC72oufb2:\"DAGG is a leading AI incubator at the forefront of technology. Services delivered include Brand Identity, Web Design. \",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png\",srcSet:\"https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png 2772w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"jTtUP8UDI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:277,width:\"max(100vw - 30px, 20px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:279,width:\"max((100vw - 75px) / 4, 1px)\",y:2994.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15l0vur-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"X0thC1TX2\"}},children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"JurUHt2R_\",layoutId:\"JurUHt2R_\",lC72oufb2:\"HELWIT is a leader in the nicotine pouch industry, ethically produced in Sweden with a wide range of flavors. Services delivered include Packaging Design. \",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png\",srcSet:\"https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png 1264w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"TAVSi7b5s\",width:\"100%\"})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qj5gp hidden-cnf1rz hidden-xctdjl\",\"data-framer-name\":\"Client Row - Tablet\",name:\"Client Row - Tablet\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19g44uz-container hidden-hjt3b8\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"W495mBqm7\",layoutId:\"W495mBqm7\",lC72oufb2:\"We worked closely with Apple to enhance their marketing strategies. Through planning and execution, we helped Apple unveil groundbreaking technologies to the global market, solidifying their position as industry leaders.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/TO5TPCmWYD0tJXhyWNbQpwPZQU.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"F2EA5KIN9\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lxivsn-container hidden-hjt3b8\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"Du8wN6HHl\",layoutId:\"Du8wN6HHl\",lC72oufb2:\"Teaming up with Asos, we crafted strategies that resonate with their diverse audience. From social media campaigns to experiential activations, we helped them stay ahead of the competition and strengthen their brand presence.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/Z4N8JSguY9MV5OQRuVnPSGrA04.svg\",srcSet:\"https://framerusercontent.com/images/Z4N8JSguY9MV5OQRuVnPSGrA04.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Z4N8JSguY9MV5OQRuVnPSGrA04.svg 552w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"F2EA5KIN9\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zqm113-container hidden-hjt3b8\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"W5AXu2yo5\",layoutId:\"W5AXu2yo5\",lC72oufb2:\"Partnering with Google, we went on a journey to redefine digital advertising. Our efforts led to the development of highly targeted campaigns that deliver measurable results, empowering businesses to thrive in the digital space.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/jS5SnLEwaKkoqpQtVVwUsYvgKQ.svg\",srcSet:\"https://framerusercontent.com/images/jS5SnLEwaKkoqpQtVVwUsYvgKQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jS5SnLEwaKkoqpQtVVwUsYvgKQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jS5SnLEwaKkoqpQtVVwUsYvgKQ.svg 1374w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"X0thC1TX2\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vimttf-container hidden-hjt3b8\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"q0QeTVwhQ\",layoutId:\"q0QeTVwhQ\",lC72oufb2:\"Driving innovation with Gucci, we reimagined e-commerce experiences for the modern consumer. Our approach to digital transformation resulted in streamlined processes and increased conversion rates.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/a8owDXA30TZAD7y3UOjLVusi9Q.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"F2EA5KIN9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{height:277,width:\"max((100vw - 60px) / 3, 200px)\",y:2947}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-187sgcg-container\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"Cgqpo0pAZ\",layoutId:\"Cgqpo0pAZ\",lC72oufb2:\"Aloi is a legaltech company revolutionizing legal workflows through proprietary AI. Services delivered include Brand Identity, Web Design, and UI/UX Design. \",style:{height:\"100%\",width:\"100%\"},variant:\"X0thC1TX2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{height:277,width:\"max((100vw - 60px) / 3, 200px)\",y:2947}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17t3qpz-container\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"Rwvta3PjD\",layoutId:\"Rwvta3PjD\",lC72oufb2:\"Db is a journey brand, with a wide range of bags and luggage. Services delivered include Communications Design, Retail Concept, Web Design.\",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png\",srcSet:\"https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a1aFGhCHdjzXBOVeekenEojnwg.png 2556w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"X0thC1TX2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{height:277,width:\"max((100vw - 60px) / 3, 200px)\",y:2947}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15x91b5-container\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"QI_3toWQu\",layoutId:\"QI_3toWQu\",lC72oufb2:\"DAGG is a leading AI incubator at the forefront of technology. Services delivered include Brand Identity, Web Design. \",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png\",srcSet:\"https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IdGSzeEuDTelKFteu1ktMO4kVJw.png 2772w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"F2EA5KIN9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{height:277,width:\"max((100vw - 60px) / 3, 200px)\",y:3239}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a5fcto-container\",children:/*#__PURE__*/_jsx(AboutClientCard,{height:\"100%\",id:\"lZA_KHoF3\",layoutId:\"lZA_KHoF3\",lC72oufb2:\"HELWIT is a leader in the nicotine pouch industry, ethically produced in Sweden with a wide range of flavors. Services delivered include Packaging Design. \",o1yMRfyyP:addImageAlt({src:\"https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png\",srcSet:\"https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JnwznMdQvTHDHT6AgnORhEoMsXw.png 1264w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"X0thC1TX2\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-gr9axu\",\"data-framer-name\":\"Section Testimonials\",name:\"Section Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hesjha\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined},JWlDAB7wN:{y:3636}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"calc(100vw - 30px)\",y:3441,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw4akt-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"tDS6LCEQ7\",layoutId:\"tDS6LCEQ7\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Testimonials\"})}),className:\"framer-k6gisf\",\"data-framer-name\":\"What our clients say\",fonts:[\"Inter\"],name:\"What our clients say\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{y:3767}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,width:\"calc(100vw - 30px)\",y:3572,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xu6hfi-container hidden-xctdjl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{kBM7Fv7NS:undefined,ObBlL2Bkk:undefined,variant:\"u8lbWYdKm\",xSoFtQf1E:undefined}},children:/*#__PURE__*/_jsx(AboutTestimonialSlider,{BwmASNSxY:addImageAlt({src:\"https://framerusercontent.com/images/Y44BoWtHHcXwnVIGUKnvc3QB14.webp\",srcSet:\"https://framerusercontent.com/images/Y44BoWtHHcXwnVIGUKnvc3QB14.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Y44BoWtHHcXwnVIGUKnvc3QB14.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y44BoWtHHcXwnVIGUKnvc3QB14.webp 1920w\"},\"\"),height:\"100%\",id:\"isddOqNqx\",kBM7Fv7NS:\"1gxl120\",layoutId:\"isddOqNqx\",ObBlL2Bkk:\"1xsxq08\",style:{width:\"100%\"},subcL21wx:addImageAlt({src:\"https://framerusercontent.com/images/VeuO6Cejl4XIvMt4QLwyAjwbs.webp\",srcSet:\"https://framerusercontent.com/images/VeuO6Cejl4XIvMt4QLwyAjwbs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VeuO6Cejl4XIvMt4QLwyAjwbs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/VeuO6Cejl4XIvMt4QLwyAjwbs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/VeuO6Cejl4XIvMt4QLwyAjwbs.webp 2880w\"},\"\"),variant:\"OGufm1PK7\",width:\"100%\",xSoFtQf1E:\"1q54p9j\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5qcx0m-container hidden-cnf1rz hidden-hjt3b8\",\"data-framer-name\":\"Slideshow - Mobile\",name:\"Slideshow - Mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:31,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",id:\"NRkOB7sEX\",intervalControl:5,itemAmount:1,layoutId:\"NRkOB7sEX\",name:\"Slideshow - Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgb(243, 243, 245)\",dotsBlur:0,dotsFill:\"rgb(0, 0, 0)\",dotsGap:8,dotsInset:0,dotSize:9,dotsOpacity:.1,dotsPadding:10,dotsRadius:4,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9nrgg\",\"data-framer-name\":\"Testimonial Mobile 1\",name:\"Testimonial Mobile 1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n9rcy7\",\"data-framer-name\":\"Image Container\",name:\"Image Container\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:1639,src:\"https://framerusercontent.com/images/MnXOoalleO0qaIDaaWORy1E4.webp\"},className:\"framer-s932jz\",\"data-framer-name\":\"Image 1\",name:\"Image 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s0r5q1\",\"data-framer-name\":\"Testimonial Container\",name:\"Testimonial Container\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11jyq4t\",\"data-framer-name\":\"Testimonial 1\",name:\"Testimonial 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"After four years of collaboration, I continue to be impressed by Dennis\u2019 ability to uncover fresh perspectives and innovative tools to elevate our brand experience. His contributions have been pivotal in shaping the brand\u2019s expression to what it is today.\"'})}),className:\"framer-1abu7hd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1se7tiu\",\"data-framer-name\":\"Author\",name:\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Vincent Laine\"})}),className:\"framer-os9z1l\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],name:\"Tommy Jacobson\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Design Director, Db\"})}),className:\"framer-jku3u7\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],name:\"Partner\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5gb56y\",\"data-framer-name\":\"Testimonial Mobile 2\",name:\"Testimonial Mobile 2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yj90py\",\"data-framer-name\":\"Image Container\",name:\"Image Container\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4746,intrinsicWidth:3575,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/Y44BoWtHHcXwnVIGUKnvc3QB14.webp\"},className:\"framer-130x1v0\",\"data-framer-name\":\"Image 2\",name:\"Image 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ircb0u\",\"data-framer-name\":\"Testimonial Container\",name:\"Testimonial Container\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iod720\",\"data-framer-name\":\"Testimonial 2\",name:\"Testimonial 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Over the past years we have re-imagined the direction of the business. Dennis has been diligent in his approach ensuring that everything from sales tools to marketing assets are both beautifully designed and built to scale.\"'})}),className:\"framer-1blvtkj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2sp4xa\",\"data-framer-name\":\"Author\",name:\"Author\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Jonathan Weaver\"})}),className:\"framer-fdq5bh\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],name:\"Tommy Jacobson\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"CMO, Db\"})}),className:\"framer-bvixn8\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],name:\"Partner\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:300,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1xzsdau\",\"data-framer-name\":\"Section News\",id:elementId2,name:\"Section News\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5plmo3\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l9cpk5\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined},JWlDAB7wN:{y:4377}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:\"calc(100vw - 30px)\",y:4182,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iw6ebz-container\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"riZIA1ZXJ\",layoutId:\"riZIA1ZXJ\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1acfhud\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"News & updates\"})}),className:\"framer-37ggin\",\"data-framer-name\":\"News\",fonts:[\"Inter\"],name:\"News\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rEi2PdCj1\"},implicitPathVariables:undefined},{href:{webPageId:\"rEi2PdCj1\"},implicitPathVariables:undefined},{href:{webPageId:\"rEi2PdCj1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined},JWlDAB7wN:{y:4414.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:4219.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ce01b-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{Y7ZaaF8zk:resolvedLinks[2]},JWlDAB7wN:{Y7ZaaF8zk:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(TextLinkTextLinkArrow,{height:\"100%\",id:\"YhELNoyVj\",layoutId:\"YhELNoyVj\",mI3TCS136:\"All Articles\",variant:\"hU3jkonk_\",width:\"100%\",Y7ZaaF8zk:resolvedLinks[0]})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdwr9h\",\"data-framer-name\":\"Article Row\",name:\"Article Row\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kyps7t\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"c37uWYd0c\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"c37uWYd0c\",name:\"hPeIhZb7Q\",type:\"Identifier\"},{collection:\"c37uWYd0c\",name:\"PnlMQ9LWm\",type:\"Identifier\"},{collection:\"c37uWYd0c\",name:\"JdMjytSDK\",type:\"Identifier\"},{collection:\"c37uWYd0c\",name:\"odk7MCjnW\",type:\"Identifier\"},{collection:\"c37uWYd0c\",name:\"sXjwZPlEd\",type:\"Identifier\"},{collection:\"c37uWYd0c\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection===null||collection===void 0?void 0:collection.map(({hPeIhZb7Q:hPeIhZb7Qc37uWYd0c,id:idc37uWYd0c,JdMjytSDK:JdMjytSDKc37uWYd0c,odk7MCjnW:odk7MCjnWc37uWYd0c,PnlMQ9LWm:PnlMQ9LWmc37uWYd0c,sXjwZPlEd:sXjwZPlEdc37uWYd0c},i)=>{PnlMQ9LWmc37uWYd0c!==null&&PnlMQ9LWmc37uWYd0c!==void 0?PnlMQ9LWmc37uWYd0c:PnlMQ9LWmc37uWYd0c=\"\";JdMjytSDKc37uWYd0c!==null&&JdMjytSDKc37uWYd0c!==void 0?JdMjytSDKc37uWYd0c:JdMjytSDKc37uWYd0c=\"\";odk7MCjnWc37uWYd0c!==null&&odk7MCjnWc37uWYd0c!==void 0?odk7MCjnWc37uWYd0c:odk7MCjnWc37uWYd0c=\"\";sXjwZPlEdc37uWYd0c!==null&&sXjwZPlEdc37uWYd0c!==void 0?sXjwZPlEdc37uWYd0c:sXjwZPlEdc37uWYd0c=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`c37uWYd0c-${idc37uWYd0c}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{sXjwZPlEd:sXjwZPlEdc37uWYd0c},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sXjwZPlEd:sXjwZPlEdc37uWYd0c},webPageId:\"Ib1nxePpt\"},implicitPathVariables:undefined},{href:{pathVariables:{sXjwZPlEd:sXjwZPlEdc37uWYd0c},webPageId:\"Ib1nxePpt\"},implicitPathVariables:undefined},{href:{pathVariables:{sXjwZPlEd:sXjwZPlEdc37uWYd0c},webPageId:\"Ib1nxePpt\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:\"calc(100vw - 30px)\",y:undefined},JWlDAB7wN:{y:4508}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:485,width:\"max((max(100vw - 30px, 1px) - 30px) / 3, 1px)\",y:4313,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oep51f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{Qxj8PMfxV:resolvedLinks1[2],variant:\"aE6jyyDCc\"},JWlDAB7wN:{Qxj8PMfxV:resolvedLinks1[1],variant:\"aE6jyyDCc\"}},children:/*#__PURE__*/_jsx(NewsNewsArticle,{GdNar7EyN:PnlMQ9LWmc37uWYd0c,height:\"100%\",id:\"VprPmpTIv\",layoutId:\"VprPmpTIv\",LNjJXUTM9:JdMjytSDKc37uWYd0c,mIOOQqdxL:odk7MCjnWc37uWYd0c,Omtc4De91:\"Join us on a journey through the digital landscape as we explore the transformative power of technology in today's interconnected world.\",Qxj8PMfxV:resolvedLinks1[0],style:{width:\"100%\"},variant:\"CTHgIdto4\",width:\"100%\",ZYZ194zvr:toResponsiveImage(hPeIhZb7Qc37uWYd0c)})})})})})})})},idc37uWYd0c);})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I68JSX1XX\"},implicitPathVariables:undefined},{href:{webPageId:\"I68JSX1XX\"},implicitPathVariables:undefined},{href:{webPageId:\"I68JSX1XX\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined},JWlDAB7wN:{y:5113}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:\"100vw\",y:4918,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rm84nt-container\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{__framer__variantAppearEffectEnabled:undefined,fayx_WUJb:resolvedLinks2[2],variant:\"GGP0N56ps\"},JWlDAB7wN:{fayx_WUJb:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(GlobalSectionCTAWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref5,target:\"AdZfLnaLO\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,bJdYDnmQo:\"\",fayx_WUJb:resolvedLinks2[0],height:\"100%\",id:\"tjYrbNY12\",layoutId:\"tjYrbNY12\",style:{width:\"100%\"},variant:\"vpK9OOtl5\",width:\"100%\",ZDfZwYuPj:\"Searching for a design partner?\",zKDm7Bppc:\"https://res.cloudinary.com/dvyfxkxbt/video/upload/v1737545793/Bending_Glass_Shapes_uhd_2930629_hkfakd.mp4\",zow_NcOKW:\"Let's Talk\"})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SwVjGceLR\",webPageId:\"pNHeRDjTh\"},implicitPathVariables:undefined},{href:{hash:\":SwVjGceLR\",webPageId:\"pNHeRDjTh\"},implicitPathVariables:undefined},{href:{hash:\":SwVjGceLR\",webPageId:\"pNHeRDjTh\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined},JWlDAB7wN:{y:5733}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:\"100vw\",y:5538,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vc90bs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"In5qJquLm\",XOac4bt7c:resolvedLinks3[2]},JWlDAB7wN:{variant:\"Wkpy7bZw9\",XOac4bt7c:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"QbYNrz2Hd\",layoutId:\"QbYNrz2Hd\",style:{width:\"100%\"},variant:\"tNEqhl1aI\",width:\"100%\",XOac4bt7c:resolvedLinks3[0],XWE_CkSGu:\"1a8cyqa\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-MPmMG { background: white; }`,\".framer-MPmMG.framer-1swyn8x, .framer-MPmMG .framer-1swyn8x { display: block; }\",\".framer-MPmMG.framer-cnf1rz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-MPmMG .framer-rj2wfk { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-MPmMG .framer-1ag4w9u-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-MPmMG .framer-1mkd901-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-MPmMG.framer-16kqe9u { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-MPmMG.framer-kswl8i-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-MPmMG .framer-5s77dq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-MPmMG .framer-19w6r52 { align-content: center; align-items: center; background: linear-gradient(180deg, #545454 0%, rgb(255, 255, 255) 5%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-17y77xv-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; z-index: 1; }\",\".framer-MPmMG .framer-1b9kv4b { flex: none; height: 1px; overflow: visible; position: relative; scroll-margin-top: 400px; width: 100%; }\",\".framer-MPmMG .framer-glf5ib { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 45px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1aya5zp-container, .framer-MPmMG .framer-1lczjkp-container, .framer-MPmMG .framer-qb4kvx-container, .framer-MPmMG .framer-ykoza8-container, .framer-MPmMG .framer-aw4akt-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-nkf3jp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1qgfui4 { 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: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1cz5488, .framer-MPmMG .framer-1wa3c4, .framer-MPmMG .framer-4449xu, .framer-MPmMG .framer-ywagtp, .framer-MPmMG .framer-k6gisf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MPmMG .framer-1vntaum { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-MPmMG .framer-px28gr, .framer-MPmMG .framer-eeufri { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 460px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPmMG .framer-wvbo1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-13m96o2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-MPmMG .framer-mrcw9b, .framer-MPmMG .framer-qfbyyd, .framer-MPmMG .framer-1pwwu7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1cc03mr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-169rezr-container, .framer-MPmMG .framer-86hxk9-container, .framer-MPmMG .framer-11y984a-container, .framer-MPmMG .framer-1mpfxo9-container, .framer-MPmMG .framer-oep51f-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-MPmMG .framer-3m7hrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1fpnxid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-dsw670 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-19e9daq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-slt7xf, .framer-MPmMG .framer-hesjha { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-19wc5k0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-ekpth1-container { aspect-ratio: 1.0072595281306715 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 280px); position: relative; width: 1px; }\",\".framer-MPmMG .framer-u9cc4e-container, .framer-MPmMG .framer-qe4lds-container { aspect-ratio: 1.0066844919786095 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 280px); position: relative; width: 1px; }\",\".framer-MPmMG .framer-15l0vur-container { aspect-ratio: 1.0080213903743316 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 279px); position: relative; width: 1px; }\",\".framer-MPmMG .framer-13qj5gp { display: grid; flex: none; gap: 15px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-19g44uz-container, .framer-MPmMG .framer-lxivsn-container, .framer-MPmMG .framer-zqm113-container, .framer-MPmMG .framer-1vimttf-container, .framer-MPmMG .framer-17t3qpz-container, .framer-MPmMG .framer-15x91b5-container { align-self: start; aspect-ratio: 1.0066844919786095 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 199px); justify-self: start; position: relative; width: 100%; }\",\".framer-MPmMG .framer-187sgcg-container { align-self: start; aspect-ratio: 1.0072595281306715 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 199px); justify-self: start; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1a5fcto-container { align-self: start; aspect-ratio: 1.0080213903743316 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 198px); justify-self: start; position: relative; width: 100%; }\",\".framer-MPmMG .framer-gr9axu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1xu6hfi-container, .framer-MPmMG .framer-1iw6ebz-container, .framer-MPmMG .framer-rm84nt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MPmMG .framer-5qcx0m-container { flex: none; height: 520px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1o9nrgg, .framer-MPmMG .framer-5gb56y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-MPmMG .framer-n9rcy7, .framer-MPmMG .framer-1yj90py { align-content: center; align-items: center; aspect-ratio: 1.21875 / 1; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 164px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MPmMG .framer-s932jz, .framer-MPmMG .framer-130x1v0 { flex: none; height: 100%; position: relative; width: 100%; z-index: 1; }\",\".framer-MPmMG .framer-s0r5q1, .framer-MPmMG .framer-ircb0u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-11jyq4t, .framer-MPmMG .framer-iod720 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-MPmMG .framer-1abu7hd, .framer-MPmMG .framer-1blvtkj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-MPmMG .framer-1se7tiu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-os9z1l, .framer-MPmMG .framer-fdq5bh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MPmMG .framer-jku3u7, .framer-MPmMG .framer-bvixn8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-MPmMG .framer-2sp4xa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 390px; }\",\".framer-MPmMG .framer-1xzsdau { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-5plmo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-l9cpk5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-1acfhud, .framer-MPmMG .framer-1rdwr9h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MPmMG .framer-37ggin { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MPmMG .framer-12ce01b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MPmMG .framer-kyps7t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-MPmMG .framer-1vc90bs-container { flex: none; height: auto; position: sticky; width: 100%; will-change: transform; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MPmMG.framer-cnf1rz, .framer-MPmMG .framer-rj2wfk, .framer-MPmMG .framer-5s77dq, .framer-MPmMG .framer-19w6r52, .framer-MPmMG .framer-glf5ib, .framer-MPmMG .framer-nkf3jp, .framer-MPmMG .framer-1qgfui4, .framer-MPmMG .framer-1vntaum, .framer-MPmMG .framer-wvbo1t, .framer-MPmMG .framer-13m96o2, .framer-MPmMG .framer-mrcw9b, .framer-MPmMG .framer-1cc03mr, .framer-MPmMG .framer-3m7hrf, .framer-MPmMG .framer-1fpnxid, .framer-MPmMG .framer-qfbyyd, .framer-MPmMG .framer-dsw670, .framer-MPmMG .framer-19e9daq, .framer-MPmMG .framer-slt7xf, .framer-MPmMG .framer-1pwwu7u, .framer-MPmMG .framer-19wc5k0, .framer-MPmMG .framer-gr9axu, .framer-MPmMG .framer-hesjha, .framer-MPmMG .framer-1o9nrgg, .framer-MPmMG .framer-n9rcy7, .framer-MPmMG .framer-s0r5q1, .framer-MPmMG .framer-11jyq4t, .framer-MPmMG .framer-1se7tiu, .framer-MPmMG .framer-5gb56y, .framer-MPmMG .framer-1yj90py, .framer-MPmMG .framer-ircb0u, .framer-MPmMG .framer-iod720, .framer-MPmMG .framer-2sp4xa, .framer-MPmMG .framer-1xzsdau, .framer-MPmMG .framer-5plmo3, .framer-MPmMG .framer-l9cpk5, .framer-MPmMG .framer-1acfhud, .framer-MPmMG .framer-1rdwr9h, .framer-MPmMG .framer-kyps7t { gap: 0px; } .framer-MPmMG.framer-cnf1rz > *, .framer-MPmMG .framer-5s77dq > *, .framer-MPmMG .framer-3m7hrf > *, .framer-MPmMG .framer-1se7tiu > *, .framer-MPmMG .framer-2sp4xa > *, .framer-MPmMG .framer-1xzsdau > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MPmMG.framer-cnf1rz > :first-child, .framer-MPmMG .framer-5s77dq > :first-child, .framer-MPmMG .framer-glf5ib > :first-child, .framer-MPmMG .framer-nkf3jp > :first-child, .framer-MPmMG .framer-1qgfui4 > :first-child, .framer-MPmMG .framer-13m96o2 > :first-child, .framer-MPmMG .framer-mrcw9b > :first-child, .framer-MPmMG .framer-3m7hrf > :first-child, .framer-MPmMG .framer-1fpnxid > :first-child, .framer-MPmMG .framer-qfbyyd > :first-child, .framer-MPmMG .framer-19e9daq > :first-child, .framer-MPmMG .framer-slt7xf > :first-child, .framer-MPmMG .framer-1pwwu7u > :first-child, .framer-MPmMG .framer-gr9axu > :first-child, .framer-MPmMG .framer-hesjha > :first-child, .framer-MPmMG .framer-1o9nrgg > :first-child, .framer-MPmMG .framer-11jyq4t > :first-child, .framer-MPmMG .framer-1se7tiu > :first-child, .framer-MPmMG .framer-5gb56y > :first-child, .framer-MPmMG .framer-iod720 > :first-child, .framer-MPmMG .framer-2sp4xa > :first-child, .framer-MPmMG .framer-1xzsdau > :first-child, .framer-MPmMG .framer-5plmo3 > :first-child, .framer-MPmMG .framer-l9cpk5 > :first-child { margin-top: 0px; } .framer-MPmMG.framer-cnf1rz > :last-child, .framer-MPmMG .framer-5s77dq > :last-child, .framer-MPmMG .framer-glf5ib > :last-child, .framer-MPmMG .framer-nkf3jp > :last-child, .framer-MPmMG .framer-1qgfui4 > :last-child, .framer-MPmMG .framer-13m96o2 > :last-child, .framer-MPmMG .framer-mrcw9b > :last-child, .framer-MPmMG .framer-3m7hrf > :last-child, .framer-MPmMG .framer-1fpnxid > :last-child, .framer-MPmMG .framer-qfbyyd > :last-child, .framer-MPmMG .framer-19e9daq > :last-child, .framer-MPmMG .framer-slt7xf > :last-child, .framer-MPmMG .framer-1pwwu7u > :last-child, .framer-MPmMG .framer-gr9axu > :last-child, .framer-MPmMG .framer-hesjha > :last-child, .framer-MPmMG .framer-1o9nrgg > :last-child, .framer-MPmMG .framer-11jyq4t > :last-child, .framer-MPmMG .framer-1se7tiu > :last-child, .framer-MPmMG .framer-5gb56y > :last-child, .framer-MPmMG .framer-iod720 > :last-child, .framer-MPmMG .framer-2sp4xa > :last-child, .framer-MPmMG .framer-1xzsdau > :last-child, .framer-MPmMG .framer-5plmo3 > :last-child, .framer-MPmMG .framer-l9cpk5 > :last-child { margin-bottom: 0px; } .framer-MPmMG .framer-rj2wfk > *, .framer-MPmMG .framer-19w6r52 > *, .framer-MPmMG .framer-dsw670 > *, .framer-MPmMG .framer-1acfhud > *, .framer-MPmMG .framer-1rdwr9h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MPmMG .framer-rj2wfk > :first-child, .framer-MPmMG .framer-19w6r52 > :first-child, .framer-MPmMG .framer-1vntaum > :first-child, .framer-MPmMG .framer-wvbo1t > :first-child, .framer-MPmMG .framer-1cc03mr > :first-child, .framer-MPmMG .framer-dsw670 > :first-child, .framer-MPmMG .framer-19wc5k0 > :first-child, .framer-MPmMG .framer-n9rcy7 > :first-child, .framer-MPmMG .framer-s0r5q1 > :first-child, .framer-MPmMG .framer-1yj90py > :first-child, .framer-MPmMG .framer-ircb0u > :first-child, .framer-MPmMG .framer-1acfhud > :first-child, .framer-MPmMG .framer-1rdwr9h > :first-child, .framer-MPmMG .framer-kyps7t > :first-child { margin-left: 0px; } .framer-MPmMG .framer-rj2wfk > :last-child, .framer-MPmMG .framer-19w6r52 > :last-child, .framer-MPmMG .framer-1vntaum > :last-child, .framer-MPmMG .framer-wvbo1t > :last-child, .framer-MPmMG .framer-1cc03mr > :last-child, .framer-MPmMG .framer-dsw670 > :last-child, .framer-MPmMG .framer-19wc5k0 > :last-child, .framer-MPmMG .framer-n9rcy7 > :last-child, .framer-MPmMG .framer-s0r5q1 > :last-child, .framer-MPmMG .framer-1yj90py > :last-child, .framer-MPmMG .framer-ircb0u > :last-child, .framer-MPmMG .framer-1acfhud > :last-child, .framer-MPmMG .framer-1rdwr9h > :last-child, .framer-MPmMG .framer-kyps7t > :last-child { margin-right: 0px; } .framer-MPmMG .framer-glf5ib > *, .framer-MPmMG .framer-mrcw9b > *, .framer-MPmMG .framer-qfbyyd > *, .framer-MPmMG .framer-slt7xf > *, .framer-MPmMG .framer-1pwwu7u > *, .framer-MPmMG .framer-hesjha > *, .framer-MPmMG .framer-1o9nrgg > *, .framer-MPmMG .framer-5gb56y > *, .framer-MPmMG .framer-l9cpk5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-MPmMG .framer-nkf3jp > *, .framer-MPmMG .framer-13m96o2 > *, .framer-MPmMG .framer-1fpnxid > *, .framer-MPmMG .framer-19e9daq > *, .framer-MPmMG .framer-gr9axu > *, .framer-MPmMG .framer-5plmo3 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-MPmMG .framer-1qgfui4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MPmMG .framer-1vntaum > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-MPmMG .framer-wvbo1t > *, .framer-MPmMG .framer-n9rcy7 > *, .framer-MPmMG .framer-s0r5q1 > *, .framer-MPmMG .framer-1yj90py > *, .framer-MPmMG .framer-ircb0u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MPmMG .framer-1cc03mr > *, .framer-MPmMG .framer-19wc5k0 > *, .framer-MPmMG .framer-kyps7t > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-MPmMG .framer-11jyq4t > *, .framer-MPmMG .framer-iod720 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-MPmMG { background: white; } .framer-MPmMG.framer-cnf1rz { width: 810px; } .framer-MPmMG .framer-glf5ib { justify-content: center; } .framer-MPmMG .framer-1vntaum { width: 100%; } .framer-MPmMG .framer-187sgcg-container { height: var(--framer-aspect-ratio-supported, 249px); order: 0; } .framer-MPmMG .framer-17t3qpz-container { height: var(--framer-aspect-ratio-supported, 249px); order: 1; } .framer-MPmMG .framer-15x91b5-container { height: var(--framer-aspect-ratio-supported, 249px); order: 2; } .framer-MPmMG .framer-1a5fcto-container { height: var(--framer-aspect-ratio-supported, 248px); order: 3; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-MPmMG { background: white; } .framer-MPmMG.framer-cnf1rz { width: 390px; } .framer-MPmMG .framer-rj2wfk { flex-direction: column; order: 4; } .framer-MPmMG .framer-1mkd901-container, .framer-MPmMG .framer-19w6r52 { order: 0; } .framer-MPmMG.framer-16kqe9u { background-color: unset; } .framer-MPmMG .framer-5s77dq, .framer-MPmMG .framer-glf5ib { order: 2; } .framer-MPmMG .framer-17y77xv-container { height: 90vh; } .framer-MPmMG .framer-1b9kv4b { height: auto; order: 1; } .framer-MPmMG .framer-nkf3jp { gap: 30px; } .framer-MPmMG .framer-1vntaum { flex-direction: column; overflow: visible; width: 100%; } .framer-MPmMG .framer-px28gr, .framer-MPmMG .framer-eeufri { flex: none; max-width: unset; width: 100%; } .framer-MPmMG .framer-wvbo1t { order: 3; padding: 0px 15px 120px 15px; } .framer-MPmMG .framer-13m96o2 { gap: 30px; padding: 0px; } .framer-MPmMG .framer-1cc03mr { flex-direction: column; gap: 45px; } .framer-MPmMG .framer-169rezr-container, .framer-MPmMG .framer-86hxk9-container, .framer-MPmMG .framer-11y984a-container, .framer-MPmMG .framer-oep51f-container { flex: none; width: 100%; } .framer-MPmMG .framer-3m7hrf { gap: 30px; order: 4; } .framer-MPmMG .framer-19e9daq { order: 5; } .framer-MPmMG .framer-19wc5k0 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(20px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-MPmMG .framer-ekpth1-container, .framer-MPmMG .framer-u9cc4e-container, .framer-MPmMG .framer-qe4lds-container { align-self: start; flex: none; height: var(--framer-aspect-ratio-supported, 199px); justify-self: start; width: 100%; } .framer-MPmMG .framer-15l0vur-container { align-self: start; flex: none; height: var(--framer-aspect-ratio-supported, 198px); justify-self: start; width: 100%; } .framer-MPmMG .framer-gr9axu { order: 8; } .framer-MPmMG .framer-1xzsdau { order: 9; } .framer-MPmMG .framer-1rdwr9h { flex-direction: column; } .framer-MPmMG .framer-kyps7t { flex: none; flex-direction: column; gap: 30px; width: 100%; } .framer-MPmMG .framer-rm84nt-container { order: 10; } .framer-MPmMG .framer-1vc90bs-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MPmMG .framer-rj2wfk, .framer-MPmMG .framer-nkf3jp, .framer-MPmMG .framer-1vntaum, .framer-MPmMG .framer-13m96o2, .framer-MPmMG .framer-1cc03mr, .framer-MPmMG .framer-3m7hrf, .framer-MPmMG .framer-19wc5k0, .framer-MPmMG .framer-1rdwr9h, .framer-MPmMG .framer-kyps7t { gap: 0px; } .framer-MPmMG .framer-rj2wfk > *, .framer-MPmMG .framer-1rdwr9h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MPmMG .framer-rj2wfk > :first-child, .framer-MPmMG .framer-nkf3jp > :first-child, .framer-MPmMG .framer-1vntaum > :first-child, .framer-MPmMG .framer-13m96o2 > :first-child, .framer-MPmMG .framer-1cc03mr > :first-child, .framer-MPmMG .framer-3m7hrf > :first-child, .framer-MPmMG .framer-1rdwr9h > :first-child, .framer-MPmMG .framer-kyps7t > :first-child { margin-top: 0px; } .framer-MPmMG .framer-rj2wfk > :last-child, .framer-MPmMG .framer-nkf3jp > :last-child, .framer-MPmMG .framer-1vntaum > :last-child, .framer-MPmMG .framer-13m96o2 > :last-child, .framer-MPmMG .framer-1cc03mr > :last-child, .framer-MPmMG .framer-3m7hrf > :last-child, .framer-MPmMG .framer-1rdwr9h > :last-child, .framer-MPmMG .framer-kyps7t > :last-child { margin-bottom: 0px; } .framer-MPmMG .framer-nkf3jp > *, .framer-MPmMG .framer-1vntaum > *, .framer-MPmMG .framer-13m96o2 > *, .framer-MPmMG .framer-3m7hrf > *, .framer-MPmMG .framer-kyps7t > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MPmMG .framer-1cc03mr > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-MPmMG .framer-19wc5k0 > *, .framer-MPmMG .framer-19wc5k0 > :first-child, .framer-MPmMG .framer-19wc5k0 > :last-child { margin: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5402.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JWlDAB7wN\":{\"layout\":[\"fixed\",\"auto\"]},\"AwhOnpHay\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerpNHeRDjTh=withCSS(Component,css,\"framer-MPmMG\");export default FramerpNHeRDjTh;FramerpNHeRDjTh.displayName=\"Legacy\";FramerpNHeRDjTh.defaultProps={height:5402.5,width:1200};addFonts(FramerpNHeRDjTh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationNavigationDesktopFonts,...NavigationNavigationMobileFonts,...NavigationMobileFullNavigationFonts,...AboutAboutHeaderFonts,...GlobalLineAnimationGlobalFonts,...AboutCoreValueFonts,...AccordionAccordionFonts,...AboutClientCardFonts,...AboutTestimonialSliderFonts,...SlideshowFonts,...TextLinkTextLinkArrowFonts,...NewsNewsArticleFonts,...GlobalSectionCTAFonts,...FooterFooterFonts,...UtilitiesChevronCursorFonts,...FooterEnaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpNHeRDjTh\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JWlDAB7wN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AwhOnpHay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5402.5\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "VideoFonts", "getFonts", "Video", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "number", "paragraph", "title", "videoURL", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "rFExBnb6h", "Mz0wvNH6v", "kB1rNTf7X", "ZLxZW1prj", "y33fYjAOj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Video", "RichText2", "css", "FramerbnagblXJQ", "withCSS", "bnagblXJQ_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFontsFromSharedStyle", "fonts", "o", "e", "t", "h", "moduleBaseUrl", "icons", "iconKeys", "weightOptions", "styleKeyOptions", "styleOptionPropKeys", "optionKey", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "style", "isMounted", "pe", "iconKey", "useIconSelection", "styleOptionProps", "prop", "iconStyle", "se", "iconStyleKey", "activeStyle", "SelectedIcon", "setSelectedIcon", "ye", "h", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "hideStyleOptions", "styleOptions", "styleOptionsNumber", "name", "getIconSelection", "icon", "addPropertyControls", "ControlType", "result", "defaultEvents", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "C1aHFofEm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1j0b5pp", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerywmfPg6Td", "withCSS", "ywmfPg6Td_default", "addPropertyControls", "ControlType", "addFonts", "UtilitiesChevronCursorFonts", "getFonts", "ywmfPg6Td_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "transition3", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursorEndLeft", "cursorLeft", "cursorRight", "height", "id", "image1", "image2", "image3", "image4", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "subcL21wx", "BwmASNSxY", "VcuWulVmE", "V82VkGTJX", "ObBlL2Bkk", "xSoFtQf1E", "kBM7Fv7NS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearsrd0iv", "args", "onAppear1fnafab", "onAppearwptwzl", "onAppear1gda7rf", "onAppear1htt72s", "onAppeargjzfwm", "onTap1updlcu", "onTaprycw1u", "onTap1hx5aqe", "onTap13hko33", "onTapbza0uy", "onTap1i3ppsl", "onTap24r2x6", "useOnVariantChange", "isDisplayed", "ref1", "pe", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramerGmJX9wZ_Z", "withCSS", "GmJX9wZ_Z_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "transition4", "transition5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition6", "transformTemplate2", "toResponsiveImage", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "about", "height", "id", "logo", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "o1yMRfyyP", "lC72oufb2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1jjyy6x", "args", "onTap7fyovx", "onMouseLeave1u3k2u7", "onTap1r32sm", "onMouseEntergefjmg", "onTapccs3xg", "onMouseLeaveiqsbv9", "onTap1r5ggq6", "onTap1wny6fi", "onTapp7nimh", "onTap1n5jebh", "onTap11shfrg", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerGy5dsSOJa", "withCSS", "Gy5dsSOJa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "VideoFonts", "getFonts", "Video", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "UtilitiesScrollMoreFonts", "YjypPLli_default", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "toImageSrc", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "animation5", "transition6", "animation6", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "poster", "uRL", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "twBEjiRp1", "Q9MpMF_yE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdi4leu", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerGyKJqP2Z6", "withCSS", "GyKJqP2Z6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "css", "FramerG2PcQjA9C", "withCSS", "G2PcQjA9C_default", "addPropertyControls", "ControlType", "addFonts", "AccordionAccordionPlusFonts", "getFonts", "G2PcQjA9C_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "paragraph", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "h1ZthYPRp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1u83njm", "args", "onTapwtfasj", "onTap1tceenb", "onTapkeboek", "onTap1jfs64k", "onTap65t8tl", "onTap18iix5v", "onTap1jfzh66", "onTapz3k2f4", "onTapgmkdcg", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramereIuM0M4EB", "withCSS", "eIuM0M4EB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionAccordionRowFonts", "getFonts", "eIuM0M4EB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "Framery2aW366zJ", "withCSS", "y2aW366zJ_default", "addPropertyControls", "ControlType", "addFonts", "NavigationNavigationDesktopFonts", "getFonts", "F0lbt84nG_default", "NavigationNavigationDesktopWithVariantAppearEffect", "withVariantAppearEffect", "NavigationNavigationMobileFonts", "CA2UVAOBt_default", "NavigationNavigationMobileWithVariantAppearEffect", "NavigationMobileFullNavigationFonts", "uL6YOTdAZ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "AboutAboutHeaderFonts", "GyKJqP2Z6_default", "AboutAboutHeaderWithVariantAppearEffect", "GlobalLineAnimationGlobalFonts", "lw0LfyniE_default", "GlobalLineAnimationGlobalWithVariantAppearEffect", "AboutCoreValueFonts", "bnagblXJQ_default", "AccordionAccordionFonts", "y2aW366zJ_default", "AboutClientCardFonts", "Gy5dsSOJa_default", "AboutTestimonialSliderFonts", "GmJX9wZ_Z_default", "SlideshowFonts", "Slideshow", "TextLinkTextLinkArrowFonts", "MS7fGSvo6_default", "NewsNewsArticleFonts", "jt2UFqllB_default", "GlobalSectionCTAFonts", "bDuMp2cg2_default", "GlobalSectionCTAWithVariantAppearEffect", "FooterFooterFonts", "CPt2kErNr_default", "UtilitiesChevronCursorFonts", "ywmfPg6Td_default", "FooterEnaLogoFonts", "AHHq0AFcU_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "cursor", "cursor1", "cursor2", "cursor3", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hPeIhZb7Qc37uWYd0c", "PnlMQ9LWmc37uWYd0c", "JdMjytSDKc37uWYd0c", "odk7MCjnWc37uWYd0c", "sXjwZPlEdc37uWYd0c", "idc37uWYd0c", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "isDisplayed1", "elementId", "useRouteElementId", "ref3", "elementId1", "isDisplayed2", "isDisplayed3", "elementId2", "ref4", "router", "useRouter", "elementId3", "ref5", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "RichText2", "Image2", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "x14H8Qaae_default", "collection", "paginationInfo", "i", "PathVariablesContext", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerpNHeRDjTh", "withCSS", "pNHeRDjTh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
