{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/yOyTwhD5e5Dg6Aa0U8xc/wISw9Hk8TBVXE80hwOha/P5onzo_6_.js", "ssg:https://framerusercontent.com/modules/jcnnIIBafE312goo8vRg/lGg7OXjpsIYQGYwY6Q3i/vQBfqZYfu.js", "ssg:https://framerusercontent.com/modules/l8gUzvmEGNcpS0thXARs/5oLxN9JkonTB5GlT5SrG/xbAsgqKMU.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\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;const hasChildren=Children.count(slots)>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 slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight: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(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[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     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.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 isVisible=usePageVisibility();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     * */let 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(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.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:slots===null||slots===void 0?void 0:slots.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<(slots===null||slots===void 0?void 0:slots.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: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),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?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: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\",{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\",{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);});},[]);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},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;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let 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\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (a7ecdf4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"oe6x4NoKD\",\"CJhoYjZAH\",\"d3nkABN4j\"];const serializationHash=\"framer-q91c1\";const variantClassNames={CJhoYjZAH:\"framer-v-96mmze\",d3nkABN4j:\"framer-v-1is9k25\",oe6x4NoKD:\"framer-v-b1shjp\"};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 transitions={default:{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 humanReadableVariantMap={\"Gradient dos\":\"d3nkABN4j\",\"Gradient Uno\":\"CJhoYjZAH\",\"Variant 1\":\"oe6x4NoKD\"};const getProps=({background,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"oe6x4NoKD\",wEEsNO8zb:(_ref1=background!==null&&background!==void 0?background:props.wEEsNO8zb)!==null&&_ref1!==void 0?_ref1:'var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) /* {\"name\":\"Icon dark blue\"} */'};};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,wEEsNO8zb,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"oe6x4NoKD\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"CJhoYjZAH\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"d3nkABN4j\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b1shjp\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"oe6x4NoKD\",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:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(221, 221, 221)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:wEEsNO8zb,borderBottomLeftRadius:77.41,borderBottomRightRadius:77.41,borderTopLeftRadius:77.41,borderTopRightRadius:77.41,...style},variants:{CJhoYjZAH:{background:\"linear-gradient(180deg, rgb(0, 0, 0) 10%, rgb(3, 2, 18) 80%)\"},d3nkABN4j:{background:\"linear-gradient(180deg, rgb(248, 83, 81) 12.395943600453938%, rgb(168, 63, 62) 62.981205714340206%)\"}},...addPropertyOverrides({CJhoYjZAH:{\"data-framer-name\":\"Gradient Uno\"},d3nkABN4j:{\"data-framer-name\":\"Gradient dos\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bb9ikz\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:242,intrinsicWidth:106,layoutDependency:layoutDependency,layoutId:\"FmOK7RFAQ\",svg:'<svg width=\"106\" height=\"242\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"14.025\" cy=\"14.745\" r=\"9.5\" transform=\"rotate(57.743 14.025 14.745)\" stroke=\"#fff\"/><circle cx=\"91.384\" cy=\"227.256\" r=\"9.5\" transform=\"rotate(57.743 91.384 227.256)\" stroke=\"#fff\"/><path stroke=\"#fff\" stroke-dasharray=\"7 7\" d=\"m14.534 24.004 73.015 194.015\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wscgdt\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:242,intrinsicWidth:106,layoutDependency:layoutDependency,layoutId:\"gYhJeUbOS\",svg:'<svg width=\"106\" height=\"242\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"14.025\" cy=\"14.745\" r=\"9.5\" transform=\"rotate(57.743 14.025 14.745)\" stroke=\"#fff\"/><circle cx=\"91.384\" cy=\"227.256\" r=\"9.5\" transform=\"rotate(57.743 91.384 227.256)\" stroke=\"#fff\"/><path stroke=\"#fff\" stroke-dasharray=\"7 7\" d=\"m14.534 24.004 73.015 194.015\"/></svg>',withExternalLayout:true})]})})});});const css=['.framer-q91c1[data-border=\"true\"]::after, .framer-q91c1 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q91c1.framer-msk3r0, .framer-q91c1 .framer-msk3r0 { display: block; }\",\".framer-q91c1.framer-b1shjp { height: 305px; position: relative; width: 130px; }\",\".framer-q91c1 .framer-1bb9ikz, .framer-q91c1 .framer-1wscgdt { aspect-ratio: 0.4380165289256198 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); left: 0px; position: absolute; top: 0px; width: 106px; }\",\".framer-q91c1.framer-v-96mmze.framer-b1shjp, .framer-q91c1.framer-v-1is9k25.framer-b1shjp { align-content: center; align-items: center; aspect-ratio: 0.42671009771986973 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 305px); justify-content: center; padding: 0px 0px 0px 0px; }\",\".framer-q91c1.framer-v-96mmze .framer-1bb9ikz, .framer-q91c1.framer-v-1is9k25 .framer-1wscgdt { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-q91c1.framer-v-96mmze.framer-b1shjp { gap: 0px; } .framer-q91c1.framer-v-96mmze.framer-b1shjp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-q91c1.framer-v-96mmze.framer-b1shjp > :first-child { margin-top: 0px; } .framer-q91c1.framer-v-96mmze.framer-b1shjp > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-q91c1.framer-v-1is9k25.framer-b1shjp { gap: 0px; } .framer-q91c1.framer-v-1is9k25.framer-b1shjp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-q91c1.framer-v-1is9k25.framer-b1shjp > :first-child { margin-top: 0px; } .framer-q91c1.framer-v-1is9k25.framer-b1shjp > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 305\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CJhoYjZAH\":{\"layout\":[\"fixed\",\"fixed\"]},\"d3nkABN4j\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wEEsNO8zb\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerP5onzo_6_=withCSS(Component,css,\"framer-q91c1\");export default FramerP5onzo_6_;FramerP5onzo_6_.displayName=\"Icon/ Color component\";FramerP5onzo_6_.defaultProps={height:305,width:130};addPropertyControls(FramerP5onzo_6_,{variant:{options:[\"oe6x4NoKD\",\"CJhoYjZAH\",\"d3nkABN4j\"],optionTitles:[\"Variant 1\",\"Gradient Uno\",\"Gradient dos\"],title:\"Variant\",type:ControlType.Enum},wEEsNO8zb:{defaultValue:'var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) /* {\"name\":\"Icon dark blue\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerP5onzo_6_,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP5onzo_6_\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"wEEsNO8zb\\\":\\\"background\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"305\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CJhoYjZAH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d3nkABN4j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"130\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P5onzo_6_.map", "// Generated by Framer (a7ecdf4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"q_muzv1Sp\",\"amGBflSaW\"];const serializationHash=\"framer-tRFNc\";const variantClassNames={amGBflSaW:\"framer-v-1tv5zc5\",q_muzv1Sp:\"framer-v-12vvi4\"};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 transitions={default:{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 humanReadableVariantMap={\"Quote Mobile\":\"amGBflSaW\",Quote:\"q_muzv1Sp\"};const getProps=({height,id,text,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"q_muzv1Sp\",Xi7dF7Wq1:(_ref1=text!==null&&text!==void 0?text:props.Xi7dF7Wq1)!==null&&_ref1!==void 0?_ref1:\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\"};};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,Xi7dF7Wq1,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"q_muzv1Sp\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"amGBflSaW\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"amGBflSaW\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12vvi4\",className,classNames),\"data-framer-name\":\"Quote\",initial:variant,layoutDependency:layoutDependency,layoutId:\"q_muzv1Sp\",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({amGBflSaW:{\"data-framer-name\":\"Quote Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ejn10g\",layoutDependency:layoutDependency,layoutId:\"HwDWBYJ4N\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1952fe3\",\"data-framer-name\":'\"',fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"znGez7hAu\",svg:'<svg width=\"41\" height=\"29\" viewBox=\"-1 -1 41 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37 19.4C37 21.4 36.3333 23.1333 35 24.6C33.8 25.9333 32.0667 26.6 29.8 26.6C27.5333 26.6 25.7333 25.9333 24.4 24.6C23.0667 23.1333 22.4 21.4 22.4 19.4C22.4 14.4667 24 10 27.2 6.00001C30.4 2 33.4 0 36.2 0C37.6667 0 38.4 0.6 38.4 1.8C38.4 2.6 37.9333 3.4 37 4.2C34.4667 6.2 32.8 9 32 12.6C35.3333 13.4 37 15.6667 37 19.4ZM14.6 19.4C14.6 21.4 13.9333 23.1333 12.6 24.6C11.4 25.9333 9.66667 26.6 7.4 26.6C5.13333 26.6 3.33333 25.9333 2 24.6C0.666667 23.1333 0 21.4 0 19.4C0 14.4667 1.6 10 4.8 6.00001C8 2 11 0 13.8 0C15.2667 0 16 0.6 16 1.8C16 2.6 15.5333 3.4 14.6 4.2C12.0667 6.2 10.4 9 9.6 12.6C12.9333 13.4 14.6 15.6667 14.6 19.4Z\" fill=\"#E32320\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16lewax\",layoutDependency:layoutDependency,layoutId:\"wAIOcFUKZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(3, 2, 18))\"},children:\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\"})}),className:\"framer-4l0w2a\",\"data-framer-name\":\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"P9Q2r1ZtL\",style:{\"--extracted-r6o4lv\":\"rgb(3, 2, 18)\",\"--framer-paragraph-spacing\":\"0px\"},text:Xi7dF7Wq1,variants:{amGBflSaW:{\"--extracted-r6o4lv\":\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) \"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({amGBflSaW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) )\"},children:\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gllgru\",\"data-framer-name\":\"sign\",layoutDependency:layoutDependency,layoutId:\"mgliJcNIa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"26px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(3, 2, 18, 1))\"},children:\"Matt Dusig,\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"26px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-5dqwso, rgba(3, 2, 18, 1))\"},children:\"Icon\u2019s Founder\"})})]}),className:\"framer-1esicrj\",\"data-framer-name\":\"Matt Dusig, Icon\u2019s Founder\",fonts:[\"GF;Epilogue-800\",\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"NyjwBIaqx\",style:{\"--extracted-1w3ko1f\":\" rgba(3, 2, 18, 1)\",\"--extracted-5dqwso\":\" rgba(3, 2, 18, 1)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{amGBflSaW:{\"--extracted-2gxw0f\":\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) \",\"--extracted-r6o4lv\":\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) \"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({amGBflSaW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) )\"},children:\"Matt Dusig,\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18)) )\"},children:\"Icon\u2019s Founder\"})]})}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2pu08m\",layoutDependency:layoutDependency,layoutId:\"CELyWbnZD\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-k28g5t\",\"data-framer-name\":\"Vector 335\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UFMPbdkRV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 870 423\"><path d=\"M 799.898 150.993 C 798.673 149.315 799.82 149.273 802.572 149.391 C 813.463 149.857 822.654 154.291 829.68 158.913 C 849.292 171.816 861.53 186.858 865.849 204.302 C 872.332 230.485 859.818 257.499 833.542 278.615 C 649.942 426.15 -53.613 545.952 5.518 170.038 C 19.87 78.797 136.279 30.597 215.253 15.228 C 380.56 -16.944 561.722 14.863 722.361 54.075\" fill=\"transparent\" stroke-width=\"3\" stroke=\"rgb(227,35,32)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3922790465,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1sacx63\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:423,intrinsicWidth:451,layoutDependency:layoutDependency,layoutId:\"xKJflC1ua\",svg:'<svg width=\"451\" height=\"423\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M414.069 151.12c-.633-1.679-.04-1.721 1.381-1.603 5.625.466 10.371 4.904 14 9.53 10.128 12.914 16.449 27.969 18.679 45.428 3.348 26.205-3.114 53.243-16.685 74.376C336.625 426.513-26.721 546.417 3.816 170.182c7.412-91.32 67.53-139.56 108.317-154.943 85.372-32.199 178.932-.365 261.893 38.88\" stroke=\"#E32320\" stroke-width=\"3\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true})]})]})})});});const css=['.framer-tRFNc[data-border=\"true\"]::after, .framer-tRFNc [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tRFNc.framer-1xzivnx, .framer-tRFNc .framer-1xzivnx { display: block; }\",\".framer-tRFNc.framer-12vvi4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 423px; justify-content: center; overflow: hidden; padding: 120px 120px 120px 120px; position: relative; width: 870px; }\",\".framer-tRFNc .framer-1ejn10g { flex: none; height: 236px; overflow: visible; position: relative; width: 637px; }\",\".framer-tRFNc .framer-1952fe3 { flex: none; height: 29px; left: 0px; position: absolute; top: 0px; width: 41px; }\",\".framer-tRFNc .framer-16lewax { bottom: 0px; flex: none; height: 159px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-tRFNc .framer-4l0w2a { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-tRFNc .framer-1gllgru { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; width: min-content; }\",\".framer-tRFNc .framer-1esicrj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tRFNc .framer-2pu08m { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-tRFNc .framer-k28g5t { flex: none; height: 423px; left: 0px; position: absolute; top: 0px; width: 870px; }\",\".framer-tRFNc .framer-1sacx63 { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tRFNc.framer-12vvi4, .framer-tRFNc .framer-1gllgru { gap: 0px; } .framer-tRFNc.framer-12vvi4 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tRFNc.framer-12vvi4 > :first-child { margin-top: 0px; } .framer-tRFNc.framer-12vvi4 > :last-child { margin-bottom: 0px; } .framer-tRFNc .framer-1gllgru > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-tRFNc .framer-1gllgru > :first-child { margin-left: 0px; } .framer-tRFNc .framer-1gllgru > :last-child { margin-right: 0px; } }\",\".framer-tRFNc.framer-v-1tv5zc5.framer-12vvi4 { height: min-content; justify-content: flex-start; padding: 88px 48px 96px 48px; width: 360px; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-1ejn10g { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 100%; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-1952fe3, .framer-tRFNc.framer-v-1tv5zc5 .framer-1sacx63 { left: unset; position: relative; top: unset; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-16lewax { align-content: flex-start; align-items: flex-start; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; left: unset; padding: 0px 0px 0px 0px; position: relative; right: unset; width: 100%; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-4l0w2a { left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-1gllgru { bottom: unset; left: unset; position: relative; }\",\".framer-tRFNc.framer-v-1tv5zc5 .framer-2pu08m { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tRFNc.framer-v-1tv5zc5 .framer-1ejn10g, .framer-tRFNc.framer-v-1tv5zc5 .framer-16lewax, .framer-tRFNc.framer-v-1tv5zc5 .framer-2pu08m { gap: 0px; } .framer-tRFNc.framer-v-1tv5zc5 .framer-1ejn10g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tRFNc.framer-v-1tv5zc5 .framer-1ejn10g > :first-child, .framer-tRFNc.framer-v-1tv5zc5 .framer-16lewax > :first-child { margin-top: 0px; } .framer-tRFNc.framer-v-1tv5zc5 .framer-1ejn10g > :last-child, .framer-tRFNc.framer-v-1tv5zc5 .framer-16lewax > :last-child { margin-bottom: 0px; } .framer-tRFNc.framer-v-1tv5zc5 .framer-16lewax > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tRFNc.framer-v-1tv5zc5 .framer-2pu08m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tRFNc.framer-v-1tv5zc5 .framer-2pu08m > :first-child { margin-left: 0px; } .framer-tRFNc.framer-v-1tv5zc5 .framer-2pu08m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 423\n * @framerIntrinsicWidth 870\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"amGBflSaW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Xi7dF7Wq1\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramervQBfqZYfu=withCSS(Component,css,\"framer-tRFNc\");export default FramervQBfqZYfu;FramervQBfqZYfu.displayName=\"Icon/quote\";FramervQBfqZYfu.defaultProps={height:423,width:870};addPropertyControls(FramervQBfqZYfu,{variant:{options:[\"q_muzv1Sp\",\"amGBflSaW\"],optionTitles:[\"Quote\",\"Quote Mobile\"],title:\"Variant\",type:ControlType.Enum},Xi7dF7Wq1:{defaultValue:\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramervQBfqZYfu,[{family:\"DM Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"Epilogue\",style:\"normal\",url:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiCZXVigHPVA.woff2\",weight:\"800\"},{family:\"DM Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervQBfqZYfu\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amGBflSaW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"870\",\"framerVariables\":\"{\\\"Xi7dF7Wq1\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"423\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vQBfqZYfu.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import NavbarsNavbar from\"#framer/local/canvasComponent/CEDtG8wRL/CEDtG8wRL.js\";import IconColorComponent from\"#framer/local/canvasComponent/P5onzo_6_/P5onzo_6_.js\";import IconQuote from\"#framer/local/canvasComponent/vQBfqZYfu/vQBfqZYfu.js\";import metadataProvider from\"#framer/local/webPageMetadata/xbAsgqKMU/xbAsgqKMU.js\";const NavbarsNavbarFonts=getFonts(NavbarsNavbar);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const IconQuoteFonts=getFonts(IconQuote);const ContainerWithFX=withFX(Container);const IconColorComponentFonts=getFonts(IconColorComponent);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"Gt7yvTDzW\",\"y6N0XoPj6\",\"TDATm6rNk\",\"aFcbAA_gz\"];const breakpoints={aFcbAA_gz:\"(max-width: 809px)\",Gt7yvTDzW:\"(min-width: 1400px)\",TDATm6rNk:\"(min-width: 810px) and (max-width: 1199px)\",y6N0XoPj6:\"(min-width: 1200px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4eigJ\";const variantClassNames={aFcbAA_gz:\"framer-v-1rmd0d9\",Gt7yvTDzW:\"framer-v-28jb1\",TDATm6rNk:\"framer-v-1gmcwa0\",y6N0XoPj6:\"framer-v-1ix0e1\"};const animation={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:300,y:0};const transition1={damping:60,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:300,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transformTemplate2=(_,t)=>`perspective(1200px) translateY(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-400,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-400,y:0};const animation4={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-200,y:0};const animation5={opacity:.1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-200,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:70};const transformTemplate3=(_,t)=>`perspective(1200px) translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop small\":\"y6N0XoPj6\",Desktop:\"Gt7yvTDzW\",Phone:\"aFcbAA_gz\",Tablet:\"TDATm6rNk\"};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:\"Gt7yvTDzW\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-4eigJ`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-4eigJ`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aFcbAA_gz\")return!isBrowser();return true;};const isDisplayed1=()=>{if(baseVariant===\"aFcbAA_gz\")return true;return!isBrowser();};const isDisplayed2=()=>{if([\"TDATm6rNk\",\"aFcbAA_gz\"].includes(baseVariant))return!isBrowser();return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Gt7yvTDzW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-28jb1\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2v73d\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-erm3yh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{style:{width:\"100%\"},variant:\"X54vg7ZPG\"},TDATm6rNk:{variant:\"Bfcqm30vH\"}},children:/*#__PURE__*/_jsx(NavbarsNavbar,{height:\"100%\",id:\"Yxagrh2Z3\",layoutId:\"Yxagrh2Z3\",RxepmooT1:\"var(--token-978c1f01-d798-480d-ad20-10edf5c3c2db, rgb(111, 88, 201))\",style:{height:\"100%\",width:\"100%\"},tmG8BOIlL:\"rgb(0, 44, 101)\",variant:\"PrZXw16yt\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gaejkx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2405,pixelHeight:1800,pixelWidth:2405,sizes:\"468px\",src:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png\",srcSet:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png 2405w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2405,pixelHeight:1800,pixelWidth:2405,sizes:\"687px\",src:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png\",srcSet:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png 2405w\"},transformTemplate:transformTemplate2},y6N0XoPj6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2405,pixelHeight:1800,pixelWidth:2405,sizes:\"738px\",src:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png\",srcSet:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png 2405w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2405,pixelHeight:1800,pixelWidth:2405,sizes:\"846px\",src:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png\",srcSet:\"https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Vr65T6oDKKc52LTXnMUNIA6Dmo.png 2405w\"},className:\"framer-11d3p8c\",\"data-framer-name\":\"graphic\",name:\"graphic\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{__framer__enter:animation4,__framer__exit:animation5}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sjfo4e\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234,intrinsicWidth:340,pixelHeight:234,pixelWidth:340,src:\"https://framerusercontent.com/images/VSyECgu8So1GIufF7R5Gt9CrmF4.svg\"},className:\"framer-1dppzvz\",\"data-framer-name\":\"graphic\",name:\"graphic\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14lm44b\",\"data-framer-name\":\"summary\",name:\"summary\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"Broadening creativity light \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"with iconic Artists\"})]})})},TDATm6rNk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:[\"Broadening creativity light \",/*#__PURE__*/_jsx(\"br\",{}),\"with iconic Artists\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-90}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"72px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:[\"Broadening creativity light \",/*#__PURE__*/_jsx(\"br\",{}),\"with iconic Artists\"]})}),className:\"framer-1im7tfz\",\"data-framer-name\":\"Define the key features of an MVP to reimagine the future of work\",fonts:[\"GF;Epilogue-regular\"],name:\"Define the key features of an MVP to reimagine the future of work\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-90}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q6ornh\",\"data-framer-name\":\"details\",name:\"details\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fakkem\",\"data-framer-name\":\"row-01\",name:\"row-01\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0yhde\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zwltf\",\"data-framer-name\":\"Project Type\",name:\"Project Type\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"Client\"})}),className:\"framer-1hcyy0e\",\"data-framer-name\":\"Project Type\",fonts:[\"GF;Epilogue-800\"],name:\"Project Type\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15okpr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Icon\"})}),className:\"framer-5h43vo\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bfdmtq\",\"data-framer-name\":\"Project Type\",name:\"Project Type\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"Project Type\"})}),className:\"framer-1tsnjx0\",\"data-framer-name\":\"Project Type\",fonts:[\"GF;Epilogue-800\"],name:\"Project Type\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1siu53k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Branding \"})}),className:\"framer-zwvxb1\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Storytelling\"})}),className:\"framer-vfadj\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Webapp Design\"})}),className:\"framer-1fnv4gy\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Website Design\"})}),className:\"framer-1tbv96q\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvha6m\",\"data-framer-name\":\"Our Role\",name:\"Our Role\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"Our Role\"})}),className:\"framer-mzowhp\",\"data-framer-name\":\"Our Role\",fonts:[\"GF;Epilogue-800\"],name:\"Our Role\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1242kvr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Copywriters\"})}),className:\"framer-18ez146\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"UX & UI Designers\"})}),className:\"framer-1y8xi66\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Brand Designers\"})}),className:\"framer-1xzg10n\",\"data-framer-name\":\"Design Sprint Brand Sprint Brand Story UX & UI Design\",fonts:[\"GF;Epilogue-regular\"],name:\"Design Sprint Brand Sprint Brand Story UX & UI Design\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sx9o9b\",\"data-framer-name\":\"Year\",name:\"Year\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"Year / Location \"})}),className:\"framer-ryzsfo\",\"data-framer-name\":\"Year / Location\",fonts:[\"GF;Epilogue-800\"],name:\"Year / Location\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"Los Angeles, CA, US\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"2021 - 2022\"})]}),className:\"framer-1mg5s5k\",\"data-framer-name\":\"2020 / Los Angeles, California\",fonts:[\"GF;Epilogue-regular\"],name:\"2020 / Los Angeles, California\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TDATm6rNk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 680 3\"><path d=\"M 0.785 1.5 L 679.215 1.5\" fill=\"transparent\" stroke-width=\"0.79\" stroke=\"var(--token-7a6cca63-8ba7-4d3b-9a31-7737f842364a, rgb(243, 243, 243)) /* {&quot;name&quot;:&quot;Buildhub-Grey&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:996089761}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-65100m hidden-1rmd0d9\",\"data-framer-name\":\"Divider\",layout:\"position\",name:\"Divider\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 866 4\"><path d=\"M 1 2 L 865 2\" fill=\"transparent\" stroke=\"var(--token-7a6cca63-8ba7-4d3b-9a31-7737f842364a, rgb(243, 243, 243)) /* {&quot;name&quot;:&quot;Buildhub-Grey&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1025042180,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yhe1on\",\"data-framer-name\":\"row-02\",name:\"row-02\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7rym08\",\"data-framer-name\":\"Brief\",name:\"Brief\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"The Brief\"})}),className:\"framer-ahoxul\",\"data-framer-name\":\"The Brief\",fonts:[\"GF;Epilogue-800\"],name:\"The Brief\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-621086b8-6aa3-4d3e-ac86-7d457de4233f, rgb(250, 248, 240))\"},children:\"A renowned American photographer dreamed of creating a mentoring platform where expert artists share their knowledge and give feedback, portfolio reviews, and technical advice to novice creatives while earning extra income. The challenge was to capture that visionary frame, develop a picture-perfect brand, and expose the platform's full potential, painting a vivid canvas of opportunity for both mentors and aspiring artists.\"})}),className:\"framer-1n5opzk\",\"data-framer-name\":\"Update is a powerful tool that captures the most important parts of virtual meetings and hands it over to you once done. Determined to make an insanely great app, Update needed help in narrowing its features down to an MVP. So they tapped Purple Bunny to help them deliver on this.\",fonts:[\"GF;Epilogue-regular\"],name:\"Update is a powerful tool that captures the most important parts of virtual meetings and hands it over to you once done. Determined to make an insanely great app, Update needed help in narrowing its features down to an MVP. So they tapped Purple Bunny to help them deliver on this.\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x29wqc\",\"data-framer-name\":\"Solution container\",name:\"Solution container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1660skb\",\"data-framer-name\":\"The solution\",name:\"The solution\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ruwb48\",\"data-framer-name\":\"Frame 112\",name:\"Frame 112\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"The Challenge\"})}),className:\"framer-1wnay5v\",\"data-framer-name\":\"The Challenge\",fonts:[\"GF;Epilogue-800\"],name:\"The Challenge\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:\"Knowledge and experience turned into impact and income\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:\"Knowledge and experience turned into impact and income\"})}),className:\"framer-1sxn96a\",\"data-framer-name\":\"Good UX design is the first step\",fonts:[\"GF;Epilogue-regular\"],name:\"Good UX design is the first step\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syx5wi\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"The founder of Icon had a visionary idea \u2014an innovative platform that would reframe the future for emerging creatives.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Being in the midst of a fundraising campaign, Icon needed a compelling brand identity, a user-friendly website, and a mentorship platform that could clearly communicate the vision and entice photographers to join as Icons.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Additionally, it had to catch the eye of potential investors. This platform would serve as the hub for developing mentorship sessions, sparking inspiration, zooming new talent, and empowering young artists.\"]})}),className:\"framer-1tcbay0\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-800mpj-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{variant:\"amGBflSaW\"},TDATm6rNk:{variant:\"amGBflSaW\"}},children:/*#__PURE__*/_jsx(IconQuote,{height:\"100%\",id:\"G6MK5HKfs\",layoutId:\"G6MK5HKfs\",style:{height:\"100%\",width:\"100%\"},variant:\"q_muzv1Sp\",width:\"100%\",Xi7dF7Wq1:\"\u201CMy PPT was rough but you turned modern. Not just copy-paste what I brought. I\u2019m surprised with the design results.\u201D\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cganky\",\"data-framer-name\":\"Solution container\",name:\"Solution container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vo62fa\",\"data-framer-name\":\"The solution\",name:\"The solution\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m6cet3\",\"data-framer-name\":\"Frame 112\",name:\"Frame 112\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"The Solution\"})}),className:\"framer-1cswubl\",\"data-framer-name\":\"The Challenge\",fonts:[\"GF;Epilogue-800\"],name:\"The Challenge\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"A specialized marketplace \",/*#__PURE__*/_jsx(\"br\",{}),\"to connect with the most iconic professionals\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"A specialized marketplace \",/*#__PURE__*/_jsx(\"br\",{}),\"to connect with the most\",/*#__PURE__*/_jsx(\"br\",{}),\"iconic professionals\"]})}),className:\"framer-1doyw3m\",\"data-framer-name\":\"Good UX design is the first step\",fonts:[\"GF;Epilogue-regular\"],name:\"Good UX design is the first step\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qq41wf\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"We kicked off the process with our collaborative \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-weight\":\"700\"},children:\"Lite Branding Workshop\"}),\" to capture valuable insights for designing Icon's branding.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Building upon this workshop's outcomes, we crafted the essential brand elements. First, we created a standout \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-weight\":\"700\"},children:\"logo \"}),\"that snapped Icon\u2019s essence, making it memorable and easily recognizable.\"]})}),className:\"framer-1fvbzh6\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\",\"GF;Epilogue-700\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818,intrinsicWidth:4320,pixelHeight:1818,pixelWidth:4320,sizes:\"100vw\",src:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg\",srcSet:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg 4320w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818,intrinsicWidth:4320,pixelHeight:1818,pixelWidth:4320,sizes:\"100vw\",src:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg\",srcSet:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg 4320w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1818,intrinsicWidth:4320,loading:\"lazy\",pixelHeight:1818,pixelWidth:4320,sizes:\"100vw\",src:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg\",srcSet:\"https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CtcB2eGP6ufqdbOGisUSNjhDTc.jpg 4320w\"},className:\"framer-1k1c983\",\"data-framer-name\":\"Branding\",name:\"Branding\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10r5sp\",\"data-framer-name\":\"Branding\",name:\"Branding\",transformTemplate:transformTemplate3,children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9v29oy hidden-1rmd0d9\",\"data-framer-name\":\"Frame 48095524\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:416,intrinsicWidth:1088,name:\"Frame 48095524\",svg:'<svg width=\"1088\" height=\"416\" viewBox=\"0 0 1088 416\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_1007_56466)\">\\n<rect width=\"1088\" height=\"416\" rx=\"40\" fill=\"white\"/>\\n<rect x=\"84\" y=\"118\" width=\"180\" height=\"180\" rx=\"19\" fill=\"white\" stroke=\"#EFF0F1\" stroke-width=\"2\"/>\\n<path d=\"M128.999 232.069H118.074V187.129H128.999V232.069Z\" fill=\"#030212\"/>\\n<path d=\"M120.067 181.188C119.024 180.574 118.209 179.767 117.624 178.767C117.039 177.768 116.746 176.712 116.746 175.597C116.746 174.483 117.039 173.421 117.624 172.405C118.209 171.392 119.024 170.571 120.067 169.942C121.108 169.314 122.286 169 123.601 169C124.914 169 126.092 169.314 127.135 169.942C128.178 170.571 128.991 171.392 129.578 172.405C130.163 173.419 130.456 174.483 130.456 175.597C130.456 176.712 130.163 177.768 129.578 178.768C128.993 179.769 128.178 180.575 127.135 181.19C126.092 181.804 124.914 182.11 123.601 182.11C122.286 182.11 121.108 181.802 120.067 181.188Z\" fill=\"#F85351\"/>\\n<path d=\"M262.816 194.118C261.359 191.219 259.294 189.007 256.625 187.478C255.777 186.993 254.414 186.126 248.549 186.184L233.252 186.171H226.113V231.07H237.038V206.179V195.306L244.433 195.301C247.416 195.345 249.753 196.313 251.442 198.209C253.17 200.152 254.035 202.894 254.035 206.435V231.068H265.002V204.507C265.001 200.481 264.272 197.018 262.816 194.118Z\" fill=\"#030212\"/>\\n<path d=\"M218.898 197.946C216.8 194.334 213.935 191.471 210.308 189.356C206.681 187.243 202.683 186.185 198.312 186.185C193.942 186.185 189.944 187.234 186.317 189.335C182.69 191.433 179.827 194.298 177.727 197.925C176.962 199.246 176.338 200.613 175.853 202.026V202.024C175.853 202.024 175.851 202.031 175.848 202.042C175.708 202.448 175.582 202.859 175.465 203.273C174.378 206.624 171.084 215.806 166.609 219.304C165.066 220.59 163.46 221.574 161.789 222.26C160.119 222.946 158.268 223.288 156.241 223.288C153.898 223.288 151.721 222.695 149.707 221.511C147.693 220.326 146.087 218.705 144.888 216.648C143.688 214.592 143.089 212.308 143.089 209.793C143.089 207.252 143.682 204.938 144.866 202.854C146.051 200.77 147.651 199.134 149.665 197.948C151.679 196.763 153.871 196.17 156.241 196.17C158.268 196.17 160.111 196.512 161.768 197.198C163.424 197.884 165.024 198.898 166.567 200.24L172.05 192.4C169.936 190.457 167.494 188.937 164.724 187.837C161.954 186.737 158.94 186.188 155.684 186.188C151.314 186.188 147.345 187.246 143.775 189.359C140.205 191.472 137.391 194.335 135.334 197.949C133.278 201.563 132.25 205.511 132.25 209.795C132.25 214.051 133.272 217.978 135.313 221.576C137.355 225.175 140.161 228.031 143.732 230.145C147.302 232.258 151.301 233.316 155.728 233.316C158.927 233.316 161.925 232.765 164.724 231.667C167.523 230.567 169.964 229.046 172.05 227.104C174.212 225.014 175.929 222.737 177.222 220.73C177.383 221.036 177.549 221.341 177.727 221.642C179.825 225.227 182.682 228.069 186.296 230.168C189.908 232.266 193.885 233.317 198.228 233.317C202.626 233.317 206.647 232.274 210.287 230.19C213.929 228.106 216.8 225.263 218.898 221.665C220.997 218.066 222.048 214.124 222.048 209.841C222.046 205.521 220.997 201.558 218.898 197.946ZM209.451 216.518C208.309 218.547 206.759 220.139 204.802 221.295C202.845 222.452 200.682 223.031 198.312 223.031C195.942 223.031 193.778 222.452 191.823 221.295C189.866 220.139 188.316 218.553 187.174 216.541C186.032 214.527 185.46 212.278 185.46 209.793C185.46 207.309 186.03 205.054 187.174 203.025C188.316 200.998 189.866 199.398 191.823 198.226C193.778 197.055 195.942 196.47 198.312 196.47C200.654 196.47 202.811 197.055 204.781 198.226C206.751 199.398 208.309 200.996 209.451 203.025C210.593 205.054 211.165 207.309 211.165 209.793C211.165 212.247 210.593 214.489 209.451 216.518Z\" fill=\"#030212\"/>\\n<rect x=\"330\" y=\"118\" width=\"180\" height=\"180\" rx=\"90\" fill=\"white\" stroke=\"#EFF0F1\" stroke-width=\"2\"/>\\n<rect x=\"395\" y=\"184\" width=\"50\" height=\"50\" rx=\"25\" fill=\"#F85351\"/>\\n<rect x=\"575\" y=\"117\" width=\"183\" height=\"182\" rx=\"20\" fill=\"#030212\"/>\\n<path d=\"M622.253 235.069H611.328V190.129H622.253V235.069Z\" fill=\"white\"/>\\n<path d=\"M613.321 184.188C612.278 183.574 611.463 182.767 610.878 181.767C610.293 180.768 610 179.712 610 178.597C610 177.483 610.293 176.421 610.878 175.405C611.463 174.392 612.278 173.571 613.321 172.942C614.362 172.314 615.54 172 616.855 172C618.168 172 619.346 172.314 620.389 172.942C621.432 173.571 622.245 174.392 622.832 175.405C623.416 176.419 623.71 177.483 623.71 178.597C623.71 179.712 623.416 180.768 622.832 181.768C622.247 182.769 621.432 183.575 620.389 184.19C619.346 184.804 618.168 185.11 616.855 185.11C615.54 185.11 614.362 184.802 613.321 184.188Z\" fill=\"white\"/>\\n<path d=\"M756.069 197.118C754.613 194.219 752.548 192.007 749.879 190.478C749.03 189.993 747.668 189.126 741.802 189.184L726.506 189.171H719.367V234.07H730.292V209.179V198.306L737.687 198.301C740.67 198.345 743.007 199.313 744.696 201.209C746.423 203.152 747.289 205.894 747.289 209.435V234.068H758.256V207.507C758.255 203.481 757.526 200.018 756.069 197.118Z\" fill=\"white\"/>\\n<path d=\"M712.152 200.946C710.054 197.334 707.189 194.471 703.562 192.356C699.935 190.243 695.936 189.185 691.566 189.185C687.196 189.185 683.198 190.234 679.571 192.335C675.944 194.433 673.081 197.298 670.981 200.925C670.216 202.246 669.592 203.613 669.107 205.026V205.024C669.107 205.024 669.105 205.031 669.102 205.042C668.962 205.448 668.836 205.859 668.719 206.273C667.632 209.624 664.337 218.806 659.863 222.304C658.32 223.59 656.713 224.574 655.043 225.26C653.373 225.946 651.522 226.288 649.495 226.288C647.152 226.288 644.975 225.695 642.961 224.511C640.947 223.326 639.341 221.705 638.142 219.648C636.942 217.592 636.343 215.308 636.343 212.793C636.343 210.252 636.936 207.938 638.12 205.854C639.305 203.77 640.905 202.134 642.919 200.948C644.933 199.763 647.124 199.17 649.495 199.17C651.522 199.17 653.365 199.512 655.022 200.198C656.678 200.884 658.278 201.898 659.821 203.24L665.304 195.4C663.19 193.457 660.748 191.937 657.978 190.837C655.208 189.737 652.194 189.188 648.938 189.188C644.568 189.188 640.599 190.246 637.029 192.359C633.459 194.472 630.645 197.335 628.588 200.949C626.532 204.563 625.504 208.511 625.504 212.795C625.504 217.051 626.526 220.978 628.567 224.576C630.609 228.175 633.415 231.031 636.986 233.145C640.556 235.258 644.555 236.316 648.982 236.316C652.18 236.316 655.179 235.765 657.978 234.667C660.777 233.567 663.218 232.046 665.304 230.104C667.466 228.014 669.183 225.737 670.475 223.73C670.637 224.036 670.803 224.341 670.981 224.642C673.079 228.227 675.936 231.069 679.55 233.168C683.162 235.266 687.139 236.317 691.482 236.317C695.879 236.317 699.901 235.274 703.541 233.19C707.183 231.106 710.054 228.263 712.152 224.665C714.251 221.066 715.302 217.124 715.302 212.841C715.3 208.521 714.251 204.558 712.152 200.946ZM702.705 219.518C701.563 221.547 700.013 223.139 698.056 224.295C696.099 225.452 693.936 226.031 691.566 226.031C689.196 226.031 687.032 225.452 685.076 224.295C683.12 223.139 681.57 221.553 680.428 219.541C679.286 217.527 678.714 215.278 678.714 212.793C678.714 210.309 679.284 208.054 680.428 206.025C681.57 203.998 683.12 202.398 685.076 201.226C687.032 200.055 689.196 199.47 691.566 199.47C693.908 199.47 696.065 200.055 698.035 201.226C700.005 202.398 701.563 203.996 702.705 206.025C703.847 208.054 704.419 210.309 704.419 212.793C704.419 215.247 703.847 217.489 702.705 219.518Z\" fill=\"white\"/>\\n<rect x=\"822.254\" y=\"117\" width=\"182\" height=\"182\" rx=\"90\" fill=\"#F85351\"/>\\n<rect x=\"888.254\" y=\"184\" width=\"50\" height=\"50\" rx=\"25\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_1007_56466\" x=\"-39.061\" y=\"-29.2958\" width=\"1166.12\" height=\"494.122\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"9.76526\"/>\\n<feGaussianBlur stdDeviation=\"19.5305\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_1007_56466\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_1007_56466\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:714,intrinsicWidth:674,pixelHeight:714,pixelWidth:674,sizes:\"max((100vw - 48px) * 0.85, 0px)\",src:\"https://framerusercontent.com/images/mPaJeDj7dSJBJoPTP9jqtGJGk.png\",srcSet:\"https://framerusercontent.com/images/mPaJeDj7dSJBJoPTP9jqtGJGk.png 674w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:714,intrinsicWidth:674,pixelHeight:714,pixelWidth:674,src:\"https://framerusercontent.com/images/mPaJeDj7dSJBJoPTP9jqtGJGk.png\",srcSet:\"https://framerusercontent.com/images/mPaJeDj7dSJBJoPTP9jqtGJGk.png 674w\"},className:\"framer-19zcf30 hidden-28jb1 hidden-1ix0e1 hidden-1gmcwa0\",\"data-framer-name\":\"image\",name:\"image\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4aoc9\",\"data-framer-name\":\"Solution container\",name:\"Solution container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i3b4hp\",\"data-framer-name\":\"The solution\",name:\"The solution\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hdhj71\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"To ensure a consistent and visually appealing design, we developed a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-weight\":\"700\"},children:\"UI Style Guide.\"}),\" This guide set the scene for the platform's design principles, components, interactions, and visual elements like buttons, forms, typography, colors, icons, and spacing.\"]})}),className:\"framer-ag16cy\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\",\"GF;Epilogue-700\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17ni4b0\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fs6ohf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1023ngz-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"ZbxAe34In\",layoutId:\"ZbxAe34In\",style:{height:\"100%\",width:\"100%\"},variant:\"oe6x4NoKD\",wEEsNO8zb:\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgba(117, 116, 142, 1)\"},children:\"#030212\"})})}),className:\"framer-1ygxfvs\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jbz5hj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jn1eyn-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"M6QyNa10B\",layoutId:\"M6QyNa10B\",style:{height:\"100%\",width:\"100%\"},variant:\"oe6x4NoKD\",wEEsNO8zb:\"rgb(239, 240, 241)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:\"#EFF0F1\"})}),className:\"framer-1j66s2t\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3kvg6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-beq2ym-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"xPyxYpArO\",layoutId:\"xPyxYpArO\",style:{height:\"100%\",width:\"100%\"},variant:\"oe6x4NoKD\",wEEsNO8zb:\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:\"#F85351\"})}),className:\"framer-1yuj6ct\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6xvemx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bbcnww-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"CvjQ79Ant\",layoutId:\"CvjQ79Ant\",style:{height:\"100%\",width:\"100%\"},variant:\"oe6x4NoKD\",wEEsNO8zb:\"rgb(255, 255, 255)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:\"#FFFFFF\"})}),className:\"framer-m6e45g\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7ul9r\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pp7m28-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"KKd6jNHBC\",layoutId:\"KKd6jNHBC\",style:{height:\"100%\",width:\"100%\"},variant:\"CJhoYjZAH\",wEEsNO8zb:\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:[\"#030212 \",/*#__PURE__*/_jsx(\"br\",{}),\"to #353441\"]})}),className:\"framer-p7jhf2\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6cot33\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mkped-container\",children:/*#__PURE__*/_jsx(IconColorComponent,{height:\"100%\",id:\"dQ4JZTY5N\",layoutId:\"dQ4JZTY5N\",style:{height:\"100%\",width:\"100%\"},variant:\"d3nkABN4j\",wEEsNO8zb:\"var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, rgb(3, 2, 18))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtNjAw\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:[\"#F85351 \",/*#__PURE__*/_jsx(\"br\",{}),\"to #A83F3E\"]})}),className:\"framer-17so1u8\",\"data-framer-name\":\"#030212\",fonts:[\"GF;Nunito Sans-600\"],name:\"#030212\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tj97wc\",\"data-framer-name\":\"Solution container\",name:\"Solution container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqdhwj\",\"data-framer-name\":\"Typography \",name:\"Typography \",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tx8fo5\",\"data-framer-name\":\"Group 48095717\",name:\"Group 48095717\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ag37q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(227, 35, 32)\"},children:\"Nunito Sans\"})}),className:\"framer-scfas6\",\"data-framer-name\":\"Nunito Sans\",fonts:[\"GF;Epilogue-800\"],name:\"Nunito Sans\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"Aa\"})}),className:\"framer-1pez4c1\",\"data-framer-name\":\"Aa\",fonts:[\"GF;Nunito Sans-regular\"],name:\"Aa\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xh8kv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:\"Regular\"})}),className:\"framer-1qx6ai0\",\"data-framer-name\":\"Regular\",fonts:[\"GF;Epilogue-regular\"],name:\"Regular\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"A B C D E F G H J I J  K L M N O  P R Q S T U V X Z\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"a b c d e f g h i j k l m n o p r s t u v w x y z \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Nunito Sans\", \"Nunito Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\"})]}),className:\"framer-1jgustt\",\"data-framer-name\":\"A B C D E F G H J I J K L M N O P R Q S T U V X Z a b c d e f g h i j k l m n o p r s t u v w x y z 1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\",fonts:[\"GF;Nunito Sans-regular\"],name:\"A B C D E F G H J I J K L M N O P R Q S T U V X Z a b c d e f g h i j k l m n o p r s t u v w x y z 1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yw2i1v\",\"data-framer-name\":\"Group 48095716\",name:\"Group 48095716\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1742iat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(227, 35, 32)\"},children:\"Manrope\"})}),className:\"framer-1hgq0fe\",\"data-framer-name\":\"Manrope\",fonts:[\"GF;Epilogue-800\"],name:\"Manrope\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"Aa\"})}),className:\"framer-wdjvxn\",\"data-framer-name\":\"Aa\",fonts:[\"GF;Manrope-800\"],name:\"Aa\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f73wdp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(117, 116, 142)\"},children:\"Extra bold\"})}),className:\"framer-1o65ffq\",\"data-framer-name\":\"Extra bold\",fonts:[\"GF;Epilogue-regular\"],name:\"Extra bold\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"A B C D E F G H J I J  K L M N O  P R Q S T U V X Z\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"a b c d e f g h i j k l m n o p r s t u v w x y z \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(3, 2, 18)\"},children:\"1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\"})]}),className:\"framer-1duzh11\",\"data-framer-name\":\"A B C D E F G H J I J K L M N O P R Q S T U V X Z a b c d e f g h i j k l m n o p r s t u v w x y z 1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\",fonts:[\"GF;Manrope-800\"],name:\"A B C D E F G H J I J K L M N O P R Q S T U V X Z a b c d e f g h i j k l m n o p r s t u v w x y z 1 2 3 4 5 6 7 8 9 0 ! * ( ) ? , ; -\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1idl5ix\",\"data-framer-name\":\"Icons container\",name:\"Icons container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14jggdx\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:617,intrinsicWidth:337,pixelHeight:617,pixelWidth:337,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 865px)\",src:\"https://framerusercontent.com/images/0hJtoHUOrNePsnjGjVEEXDqsMJk.svg\",srcSet:\"https://framerusercontent.com/images/0hJtoHUOrNePsnjGjVEEXDqsMJk.svg 337w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:415,intrinsicWidth:553,pixelHeight:415,pixelWidth:553,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(100vw - 96px, 865px) * 0.5994)\",src:\"https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg\",srcSet:\"https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg 553w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:415,intrinsicWidth:553,loading:\"lazy\",pixelHeight:415,pixelWidth:553,positionX:\"center\",positionY:\"center\",sizes:\"550px\",src:\"https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg\",srcSet:\"https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RyHHFJTceOdaoBMbmHb8WGb9HU.svg 553w\"},className:\"framer-1vpwo1u\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:379,intrinsicWidth:335,pixelHeight:379,pixelWidth:335,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UsMH0sxqqAVn2dZKnaDuBK15msM.svg\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:415,intrinsicWidth:272,pixelHeight:415,pixelWidth:272,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BttYKV6ukdabKyEIzeIjoYP4X7Y.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:415,intrinsicWidth:272,loading:\"lazy\",pixelHeight:415,pixelWidth:272,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BttYKV6ukdabKyEIzeIjoYP4X7Y.svg\"},className:\"framer-j0aqqk\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:6498,intrinsicWidth:1125,pixelHeight:6498,pixelWidth:1125,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 865px)\",src:\"https://framerusercontent.com/images/P1AkFCIpJ17yzsvHKOoJZXWd4T8.png\",srcSet:\"https://framerusercontent.com/images/P1AkFCIpJ17yzsvHKOoJZXWd4T8.png?scale-down-to=4096 709w,https://framerusercontent.com/images/P1AkFCIpJ17yzsvHKOoJZXWd4T8.png 1125w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3984,intrinsicWidth:2849,pixelHeight:3984,pixelWidth:2849,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 96px, 865px)\",src:\"https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png\",srcSet:\"https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png?scale-down-to=1024 732w,https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png?scale-down-to=2048 1464w,https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png 2849w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:3984,intrinsicWidth:2849,loading:\"lazy\",pixelHeight:3984,pixelWidth:2849,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw, 865px)\",src:\"https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png\",srcSet:\"https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png?scale-down-to=1024 732w,https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png?scale-down-to=2048 1464w,https://framerusercontent.com/images/Fy89sn8fUKEXhyoIkWHPV3cnM.png 2849w\"},className:\"framer-1mqo742\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ti8c8\",\"data-framer-name\":\"Text Container\",name:\"Text Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hc81e3\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ipsxej\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"But we didn't stop there. We also created a Copy Playbook to guide the brand's voice and messaging, rendering Icon\u2019s identity at its best. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"All these fresh visuals were composed into a carefully planned UX structure, providing an exceptional user experience for both mentor photographers and mentorees.\"]})}),className:\"framer-1tbxn5s\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e5t75x\",\"data-framer-name\":\"Prototype container\",name:\"Prototype container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l169ny\",\"data-framer-name\":\"Prototype\",name:\"Prototype\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bi1ies\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-ae4272c9-d566-43ba-acf2-8fdcb70d1625, rgb(34, 22, 43))\"},children:[\"With the UX structure designed, we proceed with the production sequence: we sketched wireframes to validate functionality and layout. Then we applied a standing-out visual design to delight users and finally, we put it all together into a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-weight\":\"700\"},children:\"prototype ready for web development\"}),\", bringing the vision of Icon to life.\"]})}),className:\"framer-uiqlj3\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\",\"GF;Epilogue-700\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hawsqi-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{paddingRight:0},y6N0XoPj6:{intervalControl:2,transitionControl:{damping:30,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:60,type:\"spring\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",id:\"bZlWQ3ENb\",intervalControl:1.5,itemAmount:1,layoutId:\"bZlWQ3ENb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:120,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2013,intrinsicWidth:3509,pixelHeight:2013,pixelWidth:3509,positionX:\"center\",positionY:\"center\",sizes:\"1502.612px\",src:\"https://framerusercontent.com/images/YX8zdTp1bQK571Mkx0B2tVpXjm4.png\",srcSet:\"https://framerusercontent.com/images/YX8zdTp1bQK571Mkx0B2tVpXjm4.png?scale-down-to=512 512w,https://framerusercontent.com/images/YX8zdTp1bQK571Mkx0B2tVpXjm4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YX8zdTp1bQK571Mkx0B2tVpXjm4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YX8zdTp1bQK571Mkx0B2tVpXjm4.png 3509w\"},className:\"framer-1shtvul\",\"data-framer-name\":\"slide1\",name:\"slide1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2013,intrinsicWidth:3508,pixelHeight:2013,pixelWidth:3508,positionX:\"center\",positionY:\"center\",sizes:\"1502.1838px\",src:\"https://framerusercontent.com/images/YYqANadQk00gfxIsiRAVS4fPiew.png\",srcSet:\"https://framerusercontent.com/images/YYqANadQk00gfxIsiRAVS4fPiew.png?scale-down-to=512 512w,https://framerusercontent.com/images/YYqANadQk00gfxIsiRAVS4fPiew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YYqANadQk00gfxIsiRAVS4fPiew.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YYqANadQk00gfxIsiRAVS4fPiew.png 3508w\"},className:\"framer-2pilp\",\"data-framer-name\":\"slide2\",name:\"slide2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2013,intrinsicWidth:3509,pixelHeight:2013,pixelWidth:3509,positionX:\"center\",positionY:\"center\",sizes:\"1502.612px\",src:\"https://framerusercontent.com/images/epzPS6cYeTUAsqscVybx9Twnw0.png\",srcSet:\"https://framerusercontent.com/images/epzPS6cYeTUAsqscVybx9Twnw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/epzPS6cYeTUAsqscVybx9Twnw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/epzPS6cYeTUAsqscVybx9Twnw0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/epzPS6cYeTUAsqscVybx9Twnw0.png 3509w\"},className:\"framer-9zb74y\",\"data-framer-name\":\"slide3\",name:\"slide3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1772,intrinsicWidth:3268,pixelHeight:1772,pixelWidth:3268,positionX:\"center\",positionY:\"center\",sizes:\"1399.781px\",src:\"https://framerusercontent.com/images/Kf7jFMP5oawSlDRH0XOmqT1Hn0.png\",srcSet:\"https://framerusercontent.com/images/Kf7jFMP5oawSlDRH0XOmqT1Hn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Kf7jFMP5oawSlDRH0XOmqT1Hn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kf7jFMP5oawSlDRH0XOmqT1Hn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kf7jFMP5oawSlDRH0XOmqT1Hn0.png 3268w\"},className:\"framer-qs1l51\",\"data-framer-name\":\"slide4\",name:\"slide4\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:150,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mou5gq\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2270,intrinsicWidth:1159,pixelHeight:2270,pixelWidth:1159,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 48px, 1088px) - 10px) / 2, 0px)\",src:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png\",srcSet:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=1024 522w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=2048 1045w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png 1159w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2270,intrinsicWidth:1159,pixelHeight:2270,pixelWidth:1159,sizes:\"300px\",src:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png\",srcSet:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=1024 522w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=2048 1045w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png 1159w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2270,intrinsicWidth:1159,loading:\"lazy\",pixelHeight:2270,pixelWidth:1159,sizes:\"300px\",src:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png\",srcSet:\"https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=1024 522w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png?scale-down-to=2048 1045w,https://framerusercontent.com/images/nos1iWazuihWtA6kOL8uQ4bHOOs.png 1159w\"},className:\"framer-17mc81k\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2270,intrinsicWidth:1160,pixelHeight:2270,pixelWidth:1160,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw - 48px, 1088px) - 10px) / 2, 0px)\",src:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png\",srcSet:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=1024 523w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=2048 1046w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png 1160w\"}},TDATm6rNk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2270,intrinsicWidth:1160,pixelHeight:2270,pixelWidth:1160,sizes:\"300px\",src:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png\",srcSet:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=1024 523w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=2048 1046w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png 1160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2270,intrinsicWidth:1160,loading:\"lazy\",pixelHeight:2270,pixelWidth:1160,sizes:\"300px\",src:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png\",srcSet:\"https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=1024 523w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png?scale-down-to=2048 1046w,https://framerusercontent.com/images/HSlX48ID18FlxH4aBT8YhKh4Xh8.png 1160w\"},className:\"framer-owgego\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2270,intrinsicWidth:1160,loading:\"lazy\",pixelHeight:2270,pixelWidth:1160,sizes:\"300px\",src:\"https://framerusercontent.com/images/gHILuc1aXEZRJbcf9xLpQHnL2Q.png\",srcSet:\"https://framerusercontent.com/images/gHILuc1aXEZRJbcf9xLpQHnL2Q.png?scale-down-to=1024 523w,https://framerusercontent.com/images/gHILuc1aXEZRJbcf9xLpQHnL2Q.png?scale-down-to=2048 1046w,https://framerusercontent.com/images/gHILuc1aXEZRJbcf9xLpQHnL2Q.png 1160w\"},className:\"framer-150uk3d hidden-1gmcwa0 hidden-1rmd0d9\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ngvqsk-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{paddingRight:0},y6N0XoPj6:{gap:32,intervalControl:2,paddingRight:0,transitionControl:{damping:30,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:60,type:\"spring\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",id:\"nGxMqSAvg\",intervalControl:1.5,itemAmount:1,layoutId:\"nGxMqSAvg\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:120,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2304,intrinsicWidth:3464,pixelHeight:2304,pixelWidth:3464,positionX:\"center\",positionY:\"center\",sizes:\"1051px\",src:\"https://framerusercontent.com/images/MpjI9hc7CCzHqZFoM4hXMRjMPRM.png\",srcSet:\"https://framerusercontent.com/images/MpjI9hc7CCzHqZFoM4hXMRjMPRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MpjI9hc7CCzHqZFoM4hXMRjMPRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MpjI9hc7CCzHqZFoM4hXMRjMPRM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MpjI9hc7CCzHqZFoM4hXMRjMPRM.png 3464w\"},className:\"framer-cqxyzd\",\"data-framer-name\":\"dashboard4\",name:\"dashboard4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2304,intrinsicWidth:3514,pixelHeight:2304,pixelWidth:3514,positionX:\"center\",positionY:\"center\",sizes:\"1026.4418px\",src:\"https://framerusercontent.com/images/KI5XerQNfsUnrlnE2VRD5M7s.png\",srcSet:\"https://framerusercontent.com/images/KI5XerQNfsUnrlnE2VRD5M7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/KI5XerQNfsUnrlnE2VRD5M7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KI5XerQNfsUnrlnE2VRD5M7s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KI5XerQNfsUnrlnE2VRD5M7s.png 3514w\"},className:\"framer-18vzzg1\",\"data-framer-name\":\"dashboard3\",name:\"dashboard3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2304,intrinsicWidth:3514,pixelHeight:2304,pixelWidth:3514,positionX:\"center\",positionY:\"center\",sizes:\"1026.4418px\",src:\"https://framerusercontent.com/images/4MRrlXRczBwbGv9mEgDzt5tW9Ww.png\",srcSet:\"https://framerusercontent.com/images/4MRrlXRczBwbGv9mEgDzt5tW9Ww.png?scale-down-to=512 512w,https://framerusercontent.com/images/4MRrlXRczBwbGv9mEgDzt5tW9Ww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4MRrlXRczBwbGv9mEgDzt5tW9Ww.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4MRrlXRczBwbGv9mEgDzt5tW9Ww.png 3514w\"},className:\"framer-1eacv8x\",\"data-framer-name\":\"dashboard2\",name:\"dashboard2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2306,intrinsicWidth:3514,pixelHeight:2306,pixelWidth:3514,positionX:\"center\",positionY:\"center\",sizes:\"1025.5516px\",src:\"https://framerusercontent.com/images/WceGGZonelRBhzHVx5CKVipH6k.png\",srcSet:\"https://framerusercontent.com/images/WceGGZonelRBhzHVx5CKVipH6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/WceGGZonelRBhzHVx5CKVipH6k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WceGGZonelRBhzHVx5CKVipH6k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WceGGZonelRBhzHVx5CKVipH6k.png 3514w\"},className:\"framer-6zgt44\",\"data-framer-name\":\"dashboard1\",name:\"dashboard1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:150,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s2r177-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{variant:\"amGBflSaW\"},TDATm6rNk:{variant:\"amGBflSaW\",Xi7dF7Wq1:\"\u201CThe tech team took easy to work on what Purple Bunny had designed. That helped to a seamless transfer between teams.  Keeping production on track and budget.\u201D\"}},children:/*#__PURE__*/_jsx(IconQuote,{height:\"100%\",id:\"TCy0JA0lT\",layoutId:\"TCy0JA0lT\",style:{height:\"100%\",width:\"100%\"},variant:\"q_muzv1Sp\",width:\"100%\",Xi7dF7Wq1:'\"\u201CThe tech team took easy to work on what Purple Bunny had designed. That helped to a seamless transfer between teams.  Keeping production on track and budget.\u201D'})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npsgsd\",\"data-framer-name\":\"Results containes\",name:\"Results containes\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4a6we\",\"data-framer-name\":\"Results\",name:\"Results\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rodmc4\",\"data-framer-name\":\"Frame 112\",name:\"Frame 112\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtODAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-d67d3b66-d985-4307-819b-3ea3f8b005c3, rgb(227, 35, 32))\"},children:\"The Results\"})}),className:\"framer-1yobsj3\",\"data-framer-name\":\"The Challenge\",fonts:[\"GF;Epilogue-800\"],name:\"The Challenge\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aFcbAA_gz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"From the spark of an idea to a delightful product\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"From the spark of an idea to a delightful product\"})}),className:\"framer-1qxkf3y\",\"data-framer-name\":\"Good UX design is the first step\",fonts:[\"GF;Epilogue-regular\"],name:\"Good UX design is the first step\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1840nv2\",\"data-framer-name\":\"Group 864\",name:\"Group 864\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"At the end of this process, Icon emerged with a fresh and captivating brand identity that truly portrays its essence. Clear guidelines were established to effectively communicate with its target audiences. And, most importantly, a user-centric Web App design was achieved with a development-ready prototype that set the stage for the platform's success.\",/*#__PURE__*/_jsx(\"br\",{}),\"Some of the deliverables Icon took home:\"]})}),className:\"framer-mijgug\",\"data-framer-name\":\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",fonts:[\"GF;Epilogue-regular\"],name:\"Designing an intuitive platform requires careful consideration of both user experience and functionality. We needed to deeply understand the contractors' and suppliers' needs and motivations to develop the perfect UX journey for them. To start with this challenge, our main goals were:\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2km7o1\",\"data-framer-name\":\"Checks\",name:\"Checks\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ri0fd\",\"data-framer-name\":\"Frame 128\",name:\"Frame 128\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6vphad\",\"data-framer-name\":\"c-check \",name:\"c-check \",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xgsrld\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"graphic\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m6.867 12.733 2.934 2.933 7.333-7.333\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/><path d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11Z\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"An updated logo that better expresses their values and services\"})}),className:\"framer-1p3tmco\",\"data-framer-name\":\"Work on a preliminary version of the logo aligned with the brand's personality.\",fonts:[\"GF;Epilogue-700\"],name:\"Work on a preliminary version of the logo aligned with the brand's personality.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrq5yf\",\"data-framer-name\":\"Frame 129\",name:\"Frame 129\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17dfthx\",\"data-framer-name\":\"c-check \",name:\"c-check \",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yo9tuk\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"graphic\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m6.867 12.733 2.934 2.933 7.333-7.333\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/><path d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11Z\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A consistent visual identity they can apply to future projects\"})}),className:\"framer-1uyuzo2\",\"data-framer-name\":\"Design a web app that allows contractors and suppliers to exchange service information. This app will provide a unified channel to contact suppliers, order necessary materials, pay, and track their delivery.\",fonts:[\"GF;Epilogue-700\"],name:\"Design a web app that allows contractors and suppliers to exchange service information. This app will provide a unified channel to contact suppliers, order necessary materials, pay, and track their delivery.\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecnlva\",\"data-framer-name\":\"Frame 130\",name:\"Frame 130\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kiszpc\",\"data-framer-name\":\"c-check \",name:\"c-check \",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pqd2xz\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"graphic\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m6.867 12.733 2.934 2.933 7.333-7.333\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/><path d=\"M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11Z\" stroke=\"#E32320\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtNzAw\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A brand new website with optimized design and copywriting\"})}),className:\"framer-1ubkj91\",\"data-framer-name\":\"Design a user-friendly interface that is intuitive and easy to use.\",fonts:[\"GF;Epilogue-700\"],name:\"Design a user-friendly interface that is intuitive and easy to use.\",verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"It was truly fulfilling for us to bring Icon to life and witness its remarkable broadening. We are proud to see the successful fundraising campaign and the growing number of photographers who have enthusiastically joined as Icons.\"})}),className:\"framer-18ue035\",\"data-framer-name\":\"text\",fonts:[\"GF;Epilogue-regular\"],name:\"text\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-4eigJ { background: #FAF8F0; }`,\".framer-4eigJ.framer-dt1r5h, .framer-4eigJ .framer-dt1r5h { display: block; }\",\".framer-4eigJ.framer-28jb1 { align-content: center; align-items: center; background-color: #faf8f0; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-4eigJ .framer-f2v73d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-erm3yh-container { flex: none; height: 88px; position: relative; width: 100%; z-index: 10; }\",\".framer-4eigJ .framer-1gaejkx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 481px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-11d3p8c { aspect-ratio: 1.3366666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 633px); overflow: visible; position: absolute; right: 0px; top: 0px; transform: perspective(1200px); width: 846px; z-index: 1; }\",\".framer-4eigJ .framer-sjfo4e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; max-width: 1130px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\",\".framer-4eigJ .framer-1dppzvz { aspect-ratio: 1.452991452991453 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 234px); overflow: visible; position: relative; width: 340px; }\",\".framer-4eigJ .framer-14lm44b { align-content: center; align-items: center; background-color: var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, #030212); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 250px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-1im7tfz { flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 867px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1q6ornh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: min-content; }\",\".framer-4eigJ .framer-1fakkem { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-4eigJ .framer-1w0yhde { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-4eigJ .framer-zwltf, .framer-4eigJ .framer-1bfdmtq, .framer-4eigJ .framer-1dvha6m, .framer-4eigJ .framer-7rym08 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-4eigJ .framer-1hcyy0e, .framer-4eigJ .framer-5h43vo, .framer-4eigJ .framer-1tsnjx0, .framer-4eigJ .framer-zwvxb1, .framer-4eigJ .framer-vfadj, .framer-4eigJ .framer-1fnv4gy, .framer-4eigJ .framer-1tbv96q, .framer-4eigJ .framer-mzowhp, .framer-4eigJ .framer-18ez146, .framer-4eigJ .framer-1y8xi66, .framer-4eigJ .framer-1xzg10n, .framer-4eigJ .framer-ahoxul, .framer-4eigJ .framer-1wnay5v, .framer-4eigJ .framer-1cswubl, .framer-4eigJ .framer-1ygxfvs, .framer-4eigJ .framer-1j66s2t, .framer-4eigJ .framer-1yuj6ct, .framer-4eigJ .framer-m6e45g, .framer-4eigJ .framer-p7jhf2, .framer-4eigJ .framer-17so1u8, .framer-4eigJ .framer-1yobsj3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4eigJ .framer-15okpr, .framer-4eigJ .framer-1siu53k, .framer-4eigJ .framer-1242kvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-4eigJ .framer-sx9o9b { 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; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-4eigJ .framer-ryzsfo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 129px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1mg5s5k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-65100m { flex: none; height: 4px; position: relative; width: 866px; }\",\".framer-4eigJ .framer-1yhe1on { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 866px; }\",\".framer-4eigJ .framer-1n5opzk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 621px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-x29wqc, .framer-4eigJ .framer-1tj97wc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: auto; justify-content: center; overflow: hidden; padding: 120px 64px 60px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-1660skb, .framer-4eigJ .framer-vo62fa, .framer-4eigJ .framer-i3b4hp, .framer-4eigJ .framer-1hc81e3, .framer-4eigJ .framer-l169ny { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-ruwb48, .framer-4eigJ .framer-1m6cet3, .framer-4eigJ .framer-rodmc4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-1sxn96a, .framer-4eigJ .framer-1doyw3m, .framer-4eigJ .framer-1jgustt, .framer-4eigJ .framer-1duzh11, .framer-4eigJ .framer-1qxkf3y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1syx5wi, .framer-4eigJ .framer-qq41wf, .framer-4eigJ .framer-1hdhj71, .framer-4eigJ .framer-1ipsxej, .framer-4eigJ .framer-1bi1ies { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-1tcbay0, .framer-4eigJ .framer-1fvbzh6, .framer-4eigJ .framer-ag16cy, .framer-4eigJ .framer-1tbxn5s, .framer-4eigJ .framer-uiqlj3 { flex: none; height: auto; opacity: 0.9; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-800mpj-container, .framer-4eigJ .framer-1s2r177-container { flex: none; height: 423px; position: relative; transform: perspective(1200px); width: 870px; }\",\".framer-4eigJ .framer-1cganky, .framer-4eigJ .framer-2ti8c8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: auto; justify-content: center; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-1k1c983 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: 600px; justify-content: center; overflow: visible; padding: 120px 64px 60px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-10r5sp { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: -260px; box-shadow: 0px -4px 40px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; transform: perspective(1200px) translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-4eigJ .framer-9v29oy { flex: none; height: 416px; position: relative; width: 1088px; }\",\".framer-4eigJ .framer-19zcf30 { aspect-ratio: 0.9439775910364145 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: relative; width: 1px; }\",\".framer-4eigJ .framer-1e4aoc9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: auto; justify-content: center; overflow: hidden; padding: 400px 64px 60px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-17ni4b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: auto; justify-content: space-between; max-width: 1088px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-fs6ohf, .framer-4eigJ .framer-jbz5hj, .framer-4eigJ .framer-t3kvg6, .framer-4eigJ .framer-6xvemx, .framer-4eigJ .framer-1x7ul9r, .framer-4eigJ .framer-6cot33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 131px; }\",\".framer-4eigJ .framer-1023ngz-container, .framer-4eigJ .framer-jn1eyn-container, .framer-4eigJ .framer-beq2ym-container, .framer-4eigJ .framer-bbcnww-container, .framer-4eigJ .framer-pp7m28-container, .framer-4eigJ .framer-7mkped-container { flex: none; height: 307px; position: relative; width: 131px; }\",\".framer-4eigJ .framer-cqdhwj { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 93px; height: min-content; justify-content: flex-start; max-width: 865px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-1tx8fo5, .framer-4eigJ .framer-yw2i1v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-9ag37q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 182px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 127px; }\",\".framer-4eigJ .framer-scfas6 { flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 112px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1pez4c1 { flex: none; height: 136px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1xh8kv, .framer-4eigJ .framer-1f73wdp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 640px; }\",\".framer-4eigJ .framer-1qx6ai0 { flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 67px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1742iat { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 176px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 127px; }\",\".framer-4eigJ .framer-1hgq0fe { flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 85px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-wdjvxn { flex: none; height: 137px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1o65ffq { flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 89px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-1idl5ix { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: auto; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-14jggdx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; max-width: 865px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-1vpwo1u { flex: none; height: 415px; overflow: hidden; position: relative; width: 550px; }\",\".framer-4eigJ .framer-j0aqqk { flex: none; height: 415px; overflow: hidden; position: relative; width: 270px; }\",\".framer-4eigJ .framer-1mqo742 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 1266px; justify-content: center; max-width: 865px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-e5t75x { align-content: center; align-items: center; background-color: var(--token-44719c43-7c01-4161-9712-a755e99c9ffa, #eff0f1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: auto; justify-content: center; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-hawsqi-container { flex: none; height: 667px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-1shtvul, .framer-4eigJ .framer-9zb74y { aspect-ratio: 1.7431693989071038 / 1; height: var(--framer-aspect-ratio-supported, 862px); overflow: visible; position: relative; width: 1503px; }\",\".framer-4eigJ .framer-2pilp { aspect-ratio: 1.7426726279185296 / 1; height: var(--framer-aspect-ratio-supported, 862px); overflow: visible; position: relative; width: 1503px; }\",\".framer-4eigJ .framer-qs1l51 { aspect-ratio: 1.8442437923250565 / 1; height: var(--framer-aspect-ratio-supported, 759px); overflow: visible; position: relative; width: 1400px; }\",\".framer-4eigJ .framer-1mou5gq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 1088px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-17mc81k, .framer-4eigJ .framer-owgego, .framer-4eigJ .framer-150uk3d { flex: none; height: 670px; overflow: hidden; position: relative; width: 300px; }\",\".framer-4eigJ .framer-1ngvqsk-container { flex: none; height: 756px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-cqxyzd { height: 673px; overflow: visible; position: relative; width: 1051px; }\",\".framer-4eigJ .framer-18vzzg1, .framer-4eigJ .framer-1eacv8x { aspect-ratio: 1.5251736111111112 / 1; height: var(--framer-aspect-ratio-supported, 673px); overflow: visible; position: relative; width: 1026px; }\",\".framer-4eigJ .framer-6zgt44 { aspect-ratio: 1.523850823937554 / 1; height: var(--framer-aspect-ratio-supported, 673px); overflow: visible; position: relative; width: 1026px; }\",\".framer-4eigJ .framer-1npsgsd { align-content: center; align-items: center; background-color: var(--token-86f9aff5-ef75-46fa-bc24-d8f9bff89834, #030212); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-o4a6we { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 640px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-4eigJ .framer-1840nv2 { 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 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-4eigJ .framer-mijgug { flex: none; height: auto; opacity: 0.9; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-2km7o1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 639px; }\",\".framer-4eigJ .framer-18ri0fd, .framer-4eigJ .framer-lrq5yf, .framer-4eigJ .framer-ecnlva { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4eigJ .framer-6vphad, .framer-4eigJ .framer-17dfthx, .framer-4eigJ .framer-1kiszpc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-4eigJ .framer-1xgsrld, .framer-4eigJ .framer-yo9tuk, .framer-4eigJ .framer-1pqd2xz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-4eigJ .framer-1p3tmco, .framer-4eigJ .framer-1uyuzo2, .framer-4eigJ .framer-1ubkj91 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4eigJ .framer-18ue035 { flex: none; height: auto; opacity: 0.9; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 633px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4eigJ.framer-28jb1, .framer-4eigJ .framer-f2v73d, .framer-4eigJ .framer-1gaejkx, .framer-4eigJ .framer-sjfo4e, .framer-4eigJ .framer-14lm44b, .framer-4eigJ .framer-1q6ornh, .framer-4eigJ .framer-zwltf, .framer-4eigJ .framer-15okpr, .framer-4eigJ .framer-1bfdmtq, .framer-4eigJ .framer-1siu53k, .framer-4eigJ .framer-1dvha6m, .framer-4eigJ .framer-1242kvr, .framer-4eigJ .framer-sx9o9b, .framer-4eigJ .framer-7rym08, .framer-4eigJ .framer-x29wqc, .framer-4eigJ .framer-1660skb, .framer-4eigJ .framer-ruwb48, .framer-4eigJ .framer-1syx5wi, .framer-4eigJ .framer-1cganky, .framer-4eigJ .framer-vo62fa, .framer-4eigJ .framer-1m6cet3, .framer-4eigJ .framer-qq41wf, .framer-4eigJ .framer-1k1c983, .framer-4eigJ .framer-10r5sp, .framer-4eigJ .framer-1e4aoc9, .framer-4eigJ .framer-i3b4hp, .framer-4eigJ .framer-1hdhj71, .framer-4eigJ .framer-fs6ohf, .framer-4eigJ .framer-jbz5hj, .framer-4eigJ .framer-t3kvg6, .framer-4eigJ .framer-6xvemx, .framer-4eigJ .framer-1x7ul9r, .framer-4eigJ .framer-6cot33, .framer-4eigJ .framer-1tj97wc, .framer-4eigJ .framer-cqdhwj, .framer-4eigJ .framer-9ag37q, .framer-4eigJ .framer-1xh8kv, .framer-4eigJ .framer-1742iat, .framer-4eigJ .framer-1f73wdp, .framer-4eigJ .framer-1idl5ix, .framer-4eigJ .framer-14jggdx, .framer-4eigJ .framer-1mqo742, .framer-4eigJ .framer-2ti8c8, .framer-4eigJ .framer-1hc81e3, .framer-4eigJ .framer-1ipsxej, .framer-4eigJ .framer-e5t75x, .framer-4eigJ .framer-l169ny, .framer-4eigJ .framer-1bi1ies, .framer-4eigJ .framer-1npsgsd, .framer-4eigJ .framer-o4a6we, .framer-4eigJ .framer-rodmc4, .framer-4eigJ .framer-1840nv2, .framer-4eigJ .framer-2km7o1, .framer-4eigJ .framer-18ri0fd, .framer-4eigJ .framer-lrq5yf, .framer-4eigJ .framer-ecnlva { gap: 0px; } .framer-4eigJ.framer-28jb1 > *, .framer-4eigJ .framer-f2v73d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4eigJ.framer-28jb1 > :first-child, .framer-4eigJ .framer-f2v73d > :first-child, .framer-4eigJ .framer-14lm44b > :first-child, .framer-4eigJ .framer-1q6ornh > :first-child, .framer-4eigJ .framer-zwltf > :first-child, .framer-4eigJ .framer-15okpr > :first-child, .framer-4eigJ .framer-1bfdmtq > :first-child, .framer-4eigJ .framer-1siu53k > :first-child, .framer-4eigJ .framer-1dvha6m > :first-child, .framer-4eigJ .framer-1242kvr > :first-child, .framer-4eigJ .framer-sx9o9b > :first-child, .framer-4eigJ .framer-7rym08 > :first-child, .framer-4eigJ .framer-x29wqc > :first-child, .framer-4eigJ .framer-1660skb > :first-child, .framer-4eigJ .framer-ruwb48 > :first-child, .framer-4eigJ .framer-1cganky > :first-child, .framer-4eigJ .framer-vo62fa > :first-child, .framer-4eigJ .framer-1m6cet3 > :first-child, .framer-4eigJ .framer-1k1c983 > :first-child, .framer-4eigJ .framer-1e4aoc9 > :first-child, .framer-4eigJ .framer-i3b4hp > :first-child, .framer-4eigJ .framer-fs6ohf > :first-child, .framer-4eigJ .framer-jbz5hj > :first-child, .framer-4eigJ .framer-t3kvg6 > :first-child, .framer-4eigJ .framer-6xvemx > :first-child, .framer-4eigJ .framer-1x7ul9r > :first-child, .framer-4eigJ .framer-6cot33 > :first-child, .framer-4eigJ .framer-1tj97wc > :first-child, .framer-4eigJ .framer-cqdhwj > :first-child, .framer-4eigJ .framer-9ag37q > :first-child, .framer-4eigJ .framer-1xh8kv > :first-child, .framer-4eigJ .framer-1742iat > :first-child, .framer-4eigJ .framer-1f73wdp > :first-child, .framer-4eigJ .framer-1idl5ix > :first-child, .framer-4eigJ .framer-2ti8c8 > :first-child, .framer-4eigJ .framer-1hc81e3 > :first-child, .framer-4eigJ .framer-e5t75x > :first-child, .framer-4eigJ .framer-l169ny > :first-child, .framer-4eigJ .framer-o4a6we > :first-child, .framer-4eigJ .framer-rodmc4 > :first-child, .framer-4eigJ .framer-2km7o1 > :first-child { margin-top: 0px; } .framer-4eigJ.framer-28jb1 > :last-child, .framer-4eigJ .framer-f2v73d > :last-child, .framer-4eigJ .framer-14lm44b > :last-child, .framer-4eigJ .framer-1q6ornh > :last-child, .framer-4eigJ .framer-zwltf > :last-child, .framer-4eigJ .framer-15okpr > :last-child, .framer-4eigJ .framer-1bfdmtq > :last-child, .framer-4eigJ .framer-1siu53k > :last-child, .framer-4eigJ .framer-1dvha6m > :last-child, .framer-4eigJ .framer-1242kvr > :last-child, .framer-4eigJ .framer-sx9o9b > :last-child, .framer-4eigJ .framer-7rym08 > :last-child, .framer-4eigJ .framer-x29wqc > :last-child, .framer-4eigJ .framer-1660skb > :last-child, .framer-4eigJ .framer-ruwb48 > :last-child, .framer-4eigJ .framer-1cganky > :last-child, .framer-4eigJ .framer-vo62fa > :last-child, .framer-4eigJ .framer-1m6cet3 > :last-child, .framer-4eigJ .framer-1k1c983 > :last-child, .framer-4eigJ .framer-1e4aoc9 > :last-child, .framer-4eigJ .framer-i3b4hp > :last-child, .framer-4eigJ .framer-fs6ohf > :last-child, .framer-4eigJ .framer-jbz5hj > :last-child, .framer-4eigJ .framer-t3kvg6 > :last-child, .framer-4eigJ .framer-6xvemx > :last-child, .framer-4eigJ .framer-1x7ul9r > :last-child, .framer-4eigJ .framer-6cot33 > :last-child, .framer-4eigJ .framer-1tj97wc > :last-child, .framer-4eigJ .framer-cqdhwj > :last-child, .framer-4eigJ .framer-9ag37q > :last-child, .framer-4eigJ .framer-1xh8kv > :last-child, .framer-4eigJ .framer-1742iat > :last-child, .framer-4eigJ .framer-1f73wdp > :last-child, .framer-4eigJ .framer-1idl5ix > :last-child, .framer-4eigJ .framer-2ti8c8 > :last-child, .framer-4eigJ .framer-1hc81e3 > :last-child, .framer-4eigJ .framer-e5t75x > :last-child, .framer-4eigJ .framer-l169ny > :last-child, .framer-4eigJ .framer-o4a6we > :last-child, .framer-4eigJ .framer-rodmc4 > :last-child, .framer-4eigJ .framer-2km7o1 > :last-child { margin-bottom: 0px; } .framer-4eigJ .framer-1gaejkx > *, .framer-4eigJ .framer-sjfo4e > *, .framer-4eigJ .framer-1syx5wi > *, .framer-4eigJ .framer-qq41wf > *, .framer-4eigJ .framer-10r5sp > *, .framer-4eigJ .framer-1hdhj71 > *, .framer-4eigJ .framer-1ipsxej > *, .framer-4eigJ .framer-1bi1ies > *, .framer-4eigJ .framer-1npsgsd > *, .framer-4eigJ .framer-1840nv2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4eigJ .framer-1gaejkx > :first-child, .framer-4eigJ .framer-sjfo4e > :first-child, .framer-4eigJ .framer-1syx5wi > :first-child, .framer-4eigJ .framer-qq41wf > :first-child, .framer-4eigJ .framer-10r5sp > :first-child, .framer-4eigJ .framer-1hdhj71 > :first-child, .framer-4eigJ .framer-14jggdx > :first-child, .framer-4eigJ .framer-1mqo742 > :first-child, .framer-4eigJ .framer-1ipsxej > :first-child, .framer-4eigJ .framer-1bi1ies > :first-child, .framer-4eigJ .framer-1npsgsd > :first-child, .framer-4eigJ .framer-1840nv2 > :first-child, .framer-4eigJ .framer-18ri0fd > :first-child, .framer-4eigJ .framer-lrq5yf > :first-child, .framer-4eigJ .framer-ecnlva > :first-child { margin-left: 0px; } .framer-4eigJ .framer-1gaejkx > :last-child, .framer-4eigJ .framer-sjfo4e > :last-child, .framer-4eigJ .framer-1syx5wi > :last-child, .framer-4eigJ .framer-qq41wf > :last-child, .framer-4eigJ .framer-10r5sp > :last-child, .framer-4eigJ .framer-1hdhj71 > :last-child, .framer-4eigJ .framer-14jggdx > :last-child, .framer-4eigJ .framer-1mqo742 > :last-child, .framer-4eigJ .framer-1ipsxej > :last-child, .framer-4eigJ .framer-1bi1ies > :last-child, .framer-4eigJ .framer-1npsgsd > :last-child, .framer-4eigJ .framer-1840nv2 > :last-child, .framer-4eigJ .framer-18ri0fd > :last-child, .framer-4eigJ .framer-lrq5yf > :last-child, .framer-4eigJ .framer-ecnlva > :last-child { margin-right: 0px; } .framer-4eigJ .framer-14lm44b > *, .framer-4eigJ .framer-x29wqc > *, .framer-4eigJ .framer-1cganky > *, .framer-4eigJ .framer-1k1c983 > *, .framer-4eigJ .framer-1e4aoc9 > *, .framer-4eigJ .framer-1tj97wc > *, .framer-4eigJ .framer-1idl5ix > *, .framer-4eigJ .framer-2ti8c8 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-4eigJ .framer-1q6ornh > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-4eigJ .framer-zwltf > *, .framer-4eigJ .framer-1bfdmtq > *, .framer-4eigJ .framer-1dvha6m > *, .framer-4eigJ .framer-7rym08 > *, .framer-4eigJ .framer-ruwb48 > *, .framer-4eigJ .framer-1m6cet3 > *, .framer-4eigJ .framer-rodmc4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-4eigJ .framer-15okpr > *, .framer-4eigJ .framer-1siu53k > *, .framer-4eigJ .framer-1242kvr > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-4eigJ .framer-sx9o9b > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-4eigJ .framer-1660skb > *, .framer-4eigJ .framer-vo62fa > *, .framer-4eigJ .framer-i3b4hp > *, .framer-4eigJ .framer-1hc81e3 > *, .framer-4eigJ .framer-l169ny > *, .framer-4eigJ .framer-o4a6we > *, .framer-4eigJ .framer-2km7o1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-4eigJ .framer-fs6ohf > *, .framer-4eigJ .framer-jbz5hj > *, .framer-4eigJ .framer-t3kvg6 > *, .framer-4eigJ .framer-6xvemx > *, .framer-4eigJ .framer-1x7ul9r > *, .framer-4eigJ .framer-6cot33 > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-4eigJ .framer-cqdhwj > * { margin: 0px; margin-bottom: calc(93px / 2); margin-top: calc(93px / 2); } .framer-4eigJ .framer-9ag37q > *, .framer-4eigJ .framer-1xh8kv > *, .framer-4eigJ .framer-1742iat > *, .framer-4eigJ .framer-1f73wdp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4eigJ .framer-14jggdx > *, .framer-4eigJ .framer-1mqo742 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-4eigJ .framer-e5t75x > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-4eigJ .framer-18ri0fd > *, .framer-4eigJ .framer-lrq5yf > *, .framer-4eigJ .framer-ecnlva > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\"@media (min-width: 1400px) { .framer-4eigJ .hidden-28jb1 { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1399px) { .framer-4eigJ .hidden-1ix0e1 { display: none !important; } .${metadata.bodyClassName}-framer-4eigJ { background: #FAF8F0; } .framer-4eigJ.framer-28jb1 { width: 1200px; } .framer-4eigJ .framer-1gaejkx { align-content: center; align-items: center; height: 455px; } .framer-4eigJ .framer-11d3p8c { height: var(--framer-aspect-ratio-supported, 552px); top: 39px; width: 738px; } .framer-4eigJ .framer-sjfo4e { max-width: 1000px; } .framer-4eigJ .framer-1ngvqsk-container { height: 697px; }}`,`@media (min-width: 810px) and (max-width: 1199px) { .framer-4eigJ .hidden-1gmcwa0 { display: none !important; } .${metadata.bodyClassName}-framer-4eigJ { background: #FAF8F0; } .framer-4eigJ.framer-28jb1 { width: 810px; } .framer-4eigJ .framer-f2v73d { height: 64.71631205673759vh; justify-content: flex-start; order: 0; } .framer-4eigJ .framer-1gaejkx { height: 641px; } .framer-4eigJ .framer-11d3p8c { height: var(--framer-aspect-ratio-supported, 514px); right: -60px; top: 80%; transform: perspective(1200px) translateY(-50%); width: 687px; } .framer-4eigJ .framer-sjfo4e { height: min-content; padding: 48px 48px 0px 48px; } .framer-4eigJ .framer-1dppzvz { order: 0; } .framer-4eigJ .framer-14lm44b { order: 1; } .framer-4eigJ .framer-1im7tfz, .framer-4eigJ .framer-1q6ornh, .framer-4eigJ .framer-1yhe1on { width: 100%; } .framer-4eigJ .framer-1fakkem { align-self: unset; width: 100%; } .framer-4eigJ .framer-65100m { height: 3px; width: 680px; } .framer-4eigJ .framer-x29wqc { order: 2; padding: 120px 48px 60px 48px; } .framer-4eigJ .framer-800mpj-container { width: 492px; } .framer-4eigJ .framer-1cganky { order: 3; padding: 120px 48px 120px 48px; } .framer-4eigJ .framer-1k1c983 { order: 4; padding: 120px 48px 60px 48px; } .framer-4eigJ .framer-10r5sp { bottom: -140px; } .framer-4eigJ .framer-9v29oy { aspect-ratio: 2.6153846153846154 / 1; height: var(--framer-aspect-ratio-supported, 241px); width: 630px; } .framer-4eigJ .framer-1e4aoc9 { order: 5; padding: 260px 48px 60px 48px; } .framer-4eigJ .framer-17ni4b0 { align-content: unset; align-items: unset; display: grid; gap: 21px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-4eigJ .framer-fs6ohf, .framer-4eigJ .framer-jbz5hj, .framer-4eigJ .framer-t3kvg6, .framer-4eigJ .framer-6xvemx, .framer-4eigJ .framer-1x7ul9r, .framer-4eigJ .framer-6cot33 { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-4eigJ .framer-1tj97wc { order: 6; padding: 120px 48px 60px 48px; } .framer-4eigJ .framer-1idl5ix { order: 7; padding: 80px 48px 0px 48px; } .framer-4eigJ .framer-1vpwo1u { height: 323px; order: 0; width: 60%; } .framer-4eigJ .framer-j0aqqk { aspect-ratio: 0.6506024096385542 / 1; height: var(--framer-aspect-ratio-supported, 323px); order: 1; width: 210px; } .framer-4eigJ .framer-1mqo742 { height: 1075px; } .framer-4eigJ .framer-2ti8c8 { order: 8; padding: 120px 48px 120px 48px; } .framer-4eigJ .framer-e5t75x { gap: 80px; order: 9; padding: 120px 48px 120px 48px; } .framer-4eigJ .framer-hawsqi-container { height: 361px; } .framer-4eigJ .framer-1ngvqsk-container { height: 393px; } .framer-4eigJ .framer-1s2r177-container { width: 527px; } .framer-4eigJ .framer-1npsgsd { order: 10; padding: 120px 48px 120px 48px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4eigJ .framer-17ni4b0, .framer-4eigJ .framer-e5t75x { gap: 0px; } .framer-4eigJ .framer-17ni4b0 > *, .framer-4eigJ .framer-17ni4b0 > :first-child, .framer-4eigJ .framer-17ni4b0 > :last-child { margin: 0px; } .framer-4eigJ .framer-e5t75x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-4eigJ .framer-e5t75x > :first-child { margin-top: 0px; } .framer-4eigJ .framer-e5t75x > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-4eigJ .hidden-1rmd0d9 { display: none !important; } .${metadata.bodyClassName}-framer-4eigJ { background: #FAF8F0; } .framer-4eigJ.framer-28jb1 { width: 360px; } .framer-4eigJ .framer-erm3yh-container { height: auto; order: 0; } .framer-4eigJ .framer-1gaejkx { height: auto; justify-content: flex-start; order: 1; padding: 8px 0px 280px 0px; } .framer-4eigJ .framer-11d3p8c { bottom: -100px; height: var(--framer-aspect-ratio-supported, 350px); right: -120px; top: unset; width: 468px; } .framer-4eigJ .framer-sjfo4e { align-content: flex-start; align-items: flex-start; height: min-content; padding: 24px 24px 24px 24px; } .framer-4eigJ .framer-1dppzvz { aspect-ratio: 1.4511627906976745 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 138px); max-width: 320px; width: 1px; } .framer-4eigJ .framer-14lm44b { padding: 250px 24px 120px 24px; } .framer-4eigJ .framer-1im7tfz, .framer-4eigJ .framer-1q6ornh, .framer-4eigJ .framer-1yhe1on, .framer-4eigJ .framer-1n5opzk, .framer-4eigJ .framer-1xh8kv, .framer-4eigJ .framer-1f73wdp, .framer-4eigJ .framer-2km7o1, .framer-4eigJ .framer-18ue035 { width: 100%; } .framer-4eigJ .framer-1fakkem { align-self: unset; width: 100%; } .framer-4eigJ .framer-1w0yhde { --border-bottom-width: 0px; --border-color: var(--token-7a6cca63-8ba7-4d3b-9a31-7737f842364a, #f3f3f3); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 0px 0px 0px 57px; } .framer-4eigJ .framer-7rym08, .framer-4eigJ .framer-1tcbay0, .framer-4eigJ .framer-1fvbzh6, .framer-4eigJ .framer-ag16cy, .framer-4eigJ .framer-1tbxn5s, .framer-4eigJ .framer-uiqlj3, .framer-4eigJ .framer-mijgug { flex: 1 0 0px; width: 1px; } .framer-4eigJ .framer-ahoxul { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-4eigJ .framer-x29wqc { padding: 120px 0px 60px 0px; } .framer-4eigJ .framer-1660skb { padding: 0px 24px 0px 24px; } .framer-4eigJ .framer-800mpj-container { height: 430px; width: 106%; } .framer-4eigJ .framer-1cganky, .framer-4eigJ .framer-1npsgsd { padding: 120px 24px 120px 24px; } .framer-4eigJ .framer-1k1c983 { height: 190px; padding: 0px 24px 60px 24px; } .framer-4eigJ .framer-10r5sp { bottom: -290px; width: 85%; } .framer-4eigJ .framer-1e4aoc9 { padding: 380px 24px 60px 24px; } .framer-4eigJ .framer-17ni4b0 { align-content: unset; align-items: unset; display: grid; gap: 33px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(100px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-4eigJ .framer-fs6ohf, .framer-4eigJ .framer-jbz5hj, .framer-4eigJ .framer-t3kvg6, .framer-4eigJ .framer-6xvemx, .framer-4eigJ .framer-1x7ul9r, .framer-4eigJ .framer-6cot33 { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-4eigJ .framer-1tj97wc { padding: 120px 24px 60px 24px; } .framer-4eigJ .framer-cqdhwj { padding: 0px 0px 0px 0px; } .framer-4eigJ .framer-1tx8fo5, .framer-4eigJ .framer-yw2i1v, .framer-4eigJ .framer-14jggdx { flex-direction: column; } .framer-4eigJ .framer-1idl5ix { gap: 80px; padding: 32px 24px 80px 24px; } .framer-4eigJ .framer-1vpwo1u { height: 570px; order: 0; width: 100%; } .framer-4eigJ .framer-j0aqqk { height: 353px; order: 1; width: 100%; } .framer-4eigJ .framer-1mqo742 { flex-direction: column; height: 1685px; } .framer-4eigJ .framer-2ti8c8 { padding: 60px 24px 120px 24px; } .framer-4eigJ .framer-e5t75x { gap: 80px; padding: 120px 24px 120px 24px; } .framer-4eigJ .framer-hawsqi-container { height: 195px; } .framer-4eigJ .framer-17mc81k { flex: 1 0 0px; height: 334px; width: 1px; } .framer-4eigJ .framer-owgego { flex: 1 0 0px; height: 330px; width: 1px; } .framer-4eigJ .framer-1ngvqsk-container { height: 208px; } .framer-4eigJ .framer-1s2r177-container { height: 523px; width: 115%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4eigJ .framer-1w0yhde, .framer-4eigJ .framer-17ni4b0, .framer-4eigJ .framer-1tx8fo5, .framer-4eigJ .framer-yw2i1v, .framer-4eigJ .framer-1idl5ix, .framer-4eigJ .framer-14jggdx, .framer-4eigJ .framer-1mqo742, .framer-4eigJ .framer-e5t75x { gap: 0px; } .framer-4eigJ .framer-1w0yhde > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4eigJ .framer-1w0yhde > :first-child, .framer-4eigJ .framer-1idl5ix > :first-child, .framer-4eigJ .framer-14jggdx > :first-child, .framer-4eigJ .framer-1mqo742 > :first-child, .framer-4eigJ .framer-e5t75x > :first-child { margin-top: 0px; } .framer-4eigJ .framer-1w0yhde > :last-child, .framer-4eigJ .framer-1idl5ix > :last-child, .framer-4eigJ .framer-14jggdx > :last-child, .framer-4eigJ .framer-1mqo742 > :last-child, .framer-4eigJ .framer-e5t75x > :last-child { margin-bottom: 0px; } .framer-4eigJ .framer-17ni4b0 > *, .framer-4eigJ .framer-17ni4b0 > :first-child, .framer-4eigJ .framer-17ni4b0 > :last-child, .framer-4eigJ .framer-1tx8fo5 > *, .framer-4eigJ .framer-1tx8fo5 > :first-child, .framer-4eigJ .framer-1tx8fo5 > :last-child, .framer-4eigJ .framer-yw2i1v > *, .framer-4eigJ .framer-yw2i1v > :first-child, .framer-4eigJ .framer-yw2i1v > :last-child { margin: 0px; } .framer-4eigJ .framer-1idl5ix > *, .framer-4eigJ .framer-e5t75x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-4eigJ .framer-14jggdx > *, .framer-4eigJ .framer-1mqo742 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,'.framer-4eigJ[data-border=\"true\"]::after, .framer-4eigJ [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 12621\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"y6N0XoPj6\":{\"layout\":[\"fixed\",\"auto\"]},\"TDATm6rNk\":{\"layout\":[\"fixed\",\"auto\"]},\"aFcbAA_gz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerxbAsgqKMU=withCSS(Component,css,\"framer-4eigJ\");export default FramerxbAsgqKMU;FramerxbAsgqKMU.displayName=\"Page\";FramerxbAsgqKMU.defaultProps={height:12621,width:1400};addFonts(FramerxbAsgqKMU,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiCZXVigHPVA.woff2\",weight:\"400\"},{family:\"Epilogue\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiCZXVigHPVA.woff2\",weight:\"800\"},{family:\"Epilogue\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/epilogue/v17/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiCZXVigHPVA.woff2\",weight:\"700\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4GCC5nsV8kA_Ykqw.woff2\",weight:\"600\"},{family:\"Nunito Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp5F5bxqqtQ1yiU4G1ilnsV8kA_Ykqw.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"}]},...NavbarsNavbarFonts,...IconQuoteFonts,...IconColorComponentFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxbAsgqKMU\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1400\",\"framerIntrinsicHeight\":\"12621\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y6N0XoPj6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TDATm6rNk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aFcbAA_gz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "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", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wEEsNO8zb", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "css", "FramerP5onzo_6_", "withCSS", "P5onzo_6_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Xi7dF7Wq1", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "RichText", "x", "css", "FramervQBfqZYfu", "withCSS", "vQBfqZYfu_default", "addPropertyControls", "ControlType", "addFonts", "NavbarsNavbarFonts", "getFonts", "CEDtG8wRL_default", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText", "IconQuoteFonts", "vQBfqZYfu_default", "ContainerWithFX", "Container", "IconColorComponentFonts", "P5onzo_6_default", "SlideshowFonts", "Slideshow", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "transformTemplate2", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "transformTemplate3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "CEDtG8wRL_default", "ImageWithFX", "MotionDivWithFX", "Image2", "x", "RichTextWithFX", "RichText", "SVG", "ContainerWithFX", "vQBfqZYfu_default", "P5onzo_6_default", "Slideshow", "css", "FramerxbAsgqKMU", "withCSS", "xbAsgqKMU_default", "addFonts", "NavbarsNavbarFonts", "IconQuoteFonts", "IconColorComponentFonts", "SlideshowFonts", "__FramerMetadata__"]
}
