{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/hwrQxiodXUuXJYc1n8UN/fCxKbZjVi4id189MS3LF/jgsArEgAZ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/l0YNWo5RXtJCEhIkKpL5/Carousel.js\";import TopNav from\"#framer/local/canvasComponent/aXtxR0byl/aXtxR0byl.js\";import ViewCaseStudy from\"#framer/local/canvasComponent/ikH2JjdDe/ikH2JjdDe.js\";import Button from\"#framer/local/canvasComponent/KhH10uUqk/KhH10uUqk.js\";import Footer from\"#framer/local/canvasComponent/UqpqQn_cn/UqpqQn_cn.js\";import*as sharedStyle from\"#framer/local/css/E6uOn3UIL/E6uOn3UIL.js\";import*as sharedStyle3 from\"#framer/local/css/g__Jccr3b/g__Jccr3b.js\";import*as sharedStyle4 from\"#framer/local/css/loYPv_FZh/loYPv_FZh.js\";import*as sharedStyle2 from\"#framer/local/css/Q0JOlxQc7/Q0JOlxQc7.js\";import*as sharedStyle1 from\"#framer/local/css/RaMmntZwB/RaMmntZwB.js\";import metadataProvider from\"#framer/local/webPageMetadata/jgsArEgAZ/jgsArEgAZ.js\";const TopNavFonts=getFonts(TopNav);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const Carousel1Fonts=getFonts(Carousel1);const ButtonFonts=getFonts(Button);const ViewCaseStudyFonts=getFonts(ViewCaseStudy);const FooterFonts=getFonts(Footer);const MotionDivWithFX=withFX(motion.div);const breakpoints={LLJ1gmT7i:\"(max-width: 809px)\",UI5fwQGtw:\"(min-width: 810px) and (max-width: 1439px)\",XDFnb5ab5:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-avF0J\";const variantClassNames={LLJ1gmT7i:\"framer-v-giwqrm\",UI5fwQGtw:\"framer-v-perpec\",XDFnb5ab5:\"framer-v-67b9c6\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:1,mass:1,stiffness:800,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"XDFnb5ab5\",Phone:\"LLJ1gmT7i\",Tablet:\"UI5fwQGtw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XDFnb5ab5\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"UI5fwQGtw\",\"LLJ1gmT7i\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"UI5fwQGtw\",\"LLJ1gmT7i\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"LLJ1gmT7i\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"XDFnb5ab5\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, rgb(41, 58, 32)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-67b9c6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4p5mma-container\",layoutScroll:true,nodeId:\"mLR2n8WUo\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{variant:\"aqR2XOGnx\"},UI5fwQGtw:{variant:\"aqR2XOGnx\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"mLR2n8WUo\",layoutId:\"mLR2n8WUo\",style:{height:\"100%\",width:\"100%\"},variant:\"BIUtlKMR5\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vox5ps\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14e0g8o\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Strava\"})}),className:\"framer-1u0teir\",\"data-framer-name\":\"Netflix\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Strava is an exercise app that is particularly favored among runners and bikers due to its excellent GPS-tracking features. The design team was looking to update their old library of icons, so they hired me to overhaul the whole library.\"})}),className:\"framer-dvf0fc\",\"data-framer-name\":\"Netflix is a multimedia streaming company, producing original movies and tv shows viewable on dozens of devices. The team at Netflix needed another icon designer to assist them in production work on a large number of icons, which is where I came in.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o09jey\",\"data-framer-name\":\"Right Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wamylu\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Services\"})}),className:\"framer-1de432h\",\"data-framer-name\":\"Services\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Icon Design\"})}),className:\"framer-14ngomr\",\"data-framer-name\":\"Icon Design \u2022 Automation\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1ig2k\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Team\"})}),className:\"framer-iql75n\",\"data-framer-name\":\"Team\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Anton Schulz, Katrina Lofaro, Arlo Jamrog\"})}),className:\"framer-1tz693t\",\"data-framer-name\":\"Bonnie Kate Wolf, Sean Huntley\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kl13wh\",\"data-framer-name\":\"Dates\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Dates\"})}),className:\"framer-28sk4s\",\"data-framer-name\":\"Dates\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024, January to May (5 months)\"})}),className:\"framer-1bv4xe5\",\"data-framer-name\":\"2023, February to May (3.5 months)\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgbazi\",\"data-framer-name\":\"Website\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Website\"})}),className:\"framer-1f3h1jp\",\"data-framer-name\":\"Website\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.strava.com/about\",motionChild:true,nodeId:\"XyAf44Dnl\",openInNewTab:true,scopeId:\"jgsArEgAZ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:\"strava.com/about\"})})})}),className:\"framer-1lyfsyn\",\"data-framer-name\":\"December 2021 to July 2022 (8 months)\",fonts:[\"Inter\"],verticalAlignment:\"bottom\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ux9x9w\",\"data-framer-name\":\"TLDR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nu221x\",\"data-styles-preset\":\"RaMmntZwB\",children:\"TLDR;\"})}),className:\"framer-1ixfym2\",\"data-framer-name\":\"TLDR;\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-32vttv\",\"data-styles-preset\":\"Q0JOlxQc7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e7b0f2ee-e72d-49c7-b259-26c138e10804, rgb(246, 244, 238))\"},children:\"In 5 months, I explored 5 different icon styles, redesigned Strava's existing library of 360 concepts in 4 sizes, and shipped a total of 1,440 unique assets along with a comprehensive style guide.\"})}),className:\"framer-yoe8gd\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4f5js8\",\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-267fh0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pFJvIAMre\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:.25,id:\"pFJvIAMre\",layoutId:\"pFJvIAMre\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfcv1d\",\"data-framer-name\":\"heart\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-333ft8\",\"data-framer-name\":\"Group 10\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 5 17.5 L 5 18 L 2 18 L 2 17.5 C 2 10.17 7.476 4 14.5 4 C 18.335 4 21.726 5.857 24 8.725 C 26.274 5.857 29.665 4 33.5 4 C 40.524 4 46 10.17 46 17.5 L 46 18 L 43 18 L 43 17.5 C 43 11.575 38.627 7 33.5 7 C 30.069 7 27.003 9.023 25.322 12.156 L 24 14.619 L 22.678 12.156 C 20.998 9.023 17.931 7 14.5 7 C 9.373 7 5 11.575 5 17.5 Z M 18.858 35.38 C 16.204 33.374 13.431 31.274 11.044 28.96 L 8.956 31.113 C 11.486 33.567 14.396 35.767 17.014 37.747 L 17.048 37.774 C 18.725 39.041 20.271 40.211 21.583 41.332 C 22.977 42.517 25.023 42.517 26.417 41.332 C 27.729 40.212 29.275 39.042 30.952 37.774 L 30.986 37.747 C 33.605 35.767 36.514 33.567 39.044 31.113 L 36.956 28.96 C 34.569 31.274 31.796 33.374 29.142 35.38 L 29.119 35.398 C 27.469 36.646 25.855 37.867 24.469 39.051 C 24.197 39.277 23.804 39.277 23.532 39.051 C 22.145 37.867 20.532 36.646 18.882 35.399 L 18.858 35.381 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 18 15.379 L 11.379 22 L 1 22 L 1 25 L 12.621 25 L 18 19.621 L 28 29.621 L 32.621 25 L 47 25 L 47 22 L 31.379 22 L 28 25.379 Z M 88.375 13.5 C 85.227 13.5 82.5 16.309 82.5 20 L 80 20 C 80 15.13 83.653 11 88.375 11 C 90.557 11 92.525 11.894 94 13.33 C 95.475 11.894 97.443 11 99.625 11 C 104.347 11 108 15.13 108 20 L 105.5 20 C 105.5 16.309 102.772 13.5 99.625 13.5 C 97.785 13.5 96.111 14.44 95.016 15.97 L 94 17.39 L 92.984 15.97 C 91.889 14.44 90.216 13.5 88.375 13.5 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 90.016 17.966 L 96.972 25.172 L 98.947 23 L 110 23 L 110 25.5 L 100.053 25.5 L 97.028 28.828 L 89.984 21.533 L 86.018 25.5 L 78 25.5 L 78 23 L 84.982 23 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 91.205 31.947 C 89.354 30.45 87.433 28.894 85.851 27.158 L 84.003 28.842 C 85.724 30.731 87.783 32.395 89.6 33.863 L 89.634 33.891 C 90.674 34.731 91.624 35.501 92.435 36.237 C 93.323 37.042 94.677 37.042 95.565 36.237 C 96.375 35.5 97.327 34.731 98.366 33.891 L 98.4 33.863 C 100.217 32.395 102.276 30.731 103.997 28.842 L 102.149 27.158 C 100.567 28.894 98.646 30.45 96.795 31.946 L 96.776 31.961 C 95.803 32.748 94.842 33.525 94 34.281 C 93.158 33.525 92.197 32.748 91.224 31.961 Z M 143 21 C 143 18.155 145.095 16 147.5 16 C 148.982 16 150.327 16.801 151.16 18.092 L 152 19.393 L 152.84 18.092 C 153.673 16.802 155.018 16 156.5 16 C 158.905 16 161 18.155 161 21 L 163 21 C 163 17.218 160.17 14 156.5 14 C 154.738 14 153.157 14.752 152 15.948 C 150.843 14.752 149.262 14 147.5 14 C 143.83 14 141 17.218 141 21 Z M 149.663 29.748 C 148.269 28.668 146.826 27.548 145.625 26.305 L 144.187 27.695 C 145.497 29.049 147.044 30.249 148.411 31.308 L 148.438 31.328 C 149.245 31.955 149.983 32.528 150.611 33.075 C 151.408 33.766 152.592 33.766 153.389 33.075 C 154.017 32.528 154.755 31.955 155.562 31.329 L 155.589 31.309 C 156.956 30.249 158.503 29.049 159.813 27.695 L 158.375 26.305 C 157.174 27.547 155.731 28.668 154.337 29.748 L 154.322 29.76 C 153.531 30.373 152.75 30.978 152.074 31.568 C 152.053 31.585 152.027 31.595 152 31.594 C 151.973 31.595 151.947 31.585 151.926 31.568 C 151.25 30.978 150.469 30.373 149.678 29.76 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 149 19.586 L 145.586 23 L 140 23 L 140 25 L 146.414 25 L 149 22.414 L 154 27.414 L 156.414 25 L 164 25 L 164 23 L 155.586 23 L 154 24.586 Z M 199.125 19.25 C 197.688 19.25 196.442 20.42 196.27 22 L 195.015 22 C 195.193 19.793 196.93 18 199.125 18 C 200.251 18 201.262 18.477 202 19.238 C 202.738 18.478 203.749 18 204.875 18 C 207.07 18 208.807 19.793 208.985 22 L 207.73 22 C 207.558 20.42 206.312 19.25 204.875 19.25 C 203.917 19.25 203.053 19.762 202.524 20.576 L 202 21.384 L 201.476 20.576 C 200.947 19.762 200.083 19.25 199.125 19.25 Z M 197.653 25.585 C 198.451 26.485 199.471 27.274 200.471 28.045 L 200.477 28.049 C 200.885 28.364 201.292 28.677 201.664 28.986 C 201.854 29.144 202.146 29.144 202.336 28.986 C 202.708 28.677 203.114 28.364 203.523 28.049 L 203.528 28.045 C 204.529 27.274 205.549 26.485 206.346 25.585 L 207.282 26.415 C 206.399 27.411 205.291 28.265 204.314 29.018 L 204.291 29.035 C 203.877 29.355 203.487 29.655 203.134 29.948 C 202.475 30.49 201.524 30.49 200.865 29.948 C 200.485 29.637 200.099 29.332 199.708 29.035 L 199.686 29.018 C 198.709 28.265 197.601 27.411 196.718 26.414 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 199.5 20.616 L 197.116 23 L 194 23 L 194 24.25 L 197.634 24.25 L 199.5 22.384 L 203.5 26.384 L 205.634 24.25 L 210 24.25 L 210 23 L 205.116 23 L 203.5 24.616 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:10121823793,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nrj64y\",\"data-framer-name\":\"badge\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6w1klv\",\"data-framer-name\":\"Group 2\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 24 8.533 L 32 12.994 L 32 22.006 L 24 26.468 L 16 22.006 L 16 12.994 Z M 19 14.756 L 19 20.244 L 24 23.032 L 29 20.244 L 29 14.756 L 24 11.967 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 21.28 0.822 C 22.966 -0.138 25.034 -0.138 26.72 0.822 L 37.22 6.796 C 38.938 7.774 40 9.599 40 11.576 L 40 23.424 C 40 25.401 38.938 27.226 37.22 28.204 L 36 28.898 L 36 44.378 C 36 47.315 32.601 48.946 30.31 47.108 L 24 42.049 L 17.69 47.109 C 15.399 48.947 12 47.316 12 44.379 L 12 28.899 L 10.78 28.205 C 9.061 27.227 8 25.402 8 23.424 L 8 11.576 C 8 9.599 9.062 7.774 10.78 6.796 Z M 15 30.605 L 15 44.378 C 15 44.57 15.11 44.746 15.284 44.829 C 15.457 44.912 15.663 44.888 15.813 44.768 L 24 38.202 L 32.187 44.768 C 32.337 44.888 32.543 44.912 32.716 44.829 C 32.89 44.746 33 44.57 33 44.378 L 33 30.605 L 26.72 34.178 C 25.034 35.138 22.966 35.138 21.28 34.178 Z M 25.236 3.43 C 24.47 2.994 23.53 2.994 22.764 3.43 L 12.264 9.405 C 11.483 9.849 11.001 10.678 11 11.576 L 11 23.424 C 11 24.323 11.483 25.153 12.264 25.597 L 22.764 31.571 C 23.53 32.007 24.47 32.007 25.236 31.571 L 35.736 25.597 C 36.517 25.153 37 24.323 37 23.424 L 37 11.576 C 37 10.677 36.517 9.848 35.736 9.404 L 25.236 3.429 Z M 94 13.818 L 99.5 16.892 L 99.5 23.108 L 94 26.182 L 88.5 23.108 L 88.5 16.892 Z M 91 18.358 L 91 21.642 L 94 23.318 L 97 21.642 L 97 18.358 L 94 16.682 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 92.403 8.465 C 93.394 7.906 94.606 7.906 95.597 8.465 L 103.347 12.837 C 104.368 13.413 105 14.495 105 15.667 L 105 24.332 C 105 25.504 104.368 26.586 103.347 27.162 L 102 27.922 L 102 37.301 C 102 39.475 99.478 40.677 97.79 39.307 L 94 36.234 L 90.21 39.307 C 88.522 40.677 86 39.475 86 37.301 L 86 27.922 L 84.653 27.162 C 83.632 26.586 83 25.504 83 24.332 L 83 15.668 C 83 14.495 83.632 13.413 84.653 12.837 Z M 88.5 29.332 L 88.5 37.301 C 88.5 37.319 88.502 37.329 88.504 37.334 C 88.505 37.338 88.507 37.342 88.509 37.345 C 88.519 37.358 88.532 37.369 88.547 37.376 C 88.568 37.386 88.586 37.387 88.595 37.386 C 88.599 37.386 88.604 37.385 88.608 37.383 C 88.618 37.379 88.628 37.373 88.636 37.366 L 94 33.016 L 99.364 37.366 C 99.372 37.373 99.382 37.379 99.392 37.383 C 99.396 37.385 99.401 37.386 99.405 37.386 C 99.415 37.387 99.432 37.386 99.452 37.376 C 99.467 37.37 99.481 37.359 99.491 37.346 C 99.493 37.342 99.495 37.338 99.496 37.334 C 99.499 37.323 99.5 37.312 99.5 37.301 L 99.5 29.332 L 95.597 31.534 C 94.606 32.093 93.394 32.093 92.403 31.534 Z M 94.368 10.642 C 94.14 10.513 93.86 10.513 93.632 10.642 L 85.882 15.015 C 85.646 15.148 85.5 15.397 85.5 15.668 L 85.5 24.332 C 85.5 24.602 85.646 24.852 85.882 24.985 L 93.632 29.357 C 93.86 29.486 94.14 29.486 94.368 29.357 L 102.118 24.985 C 102.354 24.852 102.5 24.603 102.5 24.332 L 102.5 15.668 C 102.5 15.397 102.354 15.148 102.118 15.015 L 94.368 10.643 Z M 152 16.238 L 156 18.488 L 156 23.032 L 152 25.282 L 148 23.032 L 148 18.488 Z M 150 19.658 L 150 21.863 L 152 22.988 L 154 21.863 L 154 19.657 L 152 18.532 L 150 19.657 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 150.512 12.449 C 151.434 11.922 152.566 11.922 153.488 12.449 L 158.488 15.306 C 159.423 15.84 160 16.834 160 17.91 L 160 23.588 C 160 24.665 159.423 25.659 158.488 26.193 L 157.875 26.543 L 157.875 33.918 C 157.875 35.491 156.056 36.365 154.829 35.383 L 152 33.12 L 149.171 35.384 C 147.944 36.366 146.125 35.492 146.125 33.919 L 146.125 26.545 L 145.512 26.194 C 144.577 25.66 144 24.666 144 23.589 L 144 17.911 C 144 16.834 144.577 15.84 145.512 15.306 Z M 147.875 27.545 L 147.875 33.919 C 147.875 33.955 147.884 33.975 147.892 33.987 C 147.92 34.026 147.966 34.048 148.014 34.046 C 148.038 34.043 148.06 34.032 148.078 34.016 L 152 30.88 L 155.922 34.018 C 155.94 34.034 155.962 34.044 155.986 34.047 C 156.034 34.049 156.08 34.027 156.108 33.988 C 156.12 33.968 156.126 33.944 156.125 33.92 L 156.125 27.546 L 153.488 29.052 C 152.566 29.579 151.434 29.579 150.512 29.052 L 147.875 27.546 Z M 152.496 14.185 C 152.189 14.009 151.811 14.009 151.504 14.185 L 146.504 17.042 C 146.192 17.22 146 17.552 146 17.911 L 146 23.589 C 146 23.948 146.192 24.28 146.504 24.458 L 151.504 27.315 C 151.811 27.491 152.189 27.491 152.496 27.315 L 157.496 24.458 C 157.808 24.28 158 23.948 158 23.589 L 158 17.911 C 158 17.552 157.808 17.22 157.496 17.042 Z M 202 19.403 L 204.25 20.702 L 204.25 23.298 L 202 24.598 L 199.75 23.299 L 199.75 20.703 L 202 19.404 Z M 201 21.423 L 201 22.577 L 202 23.153 L 203 22.577 L 203 21.423 L 202 20.847 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 201.179 16.632 C 201.686 16.335 202.314 16.335 202.821 16.632 L 206.196 18.608 C 206.694 18.9 207 19.434 207 20.011 L 207 23.989 C 207 24.566 206.694 25.099 206.196 25.391 L 205.958 25.531 L 205.958 30.882 C 205.958 31.772 204.945 32.282 204.23 31.752 L 202 30.102 L 199.77 31.754 C 199.055 32.284 198.042 31.774 198.042 30.884 L 198.042 25.53 L 197.804 25.39 C 197.307 25.099 197.001 24.566 197 23.99 L 197 20.012 C 197 19.435 197.306 18.902 197.804 18.61 L 201.179 16.633 Z M 199.208 26.214 L 199.208 30.717 L 202 28.649 L 204.792 30.717 L 204.792 26.214 L 202.821 27.368 C 202.314 27.665 201.686 27.665 201.179 27.368 Z M 202.19 17.71 C 202.073 17.641 201.927 17.641 201.81 17.71 L 198.435 19.687 C 198.32 19.755 198.25 19.878 198.25 20.011 L 198.25 23.989 C 198.25 24.122 198.321 24.246 198.435 24.313 L 201.81 26.29 C 201.927 26.359 202.073 26.359 202.19 26.29 L 205.565 24.313 C 205.68 24.245 205.75 24.122 205.75 23.989 L 205.75 20.011 C 205.75 19.878 205.68 19.755 205.565 19.687 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:11281196746,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nu4lwz\",\"data-framer-name\":\"shoe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b47j4c\",\"data-framer-name\":\"Group 14\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 17.56 0 C 16.307 0 15.091 0.428 14.114 1.213 L 7.426 6.59 C 7.377 6.63 7.32 6.66 7.259 6.679 L 1.063 8.565 C 0.432 8.757 0 9.34 0 10 C 0 13.132 0.428 15.467 1.205 17.328 C 1.99 19.209 3.091 20.503 4.265 21.598 C 4.858 22.149 5.443 22.637 6.016 23.115 C 7.736 24.547 9.35 25.893 10.742 28.622 C 12.809 33.719 15.462 38.102 19.541 41.195 C 23.656 44.316 29.055 46 36.368 46 C 40.641 46 43.478 44.82 45.296 43.086 C 47.096 41.37 47.71 39.293 47.908 37.852 C 48.148 36.115 47.21 34.668 46.112 33.799 L 38.263 27.587 C 37.87 27.276 37.58 26.855 37.43 26.377 L 31.163 6.45 C 30.705 4.992 29.353 4 27.825 4 L 24.983 4 C 24.142 4 23.329 4.303 22.693 4.854 L 21.02 6.3 L 19.78 1.7 C 19.509 0.697 18.6 0.001 17.561 0 Z M 15.993 3.552 C 16.298 3.307 16.656 3.137 17.039 3.055 L 19.369 11.699 L 24.656 7.122 C 24.747 7.043 24.863 7 24.983 7 L 27.824 7 C 28.042 7 28.235 7.142 28.301 7.35 L 30.707 15 L 25 15 L 25 18 L 31.65 18 L 32.594 21 L 27 21 L 27 24 L 33.538 24 L 34.568 27.277 C 34.899 28.328 35.537 29.255 36.401 29.939 L 44.076 36.014 C 43.748 36.099 43.366 36.191 42.936 36.284 C 41.27 36.64 38.876 37 36 37 C 31.992 37 29.468 36.093 27.623 34.66 C 25.733 33.19 24.387 31.045 22.967 28.204 C 22.523 27.318 22.079 26.374 21.611 25.382 C 19.271 20.416 16.365 14.25 10.291 8.135 Z M 7.613 9.705 C 13.664 15.593 16.445 21.478 18.857 26.582 C 19.339 27.603 19.807 28.593 20.283 29.546 C 21.738 32.456 23.33 35.123 25.783 37.028 C 28.282 38.97 31.508 40 36 40 C 39.124 40 41.73 39.61 43.564 39.217 C 43.913 39.142 44.234 39.067 44.526 38.995 C 44.234 39.72 43.791 40.375 43.226 40.915 C 42.1 41.988 40.078 43 36.368 43 C 29.529 43 24.82 41.434 21.354 38.805 C 17.867 36.16 15.471 32.315 13.499 27.438 C 13.483 27.399 13.466 27.361 13.447 27.323 C 11.742 23.949 9.512 22.1 7.706 20.603 C 7.201 20.183 6.729 19.793 6.31 19.403 C 5.338 18.497 4.545 17.541 3.973 16.172 C 3.471 14.969 3.109 13.373 3.021 11.105 L 7.614 9.705 Z M 89.553 8 C 88.685 8 87.841 8.28 87.145 8.8 L 82.695 12.12 C 82.688 12.125 82.68 12.129 82.672 12.131 L 78.856 13.397 C 78.345 13.567 78 14.045 78 14.583 C 78 16.683 78.263 18.263 78.754 19.534 C 79.254 20.824 79.957 21.717 80.714 22.47 C 81.117 22.87 81.509 23.217 81.891 23.553 C 82.948 24.486 83.92 25.343 84.811 27.1 C 86.188 30.51 87.964 33.512 90.711 35.653 C 93.492 37.82 97.133 39 102.033 39 C 104.944 39 106.905 38.16 108.166 36.902 C 109.405 35.666 109.814 34.182 109.943 33.175 C 110.104 31.912 109.429 30.872 108.65 30.252 L 103.437 26.102 C 103.22 25.93 103.059 25.698 102.973 25.435 L 98.831 12.78 C 98.484 11.718 97.493 11 96.376 11 L 94.373 11 C 93.891 11 93.418 11.135 93.009 11.39 L 92.056 11.982 L 91.288 9.307 C 91.066 8.533 90.358 8 89.553 8 Z M 88.64 10.803 C 88.766 10.709 88.906 10.635 89.054 10.583 L 90.567 15.852 L 94.329 13.512 C 94.342 13.504 94.358 13.5 94.373 13.5 L 96.376 13.5 C 96.412 13.5 96.444 13.523 96.456 13.557 L 97.908 18 L 94 18 L 94 20.5 L 98.727 20.5 L 99.218 22 L 95 22 L 95 24.5 L 100.036 24.5 L 100.597 26.213 C 100.835 26.94 101.281 27.583 101.88 28.059 L 106.166 31.47 C 105.111 31.746 103.683 32 102 32 C 99.357 32 97.728 31.426 96.552 30.544 C 95.342 29.637 94.47 28.302 93.528 26.47 C 93.212 25.848 92.904 25.222 92.604 24.593 C 91.067 21.41 89.138 17.413 85.177 13.387 Z M 82.932 14.679 C 86.889 18.535 88.719 22.315 90.317 25.613 C 90.651 26.302 90.974 26.97 91.305 27.613 C 92.28 29.511 93.365 31.279 95.052 32.544 C 96.772 33.834 98.976 34.5 102 34.5 C 104.138 34.5 105.921 34.144 107.177 33.785 L 107.251 33.764 C 107.075 34.278 106.784 34.746 106.401 35.132 C 105.713 35.818 104.447 36.5 102.033 36.5 C 97.552 36.5 94.493 35.43 92.248 33.68 C 89.982 31.915 88.412 29.353 87.111 26.117 C 87.098 26.085 87.084 26.053 87.068 26.022 C 85.932 23.762 84.483 22.489 83.354 21.498 C 83.03 21.213 82.733 20.952 82.477 20.698 C 81.893 20.116 81.425 19.508 81.086 18.633 C 80.797 17.886 80.583 16.891 80.519 15.479 Z M 148.688 12 C 148.025 12 147.38 12.215 146.849 12.613 L 143.53 15.103 L 140.684 16.051 C 140.275 16.187 140 16.569 140 17 C 140 18.579 140.197 19.772 140.567 20.734 C 140.943 21.712 141.474 22.388 142.043 22.957 C 142.348 23.262 142.643 23.524 142.929 23.777 C 143.714 24.474 144.428 25.107 145.088 26.411 C 146.12 28.981 147.458 31.159 149.534 32.681 C 151.629 34.218 154.356 35 158 35 C 160.128 35 161.587 34.447 162.549 33.589 C 163.311 32.905 163.809 31.975 163.957 30.961 C 164.109 29.974 163.568 29.174 162.99 28.711 L 159.098 25.597 C 158.944 25.474 158.829 25.308 158.769 25.12 L 155.675 15.394 C 155.411 14.564 154.64 14 153.769 14 L 152.333 14 C 151.901 14 151.48 14.14 151.133 14.4 L 150.562 14.828 L 150.047 13.025 C 149.874 12.418 149.319 12 148.688 12 Z M 148.049 14.213 C 148.118 14.162 148.192 14.119 148.27 14.086 L 149.438 18.172 L 152.333 16 L 153.769 16 L 154.723 19 L 152 19 L 152 21 L 155.36 21 L 155.678 22 L 153 22 L 153 24 L 156.314 24 L 156.863 25.726 C 157.043 26.291 157.386 26.789 157.848 27.159 L 160.954 29.644 C 160.184 29.834 159.176 30 158 30 C 156.029 30 154.822 29.569 153.954 28.913 C 153.059 28.236 152.409 27.238 151.703 25.857 C 151.479 25.42 151.254 24.95 151.015 24.454 C 149.875 22.081 148.444 19.101 145.531 16.102 Z M 143.743 17.14 C 146.645 19.997 147.997 22.804 149.184 25.266 C 149.433 25.783 149.675 26.284 149.922 26.768 C 150.654 28.2 151.473 29.545 152.749 30.508 C 154.053 31.495 155.721 32 158 32 C 159.492 32 160.754 31.77 161.684 31.521 C 161.561 31.737 161.404 31.931 161.218 32.096 C 160.718 32.542 159.782 33 158 33 C 154.644 33 152.371 32.282 150.716 31.069 C 149.053 29.849 147.893 28.041 146.928 25.629 C 146.918 25.603 146.907 25.578 146.894 25.553 C 146.041 23.845 144.947 22.88 144.104 22.136 C 143.864 21.924 143.645 21.731 143.457 21.543 C 143.026 21.112 142.682 20.663 142.433 20.016 C 142.224 19.471 142.066 18.745 142.016 17.716 Z M 199.783 16 C 199.291 16 198.814 16.175 198.439 16.494 L 196.439 18.194 C 196.435 18.197 196.431 18.2 196.426 18.202 L 194.417 18.911 C 194.167 18.999 194 19.235 194 19.5 C 194 20.55 194.134 21.334 194.387 21.959 C 194.645 22.595 195.009 23.022 195.396 23.377 C 195.589 23.555 195.777 23.708 195.959 23.857 C 196.504 24.303 196.998 24.708 197.447 25.592 C 198.14 27.306 199.023 28.685 200.401 29.622 C 201.784 30.56 203.584 31 206 31 C 207.368 31 208.312 30.694 208.948 30.215 C 209.462 29.838 209.818 29.285 209.95 28.661 C 210.089 28.004 209.716 27.471 209.349 27.177 L 206.77 25.104 C 206.659 25.015 206.578 24.894 206.536 24.758 L 204.455 17.916 C 204.289 17.372 203.788 17 203.219 17 L 202.319 17 C 201.971 17 201.637 17.14 201.394 17.39 L 200.996 17.798 L 200.661 16.658 C 200.547 16.268 200.189 16 199.783 16 Z M 199.249 17.446 C 199.335 17.373 199.435 17.319 199.543 17.286 L 200.399 20.202 L 202.289 18.262 C 202.297 18.254 202.308 18.25 202.319 18.25 L 203.219 18.25 C 203.237 18.25 203.253 18.262 203.259 18.28 L 204.086 21 L 202 21 L 202 22.25 L 204.467 22.25 L 204.695 23 L 203 23 L 203 24.25 L 205.075 24.25 L 205.341 25.122 C 205.455 25.498 205.68 25.832 205.987 26.078 L 207.916 27.628 C 207.401 27.695 206.75 27.75 206 27.75 C 204.67 27.75 203.857 27.48 203.277 27.066 C 202.685 26.642 202.262 26.018 201.803 25.146 C 201.653 24.86 201.501 24.553 201.34 24.226 C 200.59 22.703 199.64 20.773 197.678 18.782 Z M 196.595 19.467 C 198.532 21.367 199.427 23.177 200.201 24.744 C 200.369 25.084 200.531 25.414 200.697 25.729 C 201.176 26.639 201.711 27.483 202.551 28.083 C 203.404 28.693 204.497 29 206 29 C 207.039 29 207.905 28.903 208.516 28.805 L 208.577 28.795 C 208.48 28.96 208.351 29.103 208.197 29.216 C 207.841 29.484 207.189 29.75 206 29.75 C 203.725 29.75 202.204 29.335 201.103 28.587 C 200.005 27.841 199.243 26.707 198.597 25.1 C 198.59 25.084 198.583 25.069 198.576 25.053 C 197.993 23.893 197.239 23.281 196.661 22.81 C 196.517 22.696 196.377 22.578 196.241 22.456 C 195.947 22.186 195.714 21.906 195.546 21.489 C 195.401 21.131 195.291 20.645 195.259 19.939 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:9095818050,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s79n71\",\"data-framer-name\":\"horse\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkftxa\",\"data-framer-name\":\"Group 19\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 6.155 0.835 C 6.408 0.323 6.929 0 7.5 0 C 9.306 0 12.372 0.32 15.617 1.26 C 18.669 2.143 22.01 3.612 24.603 6 L 24.859 6 C 33.434 6 41.189 11.095 44.593 18.966 L 47.377 25.405 L 44.623 26.595 L 41.839 20.157 C 38.91 13.385 32.238 9.001 24.86 9 L 23.38 9 L 22.94 8.56 C 20.789 6.41 17.766 5.004 14.784 4.14 C 13.458 3.758 12.107 3.467 10.741 3.268 L 15.796 9.878 L 4.632 29.524 C 3.562 31.407 3 33.535 3 35.7 L 3 38.5 C 3 38.776 3.224 39 3.5 39 L 9.124 39 C 9.264 39 9.397 38.942 9.492 38.84 L 15.262 32.587 L 23.388 31.467 C 26.605 31.023 29 28.274 29 25.027 L 29 22 L 32 22 L 32 25.028 C 32.001 28.162 30.455 31.095 27.87 32.866 L 29.423 37.526 C 29.637 38.167 29.395 38.873 28.833 39.248 L 27.894 39.873 C 26.086 41.079 25 43.109 25 45.282 L 25 46 L 22 46 L 22 45.282 C 22 42.112 23.581 39.151 26.215 37.388 L 25.137 34.155 C 24.698 34.281 24.251 34.376 23.798 34.439 L 16.738 35.413 L 11.696 40.874 C 11.033 41.592 10.101 42 9.124 42 L 3.5 42 C 1.567 42 0 40.433 0 38.5 L 0 35.7 C 0 33.015 0.697 30.376 2.023 28.042 L 12.205 10.122 L 6.308 2.412 C 5.96 1.958 5.901 1.346 6.155 0.834 Z M 82.155 8.691 C 82.367 8.268 82.8 8 83.273 8 C 84.507 8 86.506 8.212 88.626 8.846 C 90.594 9.434 92.754 10.411 94.5 12 L 94.715 12 C 100.482 12 105.707 15.398 108.045 20.67 L 109.893 24.834 L 107.607 25.848 L 105.76 21.683 C 103.822 17.316 99.493 14.5 94.715 14.5 L 93.482 14.5 L 93.116 14.134 C 91.705 12.722 89.794 11.804 87.91 11.241 C 87.242 11.041 86.59 10.89 85.981 10.778 L 88.778 14.507 L 81.487 27.873 C 80.84 29.06 80.5 30.391 80.5 31.743 L 80.5 33.417 C 80.5 33.463 80.537 33.5 80.583 33.5 L 84.059 33.5 C 84.082 33.5 84.103 33.491 84.119 33.475 L 88.044 29.527 L 93.001 28.81 C 95.009 28.52 96.499 26.799 96.5 24.77 L 96.5 23 L 99 23 L 99 24.769 C 99 26.719 98.147 28.492 96.772 29.706 L 97.868 32.991 C 98.031 33.481 97.876 34.021 97.478 34.35 L 96.981 34.761 C 96.043 35.537 95.5 36.691 95.5 37.908 L 95.5 39 L 93 39 L 93 37.908 C 93 36.016 93.813 34.22 95.226 32.972 L 94.566 30.992 C 94.174 31.127 93.77 31.225 93.359 31.285 L 89.229 31.882 L 85.891 35.238 C 85.406 35.726 84.747 36 84.059 36 L 80.583 36 C 79.156 36 78 34.844 78 33.417 L 78 31.744 C 78 29.973 78.444 28.23 79.292 26.676 L 85.813 14.721 L 82.273 10 C 81.989 9.621 81.943 9.114 82.155 8.691 Z M 143.106 12.553 C 143.275 12.214 143.621 12 144 12 C 144.93 12 146.427 12.164 148.014 12.643 C 149.48 13.085 151.091 13.817 152.399 15 L 152.501 15 C 156.848 15 160.787 17.56 162.553 21.532 L 163.914 24.594 L 162.086 25.406 L 160.726 22.345 C 159.281 19.095 156.058 17 152.501 17 L 151.586 17 L 151.293 16.707 C 150.25 15.664 148.836 14.98 147.436 14.557 C 147.005 14.427 146.583 14.324 146.183 14.244 L 148.186 16.914 L 142.733 26.912 C 142.252 27.793 142 28.781 142 29.785 L 142 31 L 144.586 31 L 147.529 28.057 L 151.424 27.501 C 152.902 27.29 154.001 26.023 154 24.53 L 154 23 L 156 23 L 156 24.53 C 156 26.07 155.3 27.464 154.183 28.387 L 154.949 30.684 C 155.085 31.092 154.944 31.542 154.6 31.8 L 154.2 32.1 C 153.445 32.667 153 33.556 153 34.5 L 153 35 L 151 35 L 151 34.5 C 151 33 151.673 31.584 152.825 30.637 L 152.391 29.334 C 152.167 29.399 151.938 29.448 151.707 29.481 L 148.471 29.943 L 146 32.414 C 145.625 32.789 145.116 33 144.586 33 L 142 33 C 140.895 33 140 32.105 140 31 L 140 29.785 C 140 28.447 140.336 27.13 140.977 25.955 L 145.814 17.085 L 143.2 13.6 C 142.973 13.297 142.937 12.892 143.106 12.553 Z M 196.077 16.346 C 196.183 16.134 196.399 16 196.636 16 C 197.254 16 198.253 16.106 199.313 16.423 C 200.297 16.717 201.377 17.206 202.25 18 L 202.357 18 C 205.241 18 207.853 19.7 209.023 22.335 L 209.946 24.417 L 208.804 24.924 L 207.88 22.842 C 206.911 20.658 204.746 19.25 202.357 19.25 L 201.741 19.25 L 201.558 19.067 C 200.852 18.361 199.897 17.902 198.955 17.62 C 198.638 17.526 198.316 17.449 197.991 17.389 L 199.389 19.253 L 195.744 25.936 C 195.42 26.53 195.25 27.195 195.25 27.872 L 195.25 28.708 C 195.25 28.731 195.269 28.75 195.292 28.75 L 197.037 28.75 C 197.048 28.75 197.058 28.746 197.066 28.738 L 199.087 26.784 L 201.989 26.382 C 202.999 26.242 203.75 25.378 203.75 24.359 L 203.75 23 L 205 23 L 205 24.36 C 205 25.406 204.503 26.39 203.661 27.01 L 203.955 28.578 C 204.003 28.837 203.884 29.099 203.657 29.232 L 203.064 29.58 C 202.56 29.875 202.25 30.416 202.25 31 L 201 31 C 201 29.972 201.545 29.021 202.432 28.502 L 202.646 28.376 L 202.492 27.556 C 202.383 27.583 202.272 27.604 202.16 27.62 L 199.663 27.966 L 197.935 29.636 C 197.694 29.869 197.372 30 197.037 30 L 195.292 30 C 194.578 30 194 29.422 194 28.708 L 194 27.872 C 194 26.986 194.222 26.115 194.646 25.338 L 197.907 19.36 L 196.136 17 C 195.994 16.811 195.971 16.558 196.077 16.346 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:9358523624,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15zwuy2\",\"data-framer-name\":\"bike\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w3vdwr\",\"data-framer-name\":\"Group 16\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 8 9 L 18 9 L 18 12 L 14.937 12 L 16.354 15.007 C 16.403 15.002 16.451 15 16.5 15 L 30.283 15 L 28.619 11.087 C 28.422 10.624 28.471 10.092 28.748 9.672 C 29.026 9.252 29.496 9 30 9 L 39.5 9 C 41.985 9 44 11.015 44 13.5 C 44 15.985 41.985 18 39.5 18 L 38 18 L 38 15 L 39.5 15 C 40.328 15 41 14.328 41 13.5 C 41 12.672 40.328 12 39.5 12 L 32.267 12 L 36.21 21.278 C 41.019 20.083 45.938 22.784 47.511 27.483 C 49.083 32.182 46.78 37.3 42.22 39.239 C 37.661 41.179 32.376 39.288 30.082 34.896 C 27.787 30.505 29.254 25.087 33.45 22.452 L 32.01 19.066 L 23.22 31.372 C 22.939 31.766 22.484 32 22 32 L 18.882 32 C 18.163 36.534 14.236 40 9.5 40 C 4.253 40 0 35.747 0 30.5 C 0 25.253 4.253 21 9.5 21 C 10.495 21 11.454 21.153 12.355 21.436 L 14.266 17.613 L 11.62 12 L 8 12 Z M 15.894 21.066 L 11.927 29 L 19.634 29 Z M 22.266 27.546 L 29.086 18 L 17.766 18 L 22.266 27.547 Z M 9.5 24 C 6.106 24.001 3.284 26.613 3.021 29.997 C 2.758 33.381 5.143 36.397 8.497 36.922 C 11.85 37.446 15.043 35.303 15.826 32 L 9.5 32 C 8.98 32 8.498 31.731 8.224 31.289 C 7.951 30.847 7.926 30.295 8.158 29.83 L 10.988 24.171 C 10.5 24.057 10.001 24 9.5 24 Z M 34.645 25.266 C 31.99 27.222 31.221 30.857 32.855 33.721 C 34.49 36.585 38.01 37.771 41.045 36.48 C 44.08 35.19 45.667 31.831 44.737 28.667 C 43.807 25.503 40.656 23.536 37.405 24.092 L 40.467 31.294 L 37.707 32.467 Z M 83 13 L 90 13 L 90 15.5 L 88.297 15.5 L 89.155 17.002 C 89.178 17.001 89.202 17 89.225 17 L 97.788 17 L 96.846 14.73 C 96.686 14.344 96.728 13.904 96.96 13.556 C 97.192 13.209 97.582 13 98 13 L 103.5 13 C 105.433 13 107 14.567 107 16.5 C 107 18.433 105.433 20 103.5 20 L 103 20 L 103 17.5 L 103.5 17.5 C 104.052 17.5 104.5 17.052 104.5 16.5 C 104.5 15.948 104.052 15.5 103.5 15.5 L 99.872 15.5 L 102.209 21.128 C 105.489 20.463 108.737 22.398 109.716 25.598 C 110.694 28.799 109.083 32.219 105.992 33.502 C 102.901 34.785 99.341 33.512 97.765 30.559 C 96.19 27.607 97.113 23.941 99.899 22.087 L 98.785 19.4 L 93.688 28.368 C 93.466 28.759 93.05 29.001 92.6 29 L 90.826 29 C 90.212 31.588 88.082 33.54 85.451 33.929 C 82.82 34.317 80.217 33.063 78.881 30.763 C 77.545 28.463 77.745 25.581 79.387 23.488 C 81.028 21.395 83.779 20.512 86.331 21.261 L 87.438 19.036 L 85.418 15.5 L 83 15.5 Z M 88.93 21.648 L 86.519 26.5 L 91.704 26.5 L 88.932 21.648 Z M 93.224 24.123 L 95.852 19.5 L 90.582 19.5 Z M 84.5 23.5 C 82.489 23.501 80.791 24.995 80.535 26.99 C 80.278 28.985 81.543 30.86 83.489 31.37 C 85.434 31.879 87.456 30.865 88.21 29 L 84.5 29 C 84.067 29 83.665 28.777 83.437 28.409 C 83.208 28.04 83.187 27.581 83.38 27.193 L 85.188 23.559 C 84.961 23.519 84.731 23.499 84.5 23.499 Z M 100.889 24.47 C 99.401 25.753 99.065 27.927 100.096 29.599 C 101.127 31.271 103.221 31.947 105.035 31.194 C 106.85 30.44 107.848 28.48 107.391 26.569 C 106.934 24.658 105.157 23.362 103.198 23.511 L 105.134 28.175 L 102.825 29.134 Z M 144 16 L 144 18 L 145.705 18 L 147.133 20.498 L 146.297 22.17 C 144.795 21.769 143.193 22.089 141.959 23.035 C 140.726 23.981 140.002 25.446 140 27 C 139.997 29.569 141.942 31.722 144.498 31.98 C 147.053 32.238 149.389 30.517 149.9 28 L 151 28 C 151.359 28 151.69 27.808 151.868 27.496 L 155.476 21.183 L 156.114 22.916 C 154.019 24.398 153.386 27.226 154.649 29.46 C 155.913 31.693 158.663 32.608 161.012 31.576 C 163.362 30.544 164.549 27.9 163.759 25.459 C 162.968 23.017 160.458 21.57 157.949 22.11 L 156.434 18 L 159.5 18 C 159.776 18 160 18.224 160 18.5 C 160 18.776 159.776 19 159.5 19 L 159 19 L 159 21 L 159.5 21 C 160.881 21 162 19.881 162 18.5 C 162 17.119 160.881 16 159.5 16 L 155 16 C 154.673 16 154.367 16.16 154.18 16.428 C 153.993 16.697 153.949 17.039 154.062 17.346 L 154.671 19 L 148.58 19 L 148.009 18 L 149 18 L 149 16 Z M 148.325 22.585 L 150.277 26 L 146.618 26 Z M 151.5 24.109 L 149.723 21 L 153.277 21 L 151.5 24.11 Z M 145 24 C 145.125 24 145.249 24.008 145.371 24.023 L 144.106 26.553 C 143.951 26.863 143.968 27.231 144.15 27.526 C 144.332 27.82 144.654 28 145 28 L 147.829 28 C 147.321 29.439 145.813 30.268 144.326 29.925 C 142.838 29.583 141.845 28.178 142.017 26.662 C 142.19 25.145 143.474 24 145 24 Z M 156.848 24.91 L 157.907 27.784 L 159.784 27.093 L 158.652 24.02 C 160.102 23.85 161.464 24.749 161.877 26.149 C 162.291 27.549 161.637 29.044 160.328 29.69 C 159.019 30.336 157.434 29.946 156.575 28.765 C 155.716 27.585 155.831 25.958 156.848 24.91 Z M 196 19 L 200 19 L 200 20.25 L 199.434 20.25 L 199.863 21 L 203.835 21 L 203.413 19.839 C 203.343 19.647 203.371 19.434 203.488 19.266 C 203.605 19.099 203.796 19 204 19 L 207.5 19 C 208.328 19 209 19.672 209 20.5 C 209 21.328 208.328 22 207.5 22 L 207 22 L 207 20.75 L 207.5 20.75 C 207.638 20.75 207.75 20.638 207.75 20.5 C 207.75 20.362 207.638 20.25 207.5 20.25 L 204.892 20.25 L 205.91 23.05 C 207.696 22.745 209.419 23.852 209.883 25.603 C 210.347 27.354 209.399 29.17 207.696 29.789 C 205.994 30.408 204.101 29.626 203.331 27.986 C 202.562 26.346 203.171 24.39 204.736 23.477 L 204.411 22.583 L 201.988 26.693 C 201.876 26.883 201.671 27 201.45 27 L 200.965 27 C 200.693 28.808 199.075 30.103 197.251 29.972 C 195.427 29.841 194.011 28.329 194 26.5 C 194 25.381 194.535 24.329 195.44 23.67 C 196.345 23.011 197.511 22.825 198.576 23.169 L 199.091 22.169 L 197.994 20.25 L 196 20.25 Z M 199.83 23.463 L 198.651 25.75 L 201.093 25.75 L 201.115 25.712 L 199.83 23.462 Z M 201.847 24.472 L 203.156 22.25 L 200.577 22.25 Z M 197.5 24.25 C 196.323 24.25 195.344 25.158 195.257 26.332 C 195.169 27.506 196.001 28.55 197.165 28.725 C 198.33 28.9 199.432 28.148 199.694 27 L 197.625 27 C 197.407 26.999 197.205 26.886 197.092 26.699 C 196.979 26.513 196.97 26.282 197.07 26.088 L 197.99 24.304 C 197.829 24.268 197.665 24.25 197.5 24.25 Z M 205.174 24.682 C 204.269 25.342 203.987 26.568 204.514 27.558 C 205.041 28.547 206.215 28.997 207.268 28.615 C 208.322 28.232 208.933 27.132 208.701 26.036 C 208.47 24.939 207.467 24.18 206.349 24.255 L 207.301 26.874 L 206.126 27.301 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:8885358357,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewfnbh\",\"data-framer-name\":\"mountain bike\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uhdvob\",\"data-framer-name\":\"Group 15\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 28.688 4.17 C 28.87 4.024 29.13 4.024 29.312 4.17 L 43.063 15.171 L 44.937 12.829 L 31.187 1.829 C 29.909 0.806 28.092 0.806 26.814 1.829 L 19 8.078 L 16.186 5.828 C 14.908 4.806 13.092 4.806 11.814 5.828 L 3.063 12.828 L 4.937 15.17 L 13.687 8.17 C 13.87 8.024 14.129 8.024 14.312 8.17 L 23.063 15.17 L 24.937 12.828 L 21.401 10 Z M 37.897 18.949 L 36.949 16.103 L 29.526 18.577 C 29.121 18.712 28.793 19.012 28.624 19.403 C 28.454 19.795 28.459 20.24 28.637 20.627 L 29.423 22.337 L 16.807 27.944 L 13.175 22 L 16 22 L 16 19 L 6 19 L 6 22 L 9.659 22 L 14.199 29.43 L 13.778 30.015 C 12.452 29.345 10.986 28.998 9.5 29 C 4.253 29 0 33.253 0 38.5 C 0 43.747 4.253 48 9.5 48 C 14.236 48 18.163 44.534 18.882 40 L 21.5 40 C 22.027 40 22.515 39.724 22.786 39.272 L 30.951 25.663 L 33.221 30.601 C 29.103 33.357 27.795 38.815 30.217 43.138 C 32.638 47.461 37.975 49.197 42.477 47.126 C 46.978 45.054 49.131 39.871 47.423 35.22 C 45.714 30.569 40.718 28.012 35.946 29.347 L 32.062 20.894 Z M 15.827 40 C 15.198 42.65 12.983 44.627 10.279 44.952 C 7.575 45.278 4.955 43.883 3.715 41.458 C 2.475 39.033 2.879 36.092 4.726 34.09 C 6.573 32.089 9.473 31.451 11.989 32.493 L 8.284 37.622 C 7.954 38.079 7.908 38.681 8.165 39.183 C 8.421 39.684 8.937 40 9.5 40 L 15.826 40 Z M 15.896 32.206 L 18.826 37 L 12.434 37 Z M 21.488 35.604 L 18.385 30.526 L 26.772 26.799 Z M 34.496 33.379 L 37.763 40.489 L 40.489 39.237 L 37.222 32.126 C 40.455 31.477 43.662 33.353 44.682 36.489 C 45.702 39.625 44.211 43.028 41.215 44.405 C 38.219 45.782 34.666 44.698 32.95 41.881 C 31.234 39.065 31.898 35.411 34.496 33.379 Z M 96.079 8.545 C 96.906 7.871 98.094 7.871 98.921 8.545 L 107.79 15.771 L 106.21 17.709 L 97.5 10.612 L 92.638 14.574 L 95.039 16.531 L 93.46 18.469 L 87.5 13.612 L 81.54 18.469 L 79.96 16.531 L 86.079 11.546 C 86.906 10.872 88.094 10.872 88.921 11.546 L 90.659 12.961 Z M 103.581 20.79 L 99.701 22.084 L 101.967 27.182 C 105.219 26.391 108.54 28.198 109.641 31.358 C 110.743 34.518 109.265 37.999 106.226 39.4 C 103.187 40.802 99.58 39.667 97.892 36.778 C 96.203 33.888 96.984 30.189 99.697 28.229 L 98.59 25.74 L 93.686 34.368 C 93.464 34.759 93.049 35 92.6 35 L 90.826 35 C 90.194 37.662 87.963 39.644 85.245 39.956 C 82.526 40.269 79.903 38.846 78.683 36.397 C 77.464 33.948 77.908 30.997 79.795 29.016 C 81.683 27.034 84.609 26.447 87.114 27.547 L 87.441 27.053 L 84.709 22.5 L 82 22.5 L 82 20 L 89 20 L 89 22.5 L 87.624 22.5 L 89.778 26.089 L 97.431 23.13 L 96.858 21.841 C 96.715 21.519 96.714 21.151 96.856 20.829 C 96.999 20.506 97.27 20.258 97.605 20.147 L 102.791 18.419 L 103.581 20.791 Z M 85.698 29.682 C 83.63 29.034 81.422 30.151 80.719 32.201 C 80.015 34.25 81.072 36.487 83.102 37.246 C 85.132 38.005 87.397 37.009 88.21 35 L 84.5 35 C 84.04 35 83.617 34.747 83.399 34.341 C 83.181 33.936 83.204 33.444 83.458 33.06 Z M 88.866 29.428 L 86.829 32.5 L 90.709 32.5 Z M 92.725 31.001 L 95.181 26.681 L 91.083 28.265 L 92.725 31 Z M 100.749 30.596 C 99.323 31.948 99.09 34.135 100.199 35.757 C 101.308 37.378 103.431 37.955 105.207 37.117 C 106.984 36.278 107.89 34.274 107.343 32.387 C 106.797 30.499 104.961 29.288 103.011 29.529 L 104.983 33.968 L 102.699 34.983 Z M 153.251 12.719 C 153.981 12.135 155.019 12.135 155.749 12.719 L 162.625 18.219 L 161.375 19.781 L 154.5 14.281 L 151.101 17 L 152.625 18.22 L 151.375 19.78 L 147 16.28 L 142.625 19.78 L 141.375 18.22 L 145.751 14.719 C 146.481 14.135 147.519 14.135 148.249 14.719 L 149.5 15.719 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 159.265 21.633 L 156.361 22.6 L 157.924 26.116 C 160.431 25.563 162.948 26.998 163.75 29.436 C 164.552 31.875 163.378 34.524 161.033 35.567 C 158.687 36.61 155.933 35.708 154.66 33.48 C 153.386 31.251 154.007 28.42 156.096 26.929 L 155.388 25.336 L 151.868 31.496 C 151.69 31.808 151.359 32 151 32 L 149.9 32 C 149.385 34.513 147.051 36.229 144.498 35.971 C 141.946 35.713 140.003 33.565 140 31 C 140 29.335 140.828 27.779 142.209 26.85 C 143.591 25.921 145.344 25.74 146.886 26.368 L 146.975 26.235 L 145.034 23 L 143 23 L 143 21 L 148 21 L 148 23 L 147.366 23 L 148.763 25.328 L 154.418 23.153 L 154.086 22.406 C 153.972 22.148 153.972 21.854 154.085 21.596 C 154.199 21.338 154.417 21.14 154.684 21.051 L 158.632 19.735 Z M 145.737 28.091 C 144.166 27.693 142.562 28.616 142.117 30.174 C 141.671 31.733 142.543 33.363 144.087 33.857 C 145.631 34.35 147.288 33.528 147.829 32 L 145 32 C 144.631 32 144.292 31.797 144.118 31.472 C 143.944 31.147 143.963 30.752 144.168 30.445 Z M 149.234 30 L 148.113 28.133 L 146.869 30 Z M 150.979 29.021 L 152.739 25.941 L 149.807 27.069 Z M 156.937 28.821 C 155.876 29.825 155.693 31.448 156.503 32.664 C 157.313 33.88 158.882 34.335 160.217 33.742 C 161.552 33.148 162.266 31.68 161.907 30.263 C 161.549 28.847 160.222 27.895 158.765 28.009 L 160.32 31.508 L 158.492 32.32 L 156.937 28.822 Z M 204.558 16.583 C 203.949 16.061 203.051 16.061 202.442 16.583 L 200.125 18.57 L 199.558 18.083 C 198.949 17.561 198.051 17.561 197.442 18.083 L 194.593 20.525 L 195.407 21.475 L 198.256 19.032 C 198.396 18.912 198.604 18.912 198.744 19.032 L 201.593 21.474 L 202.407 20.525 L 201.085 19.393 L 203.256 17.533 C 203.396 17.412 203.604 17.412 203.744 17.533 L 208.11 21.274 L 208.923 20.325 Z M 204.125 22 L 207 22 L 207 23.25 L 205.052 23.25 L 205.789 25.072 C 207.562 24.703 209.324 25.749 209.85 27.482 C 210.377 29.215 209.493 31.064 207.814 31.743 C 206.135 32.423 204.215 31.709 203.388 30.097 C 202.56 28.486 203.099 26.509 204.63 25.541 L 204.285 24.689 L 201.515 28.729 C 201.398 28.898 201.206 28.999 201 28.999 L 200.965 28.999 C 200.693 30.807 199.076 32.102 197.252 31.971 C 195.428 31.841 194.011 30.329 194 28.5 C 194 27.39 194.526 26.346 195.418 25.686 C 196.31 25.026 197.462 24.828 198.523 25.152 L 197.383 23.292 L 196 23.292 L 196 22.042 L 199 22.042 L 199 23.292 L 198.849 23.292 L 199.85 24.926 L 203.772 23.418 L 203.546 22.859 C 203.468 22.666 203.491 22.447 203.607 22.275 C 203.723 22.102 203.917 21.999 204.125 21.999 Z M 199.694 29 L 197.625 29 C 197.397 29.001 197.186 28.877 197.076 28.677 C 196.966 28.478 196.973 28.234 197.096 28.041 L 198.164 26.349 C 197.481 26.139 196.739 26.265 196.165 26.69 C 195.59 27.114 195.25 27.786 195.25 28.5 C 195.249 29.646 196.11 30.609 197.248 30.737 C 198.387 30.865 199.44 30.117 199.694 29 Z M 199.446 26.66 L 198.758 27.75 L 200.114 27.75 Z M 201.151 27.05 L 202.347 25.305 L 200.514 26.01 Z M 205.11 26.73 C 204.228 27.422 203.99 28.657 204.551 29.627 C 205.113 30.597 206.302 31.006 207.341 30.587 C 208.38 30.167 208.952 29.047 208.683 27.959 C 208.413 26.871 207.384 26.148 206.269 26.262 L 207.314 28.845 L 206.155 29.314 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:8946690525,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15yjwn9\",\"data-framer-name\":\"trophy fill\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nag8te\",\"data-framer-name\":\"Group 5\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 8 1.5 C 8 0.672 8.672 0 9.5 0 L 38.5 0 C 39.328 0 40 0.672 40 1.5 L 40 4 L 44.5 4 C 46.433 4 48 5.567 48 7.5 L 48 15.5 C 48 20.747 43.747 25 38.5 25 L 36.105 25 C 33.71 28.42 30.369 31.067 26.493 32.618 L 25.5 33.015 L 25.5 37.779 L 34.937 45.329 C 35.434 45.727 35.626 46.396 35.415 46.997 C 35.204 47.598 34.637 48 34 48 L 14 48 C 13.363 48 12.796 47.598 12.585 46.997 C 12.374 46.396 12.566 45.727 13.063 45.329 L 22.5 37.779 L 22.5 33.015 L 21.507 32.618 C 17.631 31.067 14.29 28.42 11.895 25 L 9.5 25 C 4.253 25 0 20.747 0 15.5 L 0 7.5 C 0 5.567 1.567 4 3.5 4 L 8 4 Z M 40 12.659 C 40 15.964 39.243 19.144 37.865 22 L 38.5 22 C 42.09 22 45 19.09 45 15.5 L 45 7.5 C 45 7.224 44.776 7 44.5 7 L 40 7 Z M 8 7 L 3.5 7 C 3.224 7 3 7.224 3 7.5 L 3 15.5 C 3 19.09 5.91 22 9.5 22 L 10.135 22 C 8.729 19.087 7.999 15.894 8 12.659 Z M 83 9.25 C 83 8.56 83.56 8 84.25 8 L 103.75 8 C 104.44 8 105 8.56 105 9.25 L 105 11 L 107.417 11 C 108.843 11.001 109.999 12.157 110 13.583 L 110 18.417 C 110 22.053 107.053 25 103.417 25 L 102.584 25 C 101.098 27.251 99.016 29.046 96.57 30.183 L 95.25 30.797 L 95.25 33.125 L 101.417 37.75 C 101.846 38.073 102.021 38.635 101.851 39.145 C 101.681 39.654 101.204 39.999 100.667 40 L 87.333 40 C 86.795 40 86.317 39.656 86.147 39.145 C 85.977 38.635 86.153 38.073 86.583 37.75 L 92.75 33.125 L 92.75 30.797 L 91.43 30.183 C 88.984 29.045 86.902 27.251 85.416 25 L 84.583 25 C 80.947 25 78 22.053 78 18.417 L 78 13.583 C 78 12.156 79.156 11 80.583 11 L 83 11 Z M 105 16.961 C 105 18.886 104.621 20.751 103.92 22.469 C 105.965 22.215 107.5 20.477 107.5 18.417 L 107.5 13.583 C 107.5 13.537 107.463 13.5 107.417 13.5 L 105 13.5 Z M 83 13.5 L 80.583 13.5 C 80.537 13.5 80.5 13.537 80.5 13.583 L 80.5 18.417 C 80.5 20.477 82.035 22.215 84.08 22.469 C 83.366 20.72 82.999 18.85 83 16.961 Z M 144 13 C 144 12.448 144.448 12 145 12 L 159 12 C 159.552 12 160 12.448 160 13 L 160 14 L 162 14 C 163.105 14 164 14.895 164 16 L 164 20 C 164 22.761 161.761 25 159 25 L 157.814 25 C 156.631 26.585 155.041 27.822 153.214 28.579 L 153 28.668 L 153 30.519 L 157.625 34.219 C 157.957 34.484 158.085 34.93 157.944 35.331 C 157.803 35.732 157.425 36 157 36 L 147 36 C 146.576 36 146.198 35.732 146.057 35.331 C 145.917 34.931 146.044 34.486 146.375 34.22 L 151 30.52 L 151 28.669 L 150.786 28.58 C 148.959 27.823 147.369 26.586 146.186 25.001 L 145 25.001 C 142.239 25.001 140 22.762 140 20.001 L 140 16.001 C 140 14.896 140.895 14.001 142 14.001 L 144 14.001 L 144 13.001 Z M 160 18.418 C 160 20.033 159.647 21.59 159.001 23 C 160.657 22.999 162 21.656 162 20 L 162 16 L 160 16 Z M 144 16 L 142 16 L 142 20 C 142 21.656 143.343 22.999 144.999 23 C 144.34 21.562 143.999 19.999 144 18.418 Z M 197 16.625 C 197 16.28 197.28 16 197.625 16 L 206.375 16 C 206.72 16 207 16.28 207 16.625 L 207 17 L 208.708 17 C 209.422 17 210 17.578 210 18.292 L 210 20.708 C 210 22.526 208.526 24 206.708 24 L 206.369 24 C 205.623 25.597 204.278 26.835 202.625 27.448 L 202.625 28.668 L 205.851 30.858 C 206.079 31.011 206.18 31.296 206.1 31.559 C 206.019 31.822 205.775 32.001 205.5 32 L 198.5 32 C 198.225 32.001 197.981 31.822 197.9 31.559 C 197.82 31.296 197.921 31.011 198.149 30.858 L 201.375 28.668 L 201.375 27.448 C 199.722 26.835 198.377 25.597 197.631 24 L 197.292 24 C 195.475 24 194.001 22.527 194 20.71 L 194 18.293 C 194 17.579 194.578 17.001 195.292 17.001 L 197 17.001 L 197 16.626 Z M 206.81 22.748 C 207.897 22.694 208.75 21.796 208.75 20.708 L 208.75 18.292 C 208.75 18.269 208.731 18.25 208.708 18.25 L 207 18.25 L 207 21.16 C 207 21.703 206.934 22.236 206.81 22.748 Z M 197 18.25 L 195.292 18.25 C 195.269 18.25 195.25 18.269 195.25 18.292 L 195.25 20.708 C 195.25 21.802 196.11 22.695 197.19 22.748 C 197.064 22.228 197 21.695 197 21.16 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:12445712923,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5e2ki\",\"data-framer-name\":\"trophy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qor51t\",\"data-framer-name\":\"Group 6\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 8 1.5 C 8 0.672 8.672 0 9.5 0 L 38.5 0 C 39.328 0 40 0.672 40 1.5 L 40 4 L 44.5 4 C 46.433 4 48 5.567 48 7.5 L 48 15.5 C 48 20.747 43.747 25 38.5 25 L 36.105 25 C 33.71 28.42 30.369 31.067 26.493 32.618 L 25.5 33.015 L 25.5 37.779 L 34.937 45.329 C 35.434 45.727 35.626 46.396 35.415 46.997 C 35.204 47.598 34.637 48 34 48 L 14 48 C 13.363 48 12.796 47.598 12.585 46.997 C 12.374 46.396 12.566 45.727 13.063 45.329 L 22.5 37.779 L 22.5 33.015 L 21.507 32.618 C 17.631 31.067 14.29 28.42 11.895 25 L 9.5 25 C 4.253 25 0 20.747 0 15.5 L 0 7.5 C 0 5.567 1.567 4 3.5 4 L 8 4 Z M 37.865 22 L 38.5 22 C 42.09 22 45 19.09 45 15.5 L 45 7.5 C 45 7.224 44.776 7 44.5 7 L 40 7 L 40 12.659 C 40 15.964 39.243 19.144 37.865 22 Z M 37 3 L 11 3 L 11 12.659 C 11 20.221 15.603 27.022 22.623 29.833 L 23.814 30.31 C 23.933 30.358 24.067 30.358 24.186 30.31 L 25.377 29.833 C 32.397 27.022 37 20.221 37 12.659 Z M 8 12.659 L 8 7 L 3.5 7 C 3.224 7 3 7.224 3 7.5 L 3 15.5 C 3 19.09 5.91 22 9.5 22 L 10.135 22 C 8.729 19.087 7.999 15.894 8 12.659 Z M 29.724 45 L 24 40.42 L 18.276 45 Z M 83 9.25 C 83 8.56 83.56 8 84.25 8 L 103.75 8 C 104.44 8 105 8.56 105 9.25 L 105 11 L 107.417 11 C 108.843 11.001 109.999 12.157 110 13.583 L 110 18.417 C 110 22.053 107.053 25 103.417 25 L 102.584 25 C 101.098 27.251 99.016 29.046 96.57 30.183 L 95.25 30.797 L 95.25 33.125 L 101.417 37.75 C 101.846 38.073 102.021 38.635 101.851 39.145 C 101.681 39.654 101.204 39.999 100.667 40 L 87.333 40 C 86.795 40 86.317 39.656 86.147 39.145 C 85.977 38.635 86.153 38.073 86.583 37.75 L 92.75 33.125 L 92.75 30.797 L 91.43 30.183 C 88.984 29.045 86.902 27.251 85.416 25 L 84.583 25 C 80.947 25 78 22.053 78 18.417 L 78 13.583 C 78 12.156 79.156 11 80.583 11 L 83 11 Z M 103.92 22.47 C 105.965 22.216 107.5 20.478 107.5 18.417 L 107.5 13.583 C 107.5 13.537 107.463 13.5 107.417 13.5 L 105 13.5 L 105 16.961 C 105 18.886 104.621 20.751 103.92 22.469 Z M 83 16.96 L 83 13.5 L 80.583 13.5 C 80.537 13.5 80.5 13.537 80.5 13.583 L 80.5 18.417 C 80.5 20.477 82.035 22.215 84.08 22.469 C 83.366 20.72 82.999 18.85 83 16.961 Z M 85.5 10.499 L 85.5 16.96 C 85.5 21.66 88.224 25.932 92.485 27.915 L 93.965 28.604 C 93.987 28.614 94.013 28.614 94.035 28.604 L 95.515 27.915 C 99.776 25.932 102.5 21.659 102.5 16.96 L 102.5 10.5 L 85.5 10.5 Z M 96.917 37.499 L 94 35.312 L 91.083 37.5 L 96.917 37.5 Z M 144 13 C 144 12.448 144.448 12 145 12 L 159 12 C 159.552 12 160 12.448 160 13 L 160 14 L 162 14 C 163.105 14 164 14.895 164 16 L 164 20 C 164 22.761 161.761 25 159 25 L 157.814 25 C 156.631 26.585 155.041 27.822 153.214 28.579 L 153 28.668 L 153 30.519 L 157.625 34.219 C 157.957 34.484 158.085 34.93 157.944 35.331 C 157.803 35.732 157.425 36 157 36 L 147 36 C 146.576 36 146.198 35.732 146.057 35.331 C 145.917 34.931 146.044 34.486 146.375 34.22 L 151 30.52 L 151 28.669 L 150.786 28.58 C 148.959 27.823 147.369 26.586 146.186 25.001 L 145 25.001 C 142.239 25.001 140 22.762 140 20.001 L 140 16.001 C 140 14.896 140.895 14.001 142 14.001 L 144 14.001 L 144 13.001 Z M 159.001 23 C 160.657 22.999 162 21.656 162 20 L 162 16 L 160 16 L 160 18.418 C 160 20.033 159.647 21.59 159.001 23 Z M 158 14 L 146 14 L 146 18.418 C 146 22.057 148.191 25.338 151.552 26.732 L 152 26.917 L 152.448 26.732 C 155.809 25.338 158 22.057 158 18.418 Z M 144 18.418 L 144 16 L 142 16 L 142 20 C 142 21.656 143.343 22.999 144.999 23 C 144.34 21.562 143.999 19.999 144 18.418 Z M 154.149 34 L 152 32.28 L 149.851 34 Z M 197 16.625 C 197 16.28 197.28 16 197.625 16 L 206.375 16 C 206.72 16 207 16.28 207 16.625 L 207 17 L 208.708 17 C 209.422 17 210 17.578 210 18.292 L 210 20.708 C 210 22.526 208.526 24 206.708 24 L 206.369 24 C 205.623 25.597 204.278 26.835 202.625 27.448 L 202.625 28.668 L 205.851 30.858 C 206.079 31.011 206.18 31.296 206.1 31.559 C 206.019 31.822 205.775 32.001 205.5 32 L 198.5 32 C 198.225 32.001 197.981 31.822 197.9 31.559 C 197.82 31.296 197.921 31.011 198.149 30.858 L 201.375 28.668 L 201.375 27.448 C 199.722 26.835 198.377 25.597 197.631 24 L 197.292 24 C 195.475 24 194.001 22.527 194 20.71 L 194 18.293 C 194 17.579 194.578 17.001 195.292 17.001 L 197 17.001 L 197 16.626 Z M 207 21.16 C 207 21.703 206.934 22.236 206.81 22.748 C 207.897 22.694 208.75 21.796 208.75 20.708 L 208.75 18.292 C 208.75 18.269 208.731 18.25 208.708 18.25 L 207 18.25 Z M 197 21.16 L 197 18.25 L 195.292 18.25 C 195.269 18.25 195.25 18.269 195.25 18.292 L 195.25 20.708 C 195.25 21.802 196.11 22.695 197.19 22.748 C 197.064 22.228 197 21.695 197 21.16 Z M 198.25 17.25 L 198.25 21.16 C 198.25 23.516 199.762 25.605 202 26.342 C 204.238 25.605 205.75 23.516 205.75 21.16 L 205.75 17.25 Z M 202 29.755 L 200.534 30.75 L 203.466 30.75 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:11788926514,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11t330i\",\"data-framer-name\":\"ball\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16emzox\",\"data-framer-name\":\"Group 21\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 24 0 C 10.745 0 0 10.745 0 24 C 0 37.255 10.745 48 24 48 C 37.255 48 48 37.255 48 24 C 48 10.745 37.255 0 24 0 Z M 17.495 4.027 C 19.596 3.344 21.791 2.998 24 3 C 25.68 3 27.313 3.197 28.88 3.57 L 28.306 5.288 L 20.546 7.079 Z M 14.495 5.269 L 18.203 8.978 L 14.766 14.976 L 8.771 18.411 L 5.131 14.771 C 7.142 10.674 10.428 7.34 14.495 5.269 Z M 3.927 17.81 L 6.872 20.756 L 5.32 27.483 C 5.265 27.495 5.211 27.509 5.158 27.527 L 3.402 28.112 C 3.134 26.758 2.999 25.381 3 24 C 3 21.845 3.324 19.767 3.927 17.81 Z M 4.197 31.01 L 5.201 30.675 L 12.006 37.843 L 11.716 41.035 C 8.25 38.534 5.628 35.037 4.198 31.009 Z M 14.57 42.77 L 14.91 39.032 L 22.1 38.412 L 30.852 40.912 L 30.852 43.858 C 28.647 44.617 26.332 45.003 24 45 C 20.725 45.005 17.495 44.24 14.57 42.769 Z M 33.852 42.552 L 33.852 40.325 L 40.339 32.54 L 43.336 32.207 C 41.449 36.637 38.102 40.287 33.852 42.551 Z M 44.384 29.072 L 40.612 29.492 L 38.203 22.264 L 38.805 14.441 L 42.525 14.103 C 44.155 17.147 45.005 20.547 45 24 C 45 25.749 44.786 27.447 44.383 29.071 Z M 40.692 11.257 L 37.882 11.512 L 31.212 6.056 L 31.741 4.474 C 35.284 5.883 38.377 8.228 40.692 11.257 Z M 31.825 38.07 L 24.16 35.88 L 27.039 27.245 L 35.735 24.345 L 37.885 30.797 Z M 21.051 10.042 L 29.082 8.188 L 35.851 13.726 L 35.265 21.34 L 26.257 24.343 L 17.737 15.823 Z M 14.451 36.06 L 7.99 29.254 L 9.835 21.259 L 15.616 17.946 L 24.136 26.466 L 21.13 35.483 L 14.45 36.06 Z M 94 8 C 85.163 8 78 15.163 78 24 C 78 32.837 85.163 40 94 40 C 102.837 40 110 32.837 110 24 C 110 15.163 102.837 8 94 8 Z M 90.243 11.03 C 91.464 10.677 92.729 10.499 94 10.5 C 94.979 10.5 95.933 10.604 96.853 10.802 L 96.621 11.496 L 91.818 12.604 Z M 87.723 12.045 L 89.865 14.186 L 87.746 17.884 L 84.052 20 L 81.952 17.9 C 83.223 15.398 85.24 13.352 87.723 12.044 Z M 80.97 20.455 L 82.47 21.954 L 81.52 26.073 L 80.703 26.345 C 80.36 24.386 80.451 22.375 80.97 20.455 Z M 81.363 28.76 L 81.588 28.685 L 85.855 33.178 L 85.72 34.663 C 83.752 33.134 82.244 31.091 81.363 28.76 Z M 88.095 36.144 L 88.28 34.109 L 92.727 33.725 L 98.231 35.297 L 98.231 36.824 C 96.866 37.273 95.437 37.502 94 37.5 C 91.882 37.5 89.879 37.013 88.095 36.144 Z M 100.731 35.705 L 100.731 34.807 L 104.858 29.855 L 106.24 29.702 C 105.062 32.22 103.139 34.316 100.731 35.705 Z M 107.146 27.085 L 105.086 27.315 L 103.59 22.826 L 103.963 17.971 L 105.988 17.787 C 106.984 19.706 107.503 21.838 107.5 24 C 107.5 25.039 107.382 26.074 107.146 27.086 Z M 104.422 15.419 L 103.194 15.53 L 99.044 12.135 L 99.237 11.553 C 101.252 12.404 103.031 13.73 104.422 15.419 Z M 99.042 32.929 L 94.446 31.616 L 96.205 26.339 L 101.533 24.563 L 102.813 28.403 Z M 92.238 15.073 L 97.268 13.913 L 101.502 17.376 L 101.141 22.058 L 95.553 23.921 L 90.223 18.59 Z M 87.838 31.637 L 83.786 27.368 L 84.938 22.374 L 88.455 20.359 L 93.785 25.689 L 91.921 31.285 L 87.839 31.637 Z M 152 12 C 145.373 12 140 17.373 140 24 C 140 30.628 145.373 36 152 36 C 158.627 36 164 30.628 164 24 C 164 17.373 158.627 12 152 12 Z M 149.33 14.36 C 150.865 13.937 152.479 13.885 154.039 14.208 L 153.904 14.614 L 150.393 15.424 L 149.33 14.361 Z M 147.308 15.167 L 148.831 16.689 L 147.285 19.387 L 144.589 20.932 L 143.097 19.441 C 144.033 17.621 145.502 16.13 147.308 15.167 Z M 142.318 21.49 L 143.323 22.495 L 142.631 25.495 L 142.137 25.659 C 141.906 24.272 141.967 22.851 142.318 21.489 Z M 142.664 27.592 L 142.72 27.572 L 145.853 30.872 L 145.767 31.82 C 144.376 30.711 143.305 29.252 142.664 27.592 Z M 147.666 33.015 L 147.794 31.605 L 151.044 31.325 L 155.089 32.48 L 155.089 33.514 C 154.091 33.837 153.049 34.001 152 34 C 150.5 34.002 149.018 33.666 147.666 33.015 Z M 157.089 32.61 L 157.089 32.088 L 160.135 28.433 L 161.014 28.335 C 160.155 30.115 158.79 31.602 157.089 32.61 Z M 161.748 26.241 L 160.318 26.401 L 159.223 23.116 L 159.496 19.564 L 160.9 19.436 C 161.625 20.848 162.002 22.413 162 24 C 162 24.77 161.913 25.52 161.748 26.241 Z M 159.636 17.543 L 158.881 17.612 L 155.841 15.125 L 155.947 14.809 C 157.371 15.423 158.634 16.359 159.636 17.543 Z M 155.738 30.585 L 152.419 29.637 L 153.698 25.799 L 157.578 24.505 L 158.5 27.271 Z M 150.729 17.4 L 154.421 16.548 L 157.527 19.088 L 157.264 22.503 L 153.177 23.865 L 149.266 19.954 Z M 147.43 29.63 L 144.453 26.494 L 145.298 22.832 L 147.852 21.369 L 151.763 25.279 L 150.399 29.373 L 147.43 29.629 Z M 202 16.003 C 197.583 16.003 194.003 19.583 194.003 24 C 194.003 28.417 197.583 31.997 202 31.997 C 206.417 31.997 209.997 28.417 209.997 24 C 209.997 19.583 206.417 16.003 202 16.003 Z M 200.124 17.517 C 201.198 17.207 202.332 17.168 203.425 17.404 L 203.31 17.748 L 200.909 18.302 Z M 198.864 18.025 L 199.932 19.093 L 198.873 20.942 L 197.026 22 L 195.978 20.953 C 196.614 19.702 197.622 18.679 198.864 18.025 Z M 195.488 22.23 L 196.234 22.977 L 195.759 25.037 L 195.354 25.171 C 195.185 24.193 195.231 23.189 195.488 22.23 Z M 195.684 26.379 L 195.794 26.342 L 197.927 28.589 L 197.86 29.328 C 196.877 28.563 196.124 27.543 195.684 26.378 Z M 199.048 30.069 L 199.14 29.054 L 201.363 28.862 L 204.115 29.649 L 204.115 30.409 C 203.433 30.634 202.719 30.748 202 30.747 C 200.977 30.748 199.967 30.516 199.048 30.068 Z M 205.365 29.849 L 205.365 29.404 L 207.428 26.928 L 208.116 26.851 C 207.528 28.108 206.567 29.155 205.365 29.849 Z M 208.569 25.543 L 207.543 25.657 L 206.795 23.413 L 206.981 20.985 L 207.99 20.894 C 208.473 21.824 208.746 22.88 208.746 24 C 208.746 24.531 208.685 25.048 208.569 25.543 Z M 207.207 19.71 L 206.597 19.765 L 204.521 18.067 L 204.617 17.78 C 205.623 18.205 206.512 18.867 207.207 19.71 Z M 204.521 28.464 L 202.223 27.808 L 203.102 25.169 L 205.766 24.281 L 206.406 26.201 Z M 201.119 19.537 L 203.634 18.957 L 205.751 20.688 L 205.57 23.029 L 202.777 23.96 L 200.111 21.295 L 201.119 19.536 Z M 198.919 27.819 L 196.893 25.684 L 197.469 23.187 L 199.227 22.179 L 201.893 24.845 L 200.96 27.643 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:10597147912,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10tpovm\",\"data-framer-name\":\"camera\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zp0vru\",\"data-framer-name\":\"Group 3\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 29 14 C 22.925 14 18 18.925 18 25 C 18 31.075 22.925 36 29 36 C 35.075 36 40 31.075 40 25 C 40 18.925 35.075 14 29 14 Z M 21 25 C 21 20.582 24.582 17 29 17 C 33.418 17 37 20.582 37 25 C 37 29.418 33.418 33 29 33 C 24.582 33 21 29.418 21 25 Z M 8 16 L 8 19 L 13 19 L 13 16 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 26.14 2 C 24.301 2 22.584 2.92 21.564 4.45 L 19.197 8 L 18 8 L 18 6.5 C 18 4.567 16.433 3 14.5 3 L 8.5 3 C 6.567 3 5 4.567 5 6.5 L 5 8.022 C 2.168 8.281 0 10.656 0 13.5 L 0 36.5 C 0 39.538 2.462 42 5.5 42 L 42.5 42 C 45.538 42 48 39.538 48 36.5 L 48 13.5 C 48 10.462 45.538 8 42.5 8 L 38.803 8 L 36.436 4.45 C 35.416 2.919 33.698 2 31.858 2 Z M 24.06 6.113 C 24.524 5.418 25.304 5 26.14 5 L 31.86 5 C 32.696 5 33.476 5.418 33.94 6.113 L 37.196 11 L 42.5 11 C 43.881 11 45 12.119 45 13.5 L 45 36.5 C 45 37.881 43.881 39 42.5 39 L 5.5 39 C 4.119 39 3 37.881 3 36.5 L 3 13.5 C 3 12.119 4.119 11 5.5 11 L 20.803 11 L 24.061 6.113 Z M 15 6.5 L 15 8 L 8 8 L 8 6.5 C 8 6.224 8.224 6 8.5 6 L 14.5 6 C 14.776 6 15 6.224 15 6.5 Z M 97.5 17 C 93.358 17 90 20.358 90 24.5 C 90 28.642 93.358 32 97.5 32 C 101.642 32 105 28.642 105 24.5 C 105 20.358 101.642 17 97.5 17 Z M 92.5 24.5 C 92.5 21.739 94.739 19.5 97.5 19.5 C 100.261 19.5 102.5 21.739 102.5 24.5 C 102.5 27.261 100.261 29.5 97.5 29.5 C 94.739 29.5 92.5 27.261 92.5 24.5 Z M 83.042 18 L 83.042 20.5 L 87 20.5 L 87 18 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 95.516 9 C 94.157 9 92.896 9.704 92.183 10.86 L 90.86 13 L 90 13 L 90 11.583 C 90 10.898 89.728 10.241 89.243 9.756 C 88.758 9.272 88.101 9 87.416 9 L 83.582 9 C 82.156 9.001 81 10.157 81 11.583 L 81 13.009 C 79.307 13.14 78 14.552 78 16.25 L 78 32.75 C 78 34.545 79.455 36 81.25 36 L 106.75 36 C 108.545 36 110 34.545 110 32.75 L 110 16.25 C 110 14.455 108.545 13 106.75 13 L 104.139 13 L 102.817 10.86 C 102.104 9.704 100.843 9 99.485 9 L 95.515 9 Z M 94.31 12.172 C 94.568 11.754 95.025 11.5 95.516 11.5 L 99.484 11.5 C 99.976 11.5 100.432 11.755 100.69 12.172 L 102.744 15.5 L 106.75 15.5 C 107.164 15.5 107.5 15.836 107.5 16.25 L 107.5 32.75 C 107.5 33.164 107.164 33.5 106.75 33.5 L 81.25 33.5 C 80.836 33.5 80.5 33.164 80.5 32.75 L 80.5 16.25 C 80.5 15.836 80.836 15.5 81.25 15.5 L 92.256 15.5 Z M 87.5 11.583 L 87.5 13 L 83.5 13 L 83.5 11.583 C 83.5 11.537 83.537 11.5 83.584 11.5 L 87.417 11.5 C 87.463 11.5 87.5 11.537 87.5 11.583 Z M 154.5 19 C 151.462 19 149 21.462 149 24.5 C 149 27.538 151.462 30 154.5 30 C 157.538 30 160 27.538 160 24.5 C 160 21.462 157.538 19 154.5 19 Z M 151 24.5 C 151 22.567 152.567 21 154.5 21 C 156.433 21 158 22.567 158 24.5 C 158 26.433 156.433 28 154.5 28 C 152.567 28 151 26.433 151 24.5 Z M 144 20 L 144 22 L 147 22 L 147 20 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 153.07 13 C 152.067 13 151.13 13.501 150.574 14.336 L 149.465 16 L 149 16 L 149 15 C 149 13.895 148.105 13 147 13 L 144 13 C 142.895 13 142 13.895 142 15 L 142 16.17 C 140.801 16.594 140 17.728 140 19 L 140 30 C 140 31.657 141.343 33 143 33 L 161 33 C 162.657 33 164 31.657 164 30 L 164 19 C 164 17.343 162.657 16 161 16 L 159.535 16 L 158.426 14.336 C 157.87 13.501 156.933 13 155.93 13 Z M 152.238 15.445 C 152.424 15.167 152.736 15 153.07 15 L 155.93 15 C 156.264 15 156.576 15.167 156.762 15.445 L 158.465 18 L 161 18 C 161.552 18 162 18.448 162 19 L 162 30 C 162 30.552 161.552 31 161 31 L 143 31 C 142.448 31 142 30.552 142 30 L 142 19 C 142 18.448 142.448 18 143 18 L 150.535 18 Z M 147 15 L 147 16 L 144 16 L 144 15 Z M 203.5 21 C 201.567 21 200 22.567 200 24.5 C 200 26.433 201.567 28 203.5 28 C 205.433 28 207 26.433 207 24.5 C 207 22.567 205.433 21 203.5 21 Z M 201.25 24.5 C 201.25 23.257 202.257 22.25 203.5 22.25 C 204.743 22.25 205.75 23.257 205.75 24.5 C 205.75 25.743 204.743 26.75 203.5 26.75 C 202.257 26.75 201.25 25.743 201.25 24.5 Z M 196 21 L 196 22.25 L 198 22.25 L 198 21 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 202.547 17 C 201.892 17 201.281 17.327 200.918 17.872 L 200.166 19 L 200 19 L 200 18.292 C 200 17.578 199.422 17 198.708 17 L 197.292 17 C 196.578 17 196 17.578 196 18.292 L 196 19 L 195.625 19 C 194.728 19 194 19.727 194 20.625 L 194 28.375 C 194 29.273 194.728 30 195.625 30 L 208.375 30 C 209.272 30 210 29.273 210 28.375 L 210 20.625 C 210 19.727 209.272 19 208.375 19 L 206.835 19 L 206.083 17.872 C 205.719 17.327 205.108 17 204.453 17 Z M 201.958 18.565 C 202.089 18.368 202.31 18.25 202.547 18.25 L 204.453 18.25 C 204.69 18.25 204.911 18.368 205.043 18.565 L 206.166 20.25 L 208.375 20.25 C 208.582 20.25 208.75 20.418 208.75 20.625 L 208.75 28.375 C 208.75 28.582 208.582 28.75 208.375 28.75 L 195.625 28.75 C 195.418 28.75 195.25 28.582 195.25 28.375 L 195.25 20.625 C 195.25 20.418 195.418 20.25 195.625 20.25 L 200.835 20.25 Z M 198.75 18.292 L 198.75 19 L 197.25 19 L 197.25 18.292 C 197.25 18.269 197.269 18.25 197.292 18.25 L 198.708 18.25 C 198.731 18.25 198.75 18.269 198.75 18.292 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:8968511346,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16u2e15\",\"data-framer-name\":\"mountain plus\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sh0x25\",\"data-framer-name\":\"Group 9\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 42 0 L 42 6 L 48 6 L 48 9 L 42 9 L 42 15 L 39 15 L 39 9 L 33 9 L 33 6 L 39 6 L 39 0 Z M 12.724 8.02 C 14.049 5.58 17.551 5.58 18.876 8.02 L 26.236 21.573 L 29.124 16.255 C 30.449 13.816 33.951 13.816 35.276 16.255 L 45.42 34.934 C 46.225 36.416 46.19 38.213 45.328 39.662 C 44.466 41.112 42.904 42 41.217 42 L 7.5 42 C 4.462 42 2 39.538 2 36.5 L 2 29.163 C 2 28.246 2.23 27.344 2.667 26.538 Z M 16.239 9.452 C 16.151 9.291 15.983 9.191 15.8 9.191 C 15.617 9.191 15.449 9.291 15.361 9.452 L 5.303 27.97 C 5.104 28.336 5 28.746 5 29.163 L 5 36.5 C 5 37.881 6.119 39 7.5 39 L 41.217 39 C 41.846 39 42.429 38.669 42.75 38.128 C 43.072 37.588 43.085 36.918 42.784 36.365 L 32.639 17.687 C 32.551 17.526 32.383 17.426 32.2 17.426 C 32.017 17.426 31.849 17.526 31.761 17.687 L 26.236 27.86 L 16.24 9.452 Z M 105.75 8 L 105.75 12.25 L 110 12.25 L 110 14.75 L 105.75 14.75 L 105.75 19 L 103.25 19 L 103.25 14.75 L 99 14.75 L 99 12.25 L 103.25 12.25 L 103.25 8 Z M 86.537 12.944 C 87.397 11.411 89.604 11.412 90.462 12.946 L 95.511 21.961 L 97.545 18.402 C 98.409 16.889 100.592 16.892 101.454 18.406 L 108.575 30.922 C 108.853 31.412 109 31.965 109 32.529 L 109 32.749 C 109 34.544 107.545 35.999 105.75 35.999 L 82.25 35.999 C 80.455 35.999 79.001 34.545 79 32.75 L 79 27.227 C 79 26.67 79.143 26.123 79.416 25.637 L 86.536 12.945 Z M 88.499 14.556 L 81.596 26.86 C 81.533 26.972 81.5 27.098 81.5 27.227 L 81.5 32.751 C 81.5 33.165 81.836 33.501 82.25 33.501 L 105.75 33.501 C 106.164 33.501 106.5 33.165 106.5 32.751 L 106.5 32.53 C 106.5 32.4 106.466 32.273 106.402 32.16 L 99.498 20.024 L 95.489 27.04 L 88.499 14.557 Z M 161 12 L 161 15 L 164 15 L 164 17 L 161 17 L 161 20 L 159 20 L 159 17 L 156 17 L 156 15 L 159 15 L 159 12 Z M 146.244 16.13 C 147.002 14.74 148.998 14.74 149.756 16.13 L 153.091 22.245 L 154.244 20.131 C 155.002 18.741 156.998 18.741 157.756 20.131 L 162.683 29.164 C 163.123 29.968 163.105 30.943 162.638 31.731 C 162.17 32.519 161.322 33.001 160.406 33 L 144 33 C 142.343 33 141 31.657 141 30 L 141 26.51 C 141 26.008 141.126 25.514 141.366 25.073 L 146.244 16.131 Z M 148 17.088 L 143.122 26.031 C 143.042 26.178 143 26.343 143 26.51 L 143 30 C 143 30.552 143.448 31 144 31 L 160.406 31 C 160.616 31 160.81 30.89 160.917 30.71 C 161.024 30.529 161.028 30.306 160.928 30.122 L 156 21.088 L 153.091 26.422 Z M 208.125 16 L 208.125 17.875 L 210 17.875 L 210 19.125 L 208.125 19.125 L 208.125 21 L 206.875 21 L 206.875 19.125 L 205 19.125 L 205 17.875 L 206.875 17.875 L 206.875 16 Z M 200.484 19.07 C 200.297 18.696 199.919 18.457 199.501 18.448 C 199.083 18.439 198.695 18.662 198.493 19.028 L 195.328 24.745 C 195.113 25.134 195 25.572 195 26.017 L 195 28.375 C 195 29.273 195.728 30 196.625 30 L 207.385 30 C 208.208 30 208.875 29.333 208.875 28.51 C 208.875 28.126 208.781 27.748 208.601 27.409 L 205.478 21.511 C 205.286 21.148 204.912 20.919 204.502 20.912 C 204.092 20.906 203.711 21.123 203.507 21.479 L 202.537 23.176 Z M 196.422 25.35 L 199.472 19.841 L 202.463 25.824 L 204.479 22.296 L 207.497 27.994 C 207.581 28.154 207.625 28.331 207.625 28.511 C 207.625 28.644 207.518 28.751 207.385 28.751 L 196.625 28.751 C 196.525 28.751 196.43 28.711 196.359 28.641 C 196.289 28.57 196.25 28.475 196.25 28.375 L 196.25 26.017 C 196.25 25.784 196.309 25.555 196.422 25.351 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:10852552672,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zouf3m\",\"data-framer-name\":\"weather\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c6s92s\",\"data-framer-name\":\"Group 22\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><g transform=\"translate(0 0.001)\" id=\"ss9998218930_1\"><path d=\"M 35.623 0.757 C 35.894 1.231 35.885 1.815 35.601 2.281 C 34.55 4.003 33.996 5.982 34 7.999 C 34 14.074 38.924 18.999 45 18.999 C 45.314 18.999 45.625 18.986 45.932 18.96 C 46.476 18.914 47.002 19.167 47.305 19.621 C 47.609 20.075 47.642 20.658 47.391 21.143 C 45.74 24.338 42.964 26.808 39.599 28.077 C 40.843 31.721 39.125 35.715 35.625 37.319 L 34.373 34.592 C 36.299 33.712 37.351 31.609 36.9 29.541 C 36.449 27.472 34.617 25.998 32.5 25.999 L 28.314 25.999 L 28.461 24.364 C 28.877 19.852 26.048 15.674 21.704 14.384 C 17.36 13.095 12.71 15.053 10.597 19.062 C 12.386 19.27 14.079 19.982 15.479 21.115 L 13.59 23.449 C 11.973 22.139 9.827 21.683 7.817 22.221 L 7.817 22.22 C 5.042 22.966 3.085 25.446 3.005 28.318 C 2.924 31.191 4.738 33.776 7.467 34.677 L 6.531 37.527 C 2.74 36.279 0 32.711 0 28.499 C 0 24.033 3.08 20.289 7.233 19.271 C 8.966 14.449 13.58 10.999 19 10.999 C 19.475 10.999 19.945 11.026 20.406 11.077 C 21.93 4.783 27.56 0.092 34.3 0 C 34.846 -0.007 35.353 0.283 35.623 0.757 Z M 23.326 11.768 C 27.95 13.474 31.287 17.834 31.49 22.999 L 32.5 22.999 C 34.609 22.997 36.621 23.885 38.04 25.444 C 40.093 24.779 41.917 23.549 43.305 21.897 C 36.372 21.061 31 15.157 31 7.999 C 31 6.359 31.283 4.782 31.803 3.317 C 27.621 4.329 24.351 7.589 23.326 11.768 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 15 28.499 C 15 25.462 17.462 22.999 20.5 22.999 C 23.538 22.999 26 25.462 26 28.499 C 26 31.537 23.538 33.999 20.5 33.999 L 10 33.999 L 10 30.999 L 20.5 30.999 C 21.881 30.999 23 29.88 23 28.499 C 23 27.118 21.881 25.999 20.5 25.999 C 19.119 25.999 18 27.118 18 28.499 Z M 27.5 46.999 C 24.462 46.999 22 44.537 22 41.499 L 22 40.999 L 25 40.999 L 25 41.499 C 25 42.88 26.119 43.999 27.5 43.999 C 28.881 43.999 30 42.88 30 41.499 C 30 40.118 28.881 38.999 27.5 38.999 L 10 38.999 L 10 35.999 L 27.5 35.999 C 30.538 35.999 33 38.462 33 41.499 C 33 44.537 30.538 46.999 27.5 46.999 Z M 91.418 15.025 C 87.767 14.738 84.342 16.82 82.918 20.194 C 80.371 20.834 78.459 22.944 78.072 25.542 C 77.685 28.14 78.899 30.715 81.149 32.07 L 82.439 29.928 C 81.064 29.101 80.316 27.532 80.539 25.942 C 80.763 24.353 81.914 23.051 83.464 22.634 L 83.464 22.635 C 84.531 22.349 85.669 22.517 86.608 23.099 L 87.925 20.975 C 87.268 20.567 86.543 20.28 85.785 20.127 C 87.33 17.851 90.225 16.917 92.809 17.861 C 95.392 18.805 97.003 21.385 96.717 24.121 L 96.577 25.499 L 99 25.499 C 100.076 25.499 101.031 26.188 101.372 27.209 C 101.712 28.229 101.361 29.353 100.5 29.999 L 102.001 31.999 C 103.47 30.899 104.217 29.083 103.947 27.268 C 106.569 26.407 108.713 24.492 109.863 21.983 C 110.032 21.615 110.012 21.188 109.809 20.837 C 109.606 20.486 109.246 20.256 108.842 20.219 C 106.508 20 104.439 18.626 103.33 16.561 C 102.221 14.495 102.22 12.012 103.327 9.945 C 103.519 9.588 103.525 9.16 103.345 8.798 C 103.164 8.435 102.819 8.182 102.419 8.119 C 101.909 8.039 101.393 7.999 100.877 7.999 C 96.414 7.999 92.641 10.959 91.417 15.025 Z M 93.862 15.587 C 94.8 12.719 97.389 10.71 100.4 10.514 C 98.892 15.534 101.733 20.826 106.749 22.344 C 105.798 23.594 104.472 24.509 102.966 24.954 C 102.071 23.786 100.706 23.072 99.236 23.004 C 99.043 19.696 96.945 16.801 93.862 15.587 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 87 26.999 C 87 24.79 88.791 22.999 91 22.999 C 93.209 22.999 95 24.79 95 26.999 C 95 29.208 93.209 30.999 91 30.999 L 84 30.999 L 84 28.499 L 91 28.499 C 91.828 28.499 92.5 27.828 92.5 26.999 C 92.5 26.171 91.828 25.499 91 25.499 C 90.172 25.499 89.5 26.171 89.5 26.999 Z M 96 39.999 C 93.791 39.999 92 38.208 92 35.999 L 94.5 35.999 C 94.5 36.828 95.172 37.499 96 37.499 C 96.828 37.499 97.5 36.828 97.5 35.999 C 97.5 35.171 96.828 34.499 96 34.499 L 84 34.499 L 84 31.999 L 96 31.999 C 98.209 31.999 100 33.79 100 35.999 C 100 38.208 98.209 39.999 96 39.999 Z M 150.338 17.052 C 147.324 16.661 144.441 18.409 143.395 21.262 C 141.535 21.892 140.215 23.553 140.022 25.507 C 139.829 27.462 140.798 29.348 142.499 30.33 L 143.501 28.598 C 142.45 27.991 141.869 26.811 142.027 25.608 C 142.185 24.405 143.051 23.415 144.223 23.1 C 144.992 22.894 145.811 23.002 146.5 23.4 L 147.5 21.669 C 146.952 21.353 146.349 21.143 145.723 21.051 C 146.848 19.312 149.015 18.566 150.973 19.243 C 152.93 19.921 154.172 21.847 153.982 23.909 L 153.883 24.999 L 156 24.999 C 156.882 24.999 157.66 25.577 157.915 26.422 C 158.169 27.267 157.84 28.179 157.105 28.666 L 158.213 30.332 C 159.632 29.393 160.3 27.657 159.876 26.009 C 161.573 25.347 162.959 24.073 163.762 22.438 C 163.911 22.132 163.894 21.77 163.717 21.479 C 163.54 21.188 163.227 21.007 162.886 20.998 C 161.124 20.959 159.513 19.994 158.645 18.46 C 157.778 16.926 157.782 15.048 158.657 13.518 C 158.825 13.222 158.831 12.86 158.673 12.558 C 158.515 12.256 158.214 12.055 157.874 12.025 C 154.496 11.734 151.366 13.821 150.338 17.052 Z M 152.26 17.612 C 152.856 15.799 154.389 14.452 156.263 14.092 C 155.754 15.89 155.985 17.817 156.904 19.444 C 157.824 21.071 159.355 22.263 161.158 22.755 C 160.545 23.439 159.764 23.949 158.893 24.237 C 158.139 23.445 157.093 22.998 156 22.999 L 155.981 22.999 C 155.801 20.665 154.38 18.607 152.26 17.612 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 150 22.999 C 148.343 22.999 147 24.342 147 25.999 L 149 25.999 C 149 25.447 149.448 24.999 150 24.999 C 150.552 24.999 151 25.447 151 25.999 C 151 26.551 150.552 26.999 150 26.999 L 145 26.999 L 145 28.999 L 150 28.999 C 151.657 28.999 153 27.656 153 25.999 C 153 24.342 151.657 22.999 150 22.999 Z M 151 32.999 C 151 34.656 152.343 35.999 154 35.999 C 155.657 35.999 157 34.656 157 32.999 C 157 31.342 155.657 29.999 154 29.999 L 145 29.999 L 145 31.999 L 154 31.999 C 154.552 31.999 155 32.447 155 32.999 C 155 33.551 154.552 33.999 154 33.999 C 153.448 33.999 153 33.551 153 32.999 Z M 201.067 19.839 C 199.312 19.447 197.526 20.357 196.81 22.006 C 195.516 22.088 194.42 22.993 194.095 24.248 C 193.77 25.504 194.289 26.826 195.381 27.526 L 196.056 26.473 C 195.511 26.123 195.203 25.5 195.257 24.855 C 195.311 24.209 195.717 23.646 196.313 23.391 C 196.909 23.136 197.597 23.232 198.101 23.639 L 198.888 22.668 C 198.652 22.477 198.389 22.323 198.107 22.211 C 198.695 21.232 199.872 20.776 200.967 21.103 C 202.061 21.431 202.794 22.459 202.748 23.6 L 202.722 24.249 L 204.375 24.249 C 204.924 24.249 205.421 24.576 205.638 25.08 C 205.855 25.585 205.751 26.17 205.374 26.569 L 206.281 27.429 C 206.879 26.799 207.126 25.914 206.94 25.065 C 208.188 24.695 209.222 23.818 209.791 22.647 C 209.886 22.452 209.874 22.222 209.757 22.039 C 209.641 21.856 209.439 21.746 209.222 21.749 L 209.188 21.749 C 208.078 21.749 207.062 21.123 206.564 20.131 C 206.065 19.139 206.168 17.95 206.83 17.059 C 206.961 16.885 206.992 16.656 206.912 16.454 C 206.832 16.252 206.652 16.106 206.438 16.069 C 205.226 15.853 203.977 16.13 202.969 16.837 C 201.961 17.544 201.277 18.624 201.067 19.837 Z M 202.262 20.334 C 202.404 18.715 203.678 17.426 205.295 17.265 C 204.851 18.384 204.909 19.641 205.456 20.714 C 206.003 21.787 206.985 22.572 208.152 22.87 C 207.684 23.398 207.061 23.765 206.373 23.921 C 205.875 23.335 205.144 22.998 204.375 22.999 L 203.967 22.999 C 203.82 21.903 203.196 20.928 202.262 20.334 Z\" fill=\"rgb(17, 17, 17)\"></path><path d=\"M 199 25.249 C 199 24.559 199.56 23.999 200.25 23.999 L 200.5 23.999 C 201.328 23.999 202 24.671 202 25.499 C 202 26.328 201.328 26.999 200.5 26.999 L 197 26.999 L 197 25.749 L 200.5 25.749 C 200.638 25.749 200.75 25.637 200.75 25.499 C 200.75 25.361 200.638 25.249 200.5 25.249 Z M 202.875 31.999 C 201.839 31.999 201 31.16 201 30.124 L 202.25 30.124 C 202.25 30.469 202.53 30.749 202.875 30.749 L 203 30.749 C 203.414 30.749 203.75 30.413 203.75 29.999 C 203.75 29.585 203.414 29.249 203 29.249 L 197 29.249 L 197 27.999 L 203 27.999 C 204.105 27.999 205 28.895 205 29.999 C 205 31.104 204.105 31.999 203 31.999 Z\" fill=\"rgb(17, 17, 17)\"></path></g></svg>',svgContentId:9998218930,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10v422j\",\"data-framer-name\":\"skate\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fabv0b\",\"data-framer-name\":\"Group 20\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 5 0 L 5 0.292 C 5 1.996 5.963 3.555 7.487 4.317 L 7.681 4.414 C 7.73 4.378 7.779 4.344 7.829 4.31 L 11.565 1.82 C 12.958 0.891 14.698 0.647 16.292 1.157 L 24.176 3.68 C 26.455 4.409 28.001 6.528 28 8.92 L 28 9 L 30 9 L 30 12 L 28.038 12 C 28.23 14.011 29.132 15.889 30.583 17.295 L 31.939 15.939 L 34.061 18.061 L 32.913 19.208 L 33.426 19.618 C 34.247 20.275 35.204 20.741 36.227 20.982 L 37.346 21.245 C 41.245 22.162 44 25.641 44 29.646 C 44 31.01 43.373 32.226 42.392 33.025 L 42.932 33.904 C 43.477 34.788 43.629 35.756 43.476 36.655 C 45.697 37.922 46.605 40.66 45.58 43.003 C 44.555 45.346 41.927 46.537 39.489 45.765 C 37.052 44.993 35.589 42.506 36.1 40 L 33.9 40 C 34.303 41.987 33.467 44.02 31.783 45.149 C 30.099 46.277 27.901 46.277 26.217 45.149 C 24.533 44.02 23.697 41.987 24.1 40 L 21.9 40 C 22.303 41.987 21.467 44.02 19.783 45.149 C 18.099 46.277 15.901 46.277 14.217 45.149 C 12.533 44.02 11.697 41.987 12.1 40 L 9.9 40 C 10.382 42.362 9.11 44.731 6.876 45.634 C 4.641 46.538 2.08 45.719 0.785 43.687 C -0.511 41.654 -0.172 38.987 1.59 37.343 C 1.302 36.541 1.281 35.667 1.529 34.851 L 3.527 28.191 C 2.608 26.054 2.394 23.681 2.915 21.414 L 6.222 7.037 L 6.146 7 C 3.605 5.73 2 3.133 2 0.292 L 2 0 Z M 15.377 4.015 C 14.653 3.783 13.862 3.893 13.229 4.315 L 9.493 6.805 C 9.387 6.876 9.311 6.985 9.283 7.11 L 7.31 15.689 L 11.8 20.179 C 12.313 20.691 13.022 20.956 13.745 20.904 C 14.468 20.852 15.132 20.49 15.567 19.91 L 19.25 15 L 25.648 15 C 25.308 14.032 25.1 13.023 25.028 12 L 14 12 L 14 9 L 25 9 L 25 8.919 C 25 7.832 24.297 6.869 23.262 6.538 Z M 27.231 18 L 20.75 18 L 17.967 21.71 C 17.01 22.986 15.548 23.783 13.957 23.897 C 12.367 24.01 10.806 23.427 9.678 22.3 L 6.517 19.138 L 5.839 22.086 C 5.374 24.106 5.718 26.228 6.796 27.999 L 14 27.999 C 17.34 27.999 19.086 28.865 20.67 29.657 L 20.693 29.668 C 22.099 30.371 23.353 30.998 26 30.998 L 39.648 30.998 C 40.394 30.998 41 30.393 41 29.646 C 41 27.033 39.202 24.764 36.659 24.166 L 35.54 23.902 C 34.083 23.559 32.721 22.896 31.552 21.961 L 30.779 21.343 L 25.061 27.061 L 22.939 24.939 L 28.462 19.417 C 28.012 18.977 27.6 18.502 27.232 18 Z M 4.402 35.713 C 4.311 36.016 4.369 36.344 4.558 36.597 C 4.746 36.851 5.044 37 5.36 37 L 39.526 37 C 39.888 37 40.222 36.804 40.399 36.488 C 40.576 36.172 40.568 35.785 40.378 35.476 L 39.468 33.999 L 26 33.999 C 22.66 33.999 20.914 33.133 19.33 32.34 L 19.307 32.33 C 17.901 31.626 16.646 30.999 14 30.999 L 6 30.999 C 5.939 30.999 5.879 30.995 5.82 30.989 Z M 81.5 8 L 81.5 8.195 C 81.5 9.126 81.972 9.994 82.753 10.501 L 85.745 8.625 C 86.758 7.99 88.004 7.853 89.131 8.251 L 94.389 10.11 C 95.953 10.664 96.999 12.143 96.999 13.802 L 96.999 14 L 98 14 L 98 16.5 L 97.127 16.5 C 97.322 17.387 97.737 18.212 98.335 18.897 L 99.116 18.117 L 100.884 19.884 L 100.25 20.518 L 100.589 20.783 C 101.13 21.207 101.758 21.505 102.428 21.657 L 103.235 21.839 C 106.022 22.47 108 24.947 108 27.804 C 108.001 28.789 107.546 29.72 106.769 30.325 C 107.085 30.978 107.129 31.68 106.96 32.318 C 108.659 33.098 109.445 35.075 108.745 36.808 C 108.046 38.541 106.108 39.419 104.344 38.803 C 102.58 38.186 101.612 36.291 102.145 34.5 L 100.855 34.5 C 101.281 35.933 100.75 37.478 99.533 38.346 C 98.317 39.214 96.683 39.214 95.467 38.346 C 94.25 37.478 93.719 35.933 94.145 34.5 L 92.855 34.5 C 93.281 35.933 92.75 37.478 91.533 38.346 C 90.317 39.214 88.683 39.214 87.467 38.346 C 86.25 37.478 85.719 35.933 86.145 34.5 L 84.855 34.5 C 85.343 36.14 84.575 37.892 83.038 38.643 C 81.501 39.395 79.646 38.925 78.652 37.533 C 77.658 36.14 77.816 34.234 79.026 33.024 C 78.615 32.306 78.531 31.445 78.796 30.661 L 79.868 27.444 C 79.025 25.758 78.797 23.83 79.223 21.994 L 81.405 12.607 C 79.906 11.64 79 9.979 79 8.195 L 79 8 Z M 88.298 10.608 C 87.89 10.464 87.439 10.513 87.073 10.743 L 83.978 12.683 C 83.96 12.695 83.947 12.714 83.942 12.735 L 82.68 18.163 L 86.043 21.525 C 86.653 22.135 87.661 22.063 88.178 21.374 L 90.708 18 L 94.962 18 C 94.788 17.513 94.662 17.011 94.586 16.5 L 87 16.5 L 87 14 L 94.5 14 L 94.5 13.802 C 94.5 13.202 94.121 12.667 93.555 12.467 L 88.298 10.607 Z M 96.417 20.5 L 91.958 20.5 L 90.178 22.873 C 89.497 23.781 88.455 24.349 87.322 24.43 C 86.19 24.511 85.078 24.096 84.275 23.293 L 82.014 21.031 L 81.658 22.56 C 81.348 23.895 81.539 25.297 82.195 26.5 L 87.39 26.5 C 89.69 26.5 90.905 27.095 91.986 27.63 L 92.005 27.64 C 92.936 28.1 93.745 28.5 95.473 28.5 L 104.804 28.5 C 105.188 28.5 105.5 28.188 105.5 27.804 C 105.5 26.114 104.33 24.651 102.683 24.278 L 101.876 24.095 C 100.846 23.862 99.881 23.403 99.049 22.752 L 98.469 22.299 L 94.884 25.884 L 93.116 24.116 L 96.565 20.667 C 96.515 20.612 96.465 20.557 96.417 20.5 Z M 81.167 31.452 C 81.077 31.722 81.278 32 81.562 32 L 104.136 32 C 104.469 32 104.667 31.63 104.482 31.352 L 104.248 31 L 95.473 31 C 93.172 31 91.958 30.405 90.877 29.87 L 90.857 29.861 C 89.927 29.4 89.118 29.001 87.39 29.001 L 81.984 29.001 L 81.167 31.451 Z M 144 12 L 144 12.146 C 144 12.838 144.358 13.476 144.936 13.84 L 146.631 12.71 C 147.401 12.197 148.366 12.067 149.244 12.36 L 152.949 13.595 C 154.021 13.952 154.801 14.882 154.967 16 L 156 16 L 156 18 L 155.031 18 C 155.145 18.901 155.563 19.737 156.215 20.37 L 156.793 19.793 L 158.207 21.207 L 157.808 21.606 L 157.922 21.691 C 158.263 21.947 158.651 22.131 159.064 22.235 L 159.677 22.388 C 161.63 22.876 163 24.631 163 26.644 C 163 27.264 162.76 27.829 162.368 28.25 L 162.536 28.502 C 162.935 29.1 163.003 29.78 162.825 30.38 C 163.898 31.051 164.301 32.418 163.762 33.564 C 163.223 34.709 161.913 35.271 160.712 34.872 C 159.511 34.474 158.797 33.24 159.05 32 L 157.95 32 C 158.152 32.993 157.734 34.01 156.892 34.574 C 156.05 35.139 154.95 35.139 154.108 34.574 C 153.266 34.01 152.848 32.993 153.05 32 L 151.95 32 C 152.152 32.993 151.734 34.01 150.892 34.574 C 150.05 35.139 148.95 35.139 148.108 34.574 C 147.266 34.01 146.848 32.993 147.05 32 L 145.95 32 C 146.188 33.167 145.569 34.34 144.471 34.803 C 143.373 35.266 142.101 34.889 141.432 33.903 C 140.763 32.918 140.882 31.597 141.717 30.747 C 141.452 30.216 141.41 29.6 141.6 29.038 L 142.52 26.278 C 142.058 25.056 141.967 23.724 142.26 22.451 L 143.854 15.521 C 142.7 14.787 142 13.514 142 12.146 L 142 12 Z M 148.612 14.257 C 148.319 14.159 147.998 14.203 147.741 14.374 L 145.885 15.611 L 144.977 19.562 L 147.077 21.662 C 147.282 21.867 147.566 21.973 147.855 21.952 C 148.144 21.932 148.41 21.787 148.584 21.555 L 150.5 19 L 153.191 19 C 153.106 18.672 153.049 18.338 153.021 18 L 148 18 L 148 16 L 152.897 16 C 152.779 15.76 152.57 15.576 152.316 15.492 Z M 154.127 21 L 151.5 21 L 150.184 22.755 C 149.662 23.451 148.864 23.886 147.996 23.948 C 147.129 24.01 146.277 23.692 145.662 23.077 L 144.448 21.862 L 144.209 22.899 C 143.969 23.944 144.1 25.04 144.578 25.999 L 148 25.999 C 149.651 25.999 150.516 26.284 151.316 26.551 L 151.333 26.556 C 152.027 26.788 152.662 26.999 154 26.999 L 160.645 26.999 C 160.841 26.999 161 26.84 161 26.644 C 161 25.549 160.254 24.594 159.191 24.328 L 158.579 24.175 C 157.907 24.007 157.276 23.706 156.722 23.291 L 156.38 23.034 L 153.707 25.707 L 152.293 24.293 L 154.801 21.785 C 154.554 21.543 154.329 21.281 154.127 21 Z M 143.497 29.67 C 143.471 29.746 143.484 29.83 143.531 29.896 C 143.578 29.961 143.653 30 143.734 30 L 160.664 30 C 160.756 30 160.841 29.949 160.885 29.868 C 160.928 29.786 160.923 29.688 160.872 29.611 L 160.464 28.999 L 154 28.999 C 152.349 28.999 151.484 28.715 150.684 28.449 L 150.667 28.442 C 149.973 28.212 149.338 27.999 148 27.999 L 144.054 27.999 L 143.497 29.671 Z M 197.25 16 L 197.25 16.08 C 197.25 16.44 197.391 16.779 197.631 17.03 L 198.687 16.334 C 199.187 16.004 199.81 15.921 200.379 16.109 L 202.892 16.938 C 203.663 17.192 204.197 17.897 204.234 18.708 L 205 18.708 L 205 19.958 L 204.277 19.958 C 204.387 20.586 204.717 21.158 205.212 21.571 L 205.558 21.225 L 206.442 22.109 L 206.225 22.326 C 206.485 22.503 206.777 22.629 207.086 22.696 L 207.684 22.826 C 209.036 23.12 210 24.316 210 25.7 C 210 26.17 209.791 26.592 209.46 26.876 L 209.531 26.984 C 209.855 27.469 209.842 28.037 209.602 28.484 C 210.079 29 210.133 29.778 209.733 30.356 C 209.332 30.934 208.585 31.156 207.934 30.891 C 207.283 30.625 206.904 29.944 207.021 29.251 L 205.979 29.251 C 206.078 29.839 205.82 30.43 205.321 30.756 C 204.822 31.083 204.178 31.083 203.679 30.756 C 203.18 30.43 202.922 29.839 203.021 29.251 L 201.979 29.251 C 202.078 29.839 201.82 30.43 201.321 30.756 C 200.822 31.083 200.178 31.083 199.679 30.756 C 199.18 30.43 198.922 29.839 199.021 29.251 L 197.979 29.251 C 198.097 29.946 197.714 30.63 197.06 30.893 C 196.406 31.156 195.657 30.928 195.26 30.345 C 194.863 29.763 194.926 28.982 195.411 28.47 C 195.216 28.102 195.189 27.669 195.337 27.28 L 196.008 25.49 C 195.548 24.705 195.414 23.771 195.636 22.888 L 196.858 18.022 C 196.312 17.525 196 16.821 196 16.082 L 196 16 Z M 199.987 17.296 C 199.781 17.228 199.556 17.258 199.375 17.377 L 198.11 18.212 C 198.101 18.218 198.095 18.227 198.092 18.237 L 197.42 20.913 L 197.442 20.891 L 199.022 22.471 C 199.167 22.616 199.368 22.691 199.573 22.676 C 199.778 22.662 199.966 22.559 200.089 22.395 L 201.354 20.708 L 203.179 20.708 C 203.1 20.464 203.045 20.213 203.014 19.958 L 199.667 19.958 L 199.667 18.708 L 202.981 18.708 C 202.946 18.437 202.759 18.21 202.5 18.125 L 199.987 17.295 Z M 203.85 21.958 L 201.979 21.958 L 201.089 23.145 C 200.748 23.599 200.228 23.883 199.661 23.923 C 199.095 23.964 198.539 23.756 198.138 23.355 L 197.074 22.291 L 196.848 23.191 C 196.691 23.813 196.812 24.473 197.178 25 L 199.57 25 C 200.72 25 201.327 25.297 201.868 25.565 L 201.877 25.57 C 202.343 25.8 202.747 26 203.611 26 L 208.449 26 C 208.615 26 208.749 25.866 208.75 25.7 C 208.75 24.905 208.196 24.217 207.419 24.048 L 206.821 23.918 C 206.307 23.806 205.823 23.587 205.401 23.273 L 205.33 23.221 L 203.442 25.109 L 202.558 24.225 L 204.325 22.457 C 204.153 22.305 203.994 22.138 203.85 21.958 Z M 196.507 27.718 C 196.483 27.782 196.492 27.854 196.531 27.91 C 196.57 27.967 196.635 28 196.703 28 L 208.318 28 C 208.395 28 208.466 27.958 208.502 27.89 C 208.538 27.822 208.534 27.74 208.491 27.676 L 208.207 27.25 L 203.611 27.25 C 202.461 27.25 201.854 26.953 201.313 26.685 L 201.304 26.68 C 200.838 26.45 200.434 26.25 199.57 26.25 L 197.058 26.25 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:8902556385,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ewok4i\",\"data-framer-name\":\"rower\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17s5guu\",\"data-framer-name\":\"Group 23\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 25 8 L 25 10.108 L 31.078 14.783 C 32.938 12.994 35.419 11.996 38 12 C 43.523 12 48 16.477 48 22 C 48.002 25.547 46.124 28.829 43.065 30.624 L 45.615 37 L 48 37 L 48 40 L 40 40 L 40 37 L 42.384 37 L 40.28 31.739 C 39.548 31.909 38.784 32 38 32 C 35.42 32.004 32.939 31.006 31.079 29.218 L 25.915 33.19 C 25.552 33.469 25.081 33.567 24.636 33.456 L 8.633 29.456 L 5.615 37 L 8 37 L 8 40 L 0 40 L 0 37 L 2.384 37 L 5.696 28.72 L 0.636 27.456 L 1.364 24.546 L 6.82 25.91 L 7.945 23.098 L 4.587 22.258 L 5.315 19.348 L 15.197 21.819 L 14.47 24.729 L 10.882 23.833 L 9.758 26.644 L 24.66 30.37 L 29.248 26.841 C 28.427 25.36 27.997 23.694 28 22 C 28 20.244 28.453 18.594 29.247 17.16 L 25 13.893 L 25 16 L 22 16 L 22 8 Z M 41.932 27.792 C 44.889 25.784 45.859 21.872 44.181 18.716 C 42.504 15.56 38.719 14.174 35.4 15.501 C 32.082 16.829 30.296 20.443 31.259 23.885 C 32.221 27.327 35.621 29.492 39.147 28.906 L 36.607 22.557 L 39.393 21.443 L 41.933 27.792 Z M 95.5 13.333 L 95.5 15.064 L 99.03 17.78 C 100.831 16.077 103.444 15.546 105.767 16.412 C 108.09 17.278 109.718 19.39 109.964 21.857 C 110.21 24.324 109.032 26.716 106.926 28.024 L 108.433 32 L 110 32 L 110 34.5 L 104 34.5 L 104 32 L 105.759 32 L 104.589 28.91 C 104.235 28.969 103.871 29 103.5 29 C 101.93 29.002 100.412 28.433 99.23 27.4 L 95.429 30.325 C 95.127 30.558 94.734 30.639 94.364 30.547 L 83.906 27.932 L 82.28 32 L 84 32 L 84 34.5 L 78 34.5 L 78 32 L 79.587 32 L 81.459 27.32 L 78.364 26.547 L 78.97 24.121 L 82.396 24.978 L 82.958 23.572 L 80.998 23.082 L 81.604 20.656 L 88.192 22.303 L 87.586 24.729 L 85.406 24.184 L 84.843 25.59 L 94.383 27.975 L 97.695 25.427 C 97.237 24.519 96.999 23.517 97 22.5 C 97 21.543 97.207 20.635 97.578 19.817 L 95.5 18.218 L 95.5 18.667 L 93 18.667 L 93 13.333 Z M 106.014 25.611 C 107.542 24.376 107.947 22.214 106.97 20.51 C 105.992 18.805 103.921 18.063 102.084 18.759 C 100.246 19.454 99.186 21.382 99.582 23.306 C 99.978 25.231 101.713 26.583 103.676 26.496 L 102.331 22.942 L 104.669 22.058 Z M 153 21 L 153 19.647 L 154.506 20.805 C 154.172 21.488 153.999 22.239 154 23 C 154 23.788 154.182 24.533 154.507 25.195 L 152.274 26.913 L 145.217 25.149 L 145.592 24.212 L 147.174 24.607 L 147.659 22.667 L 142.718 21.432 L 142.233 23.372 L 143.634 23.722 L 143.259 24.659 L 140.743 24.03 L 140.258 25.97 L 142.509 26.534 L 141.123 30 L 140 30 L 140 32 L 144 32 L 144 30 L 143.277 30 L 144.468 27.023 L 152.258 28.971 C 152.554 29.045 152.868 28.979 153.11 28.793 L 155.727 26.78 C 156.87 27.773 158.402 28.193 159.891 27.92 L 160.723 30 L 160 30 L 160 32 L 164 32 L 164 30 L 162.877 30 L 161.748 27.178 C 163.304 26.152 164.16 24.346 163.97 22.492 C 163.779 20.637 162.572 19.043 160.84 18.356 C 159.107 17.669 157.136 18.002 155.726 19.221 L 153 17.123 L 153 16 L 151 16 L 151 21 Z M 160.979 25.255 L 159.928 22.629 L 158.071 23.371 L 159.122 25.998 C 157.662 26.058 156.372 25.057 156.066 23.628 C 155.761 22.199 156.529 20.758 157.885 20.215 C 159.242 19.672 160.792 20.186 161.557 21.431 C 162.321 22.676 162.077 24.291 160.979 25.255 Z M 202.25 18 L 202.25 19.278 L 204.286 20.789 C 205.283 19.978 206.644 19.778 207.831 20.269 C 209.019 20.76 209.842 21.862 209.976 23.14 C 210.11 24.418 209.532 25.666 208.472 26.392 L 209.076 27.75 L 210 27.75 L 210 29 L 207 29 L 207 27.75 L 207.708 27.75 L 207.33 26.901 C 206.192 27.177 204.991 26.867 204.129 26.074 L 202.714 27.162 C 202.563 27.278 202.367 27.319 202.182 27.273 L 196.953 25.966 L 196.24 27.75 L 197 27.75 L 197 29 L 194 29 L 194 27.75 L 194.893 27.75 L 195.729 25.66 L 194.182 25.273 L 194.485 24.061 L 196.198 24.489 L 196.479 23.786 L 195.499 23.541 L 195.802 22.328 L 199.096 23.152 L 198.793 24.364 L 197.703 24.092 L 197.422 24.795 L 202.192 25.987 L 203.375 25.077 C 203.128 24.588 202.999 24.048 203 23.5 C 203 22.86 203.172 22.259 203.473 21.742 L 202.25 20.835 L 202.25 22 L 201 22 L 201 18 Z M 207.95 25.22 C 208.807 24.497 209.001 23.254 208.405 22.305 C 207.81 21.356 206.607 20.989 205.583 21.445 C 204.559 21.901 204.028 23.041 204.336 24.119 C 204.644 25.196 205.698 25.883 206.808 25.729 L 205.929 23.754 L 207.071 23.246 L 207.95 25.221 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:12516720236,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3mckiq\",\"data-framer-name\":\"wreath\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4rg30d\",\"data-framer-name\":\"Group 1\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 210 48\"><path d=\"M 13.964 6.194 L 14.064 5.934 C 14.636 4.447 16.012 3.422 17.6 3.3 L 19.922 3.121 C 20.264 3.095 20.596 3.246 20.801 3.521 C 21.006 3.796 21.055 4.157 20.932 4.477 L 19.876 7.221 C 19.341 8.613 18.053 9.573 16.566 9.687 C 16.192 9.717 15.815 9.665 15.463 9.534 C 13.912 10.635 12.562 11.994 11.471 13.552 L 11.618 13.478 C 13.308 12.635 15.297 12.637 16.985 13.484 L 18.212 14.1 C 18.551 14.27 18.764 14.616 18.764 14.995 C 18.764 15.374 18.549 15.72 18.21 15.889 L 16.982 16.501 C 15.292 17.344 13.303 17.342 11.615 16.495 L 10.165 15.768 C 9.036 18.081 8.466 20.627 8.501 23.2 C 9.357 21.563 10.92 20.413 12.737 20.08 L 15.191 19.632 C 15.564 19.564 15.943 19.712 16.17 20.015 C 16.398 20.318 16.435 20.723 16.266 21.062 L 15.153 23.295 C 14.31 24.985 12.721 26.18 10.863 26.52 L 8.863 26.886 C 9.213 28.58 9.799 29.93 10.536 31.046 C 11.259 32.142 12.158 33.058 13.206 33.87 C 12.68 32.257 12.861 30.497 13.705 29.025 L 15.139 26.522 C 15.317 26.211 15.649 26.019 16.008 26.02 C 16.366 26.02 16.697 26.212 16.875 26.524 L 18.303 29.029 C 19.355 30.875 19.352 33.14 18.295 34.983 L 17.469 36.425 C 18.235 36.805 19.017 37.169 19.823 37.545 C 20.768 37.985 21.746 38.442 22.773 38.957 C 23.181 39.161 23.591 39.372 24 39.592 C 24.41 39.372 24.819 39.162 25.226 38.957 C 26.253 38.442 27.232 37.986 28.176 37.545 L 28.177 37.545 C 28.984 37.169 29.765 36.805 30.531 36.425 L 29.705 34.983 C 28.648 33.14 28.645 30.875 29.697 29.029 L 31.124 26.524 C 31.302 26.212 31.633 26.019 31.992 26.019 C 32.351 26.018 32.683 26.21 32.861 26.522 L 34.295 29.025 C 35.139 30.497 35.319 32.257 34.793 33.87 C 35.842 33.058 36.741 32.142 37.464 31.046 C 38.201 29.93 38.786 28.58 39.137 26.886 L 37.137 26.52 C 35.279 26.18 33.69 24.985 32.847 23.295 L 31.733 21.061 C 31.564 20.722 31.601 20.317 31.829 20.014 C 32.056 19.711 32.435 19.563 32.808 19.631 L 35.263 20.081 C 37.08 20.413 38.643 21.564 39.5 23.2 L 39.501 23 C 39.505 20.494 38.935 18.019 37.836 15.767 L 36.386 16.494 C 34.698 17.341 32.709 17.343 31.019 16.5 L 29.791 15.888 C 29.451 15.719 29.236 15.373 29.236 14.994 C 29.236 14.614 29.45 14.268 29.789 14.098 L 31.016 13.483 C 32.704 12.637 34.692 12.634 36.382 13.477 L 36.53 13.551 C 35.439 11.993 34.089 10.634 32.538 9.533 C 32.186 9.664 31.809 9.716 31.435 9.686 C 29.949 9.572 28.66 8.612 28.125 7.221 L 27.069 4.476 C 26.946 4.156 26.995 3.795 27.2 3.52 C 27.405 3.245 27.737 3.094 28.079 3.12 L 30.4 3.3 C 31.988 3.422 33.364 4.447 33.936 5.934 L 34.036 6.194 C 34.145 6.477 34.201 6.763 34.209 7.042 C 35.634 8.044 36.918 9.232 38.029 10.574 C 37.707 9.209 37.873 7.773 38.499 6.518 L 39.111 5.29 C 39.28 4.951 39.626 4.736 40.005 4.736 C 40.384 4.736 40.73 4.949 40.9 5.288 L 41.515 6.515 C 42.362 8.203 42.364 10.192 41.521 11.882 L 40.385 14.16 C 41.505 16.358 42.195 18.749 42.418 21.205 C 42.824 20.17 43.509 19.269 44.398 18.601 L 46.393 17.101 C 46.696 16.873 47.101 16.836 47.44 17.005 C 47.779 17.174 47.994 17.52 47.994 17.899 L 47.996 19.394 C 47.998 21.283 47.111 23.063 45.601 24.198 L 42.213 26.746 C 41.825 29.104 41.054 31.053 39.968 32.699 C 39.42 33.527 38.785 34.294 38.074 34.987 C 39.398 34.779 40.774 35.017 41.974 35.701 L 44.48 37.128 C 44.792 37.306 44.985 37.637 44.985 37.996 C 44.986 38.355 44.794 38.687 44.482 38.865 L 41.979 40.299 C 40.136 41.355 37.871 41.358 36.025 40.306 L 32.952 38.556 C 31.772 39.177 30.507 39.769 29.265 40.35 C 28.498 40.708 27.739 41.063 27.015 41.418 C 28.104 42.165 29.124 43.009 30.061 43.94 L 27.939 46.06 C 26.75 44.872 25.42 43.9 24 43.043 C 22.58 43.9 21.25 44.873 20.06 46.062 L 17.94 43.941 C 18.877 43.01 19.896 42.166 20.985 41.419 C 20.239 41.056 19.489 40.7 18.736 40.351 C 17.494 39.771 16.229 39.178 15.048 38.556 L 11.975 40.307 C 10.129 41.359 7.864 41.357 6.02 40.3 L 3.517 38.866 C 3.205 38.688 3.013 38.356 3.014 37.997 C 3.014 37.638 3.207 37.307 3.519 37.129 L 6.024 35.702 C 7.205 35.029 8.581 34.777 9.924 34.988 C 9.214 34.295 8.579 33.528 8.031 32.7 C 6.945 31.054 6.174 29.105 5.786 26.747 L 2.397 24.199 C 0.888 23.064 0.001 21.285 0.003 19.396 L 0.005 17.9 C 0.006 17.522 0.22 17.176 0.559 17.007 C 0.897 16.838 1.302 16.875 1.605 17.102 L 3.601 18.602 C 4.49 19.27 5.175 20.171 5.581 21.206 C 5.811 18.689 6.519 16.31 7.614 14.161 L 6.478 11.883 C 5.635 10.193 5.637 8.204 6.484 6.516 L 7.1 5.288 C 7.27 4.949 7.616 4.736 7.995 4.736 C 8.374 4.736 8.72 4.951 8.889 5.29 L 9.502 6.518 C 10.128 7.773 10.294 9.209 9.972 10.574 C 11.082 9.232 12.367 8.044 13.791 7.042 C 13.799 6.762 13.855 6.477 13.964 6.194 Z M 87.31 12.13 L 87.376 11.956 C 87.757 10.965 88.675 10.281 89.734 10.2 L 91.281 10.08 C 91.509 10.062 91.731 10.163 91.868 10.347 C 92.004 10.53 92.037 10.771 91.955 10.985 L 91.251 12.815 C 90.894 13.743 90.035 14.382 89.044 14.458 C 88.904 14.469 88.763 14.463 88.625 14.44 C 87.665 15.095 86.815 15.9 86.113 16.821 C 87.209 16.33 88.467 16.358 89.54 16.896 L 90.558 17.406 C 90.784 17.519 90.927 17.75 90.927 18.003 C 90.927 18.256 90.784 18.487 90.557 18.6 L 89.537 19.108 C 88.41 19.67 87.085 19.668 85.96 19.104 L 85.001 18.623 C 84.33 19.998 83.962 21.5 83.921 23.029 C 84.521 22.113 85.47 21.484 86.547 21.287 L 88.183 20.987 C 88.432 20.941 88.685 21.04 88.836 21.242 C 88.988 21.444 89.013 21.715 88.9 21.941 L 88.158 23.43 C 87.596 24.557 86.537 25.353 85.298 25.58 L 84.138 25.792 C 84.363 26.932 84.749 27.828 85.232 28.56 C 85.648 29.182 86.155 29.737 86.737 30.207 C 86.49 29.202 86.643 28.14 87.163 27.245 L 88.178 25.495 C 88.298 25.289 88.518 25.163 88.756 25.164 C 88.993 25.164 89.213 25.291 89.332 25.497 L 90.342 27.247 C 91.058 28.487 91.057 30.016 90.338 31.255 L 89.845 32.103 C 90.321 32.337 90.805 32.563 91.307 32.797 C 91.937 33.091 92.595 33.397 93.295 33.747 C 93.529 33.865 93.765 33.987 94 34.111 C 94.236 33.986 94.471 33.865 94.706 33.748 C 95.406 33.397 96.062 33.091 96.693 32.797 C 97.194 32.563 97.679 32.337 98.155 32.103 L 97.663 31.255 C 96.944 30.016 96.942 28.488 97.658 27.247 L 98.668 25.497 C 98.787 25.291 99.007 25.164 99.245 25.164 C 99.483 25.164 99.703 25.29 99.822 25.496 L 100.837 27.245 C 101.357 28.14 101.51 29.202 101.263 30.207 C 101.845 29.737 102.352 29.182 102.768 28.56 C 103.251 27.828 103.637 26.932 103.863 25.792 L 102.702 25.58 C 101.463 25.353 100.404 24.557 99.842 23.43 L 99.1 21.94 C 98.988 21.714 99.013 21.444 99.164 21.242 C 99.316 21.04 99.569 20.942 99.817 20.987 L 101.453 21.287 C 102.53 21.484 103.479 22.113 104.079 23.029 C 104.038 21.5 103.67 19.998 102.999 18.623 L 102.04 19.103 C 100.915 19.667 99.59 19.669 98.463 19.108 L 97.443 18.599 C 97.218 18.486 97.075 18.255 97.075 18.003 C 97.075 17.751 97.217 17.52 97.442 17.407 L 98.46 16.897 C 99.533 16.359 100.791 16.331 101.887 16.821 C 101.183 15.898 100.335 15.094 99.375 14.441 C 99.237 14.463 99.096 14.469 98.956 14.458 C 97.965 14.382 97.106 13.742 96.749 12.814 L 96.046 10.984 C 95.965 10.771 95.998 10.531 96.134 10.348 C 96.271 10.164 96.491 10.064 96.719 10.081 L 98.267 10.2 C 99.326 10.281 100.243 10.965 100.624 11.956 L 100.691 12.129 C 100.72 12.206 100.744 12.283 100.762 12.36 C 101.565 12.905 102.306 13.536 102.972 14.242 C 102.973 13.632 103.113 13.022 103.393 12.462 L 103.901 11.443 C 104.013 11.217 104.244 11.074 104.497 11.074 C 104.749 11.074 104.98 11.216 105.093 11.442 L 105.604 12.46 C 106.168 13.586 106.17 14.911 105.608 16.038 L 105.054 17.148 C 105.796 18.55 106.278 20.075 106.477 21.649 C 106.745 21.15 107.115 20.714 107.564 20.369 L 108.923 19.324 C 109.124 19.17 109.395 19.143 109.623 19.255 C 109.851 19.366 109.995 19.597 109.996 19.851 L 109.998 20.956 C 109.999 22.2 109.422 23.374 108.436 24.132 L 106.418 25.682 C 106.166 27.37 105.629 28.762 104.854 29.937 C 104.576 30.359 104.264 30.757 103.921 31.128 C 104.566 31.155 105.194 31.337 105.753 31.66 L 107.503 32.67 C 107.71 32.789 107.838 33.009 107.838 33.247 C 107.838 33.486 107.711 33.706 107.504 33.825 L 105.756 34.84 C 104.517 35.559 102.988 35.561 101.747 34.845 L 100.12 33.905 C 99.315 34.331 98.446 34.738 97.6 35.135 C 97.232 35.305 96.866 35.478 96.5 35.653 C 97.093 36.087 97.67 36.569 98.217 37.116 L 96.45 38.884 C 95.71 38.144 94.885 37.531 94 36.987 C 93.115 37.531 92.29 38.144 91.55 38.884 L 89.783 37.116 C 90.317 36.585 90.891 36.095 91.501 35.653 C 91.144 35.482 90.774 35.309 90.401 35.134 C 89.551 34.745 88.71 34.335 87.88 33.906 L 86.253 34.845 C 85.012 35.561 83.484 35.559 82.245 34.84 L 80.496 33.825 C 80.29 33.706 80.164 33.486 80.164 33.248 C 80.164 33.01 80.291 32.79 80.497 32.671 L 82.247 31.661 C 82.806 31.338 83.434 31.155 84.079 31.128 C 83.737 30.757 83.425 30.358 83.146 29.937 C 82.371 28.763 81.835 27.37 81.582 25.683 L 79.565 24.132 C 78.579 23.374 78.001 22.2 78.003 20.956 L 78.004 19.851 C 78.005 19.597 78.149 19.366 78.377 19.255 C 78.605 19.143 78.876 19.17 79.077 19.324 L 80.436 20.368 C 80.891 20.718 81.259 21.156 81.523 21.649 C 81.722 20.076 82.204 18.551 82.946 17.149 L 82.393 16.038 C 81.831 14.911 81.833 13.586 82.397 12.46 L 82.907 11.442 C 83.02 11.216 83.251 11.074 83.504 11.074 C 83.756 11.074 83.987 11.217 84.1 11.443 L 84.608 12.463 C 84.888 13.023 85.028 13.633 85.028 14.242 C 85.694 13.536 86.435 12.905 87.238 12.36 C 87.256 12.282 87.28 12.205 87.309 12.13 Z M 146.982 15.097 L 147.032 14.967 C 147.318 14.224 148.006 13.711 148.8 13.65 L 149.961 13.56 C 150.132 13.547 150.298 13.622 150.401 13.76 C 150.503 13.898 150.528 14.079 150.466 14.239 L 149.938 15.611 C 149.67 16.307 149.026 16.787 148.283 16.844 C 148.143 16.854 148.009 16.844 147.883 16.814 C 147.148 17.322 146.502 17.948 145.969 18.665 C 146.78 18.318 147.703 18.346 148.492 18.742 L 149.106 19.05 C 149.275 19.135 149.382 19.308 149.381 19.497 C 149.381 19.687 149.274 19.859 149.105 19.944 L 148.491 20.251 C 147.646 20.672 146.651 20.671 145.807 20.248 L 145.194 19.94 C 144.67 21.013 144.391 22.189 144.376 23.383 C 144.824 22.677 145.546 22.191 146.368 22.04 L 147.596 21.816 C 147.782 21.782 147.972 21.856 148.085 22.008 C 148.199 22.159 148.217 22.362 148.133 22.531 L 147.577 23.647 C 147.156 24.492 146.361 25.09 145.432 25.26 L 144.555 25.42 C 144.727 26.252 145.014 26.911 145.372 27.454 C 145.693 27.941 146.087 28.356 146.544 28.728 C 146.358 27.978 146.468 27.184 146.852 26.513 L 147.57 25.261 C 147.659 25.105 147.825 25.01 148.004 25.01 C 148.184 25.01 148.349 25.106 148.438 25.262 L 149.151 26.515 C 149.677 27.438 149.676 28.569 149.148 29.491 L 148.797 30.104 C 149.174 30.291 149.559 30.47 149.957 30.656 L 149.958 30.656 C 150.431 30.876 150.922 31.106 151.443 31.366 C 151.628 31.459 151.814 31.555 152 31.654 C 152.186 31.555 152.372 31.459 152.557 31.366 C 153.078 31.106 153.569 30.876 154.041 30.656 L 154.042 30.656 C 154.441 30.47 154.826 30.291 155.203 30.104 L 154.852 29.491 C 154.324 28.569 154.323 27.438 154.849 26.515 L 155.562 25.262 C 155.651 25.106 155.817 25.01 155.996 25.01 C 156.175 25.01 156.341 25.106 156.43 25.262 L 157.148 26.512 C 157.537 27.192 157.64 27.988 157.456 28.728 C 157.91 28.366 158.305 27.936 158.628 27.454 C 158.986 26.911 159.273 26.252 159.445 25.42 L 158.568 25.26 C 157.639 25.09 156.844 24.492 156.423 23.647 L 155.867 22.531 C 155.783 22.362 155.801 22.159 155.915 22.008 C 156.028 21.856 156.218 21.782 156.404 21.816 L 157.632 22.04 C 158.454 22.191 159.176 22.677 159.624 23.383 C 159.609 22.189 159.33 21.013 158.806 19.94 L 158.192 20.248 C 157.348 20.671 156.354 20.672 155.509 20.251 L 154.895 19.944 C 154.726 19.859 154.619 19.687 154.619 19.497 C 154.618 19.308 154.725 19.135 154.894 19.05 L 155.507 18.742 C 156.296 18.346 157.219 18.318 158.031 18.665 C 157.498 17.947 156.852 17.322 156.117 16.813 C 155.991 16.843 155.857 16.854 155.717 16.843 C 154.974 16.786 154.33 16.307 154.062 15.611 L 153.534 14.239 C 153.472 14.079 153.497 13.898 153.6 13.761 C 153.702 13.623 153.868 13.548 154.039 13.561 L 155.2 13.65 C 155.994 13.711 156.682 14.224 156.968 14.967 L 157.018 15.097 C 157.051 15.184 157.075 15.271 157.089 15.357 C 157.783 15.835 158.414 16.4 158.966 17.037 C 158.878 16.437 158.972 15.816 159.249 15.259 L 159.556 14.645 C 159.641 14.476 159.813 14.369 160.003 14.369 C 160.192 14.368 160.365 14.475 160.45 14.644 L 160.758 15.258 C 161.181 16.102 161.182 17.096 160.761 17.941 L 160.262 18.941 C 160.82 20.01 161.175 21.173 161.311 22.371 C 161.519 21.95 161.823 21.583 162.199 21.301 L 163.197 20.551 C 163.348 20.437 163.551 20.419 163.72 20.504 C 163.889 20.588 163.997 20.761 163.997 20.95 L 163.998 21.697 C 163.999 22.641 163.556 23.531 162.801 24.099 L 161.25 25.265 C 161.061 26.517 160.662 27.549 160.088 28.418 C 159.839 28.794 159.554 29.146 159.238 29.468 C 159.846 29.414 160.457 29.548 160.987 29.851 L 162.24 30.564 C 162.396 30.653 162.493 30.819 162.493 30.998 C 162.493 31.178 162.397 31.344 162.241 31.433 L 160.989 32.15 C 160.068 32.678 158.936 32.679 158.013 32.153 L 156.604 31.351 C 155.99 31.677 155.326 31.988 154.677 32.291 C 154.363 32.439 154.052 32.584 153.753 32.729 C 154.226 33.068 154.685 33.448 155.119 33.881 L 153.881 35.119 C 153.314 34.562 152.683 34.074 152 33.667 C 151.317 34.074 150.686 34.562 150.119 35.119 L 148.881 33.881 C 149.315 33.448 149.774 33.068 150.247 32.729 C 149.94 32.581 149.632 32.435 149.323 32.292 C 148.673 31.995 148.03 31.681 147.396 31.351 L 145.987 32.153 C 145.064 32.679 143.932 32.678 143.011 32.15 L 141.759 31.433 C 141.603 31.344 141.507 31.178 141.507 30.998 C 141.507 30.819 141.604 30.653 141.76 30.564 L 143.013 29.851 C 143.543 29.548 144.154 29.415 144.762 29.469 C 144.446 29.147 144.161 28.796 143.912 28.419 C 143.338 27.549 142.939 26.517 142.75 25.265 L 141.199 24.099 C 140.444 23.531 140.001 22.641 140.002 21.697 L 140.003 20.95 C 140.003 20.761 140.11 20.587 140.279 20.503 C 140.449 20.418 140.651 20.436 140.803 20.55 L 141.801 21.3 C 142.182 21.587 142.484 21.955 142.689 22.372 C 142.825 21.174 143.18 20.011 143.738 18.942 L 143.239 17.941 C 142.818 17.096 142.819 16.102 143.242 15.258 L 143.55 14.644 C 143.635 14.475 143.808 14.368 143.997 14.369 C 144.187 14.369 144.359 14.476 144.444 14.645 L 144.751 15.259 C 145.028 15.816 145.122 16.437 145.034 17.037 C 145.586 16.4 146.216 15.835 146.911 15.357 C 146.926 15.268 146.95 15.181 146.982 15.097 Z M 198.655 18.065 L 198.688 17.978 C 198.878 17.482 199.337 17.141 199.867 17.1 L 200.64 17.04 C 200.754 17.031 200.865 17.081 200.934 17.173 C 201.002 17.265 201.019 17.386 200.977 17.493 L 200.625 18.407 C 200.447 18.871 200.018 19.191 199.522 19.229 C 199.446 19.235 199.37 19.231 199.296 19.217 C 198.839 19.563 198.438 19.977 198.11 20.444 C 198.673 20.165 199.334 20.166 199.895 20.448 L 200.404 20.703 C 200.517 20.759 200.589 20.875 200.589 21.002 C 200.589 21.128 200.517 21.244 200.403 21.3 L 199.894 21.554 C 199.331 21.835 198.668 21.834 198.105 21.552 L 197.615 21.306 C 197.315 21.961 197.15 22.668 197.128 23.388 C 197.435 23.052 197.847 22.832 198.296 22.762 L 199.36 22.597 C 199.483 22.578 199.607 22.629 199.68 22.73 C 199.754 22.83 199.765 22.964 199.709 23.075 L 199.274 23.949 C 198.985 24.529 198.432 24.933 197.791 25.033 L 197.307 25.108 C 197.426 25.548 197.595 25.909 197.799 26.215 C 197.962 26.457 198.153 26.68 198.368 26.877 C 198.276 26.393 198.365 25.892 198.619 25.47 L 199.217 24.476 C 199.277 24.376 199.386 24.315 199.503 24.315 C 199.62 24.315 199.729 24.376 199.789 24.476 L 200.384 25.471 C 200.763 26.105 200.762 26.896 200.381 27.529 L 200.105 27.989 C 200.367 28.117 200.634 28.241 200.911 28.369 C 201.234 28.518 201.57 28.673 201.926 28.85 L 202 28.887 L 202.073 28.85 C 202.43 28.673 202.766 28.518 203.088 28.369 C 203.365 28.241 203.632 28.117 203.895 27.988 L 203.619 27.529 C 203.238 26.896 203.237 26.105 203.616 25.471 L 204.211 24.477 C 204.271 24.377 204.38 24.315 204.497 24.315 C 204.614 24.315 204.722 24.376 204.783 24.476 L 205.381 25.47 C 205.635 25.892 205.724 26.393 205.632 26.877 C 205.847 26.68 206.038 26.457 206.201 26.215 C 206.404 25.909 206.574 25.548 206.692 25.108 L 206.209 25.033 C 205.568 24.934 205.015 24.53 204.726 23.949 L 204.29 23.075 C 204.235 22.963 204.246 22.83 204.32 22.73 C 204.394 22.629 204.517 22.578 204.64 22.597 L 205.704 22.762 C 206.158 22.832 206.569 23.056 206.872 23.388 C 206.85 22.668 206.685 21.961 206.385 21.306 L 205.895 21.552 C 205.332 21.834 204.669 21.835 204.106 21.554 L 203.597 21.3 C 203.483 21.244 203.411 21.128 203.411 21.002 C 203.411 20.875 203.483 20.759 203.596 20.703 L 204.105 20.448 C 204.666 20.166 205.327 20.165 205.89 20.444 C 205.561 19.976 205.16 19.562 204.704 19.217 C 204.63 19.231 204.554 19.235 204.478 19.229 C 203.982 19.191 203.553 18.871 203.375 18.407 L 203.023 17.492 C 202.982 17.385 202.999 17.266 203.067 17.174 C 203.135 17.083 203.245 17.032 203.359 17.041 L 204.133 17.1 C 204.663 17.14 205.121 17.482 205.312 17.978 L 205.345 18.065 C 205.357 18.096 205.367 18.127 205.376 18.159 C 205.933 18.567 206.425 19.059 206.834 19.616 C 206.672 19.117 206.712 18.575 206.946 18.106 L 207.2 17.596 C 207.256 17.483 207.372 17.412 207.498 17.412 C 207.624 17.412 207.74 17.483 207.796 17.596 L 208.052 18.105 C 208.334 18.668 208.335 19.331 208.054 19.894 L 207.563 20.878 C 207.839 21.507 208.016 22.175 208.088 22.858 C 208.207 22.681 208.354 22.522 208.527 22.388 L 209.46 21.665 C 209.561 21.587 209.697 21.574 209.811 21.63 C 209.925 21.686 209.998 21.802 209.998 21.929 L 209.999 22.777 C 210 23.397 209.713 23.982 209.223 24.361 L 207.915 25.375 C 207.778 25.92 207.551 26.438 207.242 26.907 C 207.142 27.057 207.033 27.202 206.916 27.34 C 207.216 27.365 207.511 27.457 207.778 27.617 L 208.773 28.213 C 208.873 28.273 208.935 28.381 208.935 28.498 C 208.935 28.615 208.874 28.724 208.774 28.784 L 207.78 29.383 C 207.147 29.764 206.356 29.764 205.722 29.385 L 204.885 28.885 C 204.442 29.115 203.993 29.332 203.538 29.538 L 203.315 29.642 C 203.718 29.911 204.095 30.217 204.44 30.556 L 203.56 31.444 C 203.097 30.984 202.569 30.622 202 30.301 C 201.431 30.621 200.903 30.985 200.44 31.444 L 199.56 30.556 C 199.905 30.216 200.282 29.91 200.685 29.642 L 200.462 29.538 C 200.007 29.333 199.558 29.115 199.115 28.885 L 198.278 29.385 C 197.644 29.764 196.853 29.764 196.22 29.383 L 195.226 28.784 C 195.126 28.724 195.065 28.615 195.065 28.498 C 195.065 28.381 195.127 28.273 195.227 28.213 L 196.222 27.617 C 196.489 27.457 196.784 27.365 197.084 27.34 C 196.967 27.202 196.858 27.057 196.758 26.907 C 196.449 26.438 196.221 25.92 196.085 25.375 L 194.777 24.361 C 194.287 23.982 194 23.397 194.001 22.777 L 194.002 21.929 C 194.003 21.802 194.075 21.686 194.189 21.63 C 194.303 21.575 194.439 21.588 194.54 21.666 L 195.473 22.389 C 195.646 22.522 195.793 22.681 195.912 22.859 C 195.983 22.176 196.16 21.508 196.437 20.879 L 195.946 19.894 C 195.665 19.33 195.665 18.667 195.948 18.104 L 196.203 17.596 C 196.26 17.483 196.375 17.412 196.501 17.412 C 196.628 17.412 196.743 17.483 196.8 17.596 L 197.054 18.106 C 197.288 18.575 197.328 19.117 197.166 19.616 C 197.575 19.059 198.067 18.568 198.624 18.159 C 198.633 18.127 198.643 18.096 198.655 18.065 Z\" fill=\"rgb(17, 17, 17)\"></path></svg>',svgContentId:10137152481,withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8sw1qw\",\"data-framer-name\":\"Color Div\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151v9fg\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ktsout\",\"data-framer-name\":\"Vertical Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-put2uf\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Why they brought me on\"})}),className:\"framer-n3nyj9\",\"data-framer-name\":\"Why they brought me on\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Strava was in the works of rolling out some huge updates to their entire visual expression, including a new typeface, graphic elements, and a dark theme experience. Strava is primarily used as a mobile app, so for them iconography is a valuable brand piece and an essential part of their product experience. But their existing icon library needed an update. It had numerous visual issues and didn't properly represent the visual direction that Strava was headed. So the Strava design team brought me on board to completely redesign their icon library.\"})}),className:\"framer-151triy\",\"data-framer-name\":\"Netflix was combining their professional and customer-facing libraries into one, so it was an opportunity to re-evaluate the style and make changes. The edits were needed on 9 different sizes to support all their platforms, so they brought me on to get the job done in a short time-frame. The primary iconographer, Bonnie Kate Wolf, recommended me to the Netflix team.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13hxmft\",\"data-framer-name\":\"Horizontal Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rcxlr\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+410+0+0+0+0),pixelHeight:1748,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png\",srcSet:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=512 512w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+410+0+0+0+0),pixelHeight:1748,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png\",srcSet:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=512 512w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+426+0+0+0),pixelHeight:1748,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"796px\",src:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png\",srcSet:\"https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=512 512w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uVcMtiHk3nI5f8b224BAKLw14.png 1800w\"},className:\"framer-18ij14c\",\"data-framer-name\":\"Strava Old Icons\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"I mean, if you're gonna make icons for athletes, you oughta make 'em beefy.\"})}),className:\"framer-a93s32\",\"data-framer-name\":\"Pixel pushing is more than a job\u2026 it\u2019s a lifestyle\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fklic0\",\"data-framer-name\":\"Right Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"The original set\"})}),className:\"framer-1d5rvlx\",\"data-framer-name\":\"The First Pass\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Strava's personality is dynamic, energetic, and enthusiastic. But the original icon set didn't reflect those ideals. Many of the lines were intentionally separated at points referencing a \\\"one-line\\\" style, intending to reflect how athletes traversed their routes, but instead it made them feel incomplete and disjointed.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"The icons also had a sharp, chunky, square-like design that was at odds with Strava's community and positivity based ethos. In addition to those design choices, the icons also had imbalanced weights, with some icons feeling much heavier than others.\"})]}),className:\"framer-5wozfk\",\"data-framer-name\":\"Bonnie Kate had been working closely with the Netflix over the previous few months and had a long list of icons that needed edits. Some edits were minor, like increasing the icon slightly to fill a larger keyline, but some icons needed to be rescaled from a rectangular shape to a square shape, requiring a full redesign. I worked on one size at a time, using a color coding system to notate that changes were made. Here are some examples of how the icons were re-designed.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jd7wwx\",\"data-framer-name\":\"Horizontal Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mg88aq\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The design lead, Anton Schulz, wanted me to relate to visual motifs around their key words, like \",/*#__PURE__*/_jsx(\"strong\",{children:\"brave, fierce, bold, passionate,\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"inspiring, grit,\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"celebration\"}),\". All of my future design decisions for the iconography were rooted in maximizing these key words.\"]})}),className:\"framer-g92jrg\",\"data-framer-name\":\"This initial step was about making changes to existing icons. In some cases, we actually needed to do complete redesigns on icons, such as these here.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b81o53\",\"data-framer-name\":\"Right Column\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+476+0+216+0+0),pixelHeight:417,pixelWidth:1081,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png\",srcSet:\"https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png 1081w\"},className:\"framer-1rfnbpn hidden-perpec hidden-giwqrm\",\"data-framer-name\":\"Reference Image Web\"}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+2045+0+200+0+0),pixelHeight:1677,pixelWidth:1080,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png\",srcSet:\"https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png?scale-down-to=1024 659w,https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png 1080w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+2045+0+200+0+0),pixelHeight:1677,pixelWidth:1080,sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png\",srcSet:\"https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png?scale-down-to=1024 659w,https://framerusercontent.com/images/WjYikedGhFcJ6BGFJcQ5c67sRRg.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:417,pixelWidth:1081,src:\"https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png\",srcSet:\"https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g37iZPWlvmoor1Tlwn62j8jlK7Y.png 1081w\"},className:\"framer-1kguehe hidden-67b9c6\",\"data-framer-name\":\"Reference Image Mobile\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"Fortunately, they didn't really expect me to make squiggly icons.\"})}),className:\"framer-1aeummd\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4vy3l\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mi8vp7\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"5 different style explorations\"})}),className:\"framer-1oo08xt\",\"data-framer-name\":\"Bringing in the macros\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The first step of the project was to test out some icon styles. This is where I really wanted to push boundaries and explore some unique visual motifs. I gave each of my styles a name so that they were easy to remember and compare: \",/*#__PURE__*/_jsx(\"strong\",{children:\"Achieve, Support, Endurance, Spirit, \"}),\"and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Flow. \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:'Each had specific rules that were used to influence their design, such as using rounded or square end caps or corners, or more intricate rules like matching the angle of the \"A\" from the Strava logo.'})]}),className:\"framer-1yykho4\",\"data-framer-name\":\"One of the challenges with this project was the sheer scale. Just in the default sizes, we were working with over 1900 individual icon assets. We needed to organize each category alphabetically, rename each icon with the correct file path (so they would always export to the same place), and unify the parts of each icon into a single path.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l0o7rf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+3763+0+690+0),pixelHeight:1062,pixelWidth:1600,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1440px), 1px)`,src:\"https://framerusercontent.com/images/HM2j0ipevXvI5M3JpDd7gx54.png\",srcSet:\"https://framerusercontent.com/images/HM2j0ipevXvI5M3JpDd7gx54.png?scale-down-to=512 512w,https://framerusercontent.com/images/HM2j0ipevXvI5M3JpDd7gx54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HM2j0ipevXvI5M3JpDd7gx54.png 1600w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+3763+0+690+0),pixelHeight:900,pixelWidth:1600,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px), 1px)`,src:\"https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png\",srcSet:\"https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png?scale-down-to=512 512w,https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+1261+0+706+0),pixelHeight:900,pixelWidth:1600,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px, 1px)`,src:\"https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png\",srcSet:\"https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png?scale-down-to=512 512w,https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vr2O8y0aeXPc5kcOEVrXJ3w9iko.png 1600w\"},className:\"framer-19ti8pd\",\"data-framer-name\":\"Summary\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14mtprt-container\",\"data-framer-name\":\"Style Carousel\",isModuleExternal:true,name:\"Style Carousel\",nodeId:\"rG0zuxeKD\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{arrowObject:{arrowFill:\"rgba(41, 58, 32, 0.8)\",arrowPadding:20,arrowRadius:40,arrowSize:30,showMouseControls:true},gap:20,paddingLeft:0,paddingRight:0,sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:1.3,widthInset:0,widthType:\"columns\"}},UI5fwQGtw:{gap:30,paddingLeft:0,paddingRight:0}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(41, 58, 32, 0.8)\",arrowPadding:20,arrowRadius:40,arrowSize:50,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"rG0zuxeKD\",layoutId:\"rG0zuxeKD\",name:\"Style Carousel\",padding:0,paddingBottom:0,paddingLeft:70,paddingPerSide:true,paddingRight:70,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:2.3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1495,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/gLToVEdS7ASusI9HCz5Yi4iGeY.png\",srcSet:\"https://framerusercontent.com/images/gLToVEdS7ASusI9HCz5Yi4iGeY.png?scale-down-to=1024 739w,https://framerusercontent.com/images/gLToVEdS7ASusI9HCz5Yi4iGeY.png 1080w\"},className:\"framer-xqveju\",\"data-framer-name\":\"Achieve\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1495,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/XEhku2ctJ7WgENgh02yvB6c1so.png\",srcSet:\"https://framerusercontent.com/images/XEhku2ctJ7WgENgh02yvB6c1so.png?scale-down-to=1024 739w,https://framerusercontent.com/images/XEhku2ctJ7WgENgh02yvB6c1so.png 1080w\"},className:\"framer-v9m0y5\",\"data-framer-name\":\"Support\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1495,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/NUUVM7Rt6eXjEsrTEnyPn5do40.png\",srcSet:\"https://framerusercontent.com/images/NUUVM7Rt6eXjEsrTEnyPn5do40.png?scale-down-to=1024 739w,https://framerusercontent.com/images/NUUVM7Rt6eXjEsrTEnyPn5do40.png 1080w\"},className:\"framer-g0ffzf\",\"data-framer-name\":\"Endurance\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1495,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/nMXDjhQczNJZMBymEx9WETAeETw.png\",srcSet:\"https://framerusercontent.com/images/nMXDjhQczNJZMBymEx9WETAeETw.png?scale-down-to=1024 739w,https://framerusercontent.com/images/nMXDjhQczNJZMBymEx9WETAeETw.png 1080w\"},className:\"framer-1rasd2s\",\"data-framer-name\":\"Spirit\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1495,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/8R6x8eb428tW2XbRF5nKBVIb84k.png\",srcSet:\"https://framerusercontent.com/images/8R6x8eb428tW2XbRF5nKBVIb84k.png?scale-down-to=1024 739w,https://framerusercontent.com/images/8R6x8eb428tW2XbRF5nKBVIb84k.png 1080w\"},className:\"framer-1gjg8nh\",\"data-framer-name\":\"Flow\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iuunse\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"There's nothing a client likes more than options! Naturally, they wanted just one more.\"})}),className:\"framer-7k7ajw\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"Eventually, the design department preferred a mix of the last 2 styles, \",/*#__PURE__*/_jsx(\"strong\",{children:\"Spirit\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Flow\"}),\". The end result utilized the 2px line weight and the rounded corner, sharp cap style from \",/*#__PURE__*/_jsx(\"strong\",{children:\"Flow\"}),\", while utilizing the 45\\xb0 angles and streamlined, literal designs from \",/*#__PURE__*/_jsx(\"strong\",{children:\"Spirit\"}),\". The final product was a bold, yet warm style that expressed both aspects of Strava's identity: the soft rounded corners adding a friendliness that captured its vibrant community of athletes, and the sharpness of the square end caps denoting competition, drive, and passion.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Below was the first comparison I presented, contrasting the bold new style with the thin old style. My new icon style carried much of the complexity from the older style, but made the concepts friendlier, bolder, and easier to comprehend.\"})]}),className:\"framer-1vy3m8g\",\"data-framer-name\":\"Macros significantly decreased the amount of time required to do many of those tasks. For example, every time that we needed to rename an icon, we needed to give it this syntax:\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2yb6i\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+3763+0+2552+0+0),pixelHeight:963,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/JqNIFIDbOvBO5rOTxsc6til0c.png\",srcSet:\"https://framerusercontent.com/images/JqNIFIDbOvBO5rOTxsc6til0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/JqNIFIDbOvBO5rOTxsc6til0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JqNIFIDbOvBO5rOTxsc6til0c.png 1500w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+3763+0+2242+0+0),pixelHeight:443,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png\",srcSet:\"https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+1261+0+2274+0+0),pixelHeight:443,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png\",srcSet:\"https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png?scale-down-to=512 512w,https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SL8CaxD6nx03dhzRHfQCeUBn3g.png 1500w\"},className:\"framer-swtic5\",\"data-framer-name\":\"Final Style Mobile\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+3763+0+2552+0+776),pixelHeight:963,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/Cp2NAUHEydaf2DSftIref4JQEVg.png\",srcSet:\"https://framerusercontent.com/images/Cp2NAUHEydaf2DSftIref4JQEVg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Cp2NAUHEydaf2DSftIref4JQEVg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cp2NAUHEydaf2DSftIref4JQEVg.png 1500w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+3763+0+2242+0+584),pixelHeight:443,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png\",srcSet:\"https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+1261+0+2274+0+584),pixelHeight:443,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png\",srcSet:\"https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BuzGtGBTWEV6FfqDHARU2U8s.png 1500w\"},className:\"framer-4ke606\",\"data-framer-name\":\"Final Style Mobile\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:'As they say, \"fortune favors the bold\"! Though maybe that isn\\'t meant to be taken literally\u2026'})}),className:\"framer-8z3lr0\",\"data-framer-name\":\"First they\u2019ll be renaming icons, next they\u2019ll be sentient AI conquering the universe\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bq2nw0\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjardg\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"First Drafts and the Review Timeline\"})}),className:\"framer-6ox8nn\",\"data-framer-name\":\"Extending into the TV sizes\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"After determining the style direction, we moved into the bulk of the project\u2014designing at least one icon for every concept. I created between 1 to 4 versions of each icon. Below I'm showing only 1 version of each.\"})}),className:\"framer-193hw83\",\"data-framer-name\":\"After I had made all the edits on the default sizes (16px, 24px, 36px, and 48px), we needed to recreate the TV sizes, which required a series of adjustments: Increase the padding by 2 at each size Scale the frame by 150% Adjust the stroke weights Add \u201C@1080p\u201D to the 4 of the 5 sizes I built a macro that automated these steps, which at scale saved nearly a week\u2019s worth of work. Here is one of the macros at work, which combined keyboard strokes with a Figma plugin to add padding to the frames.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ed8vh6\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+8001+0+390+0+0),pixelHeight:2865,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/izfrTYj7YBcbFxWehJNANborQGU.png\",srcSet:\"https://framerusercontent.com/images/izfrTYj7YBcbFxWehJNANborQGU.png?scale-down-to=1024 643w,https://framerusercontent.com/images/izfrTYj7YBcbFxWehJNANborQGU.png?scale-down-to=2048 1286w,https://framerusercontent.com/images/izfrTYj7YBcbFxWehJNANborQGU.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+7307+0+390+0+0),pixelHeight:930,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png\",srcSet:\"https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+4837+0+406+0+0),pixelHeight:930,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png\",srcSet:\"https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABHY0oemtAm3TjRznLoG8UVVmb8.png 1800w\"},className:\"framer-cj23qr\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"Though most of these were adjusted drastically, it was a good first step!\"})}),className:\"framer-7c7vk\",\"data-framer-name\":\"You could say I excel at building time-saving macros\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zswdvh\",\"data-framer-name\":\"Top Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"Now that I had a few options for each icon, we moved into the review phase of the project, when I introduced the team to my \",/*#__PURE__*/_jsx(\"strong\",{children:\"Review Timeline\"}),\", my non-patented approach to streamlining reviews with my clients.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"Essentially, the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Review Timeline\"}),\" is a phased system that allows for seamless and asynchronous collaboration between the client and the icon designer, designed so that each party knows exactly what to do at any time.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The Review Timeline is divided into 3 main stages, with approvals moving from one stage to the next. These 3 stages are the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Conceptual\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"Review\"}),\" stage, the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Executional Review\"}),\" stage, and the \",/*#__PURE__*/_jsx(\"strong\",{children:\"System Refinement\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"Review\"}),\" stage.\"]})]}),className:\"framer-14xjzxn\",\"data-framer-name\":\"After I had made all the edits on the default sizes (16px, 24px, 36px, and 48px), we needed to recreate the TV sizes, which required a series of adjustments: Increase the padding by 2 at each size Scale the frame by 150% Adjust the stroke weights Add \u201C@1080p\u201D to the 4 of the 5 sizes I built a macro that automated these steps, which at scale saved nearly a week\u2019s worth of work. Here is one of the macros at work, which combined keyboard strokes with a Figma plugin to add padding to the frames.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gidsqy\",\"data-framer-name\":\"Horizontal Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kaxlnd\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+8001+0+2676+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png\",srcSet:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+7307+0+2074+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png\",srcSet:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+4837+0+2106+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) / 2 - 70px)`,src:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png\",srcSet:\"https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qgR4099ssVCrNravhqC5nfKsz2U.png 1800w\"},className:\"framer-x4sj4i\",\"data-framer-name\":\"Strava Old Icons\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:'Which image really captures the idea of \"camera\" in a flash?'})}),className:\"framer-ctwmt0\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z7pyoc\",\"data-framer-name\":\"Right Column\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The 1st stage, \",/*#__PURE__*/_jsx(\"strong\",{children:\"Conceptual Review,\"}),\" is for making sure the visual metaphor is clearly communicating the idea. Most icons start in this stage to validate that the meaning of the icon is clear.\"]})}),className:\"framer-107mng8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0ykr7\",\"data-framer-name\":\"Horizontal Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kej8i2\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+8001+0+4008+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png\",srcSet:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+7307+0+3406+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png\",srcSet:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+4837+0+3238+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) / 2 - 70px)`,src:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png\",srcSet:\"https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xmkhrtzLzYobs2r7KzssegyIzcg.png 1800w\"},className:\"framer-1h5of9u\",\"data-framer-name\":\"Strava Old Icons\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:'It\\'s like \"spot the difference\" in Highlights Magazine, but for icons.'})}),className:\"framer-14p2rqx\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z1m9qt\",\"data-framer-name\":\"Right Column\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The 2nd stage is \",/*#__PURE__*/_jsx(\"strong\",{children:\"Executional Review,\"}),\" where I test different methods conveying the same concept, adjusting details like the corner radius, scale, positioning, composition, shapes, and basically anything about the design that needs an adjustment. This is the stage where it's encouraged to be really nit-picky.\"]})}),className:\"framer-jd51gj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mx902\",\"data-framer-name\":\"Horizontal Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qq8ap\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+8001+0+5340+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png\",srcSet:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+7307+0+4738+0+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png\",srcSet:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+4837+0+4370+0+0+0),pixelHeight:1e3,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) / 2 - 70px)`,src:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png\",srcSet:\"https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vaMS3C8yYBLNQu05aYXOL0iWaU.png 1800w\"},className:\"framer-thllx9\",\"data-framer-name\":\"Strava Old Icons\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"The last step before they're shipped, sailing stormy seas of unlinked components.\"})}),className:\"framer-vsjjtu\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urqmpx\",\"data-framer-name\":\"Right Column\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The 3rd stage is \",/*#__PURE__*/_jsx(\"strong\",{children:\"System Refinement\"}),\", where I make adjustments based on patterns that have been established while working through the library. This is the last chance for reviewers to request any changes on an icon.\"]})}),className:\"framer-dreovg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ctfxkb\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5wsr1\",\"data-framer-name\":\"Top Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The \",/*#__PURE__*/_jsx(\"strong\",{children:\"Conceptual Review\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Executional Review\"}),\" are divided into 4 columns: \",/*#__PURE__*/_jsx(\"strong\",{children:\"WIP\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"Ready for Review\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"Like\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"Love.\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"WIP\"}),\" is the zone where the designer makes adjustments and iterates on new versions, a zone that isn't meant to be commented on by reviewers. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Ready for Review\"}),\" are all icons that are ready for the client to review. The client can then move their favorite version to the right, into either the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Like\"}),\" column along with comments about how it can be improved, or the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Love\"}),\" column to approve the icon for the next stage.\"]})}),className:\"framer-19ofjir\",\"data-framer-name\":\"In addition to the icon work, I also created a macro that populated an excel sheet used by the developers. The dev team needed to know which icons were being renamed, in which categories, and which sizes had been edited. Using the color coding system and Regular Expressions, I built a macro that populated the fields, retrieving information like the name, category, sizing, and whether it had been edited. This saved countless hours of inputting that information manually, which also would have been prone to human error.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3kkt68\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+14693+0+196+0+0),pixelHeight:516,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png\",srcSet:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+13397+0+196+0+0),pixelHeight:516,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png\",srcSet:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+10359+0+196+0+0),pixelHeight:516,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png\",srcSet:\"https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=512 512w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3REWY2taA08KYI0UtZljJTFz6oo.png 1800w\"},className:\"framer-1i5p2hy\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"It looks intimidating at first, but let me tell ya, this is WAY more efficient than thousands of Figma comments.\"})}),className:\"framer-uqyr2c\",\"data-framer-name\":\"You could say I excel at building time-saving macros\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8q1j62\",\"data-framer-name\":\"Top Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"The best part about this system is that it puts control over the process to both the client and the designer. Clients know that anything in the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Ready for Review \"}),\"columns are ready for their review. And I know that if it's in the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Like\"}),' column, it needs edits (shifting it back to \"Ready for Review\"), and if it\\'s in the ',/*#__PURE__*/_jsx(\"strong\",{children:\"Love\"}),\" column, it's ready to scoot forward to the next stage. \"]})}),className:\"framer-1tk6hft\",\"data-framer-name\":\"In addition to the icon work, I also created a macro that populated an excel sheet used by the developers. The dev team needed to know which icons were being renamed, in which categories, and which sizes had been edited. Using the color coding system and Regular Expressions, I built a macro that populated the fields, retrieving information like the name, category, sizing, and whether it had been edited. This saved countless hours of inputting that information manually, which also would have been prone to human error.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2p5jy1\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vmlrf2\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Sizes and Stroke Widths\"})}),className:\"framer-1qzjnif\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"After using the Review Timeline to approve every icon, I had a strong starting place to design all the sizes that Strava needed: a whopping 4 sizes for each icon! Extra Small (16px), Small (24px), Medium, (32px) and Large (48px).\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"Since the 2px stroke weight was quite bold, it was important make the stroke widths proportional. Eventually after some deliberation, the team decided to use these stroke widths: \",/*#__PURE__*/_jsx(\"strong\",{children:\"XS = \"}),\"1.25px, \",/*#__PURE__*/_jsx(\"strong\",{children:\"SM = \"}),\"2px, \",/*#__PURE__*/_jsx(\"strong\",{children:\"MD = \"}),\"2.5px, \",/*#__PURE__*/_jsx(\"strong\",{children:\"LG = \"}),\"3px\"]})]}),className:\"framer-1na27dm\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons. This was a great project for me to build macros and find patterns. If you have a project that could use this level of precision at scale, then reach out! I\u2019d love to collaborate and problem solve with you.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lsim9k\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+15755+0+690+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png\",srcSet:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+14459+0+690+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png\",srcSet:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+11421+0+706+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png\",srcSet:\"https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jut89vvPd62EMGd3VCHJgPf1k.png 1800w\"},className:\"framer-4pc8z0\",\"data-border\":true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"Icons come in all weights and sizes, just like people!\"})}),className:\"framer-1hdee62\",\"data-framer-name\":\"You could say I excel at building time-saving macros\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h4gmm4\",\"data-framer-name\":\"Top Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:[\"This unique set of stroke widths allowed for the icons to have a semi-bold feel no matter what the scale. The only caveat is that the \",/*#__PURE__*/_jsx(\"strong\",{children:\"XS\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"MD\"}),\" variations of stroke widths are trickier to design since the paths can't align exactly on the grid. \",/*#__PURE__*/_jsx(\"strong\",{children:\"XS\"}),\" strokes need to be nudged inwards by 0.125px, and the \",/*#__PURE__*/_jsx(\"strong\",{children:\"MD \"}),\"strokes by 0.25px, so that their outside edges are on pixel. This technique guarantees that the icons will look crisp when displayed on screen at their defined scale.\"]})}),className:\"framer-2qmtjq\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons. This was a great project for me to build macros and find patterns. If you have a project that could use this level of precision at scale, then reach out! I\u2019d love to collaborate and problem solve with you.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swbdbg\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+15755+0+1846+0+0),pixelHeight:818,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/sNfRDlodrxGwWB3RPR2ZiSPtO5U.png\",srcSet:\"https://framerusercontent.com/images/sNfRDlodrxGwWB3RPR2ZiSPtO5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/sNfRDlodrxGwWB3RPR2ZiSPtO5U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sNfRDlodrxGwWB3RPR2ZiSPtO5U.png 1080w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+14459+0+1846+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png\",srcSet:\"https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+11421+0+1878+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png\",srcSet:\"https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hqw6qKhLxnvJesFE1MV1kUggcYE.png 1800w\"},className:\"framer-topwtk\",\"data-border\":true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"Icon designers can be pushy and shifty, but in only the best ways.\"})}),className:\"framer-rk9v04\",\"data-framer-name\":\"You could say I excel at building time-saving macros\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x189f0\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybe6h7\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Dark Theme!\"})}),className:\"framer-vb7i5s\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Late in the project, the team let me know that they were going to release the dark theme version of the app! So I needed to make sure my new set of icons worked well in both light and dark theme. Fortunately, only a few icons needed updates, which mostly were fixing tight negative spaces.\"})}),className:\"framer-1fzz8m8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d4hwlj\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+18744+0+390+0+0),pixelHeight:841,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/jjfKK0IbuipyU8g9toZwDHUC1U.png\",srcSet:\"https://framerusercontent.com/images/jjfKK0IbuipyU8g9toZwDHUC1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/jjfKK0IbuipyU8g9toZwDHUC1U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jjfKK0IbuipyU8g9toZwDHUC1U.png 1080w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+17301+0+390+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png\",srcSet:\"https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+14295+0+406+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png\",srcSet:\"https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aERGDB0NmwFgj4zWmvvGuUPo.png 1800w\"},className:\"framer-b6xlcm\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"I wasn't gonna let dark theme darken my mood, just my phone screen.\"})}),className:\"framer-sac09u\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v87q0j\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxnr1o\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Map Symbols\"})}),className:\"framer-b6oooe\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:'In addition to navigation and sports icons, I also redesigned their entire set of map symbols to match their new iconography. These are also called \"points of interest\" icons, and are essential for any map-based app.'})}),className:\"framer-m1k1de\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3naicu\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+20252+0+390+0+0),pixelHeight:1154,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png\",srcSet:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=512 512w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+18687+0+390+0+0),pixelHeight:1154,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png\",srcSet:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=512 512w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+15697+0+406+0+0),pixelHeight:1154,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png\",srcSet:\"https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=512 512w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xG4FThsCk4kIOkRWrb0Ybo8Wu0.png 1800w\"},className:\"framer-ik0wfl\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"This set had to use filled icons because the artwork gets really small, as far down as 7 pixels in height!\"})}),className:\"framer-qme0kl\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qegof1\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8lx7q\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Final Details\"})}),className:\"framer-1vq7f45\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"After designing all the icons in all 4 sizes, the final steps were to package it in a way that would allow it to work seamlessly with their existing infrastructure. First, I renamed layers using my custom macros. The new syntax allowed them to easily export into the correct organization: Here's the whole syntax:\"})}),className:\"framer-9im4ug\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons. This was a great project for me to build macros and find patterns. If you have a project that could use this level of precision at scale, then reach out! I\u2019d love to collaborate and problem solve with you.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hi2vo3\",\"data-framer-name\":\"Code\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Code Pro\", monospace',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(229, 9, 20)\"},children:\"{size abbreviated} {dimensions} / {category}_{icon_name}_{highlighted?_}{size full}\"})}),className:\"framer-1hm0lmz\",\"data-framer-name\":\"category-name / icon-name / icon-name-with-size\",fonts:[\"GF;Source Code Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"For example, the filled/highlighted bookmark in the orange box has this name:\"})}),className:\"framer-nbhfd9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1usxk6a\",\"data-framer-name\":\"Code\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIENvZGUgUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Source Code Pro\", monospace',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(229, 9, 20)\"},children:\"sm (24\\xd724)/ actions_bookmark_highlighted_small\"})}),className:\"framer-17oqj44\",\"data-framer-name\":\"category-name / icon-name / icon-name-with-size\",fonts:[\"GF;Source Code Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4orivn\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+21689+0+950+0+0),pixelHeight:974,pixelWidth:2926,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=512 512w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png 2926w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+20124+0+710+0+0),pixelHeight:974,pixelWidth:2926,sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=512 512w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png 2926w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+17150+0+726+0+0),pixelHeight:974,pixelWidth:2926,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=512 512w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AO9cmkTYO1YlSg53irRnQi5I73o.png 2926w\"},className:\"framer-oi0fqv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8taXRhbGlj\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(59, 122, 26)\"},children:\"Without proper syntax, it would have been very taxing to organize these.\"})}),className:\"framer-odzuee\",\"data-framer-name\":\"You could say I excel at building time-saving macros\",fonts:[\"GF;Chivo-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i421xe\",\"data-framer-name\":\"Top Row\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"I also turned the icons into components. Each icon component had searchable keywords, flattened icon artwork, and pre-loaded export settings. Lastly, I delivered the design team optimized SVGs along with a detailed style guide, which also included some interesting case studies of notable icons. Below is just a small sample of the whole guidelines packet.\"})}),className:\"framer-1qtc49o\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons. This was a great project for me to build macros and find patterns. If you have a project that could use this level of precision at scale, then reach out! I\u2019d love to collaborate and problem solve with you.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h5l2q1-container\",\"data-framer-name\":\"Style Guidelines\",isAuthoredByUser:true,isModuleExternal:true,name:\"Style Guidelines\",nodeId:\"YATZKV3jn\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{arrowObject:{arrowFill:\"rgba(41, 58, 32, 0.8)\",arrowPadding:5,arrowRadius:40,arrowSize:30,showMouseControls:true},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:1.1,widthInset:0,widthType:\"columns\"}},UI5fwQGtw:{padding:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,sizingObject:{heightInset:0,heightRows:1,heightType:\"stretch\",widthColumns:1.2,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(41, 58, 32, 0.8)\",arrowPadding:50,arrowRadius:40,arrowSize:50,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:30,height:\"100%\",id:\"YATZKV3jn\",layoutId:\"YATZKV3jn\",name:\"Style Guidelines\",padding:10,paddingBottom:20,paddingLeft:45,paddingPerSide:true,paddingRight:45,paddingTop:20,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1.2,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/O1Q657yi8Uh045Z0o0LbcgNyo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/O1Q657yi8Uh045Z0o0LbcgNyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/O1Q657yi8Uh045Z0o0LbcgNyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O1Q657yi8Uh045Z0o0LbcgNyo.png 1820w\"},className:\"framer-1qk20vc\",\"data-border\":true,\"data-framer-name\":\"Title Slide\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/SnbBGnP15zb8E3S2fPqzNMqI9CA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SnbBGnP15zb8E3S2fPqzNMqI9CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/SnbBGnP15zb8E3S2fPqzNMqI9CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SnbBGnP15zb8E3S2fPqzNMqI9CA.png 1820w\"},className:\"framer-3wefl3\",\"data-border\":true,\"data-framer-name\":\"Slide 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/eejcXzt1xoLj5voQZ8tpMa7bjEY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eejcXzt1xoLj5voQZ8tpMa7bjEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/eejcXzt1xoLj5voQZ8tpMa7bjEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eejcXzt1xoLj5voQZ8tpMa7bjEY.png 1820w\"},className:\"framer-10swgjp\",\"data-border\":true,\"data-framer-name\":\"Slide 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/w3Catn1d0gXZZ7O7bs3GvwZiRto.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/w3Catn1d0gXZZ7O7bs3GvwZiRto.png?scale-down-to=512 512w,https://framerusercontent.com/images/w3Catn1d0gXZZ7O7bs3GvwZiRto.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w3Catn1d0gXZZ7O7bs3GvwZiRto.png 1820w\"},className:\"framer-aomduz\",\"data-border\":true,\"data-framer-name\":\"Slide 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/OiQGjna73CKCpxw9NMVrfoVBT5I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OiQGjna73CKCpxw9NMVrfoVBT5I.png?scale-down-to=512 512w,https://framerusercontent.com/images/OiQGjna73CKCpxw9NMVrfoVBT5I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OiQGjna73CKCpxw9NMVrfoVBT5I.png 1820w\"},className:\"framer-1amavvd\",\"data-border\":true,\"data-framer-name\":\"Slide 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/tp6N2UYgV3LIyesqZHm911LL5c.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tp6N2UYgV3LIyesqZHm911LL5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/tp6N2UYgV3LIyesqZHm911LL5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tp6N2UYgV3LIyesqZHm911LL5c.png 1820w\"},className:\"framer-1hafj0z\",\"data-border\":true,\"data-framer-name\":\"Slide 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/ZChQjGG6tCu02LCtry36NcATDA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZChQjGG6tCu02LCtry36NcATDA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZChQjGG6tCu02LCtry36NcATDA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZChQjGG6tCu02LCtry36NcATDA.png 1820w\"},className:\"framer-1x5vehq\",\"data-border\":true,\"data-framer-name\":\"Slide 6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/SXcDA7GbiNd0pGxBNEvgb16Oug4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SXcDA7GbiNd0pGxBNEvgb16Oug4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SXcDA7GbiNd0pGxBNEvgb16Oug4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SXcDA7GbiNd0pGxBNEvgb16Oug4.png 1820w\"},className:\"framer-trxc2w\",\"data-border\":true,\"data-framer-name\":\"Slide 7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/SoLPQuliohTgUz7AiNokYE20cGc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SoLPQuliohTgUz7AiNokYE20cGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/SoLPQuliohTgUz7AiNokYE20cGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SoLPQuliohTgUz7AiNokYE20cGc.png 1820w\"},className:\"framer-s41xbr\",\"data-border\":true,\"data-framer-name\":\"Slide 8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/8ILayKnxaWmGX31BZtzUVA8Dnt4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8ILayKnxaWmGX31BZtzUVA8Dnt4.png?scale-down-to=512 512w,https://framerusercontent.com/images/8ILayKnxaWmGX31BZtzUVA8Dnt4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ILayKnxaWmGX31BZtzUVA8Dnt4.png 1820w\"},className:\"framer-opf4p8\",\"data-border\":true,\"data-framer-name\":\"Slide 9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/HL18QrYdnpaxx46S6ALeSUDJc3w.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HL18QrYdnpaxx46S6ALeSUDJc3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/HL18QrYdnpaxx46S6ALeSUDJc3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HL18QrYdnpaxx46S6ALeSUDJc3w.png 1820w\"},className:\"framer-1waftgo\",\"data-border\":true,\"data-framer-name\":\"Slide 10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:910,pixelHeight:1024,pixelWidth:1820,sizes:\"910px\",src:\"https://framerusercontent.com/images/L0e2p6qHZ1qP4qPu4GpvipiM6I8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/L0e2p6qHZ1qP4qPu4GpvipiM6I8.png?scale-down-to=512 512w,https://framerusercontent.com/images/L0e2p6qHZ1qP4qPu4GpvipiM6I8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L0e2p6qHZ1qP4qPu4GpvipiM6I8.png 1820w\"},className:\"framer-1qizp1z\",\"data-border\":true,\"data-framer-name\":\"Slide 11\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4o72tk\",\"data-framer-name\":\"Vertical Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jkk7mp\",\"data-framer-name\":\"Bottom Row\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+23700+0+0+0+0),pixelHeight:1224,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png\",srcSet:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png 1800w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+21895+0+0+0+0),pixelHeight:1224,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png\",srcSet:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+18953+0+0+0+0),pixelHeight:1224,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png\",srcSet:\"https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=512 512w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lirSYrIuUPWFsoGtY0Th4lZdTrk.png 1800w\"},className:\"framer-1b89l4p\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bvbnkw\",\"data-framer-name\":\"Top Row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Conclusion\"})}),className:\"framer-w3wr2x\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"In total, I created 360 concepts at 4 sizes, with a final asset count of a whopping 1440 icons! This was a super fun project that encapsulated everything from the style exploration all the way to the final export of the icons and delivery. Since finishing this project, this icon set has become a core part of the product! It has also appeared on their 2024 Year in Sport recaps, and their headquarters even has the icons printed and displayed on one of their office walls.\"})}),className:\"framer-1e6webd\",\"data-framer-name\":\"In 3 and a half months, I did precise production icon work on over 3,600 icon assets, and used automation to quickly and precisely document changes, organize, and rename over 4,300 icons. This was a great project for me to build macros and find patterns. If you have a project that could use this level of precision at scale, then reach out! I\u2019d love to collaborate and problem solve with you.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":sC4Dx2YiF\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":sC4Dx2YiF\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":sC4Dx2YiF\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1440px), 800px)`,y:(componentViewport?.y||0)+0+1478+20+23700+0+4810+0+390},UI5fwQGtw:{width:`min(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px), 800px)`,y:(componentViewport?.y||0)+0+869+100+21895+0+4810+0+390}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(min(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px), 800px) - 140px)`,y:(componentViewport?.y||0)+0+869+100+18953+0+4810+8+390,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2otn4x-container\",nodeId:\"YanVrTmSk\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{x4w77H566:resolvedLinks[2]},UI5fwQGtw:{x4w77H566:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"YanVrTmSk\",layoutId:\"YanVrTmSk\",style:{width:\"100%\"},variant:\"OO3UgUUkg\",width:\"100%\",x4w77H566:resolvedLinks[0],y4ebDksBo:\"Read Testimonial from Strava\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ructtk-container\",isModuleExternal:true,nodeId:\"vdLQALAyB\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{arrowObject:{arrowFill:\"rgb(248, 78, 2)\",arrowPadding:20,arrowRadius:40,arrowSize:30,showMouseControls:true},padding:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:2.3,widthInset:0,widthType:\"columns\"}},UI5fwQGtw:{padding:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:3.3,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(41, 58, 32, 0.8)\",arrowPadding:20,arrowRadius:40,arrowSize:50,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:10,height:\"100%\",id:\"vdLQALAyB\",layoutId:\"vdLQALAyB\",padding:70,paddingBottom:0,paddingLeft:70,paddingPerSide:true,paddingRight:70,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,pixelHeight:2622,pixelWidth:1206,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/nX0rcEuSAyOpUfR8UezhiBHheiY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nX0rcEuSAyOpUfR8UezhiBHheiY.png?scale-down-to=2048 941w,https://framerusercontent.com/images/nX0rcEuSAyOpUfR8UezhiBHheiY.png 1206w\"},className:\"framer-1ce8axn\",\"data-border\":true,\"data-framer-name\":\"Screenshot 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/Vit3YhZzkyx2Pkue6LyaUeiGRPw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Vit3YhZzkyx2Pkue6LyaUeiGRPw.png?scale-down-to=2048 941w,https://framerusercontent.com/images/Vit3YhZzkyx2Pkue6LyaUeiGRPw.png 1206w\"},className:\"framer-oxwfz6\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/P9qmXMJBGAnDoo8srbKPzXLXFE4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/P9qmXMJBGAnDoo8srbKPzXLXFE4.png?scale-down-to=2048 941w,https://framerusercontent.com/images/P9qmXMJBGAnDoo8srbKPzXLXFE4.png 1206w\"},className:\"framer-1255hix\",\"data-border\":true,\"data-framer-name\":\"Screenshot 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,pixelHeight:780,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/1j5NeUkKJe2EkUHEJsbH1n2pYQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/1j5NeUkKJe2EkUHEJsbH1n2pYQ.png?scale-down-to=2048 941w,https://framerusercontent.com/images/1j5NeUkKJe2EkUHEJsbH1n2pYQ.png 1206w\"},className:\"framer-ozxvze\",\"data-border\":true,\"data-framer-name\":\"Screenshot 4\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxHeight:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6z7759\",\"data-framer-name\":\"Bottom Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+23700+0+5496+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg 5712w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+21895+0+5496+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 200px, 1440px)`,src:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg 5712w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+18953+0+5512+0+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 140px)`,src:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/INwPDXOmTiWSy9xH5FsyK52fo.jpeg 5712w\"},className:\"framer-9kx437\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ooa945\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+23700+0+5496+0+279+0),pixelHeight:780,pixelWidth:1800,positionX:\"right\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png\",srcSet:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png?scale-down-to=1024 576w,https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png 1080w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+21895+0+5496+0+840+0),pixelHeight:780,pixelWidth:1800,positionX:\"right\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png\",srcSet:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png?scale-down-to=1024 576w,https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+18953+0+5512+0+840+0),pixelHeight:780,pixelWidth:1800,positionX:\"right\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 150px) / 2, 1px)`,src:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png\",srcSet:\"https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png?scale-down-to=1024 576w,https://framerusercontent.com/images/bVZHPWEBZsQW4cfgwE5ydhgEs.png 1080w\"},className:\"framer-1yyew1\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478+20+23700+0+5496+0+279+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png\",srcSet:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png?scale-down-to=1024 576w,https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png 1080w\"}},UI5fwQGtw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+21895+0+5496+0+840+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png\",srcSet:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png?scale-down-to=1024 576w,https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:487,intrinsicWidth:1463,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+869+100+18953+0+5512+0+840+0),pixelHeight:780,pixelWidth:1800,positionX:\"left\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) - 150px) / 2, 1px)`,src:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png\",srcSet:\"https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png?scale-down-to=1024 576w,https://framerusercontent.com/images/rOvPXhEqmX0a2FClJJtYtGJ5U.png 1080w\"},className:\"framer-y1ru04\",\"data-framer-name\":\"Image\"})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5sw4bm\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-52fo43\",\"data-framer-name\":\"Want to read more?\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l4o34\",\"data-framer-name\":\"Want to read more?\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNzAw\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Want to read more?\"})}),className:\"framer-147wtnw\",\"data-framer-name\":\"Want to read more?\",fonts:[\"GF;Chivo-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hof6jw\",\"data-styles-preset\":\"g__Jccr3b\",children:\"I like to write about icon design, so if you'd like to learn more about my craft and my process, check out my articles section. If you want to see more of my work, then click on one of my other case studies. If you're interested in working together, then contact me and we'll get started!\"})}),className:\"framer-y5avcn\",\"data-framer-name\":\"Check out some of my case studies, or learn a little bit more about me and why my clients love collaborating with me.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f04woz\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jakmjd\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6v0mdt\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PUJOwCgGU\"},implicitPathVariables:undefined},{href:{webPageId:\"PUJOwCgGU\"},implicitPathVariables:undefined},{href:{webPageId:\"PUJOwCgGU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1478+20+30495+0+0+0+440+0+0+0+34},UI5fwQGtw:{y:(componentViewport?.y||0)+0+869+100+29251+0+0+0+440+0+0+0+34}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) * 0.8 - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+869+100+26325+0+0+0+440+0+0+0+34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibpkeg-container\",nodeId:\"gFJnHQ1zX\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{x4w77H566:resolvedLinks1[2]},UI5fwQGtw:{x4w77H566:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"gFJnHQ1zX\",layoutId:\"gFJnHQ1zX\",style:{height:\"100%\",width:\"100%\"},variant:\"OO3UgUUkg\",width:\"100%\",x4w77H566:resolvedLinks1[0],y4ebDksBo:\"Read Articles\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":QxXS_bVxQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":QxXS_bVxQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":QxXS_bVxQ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1478+20+30495+0+0+0+440+0+0+0+115},UI5fwQGtw:{y:(componentViewport?.y||0)+0+869+100+29251+0+0+0+440+0+0+0+115}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) * 0.8 - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+869+100+26325+0+0+0+440+0+0+0+115,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jmr51-container\",nodeId:\"jTOcRVXJO\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{x4w77H566:resolvedLinks2[2]},UI5fwQGtw:{x4w77H566:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jTOcRVXJO\",layoutId:\"jTOcRVXJO\",style:{height:\"100%\",width:\"100%\"},variant:\"bJTGLmmPc\",width:\"100%\",x4w77H566:resolvedLinks2[0],y4ebDksBo:\"Contact Me\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkyg1m\",\"data-framer-name\":\"Right Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g74h6y\",\"data-styles-preset\":\"loYPv_FZh\",style:{\"--framer-text-alignment\":\"center\"},children:\"Case Studies\"})}),className:\"framer-10pr62s\",\"data-framer-name\":\"Photoshop Template Magic\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined},{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined},{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1478+20+30495+0+0+0+440+0+0+0+34},UI5fwQGtw:{y:(componentViewport?.y||0)+0+869+100+29251+0+0+0+440+0+0+0+34}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) * 0.8 - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+869+100+26325+0+0+0+440+0+0+0+34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ydwd1a-container\",nodeId:\"aE0zE_N6d\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{Xt_kqkOhf:resolvedLinks3[2]},UI5fwQGtw:{Xt_kqkOhf:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"aE0zE_N6d\",layoutId:\"aE0zE_N6d\",style:{width:\"100%\"},variant:\"LqDWy6jHc\",width:\"100%\",Xt_kqkOhf:resolvedLinks3[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined},{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined},{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1478+20+30495+0+0+0+440+0+0+0+88},UI5fwQGtw:{y:(componentViewport?.y||0)+0+869+100+29251+0+0+0+440+0+0+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) * 0.8 - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+869+100+26325+0+0+0+440+0+0+0+88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xarmq-container\",nodeId:\"GERkKENco\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{Xt_kqkOhf:resolvedLinks4[2]},UI5fwQGtw:{Xt_kqkOhf:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"GERkKENco\",layoutId:\"GERkKENco\",style:{width:\"100%\"},variant:\"EyRwps5SW\",width:\"100%\",Xt_kqkOhf:resolvedLinks4[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined},{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined},{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{width:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1440px) - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1478+20+30495+0+0+0+440+0+0+0+142},UI5fwQGtw:{y:(componentViewport?.y||0)+0+869+100+29251+0+0+0+440+0+0+0+142}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1440px) * 0.8 - 14px) / 2, 1px)`,y:(componentViewport?.y||0)+0+869+100+26325+0+0+0+440+0+0+0+142,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12yu8if-container\",nodeId:\"cLdnB0J2r\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{Xt_kqkOhf:resolvedLinks5[2]},UI5fwQGtw:{Xt_kqkOhf:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"cLdnB0J2r\",layoutId:\"cLdnB0J2r\",style:{width:\"100%\"},variant:\"XjpQhz6N_\",width:\"100%\",Xt_kqkOhf:resolvedLinks5[0]})})})})})})]})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfzw1i\",\"data-framer-name\":\"Animated Footer\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w0qe15-container\",nodeId:\"KqyDqDcJC\",scopeId:\"jgsArEgAZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LLJ1gmT7i:{variant:\"FbxWd2V73\"},UI5fwQGtw:{variant:\"MbyVshFGJ\"}},children:/*#__PURE__*/_jsx(Footer,{background:\"var(--token-e7b0f2ee-e72d-49c7-b259-26c138e10804, rgb(246, 244, 238))\",height:\"100%\",id:\"KqyDqDcJC\",layoutId:\"KqyDqDcJC\",style:{height:\"100%\",width:\"100%\"},variant:\"lI6ESytRF\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q4j71n hidden-giwqrm\",\"data-framer-name\":\"Illustration Speech Bubble\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vtnz0\",\"data-framer-name\":\"Sup\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-44mmau\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"50\" viewBox=\"-2 -2 80 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8938 1.27537e-05C25.9202 -0.000157477 23.3351 -0.000304818 21.243 0.253829C19.0034 0.525874 16.7996 1.13915 14.9073 2.75535C14.4492 3.14661 14.0226 3.57326 13.6313 4.03137C12.0151 5.9237 11.4018 8.12744 11.1298 10.367C10.99 11.5179 10.9271 12.8181 10.8989 14.25L9.59659 14.25C7.99722 14.2496 6.41062 14.2492 5.19353 14.4116C4.24937 14.5376 1.29826 15.0026 0.279886 17.9585C-0.738487 20.9145 1.30002 23.0985 1.96625 23.7793C2.82506 24.6568 4.07521 25.6337 5.33546 26.6185L10.8788 30.9524C10.8869 32.5219 10.9174 33.9217 11.0321 35.128C11.1981 36.8738 11.5681 38.6229 12.5706 40.2588C13.5188 41.8061 14.8198 43.1071 16.3672 44.0554C18.0031 45.0579 19.7522 45.4279 21.498 45.5939C23.1419 45.7502 25.145 45.7501 27.4476 45.75H56.8858C60.1988 45.7502 63.0778 45.7504 65.3885 45.4398C67.8744 45.1055 70.2923 44.3472 72.2577 42.3818C74.2231 40.4163 74.9815 37.9985 75.3157 35.5126C75.6264 33.2019 75.6262 30.3229 75.626 27.0098V18.7403C75.6262 15.4273 75.6264 12.5481 75.3157 10.2375C74.9815 7.75158 74.2231 5.33372 72.2577 3.36829C70.2923 1.40287 67.8744 0.644499 65.3885 0.310278C63.0778 -0.000381112 60.1988 -0.000198962 56.8858 1.08464e-05L28.8938 1.27537e-05ZM7.58499 18.0768C7.57958 18.0697 7.57655 18.066 7.57639 18.066C7.57627 18.066 7.57779 18.068 7.58118 18.0722C7.58226 18.0735 7.58353 18.075 7.58499 18.0768Z\" fill=\"#1D1711\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gwj4ao\",\"data-framer-name\":\"Rectangle 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:75,svg:'<svg width=\"75\" height=\"42\" viewBox=\"-2 -2 75 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.876 14.25C13.876 7.9054 13.876 4.7331 15.6729 2.62914C15.9281 2.33038 16.2064 2.05212 16.5051 1.79696C18.6091 0 21.7814 0 28.126 0H55.626C62.697 0 66.2326 0 68.4293 2.1967C70.626 4.3934 70.626 7.92893 70.626 15V22.75C70.626 29.8211 70.626 33.3566 68.4293 35.5533C66.2326 37.75 62.697 37.75 55.626 37.75H26.626C21.7158 37.75 19.2608 37.75 17.4572 36.6448C16.4481 36.0264 15.5996 35.1779 14.9812 34.1687C13.876 32.3652 13.876 29.9101 13.876 25V25L6.98616 19.6134C4.1376 17.3864 2.71331 16.2728 3.06176 15.2614C3.4102 14.25 5.21811 14.25 8.83393 14.25H13.876V14.25Z\" fill=\"#CFAF92\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"17.5px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Sup.\"})}),className:\"framer-1hau84h\",\"data-framer-name\":\"Sup.\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-avF0J.framer-lhhdfx, .framer-avF0J .framer-lhhdfx { display: block; }\",\".framer-avF0J.framer-67b9c6 { align-content: center; align-items: center; background-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-avF0J .framer-4p5mma-container { flex: none; height: 77px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-avF0J .framer-vox5ps { align-content: flex-start; align-items: flex-start; background-color: var(--token-e7b0f2ee-e72d-49c7-b259-26c138e10804, #f6f4ee); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 90px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-14e0g8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 70px; position: relative; width: 657px; }\",\".framer-avF0J .framer-1u0teir, .framer-avF0J .framer-dvf0fc, .framer-avF0J .framer-n3nyj9, .framer-avF0J .framer-1oo08xt, .framer-avF0J .framer-6ox8nn, .framer-avF0J .framer-1qzjnif, .framer-avF0J .framer-vb7i5s, .framer-avF0J .framer-b6oooe, .framer-avF0J .framer-1vq7f45, .framer-avF0J .framer-w3wr2x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 587px; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-1o09jey { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: auto; justify-content: flex-start; overflow: visible; padding: 15px 0px 0px 50px; position: relative; width: 657px; }\",\".framer-avF0J .framer-1wamylu, .framer-avF0J .framer-1y1ig2k, .framer-avF0J .framer-kl13wh, .framer-avF0J .framer-1cgbazi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1de432h, .framer-avF0J .framer-iql75n, .framer-avF0J .framer-28sk4s, .framer-avF0J .framer-1f3h1jp { flex: none; height: 27px; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-14ngomr, .framer-avF0J .framer-1tz693t, .framer-avF0J .framer-1bv4xe5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 487px; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-1lyfsyn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 437px; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-1ux9x9w { align-content: center; align-items: center; background-color: #fc5201; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 50px 60px 50px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1ixfym2, .framer-avF0J .framer-1hm0lmz, .framer-avF0J .framer-17oqj44 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-avF0J .framer-yoe8gd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 744px; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-4f5js8 { align-content: flex-start; align-items: flex-start; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 150px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-267fh0-container { flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-avF0J .framer-rfcv1d, .framer-avF0J .framer-1nrj64y, .framer-avF0J .framer-nu4lwz, .framer-avF0J .framer-1s79n71, .framer-avF0J .framer-15zwuy2, .framer-avF0J .framer-ewfnbh, .framer-avF0J .framer-15yjwn9, .framer-avF0J .framer-1d5e2ki, .framer-avF0J .framer-11t330i, .framer-avF0J .framer-10tpovm, .framer-avF0J .framer-16u2e15, .framer-avF0J .framer-zouf3m, .framer-avF0J .framer-10v422j, .framer-avF0J .framer-1ewok4i, .framer-avF0J .framer-3mckiq { height: 48px; overflow: hidden; position: relative; width: 210px; }\",\".framer-avF0J .framer-333ft8, .framer-avF0J .framer-6w1klv, .framer-avF0J .framer-b47j4c, .framer-avF0J .framer-1nkftxa, .framer-avF0J .framer-w3vdwr, .framer-avF0J .framer-1uhdvob, .framer-avF0J .framer-1nag8te, .framer-avF0J .framer-qor51t, .framer-avF0J .framer-16emzox, .framer-avF0J .framer-zp0vru, .framer-avF0J .framer-1sh0x25, .framer-avF0J .framer-1c6s92s, .framer-avF0J .framer-fabv0b, .framer-avF0J .framer-17s5guu, .framer-avF0J .framer-4rg30d { flex: none; height: 48px; left: 0px; position: absolute; top: 0px; width: 210px; }\",\".framer-avF0J .framer-8sw1qw { background-color: #fc5201; flex: none; height: 5px; overflow: visible; position: relative; width: 100%; }\",\".framer-avF0J .framer-151v9fg { align-content: center; align-items: center; background-color: var(--token-e7b0f2ee-e72d-49c7-b259-26c138e10804, #f6f4ee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-avF0J .framer-ktsout, .framer-avF0J .framer-s4vy3l, .framer-avF0J .framer-bq2nw0, .framer-avF0J .framer-1ctfxkb, .framer-avF0J .framer-2p5jy1, .framer-avF0J .framer-x189f0, .framer-avF0J .framer-v87q0j, .framer-avF0J .framer-1qegof1, .framer-avF0J .framer-4o72tk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-put2uf, .framer-avF0J .framer-1mi8vp7, .framer-avF0J .framer-1iuunse, .framer-avF0J .framer-vjardg, .framer-avF0J .framer-zswdvh, .framer-avF0J .framer-1r5wsr1, .framer-avF0J .framer-8q1j62, .framer-avF0J .framer-1vmlrf2, .framer-avF0J .framer-h4gmm4, .framer-avF0J .framer-1ybe6h7, .framer-avF0J .framer-hxnr1o, .framer-avF0J .framer-b8lx7q, .framer-avF0J .framer-i421xe, .framer-avF0J .framer-bvbnkw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 8px 70px 8px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-151triy, .framer-avF0J .framer-a93s32, .framer-avF0J .framer-1d5rvlx, .framer-avF0J .framer-5wozfk, .framer-avF0J .framer-g92jrg, .framer-avF0J .framer-1aeummd, .framer-avF0J .framer-1yykho4, .framer-avF0J .framer-7k7ajw, .framer-avF0J .framer-1vy3m8g, .framer-avF0J .framer-8z3lr0, .framer-avF0J .framer-193hw83, .framer-avF0J .framer-7c7vk, .framer-avF0J .framer-14xjzxn, .framer-avF0J .framer-ctwmt0, .framer-avF0J .framer-107mng8, .framer-avF0J .framer-14p2rqx, .framer-avF0J .framer-jd51gj, .framer-avF0J .framer-vsjjtu, .framer-avF0J .framer-dreovg, .framer-avF0J .framer-19ofjir, .framer-avF0J .framer-uqyr2c, .framer-avF0J .framer-1tk6hft, .framer-avF0J .framer-1na27dm, .framer-avF0J .framer-1hdee62, .framer-avF0J .framer-2qmtjq, .framer-avF0J .framer-rk9v04, .framer-avF0J .framer-1fzz8m8, .framer-avF0J .framer-sac09u, .framer-avF0J .framer-m1k1de, .framer-avF0J .framer-qme0kl, .framer-avF0J .framer-9im4ug, .framer-avF0J .framer-nbhfd9, .framer-avF0J .framer-odzuee, .framer-avF0J .framer-1qtc49o, .framer-avF0J .framer-1e6webd, .framer-avF0J .framer-147wtnw, .framer-avF0J .framer-y5avcn, .framer-avF0J .framer-10pr62s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-avF0J .framer-13hxmft, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-13mx902 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-9rcxlr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 70px; position: relative; width: 866px; }\",\".framer-avF0J .framer-18ij14c { aspect-ratio: 1.0297542043984476 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 773px); position: relative; width: 100%; }\",\".framer-avF0J .framer-fklic0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; overflow: visible; padding: 8px 70px 8px 0px; position: relative; width: 1px; }\",\".framer-avF0J .framer-jd7wwx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-mg88aq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1b81o53, .framer-avF0J .framer-1a2yb6i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1rfnbpn { aspect-ratio: 2.592326139088729 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 424px); position: relative; width: 100%; }\",\".framer-avF0J .framer-1kguehe { aspect-ratio: 2.592326139088729 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 77px); position: relative; width: 100%; }\",\".framer-avF0J .framer-l0o7rf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-19ti8pd { aspect-ratio: 1.7763157894736843 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 619px); position: relative; width: 1px; }\",\".framer-avF0J .framer-14mtprt-container, .framer-avF0J .framer-2otn4x-container, .framer-avF0J .framer-ydwd1a-container, .framer-avF0J .framer-5xarmq-container, .framer-avF0J .framer-12yu8if-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-avF0J .framer-xqveju, .framer-avF0J .framer-v9m0y5, .framer-avF0J .framer-g0ffzf, .framer-avF0J .framer-1rasd2s, .framer-avF0J .framer-1gjg8nh { aspect-ratio: 0.7227722772277227 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 325px; }\",\".framer-avF0J .framer-swtic5 { aspect-ratio: 3.392226148409894 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 325px); position: relative; width: 100%; }\",\".framer-avF0J .framer-4ke606 { aspect-ratio: 3.392226148409894 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 324px); position: relative; width: 100%; }\",\".framer-avF0J .framer-1ed8vh6, .framer-avF0J .framer-3kkt68, .framer-avF0J .framer-lsim9k, .framer-avF0J .framer-1swbdbg, .framer-avF0J .framer-d4hwlj, .framer-avF0J .framer-3naicu, .framer-avF0J .framer-4orivn, .framer-avF0J .framer-jkk7mp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-cj23qr { aspect-ratio: 1.936842105263158 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 568px); position: relative; width: 100%; }\",\".framer-avF0J .framer-1kaxlnd, .framer-avF0J .framer-kej8i2, .framer-avF0J .framer-15qq8ap { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 70px; position: relative; width: 50%; }\",\".framer-avF0J .framer-x4sj4i, .framer-avF0J .framer-1h5of9u, .framer-avF0J .framer-thllx9 { aspect-ratio: 1.8 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 306px); position: relative; width: 100%; }\",\".framer-avF0J .framer-z7pyoc, .framer-avF0J .framer-z1m9qt, .framer-avF0J .framer-1urqmpx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 70px 8px 0px; position: relative; width: 1px; }\",\".framer-avF0J .framer-1i5p2hy { aspect-ratio: 3.4901185770750986 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 316px); position: relative; width: 100%; }\",\".framer-avF0J .framer-4pc8z0 { --border-bottom-width: 1px; --border-color: #aaaaaa; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.3076923076923075 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 477px); position: relative; width: 100%; }\",\".framer-avF0J .framer-topwtk, .framer-avF0J .framer-b6xlcm { --border-bottom-width: 1px; --border-color: #dddddd; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.3076923076923075 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 477px); position: relative; width: 100%; }\",\".framer-avF0J .framer-ik0wfl { --border-bottom-width: 1px; --border-color: #dddddd; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.5605889014722536 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 705px); position: relative; width: 100%; }\",\".framer-avF0J .framer-hi2vo3, .framer-avF0J .framer-1usxk6a { align-content: flex-start; align-items: flex-start; background-color: #eeeeee; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 10px 5px 10px; position: relative; width: min-content; }\",\".framer-avF0J .framer-oi0fqv { aspect-ratio: 3.004106776180698 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 367px); overflow: visible; position: relative; width: 100%; }\",\".framer-avF0J .framer-1h5l2q1-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1qk20vc, .framer-avF0J .framer-3wefl3, .framer-avF0J .framer-10swgjp, .framer-avF0J .framer-aomduz, .framer-avF0J .framer-1amavvd, .framer-avF0J .framer-1hafj0z, .framer-avF0J .framer-1x5vehq, .framer-avF0J .framer-trxc2w, .framer-avF0J .framer-s41xbr, .framer-avF0J .framer-opf4p8, .framer-avF0J .framer-1waftgo, .framer-avF0J .framer-1qizp1z { --border-bottom-width: 1px; --border-color: #aaaaaa; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.77734375 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 512px); overflow: visible; position: relative; width: 910px; }\",\".framer-avF0J .framer-1b89l4p { aspect-ratio: 1.4715481171548117 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 748px); position: relative; width: 100%; }\",\".framer-avF0J .framer-1ructtk-container { flex: none; height: auto; max-height: 90vh; position: relative; width: 100%; }\",\".framer-avF0J .framer-1ce8axn, .framer-avF0J .framer-oxwfz6, .framer-avF0J .framer-1255hix, .framer-avF0J .framer-ozxvze { --border-bottom-width: 1px; --border-color: #aaaaaa; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.459954233409611 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 350px); position: relative; width: 161px; }\",\".framer-avF0J .framer-6z7759 { 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: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 100%; }\",\".framer-avF0J .framer-9kx437 { aspect-ratio: 1.3253012048192772 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 830px); position: relative; width: 100%; }\",\".framer-avF0J .framer-1ooa945 { align-content: center; align-items: center; aspect-ratio: 1.134020618556701 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 970px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1yyew1, .framer-avF0J .framer-y1ru04 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-avF0J .framer-5sw4bm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-52fo43 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-17l4o34 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-avF0J .framer-f04woz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-avF0J .framer-jakmjd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-avF0J .framer-6v0mdt { flex: none; height: 24px; overflow: hidden; position: relative; width: 100%; }\",\".framer-avF0J .framer-ibpkeg-container, .framer-avF0J .framer-10jmr51-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-avF0J .framer-1vkyg1m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-avF0J .framer-1xfzw1i { flex: none; height: 246px; overflow: hidden; position: relative; width: 100%; }\",\".framer-avF0J .framer-w0qe15-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-avF0J .framer-q4j71n { bottom: 0px; flex: none; height: 246px; left: 0px; overflow: visible; position: absolute; width: 246px; }\",\".framer-avF0J .framer-4vtnz0 { flex: none; height: 46px; left: 190px; overflow: visible; position: absolute; top: 170px; width: 76px; }\",\".framer-avF0J .framer-44mmau { flex: none; height: 50px; left: -2px; position: absolute; top: -2px; width: 80px; }\",\".framer-avF0J .framer-1gwj4ao { flex: none; height: 42px; left: -1px; position: absolute; top: 2px; width: 75px; }\",\".framer-avF0J .framer-1hau84h { flex: none; height: 18px; left: 24px; position: absolute; top: 12px; white-space: pre-wrap; width: 46px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-avF0J.framer-67b9c6, .framer-avF0J .framer-vox5ps, .framer-avF0J .framer-14e0g8o, .framer-avF0J .framer-1o09jey, .framer-avF0J .framer-1wamylu, .framer-avF0J .framer-1y1ig2k, .framer-avF0J .framer-kl13wh, .framer-avF0J .framer-1cgbazi, .framer-avF0J .framer-1ux9x9w, .framer-avF0J .framer-4f5js8, .framer-avF0J .framer-151v9fg, .framer-avF0J .framer-ktsout, .framer-avF0J .framer-put2uf, .framer-avF0J .framer-13hxmft, .framer-avF0J .framer-9rcxlr, .framer-avF0J .framer-fklic0, .framer-avF0J .framer-jd7wwx, .framer-avF0J .framer-mg88aq, .framer-avF0J .framer-1b81o53, .framer-avF0J .framer-s4vy3l, .framer-avF0J .framer-1mi8vp7, .framer-avF0J .framer-l0o7rf, .framer-avF0J .framer-1iuunse, .framer-avF0J .framer-1a2yb6i, .framer-avF0J .framer-bq2nw0, .framer-avF0J .framer-vjardg, .framer-avF0J .framer-1ed8vh6, .framer-avF0J .framer-zswdvh, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-1kaxlnd, .framer-avF0J .framer-z7pyoc, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-kej8i2, .framer-avF0J .framer-z1m9qt, .framer-avF0J .framer-13mx902, .framer-avF0J .framer-15qq8ap, .framer-avF0J .framer-1urqmpx, .framer-avF0J .framer-1ctfxkb, .framer-avF0J .framer-1r5wsr1, .framer-avF0J .framer-3kkt68, .framer-avF0J .framer-8q1j62, .framer-avF0J .framer-2p5jy1, .framer-avF0J .framer-1vmlrf2, .framer-avF0J .framer-lsim9k, .framer-avF0J .framer-h4gmm4, .framer-avF0J .framer-1swbdbg, .framer-avF0J .framer-x189f0, .framer-avF0J .framer-1ybe6h7, .framer-avF0J .framer-d4hwlj, .framer-avF0J .framer-v87q0j, .framer-avF0J .framer-hxnr1o, .framer-avF0J .framer-3naicu, .framer-avF0J .framer-1qegof1, .framer-avF0J .framer-b8lx7q, .framer-avF0J .framer-hi2vo3, .framer-avF0J .framer-1usxk6a, .framer-avF0J .framer-4orivn, .framer-avF0J .framer-i421xe, .framer-avF0J .framer-4o72tk, .framer-avF0J .framer-jkk7mp, .framer-avF0J .framer-bvbnkw, .framer-avF0J .framer-6z7759, .framer-avF0J .framer-1ooa945, .framer-avF0J .framer-5sw4bm, .framer-avF0J .framer-52fo43, .framer-avF0J .framer-17l4o34, .framer-avF0J .framer-f04woz, .framer-avF0J .framer-jakmjd, .framer-avF0J .framer-1vkyg1m { gap: 0px; } .framer-avF0J.framer-67b9c6 > *, .framer-avF0J .framer-4f5js8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-avF0J.framer-67b9c6 > :first-child, .framer-avF0J .framer-14e0g8o > :first-child, .framer-avF0J .framer-1o09jey > :first-child, .framer-avF0J .framer-1ux9x9w > :first-child, .framer-avF0J .framer-4f5js8 > :first-child, .framer-avF0J .framer-151v9fg > :first-child, .framer-avF0J .framer-ktsout > :first-child, .framer-avF0J .framer-put2uf > :first-child, .framer-avF0J .framer-9rcxlr > :first-child, .framer-avF0J .framer-fklic0 > :first-child, .framer-avF0J .framer-jd7wwx > :first-child, .framer-avF0J .framer-mg88aq > :first-child, .framer-avF0J .framer-1b81o53 > :first-child, .framer-avF0J .framer-s4vy3l > :first-child, .framer-avF0J .framer-1mi8vp7 > :first-child, .framer-avF0J .framer-1iuunse > :first-child, .framer-avF0J .framer-1a2yb6i > :first-child, .framer-avF0J .framer-bq2nw0 > :first-child, .framer-avF0J .framer-vjardg > :first-child, .framer-avF0J .framer-1ed8vh6 > :first-child, .framer-avF0J .framer-zswdvh > :first-child, .framer-avF0J .framer-1kaxlnd > :first-child, .framer-avF0J .framer-z7pyoc > :first-child, .framer-avF0J .framer-kej8i2 > :first-child, .framer-avF0J .framer-z1m9qt > :first-child, .framer-avF0J .framer-15qq8ap > :first-child, .framer-avF0J .framer-1urqmpx > :first-child, .framer-avF0J .framer-1ctfxkb > :first-child, .framer-avF0J .framer-1r5wsr1 > :first-child, .framer-avF0J .framer-3kkt68 > :first-child, .framer-avF0J .framer-8q1j62 > :first-child, .framer-avF0J .framer-2p5jy1 > :first-child, .framer-avF0J .framer-1vmlrf2 > :first-child, .framer-avF0J .framer-lsim9k > :first-child, .framer-avF0J .framer-h4gmm4 > :first-child, .framer-avF0J .framer-1swbdbg > :first-child, .framer-avF0J .framer-x189f0 > :first-child, .framer-avF0J .framer-1ybe6h7 > :first-child, .framer-avF0J .framer-d4hwlj > :first-child, .framer-avF0J .framer-v87q0j > :first-child, .framer-avF0J .framer-hxnr1o > :first-child, .framer-avF0J .framer-3naicu > :first-child, .framer-avF0J .framer-1qegof1 > :first-child, .framer-avF0J .framer-b8lx7q > :first-child, .framer-avF0J .framer-4orivn > :first-child, .framer-avF0J .framer-i421xe > :first-child, .framer-avF0J .framer-4o72tk > :first-child, .framer-avF0J .framer-jkk7mp > :first-child, .framer-avF0J .framer-bvbnkw > :first-child, .framer-avF0J .framer-6z7759 > :first-child, .framer-avF0J .framer-17l4o34 > :first-child, .framer-avF0J .framer-jakmjd > :first-child, .framer-avF0J .framer-1vkyg1m > :first-child { margin-top: 0px; } .framer-avF0J.framer-67b9c6 > :last-child, .framer-avF0J .framer-14e0g8o > :last-child, .framer-avF0J .framer-1o09jey > :last-child, .framer-avF0J .framer-1ux9x9w > :last-child, .framer-avF0J .framer-4f5js8 > :last-child, .framer-avF0J .framer-151v9fg > :last-child, .framer-avF0J .framer-ktsout > :last-child, .framer-avF0J .framer-put2uf > :last-child, .framer-avF0J .framer-9rcxlr > :last-child, .framer-avF0J .framer-fklic0 > :last-child, .framer-avF0J .framer-jd7wwx > :last-child, .framer-avF0J .framer-mg88aq > :last-child, .framer-avF0J .framer-1b81o53 > :last-child, .framer-avF0J .framer-s4vy3l > :last-child, .framer-avF0J .framer-1mi8vp7 > :last-child, .framer-avF0J .framer-1iuunse > :last-child, .framer-avF0J .framer-1a2yb6i > :last-child, .framer-avF0J .framer-bq2nw0 > :last-child, .framer-avF0J .framer-vjardg > :last-child, .framer-avF0J .framer-1ed8vh6 > :last-child, .framer-avF0J .framer-zswdvh > :last-child, .framer-avF0J .framer-1kaxlnd > :last-child, .framer-avF0J .framer-z7pyoc > :last-child, .framer-avF0J .framer-kej8i2 > :last-child, .framer-avF0J .framer-z1m9qt > :last-child, .framer-avF0J .framer-15qq8ap > :last-child, .framer-avF0J .framer-1urqmpx > :last-child, .framer-avF0J .framer-1ctfxkb > :last-child, .framer-avF0J .framer-1r5wsr1 > :last-child, .framer-avF0J .framer-3kkt68 > :last-child, .framer-avF0J .framer-8q1j62 > :last-child, .framer-avF0J .framer-2p5jy1 > :last-child, .framer-avF0J .framer-1vmlrf2 > :last-child, .framer-avF0J .framer-lsim9k > :last-child, .framer-avF0J .framer-h4gmm4 > :last-child, .framer-avF0J .framer-1swbdbg > :last-child, .framer-avF0J .framer-x189f0 > :last-child, .framer-avF0J .framer-1ybe6h7 > :last-child, .framer-avF0J .framer-d4hwlj > :last-child, .framer-avF0J .framer-v87q0j > :last-child, .framer-avF0J .framer-hxnr1o > :last-child, .framer-avF0J .framer-3naicu > :last-child, .framer-avF0J .framer-1qegof1 > :last-child, .framer-avF0J .framer-b8lx7q > :last-child, .framer-avF0J .framer-4orivn > :last-child, .framer-avF0J .framer-i421xe > :last-child, .framer-avF0J .framer-4o72tk > :last-child, .framer-avF0J .framer-jkk7mp > :last-child, .framer-avF0J .framer-bvbnkw > :last-child, .framer-avF0J .framer-6z7759 > :last-child, .framer-avF0J .framer-17l4o34 > :last-child, .framer-avF0J .framer-jakmjd > :last-child, .framer-avF0J .framer-1vkyg1m > :last-child { margin-bottom: 0px; } .framer-avF0J .framer-vox5ps > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-avF0J .framer-vox5ps > :first-child, .framer-avF0J .framer-1wamylu > :first-child, .framer-avF0J .framer-1y1ig2k > :first-child, .framer-avF0J .framer-kl13wh > :first-child, .framer-avF0J .framer-1cgbazi > :first-child, .framer-avF0J .framer-13hxmft > :first-child, .framer-avF0J .framer-l0o7rf > :first-child, .framer-avF0J .framer-gidsqy > :first-child, .framer-avF0J .framer-c0ykr7 > :first-child, .framer-avF0J .framer-13mx902 > :first-child, .framer-avF0J .framer-hi2vo3 > :first-child, .framer-avF0J .framer-1usxk6a > :first-child, .framer-avF0J .framer-1ooa945 > :first-child, .framer-avF0J .framer-5sw4bm > :first-child, .framer-avF0J .framer-52fo43 > :first-child, .framer-avF0J .framer-f04woz > :first-child { margin-left: 0px; } .framer-avF0J .framer-vox5ps > :last-child, .framer-avF0J .framer-1wamylu > :last-child, .framer-avF0J .framer-1y1ig2k > :last-child, .framer-avF0J .framer-kl13wh > :last-child, .framer-avF0J .framer-1cgbazi > :last-child, .framer-avF0J .framer-13hxmft > :last-child, .framer-avF0J .framer-l0o7rf > :last-child, .framer-avF0J .framer-gidsqy > :last-child, .framer-avF0J .framer-c0ykr7 > :last-child, .framer-avF0J .framer-13mx902 > :last-child, .framer-avF0J .framer-hi2vo3 > :last-child, .framer-avF0J .framer-1usxk6a > :last-child, .framer-avF0J .framer-1ooa945 > :last-child, .framer-avF0J .framer-5sw4bm > :last-child, .framer-avF0J .framer-52fo43 > :last-child, .framer-avF0J .framer-f04woz > :last-child { margin-right: 0px; } .framer-avF0J .framer-14e0g8o > *, .framer-avF0J .framer-1o09jey > *, .framer-avF0J .framer-9rcxlr > *, .framer-avF0J .framer-1b81o53 > *, .framer-avF0J .framer-1a2yb6i > *, .framer-avF0J .framer-1kaxlnd > *, .framer-avF0J .framer-kej8i2 > *, .framer-avF0J .framer-15qq8ap > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-avF0J .framer-1wamylu > *, .framer-avF0J .framer-1y1ig2k > *, .framer-avF0J .framer-kl13wh > *, .framer-avF0J .framer-1cgbazi > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-avF0J .framer-1ux9x9w > *, .framer-avF0J .framer-6z7759 > *, .framer-avF0J .framer-jakmjd > *, .framer-avF0J .framer-1vkyg1m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-avF0J .framer-151v9fg > *, .framer-avF0J .framer-jd7wwx > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-avF0J .framer-ktsout > *, .framer-avF0J .framer-put2uf > *, .framer-avF0J .framer-fklic0 > *, .framer-avF0J .framer-mg88aq > *, .framer-avF0J .framer-s4vy3l > *, .framer-avF0J .framer-1mi8vp7 > *, .framer-avF0J .framer-1iuunse > *, .framer-avF0J .framer-bq2nw0 > *, .framer-avF0J .framer-vjardg > *, .framer-avF0J .framer-1ed8vh6 > *, .framer-avF0J .framer-zswdvh > *, .framer-avF0J .framer-z7pyoc > *, .framer-avF0J .framer-z1m9qt > *, .framer-avF0J .framer-1urqmpx > *, .framer-avF0J .framer-1ctfxkb > *, .framer-avF0J .framer-1r5wsr1 > *, .framer-avF0J .framer-3kkt68 > *, .framer-avF0J .framer-8q1j62 > *, .framer-avF0J .framer-2p5jy1 > *, .framer-avF0J .framer-1vmlrf2 > *, .framer-avF0J .framer-lsim9k > *, .framer-avF0J .framer-h4gmm4 > *, .framer-avF0J .framer-1swbdbg > *, .framer-avF0J .framer-x189f0 > *, .framer-avF0J .framer-1ybe6h7 > *, .framer-avF0J .framer-d4hwlj > *, .framer-avF0J .framer-v87q0j > *, .framer-avF0J .framer-hxnr1o > *, .framer-avF0J .framer-3naicu > *, .framer-avF0J .framer-1qegof1 > *, .framer-avF0J .framer-b8lx7q > *, .framer-avF0J .framer-4orivn > *, .framer-avF0J .framer-i421xe > *, .framer-avF0J .framer-4o72tk > *, .framer-avF0J .framer-jkk7mp > *, .framer-avF0J .framer-bvbnkw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-avF0J .framer-13hxmft > *, .framer-avF0J .framer-gidsqy > *, .framer-avF0J .framer-c0ykr7 > *, .framer-avF0J .framer-13mx902 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-avF0J .framer-l0o7rf > *, .framer-avF0J .framer-hi2vo3 > *, .framer-avF0J .framer-1usxk6a > *, .framer-avF0J .framer-1ooa945 > *, .framer-avF0J .framer-5sw4bm > *, .framer-avF0J .framer-52fo43 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-avF0J .framer-17l4o34 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-avF0J .framer-f04woz > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-avF0J[data-border=\"true\"]::after, .framer-avF0J [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; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-avF0J.framer-67b9c6 { width: 810px; } .framer-avF0J .framer-4p5mma-container { order: 0; } .framer-avF0J .framer-vox5ps { order: 1; padding: 90px 50px 50px 50px; } .framer-avF0J .framer-14e0g8o { flex: 1 0 0px; padding: 0px; width: 1px; } .framer-avF0J .framer-1u0teir, .framer-avF0J .framer-dvf0fc, .framer-avF0J .framer-yoe8gd, .framer-avF0J .framer-1oo08xt, .framer-avF0J .framer-6ox8nn, .framer-avF0J .framer-1qzjnif, .framer-avF0J .framer-vb7i5s, .framer-avF0J .framer-b6oooe, .framer-avF0J .framer-1vq7f45, .framer-avF0J .framer-hi2vo3, .framer-avF0J .framer-1usxk6a, .framer-avF0J .framer-w3wr2x { width: 100%; } .framer-avF0J .framer-1o09jey { flex: 1 0 0px; padding: 57px 0px 0px 30px; width: 1px; } .framer-avF0J .framer-14ngomr, .framer-avF0J .framer-1tz693t, .framer-avF0J .framer-1bv4xe5, .framer-avF0J .framer-1lyfsyn { flex: 1 0 0px; width: 1px; } .framer-avF0J .framer-1ux9x9w { order: 2; padding: 60px; } .framer-avF0J .framer-4f5js8 { order: 3; } .framer-avF0J .framer-8sw1qw { order: 4; } .framer-avF0J .framer-151v9fg { order: 5; } .framer-avF0J .framer-put2uf, .framer-avF0J .framer-mg88aq, .framer-avF0J .framer-1b81o53, .framer-avF0J .framer-1mi8vp7, .framer-avF0J .framer-l0o7rf, .framer-avF0J .framer-1iuunse, .framer-avF0J .framer-1a2yb6i, .framer-avF0J .framer-vjardg, .framer-avF0J .framer-1ed8vh6, .framer-avF0J .framer-zswdvh, .framer-avF0J .framer-3kkt68, .framer-avF0J .framer-1vmlrf2, .framer-avF0J .framer-lsim9k, .framer-avF0J .framer-h4gmm4, .framer-avF0J .framer-1swbdbg, .framer-avF0J .framer-1ybe6h7, .framer-avF0J .framer-d4hwlj, .framer-avF0J .framer-hxnr1o, .framer-avF0J .framer-3naicu, .framer-avF0J .framer-b8lx7q, .framer-avF0J .framer-4orivn, .framer-avF0J .framer-i421xe, .framer-avF0J .framer-jkk7mp, .framer-avF0J .framer-bvbnkw, .framer-avF0J .framer-6z7759 { padding: 0px; } .framer-avF0J .framer-13hxmft, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-13mx902 { flex-direction: column; } .framer-avF0J .framer-9rcxlr { height: min-content; order: 0; padding: 0px; width: 100%; } .framer-avF0J .framer-18ij14c { height: var(--framer-aspect-ratio-supported, 593px); } .framer-avF0J .framer-fklic0 { flex: none; height: min-content; order: 1; padding: 0px; width: 100%; } .framer-avF0J .framer-1kguehe { aspect-ratio: 0.6442166910688141 / 1; height: var(--framer-aspect-ratio-supported, 947px); } .framer-avF0J .framer-19ti8pd { height: var(--framer-aspect-ratio-supported, 344px); } .framer-avF0J .framer-swtic5, .framer-avF0J .framer-4ke606 { height: var(--framer-aspect-ratio-supported, 180px); } .framer-avF0J .framer-cj23qr { height: var(--framer-aspect-ratio-supported, 315px); } .framer-avF0J .framer-1kaxlnd, .framer-avF0J .framer-kej8i2, .framer-avF0J .framer-15qq8ap { padding: 0px; width: 100%; } .framer-avF0J .framer-x4sj4i, .framer-avF0J .framer-1h5of9u, .framer-avF0J .framer-thllx9 { height: var(--framer-aspect-ratio-supported, 339px); } .framer-avF0J .framer-z7pyoc, .framer-avF0J .framer-z1m9qt, .framer-avF0J .framer-1urqmpx { flex: none; padding: 0px; width: 100%; } .framer-avF0J .framer-1r5wsr1, .framer-avF0J .framer-8q1j62 { padding: 8px 0px 8px 0px; } .framer-avF0J .framer-1i5p2hy { height: var(--framer-aspect-ratio-supported, 175px); } .framer-avF0J .framer-4pc8z0 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 264px); } .framer-avF0J .framer-topwtk { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 265px); } .framer-avF0J .framer-b6xlcm { height: var(--framer-aspect-ratio-supported, 265px); } .framer-avF0J .framer-ik0wfl { height: var(--framer-aspect-ratio-supported, 391px); } .framer-avF0J .framer-oi0fqv { height: var(--framer-aspect-ratio-supported, 203px); } .framer-avF0J .framer-1b89l4p { height: var(--framer-aspect-ratio-supported, 415px); } .framer-avF0J .framer-9kx437 { height: var(--framer-aspect-ratio-supported, 461px); } .framer-avF0J .framer-1ooa945 { height: var(--framer-aspect-ratio-supported, 538px); } .framer-avF0J .framer-1xfzw1i { order: 6; } .framer-avF0J .framer-w0qe15-container { left: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-avF0J .framer-13hxmft, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-13mx902 { gap: 0px; } .framer-avF0J .framer-13hxmft > *, .framer-avF0J .framer-gidsqy > *, .framer-avF0J .framer-c0ykr7 > *, .framer-avF0J .framer-13mx902 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-avF0J .framer-13hxmft > :first-child, .framer-avF0J .framer-gidsqy > :first-child, .framer-avF0J .framer-c0ykr7 > :first-child, .framer-avF0J .framer-13mx902 > :first-child { margin-top: 0px; } .framer-avF0J .framer-13hxmft > :last-child, .framer-avF0J .framer-gidsqy > :last-child, .framer-avF0J .framer-c0ykr7 > :last-child, .framer-avF0J .framer-13mx902 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-avF0J.framer-67b9c6 { width: 390px; } .framer-avF0J .framer-4p5mma-container { order: 0; } .framer-avF0J .framer-vox5ps { flex-direction: column; order: 1; padding: 90px 20px 20px 20px; } .framer-avF0J .framer-14e0g8o, .framer-avF0J .framer-1kaxlnd, .framer-avF0J .framer-kej8i2, .framer-avF0J .framer-15qq8ap { padding: 0px; width: 100%; } .framer-avF0J .framer-1u0teir, .framer-avF0J .framer-dvf0fc, .framer-avF0J .framer-yoe8gd, .framer-avF0J .framer-n3nyj9, .framer-avF0J .framer-1oo08xt, .framer-avF0J .framer-6ox8nn, .framer-avF0J .framer-1qzjnif, .framer-avF0J .framer-vb7i5s, .framer-avF0J .framer-b6oooe, .framer-avF0J .framer-1vq7f45, .framer-avF0J .framer-hi2vo3, .framer-avF0J .framer-1usxk6a, .framer-avF0J .framer-w3wr2x, .framer-avF0J .framer-17l4o34 { width: 100%; } .framer-avF0J .framer-1o09jey { align-self: unset; height: min-content; padding: 0px 0px 0px 30px; width: 100%; } .framer-avF0J .framer-14ngomr, .framer-avF0J .framer-1tz693t, .framer-avF0J .framer-1bv4xe5, .framer-avF0J .framer-1lyfsyn { flex: 1 0 0px; width: 1px; } .framer-avF0J .framer-1ux9x9w { order: 2; padding: 40px 30px 40px 30px; } .framer-avF0J .framer-4f5js8 { order: 3; } .framer-avF0J .framer-8sw1qw { order: 4; } .framer-avF0J .framer-151v9fg { order: 5; padding: 20px; } .framer-avF0J .framer-put2uf, .framer-avF0J .framer-1mi8vp7, .framer-avF0J .framer-l0o7rf, .framer-avF0J .framer-1iuunse, .framer-avF0J .framer-1a2yb6i, .framer-avF0J .framer-vjardg, .framer-avF0J .framer-1ed8vh6, .framer-avF0J .framer-zswdvh, .framer-avF0J .framer-3kkt68, .framer-avF0J .framer-1vmlrf2, .framer-avF0J .framer-lsim9k, .framer-avF0J .framer-h4gmm4, .framer-avF0J .framer-1swbdbg, .framer-avF0J .framer-1ybe6h7, .framer-avF0J .framer-d4hwlj, .framer-avF0J .framer-hxnr1o, .framer-avF0J .framer-3naicu, .framer-avF0J .framer-b8lx7q, .framer-avF0J .framer-4orivn, .framer-avF0J .framer-i421xe, .framer-avF0J .framer-jkk7mp, .framer-avF0J .framer-bvbnkw, .framer-avF0J .framer-6z7759 { padding: 0px; } .framer-avF0J .framer-13hxmft, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-13mx902 { flex-direction: column; } .framer-avF0J .framer-9rcxlr { height: min-content; padding: 0px; width: 100%; } .framer-avF0J .framer-18ij14c { height: var(--framer-aspect-ratio-supported, 340px); } .framer-avF0J .framer-fklic0 { flex: none; height: min-content; padding: 0px; width: 100%; } .framer-avF0J .framer-mg88aq { order: 0; padding: 0px; } .framer-avF0J .framer-1b81o53 { order: 1; padding: 0px; } .framer-avF0J .framer-1kguehe { aspect-ratio: 0.6442166910688141 / 1; height: var(--framer-aspect-ratio-supported, 543px); } .framer-avF0J .framer-19ti8pd { aspect-ratio: 1.507936507936508 / 1; height: var(--framer-aspect-ratio-supported, 232px); } .framer-avF0J .framer-swtic5, .framer-avF0J .framer-4ke606 { aspect-ratio: 1.5580474934036939 / 1; height: var(--framer-aspect-ratio-supported, 225px); } .framer-avF0J .framer-cj23qr { aspect-ratio: 0.6284875183553598 / 1; height: var(--framer-aspect-ratio-supported, 557px); } .framer-avF0J .framer-x4sj4i, .framer-avF0J .framer-1h5of9u, .framer-avF0J .framer-thllx9 { height: var(--framer-aspect-ratio-supported, 195px); } .framer-avF0J .framer-z7pyoc, .framer-avF0J .framer-z1m9qt, .framer-avF0J .framer-1urqmpx { flex: none; padding: 0px; width: 100%; } .framer-avF0J .framer-1r5wsr1, .framer-avF0J .framer-8q1j62 { padding: 8px 0px 8px 0px; } .framer-avF0J .framer-1i5p2hy { height: var(--framer-aspect-ratio-supported, 101px); } .framer-avF0J .framer-4pc8z0 { --border-color: #dddddd; height: var(--framer-aspect-ratio-supported, 152px); } .framer-avF0J .framer-topwtk { aspect-ratio: 1.3217568947906027 / 1; height: var(--framer-aspect-ratio-supported, 265px); } .framer-avF0J .framer-b6xlcm { aspect-ratio: 1.2851153039832286 / 1; height: var(--framer-aspect-ratio-supported, 273px); } .framer-avF0J .framer-ik0wfl { height: var(--framer-aspect-ratio-supported, 224px); } .framer-avF0J .framer-1hm0lmz, .framer-avF0J .framer-17oqj44 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-avF0J .framer-oi0fqv { height: var(--framer-aspect-ratio-supported, 117px); } .framer-avF0J .framer-1b89l4p { height: var(--framer-aspect-ratio-supported, 238px); } .framer-avF0J .framer-9kx437 { aspect-ratio: unset; height: 269px; } .framer-avF0J .framer-1ooa945 { height: var(--framer-aspect-ratio-supported, 309px); } .framer-avF0J .framer-5sw4bm { align-content: center; align-items: center; } .framer-avF0J .framer-1xfzw1i { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-avF0J .framer-vox5ps, .framer-avF0J .framer-13hxmft, .framer-avF0J .framer-gidsqy, .framer-avF0J .framer-c0ykr7, .framer-avF0J .framer-13mx902 { gap: 0px; } .framer-avF0J .framer-vox5ps > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-avF0J .framer-vox5ps > :first-child, .framer-avF0J .framer-13hxmft > :first-child, .framer-avF0J .framer-gidsqy > :first-child, .framer-avF0J .framer-c0ykr7 > :first-child, .framer-avF0J .framer-13mx902 > :first-child { margin-top: 0px; } .framer-avF0J .framer-vox5ps > :last-child, .framer-avF0J .framer-13hxmft > :last-child, .framer-avF0J .framer-gidsqy > :last-child, .framer-avF0J .framer-c0ykr7 > :last-child, .framer-avF0J .framer-13mx902 > :last-child { margin-bottom: 0px; } .framer-avF0J .framer-13hxmft > *, .framer-avF0J .framer-gidsqy > *, .framer-avF0J .framer-c0ykr7 > *, .framer-avF0J .framer-13mx902 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18241\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UI5fwQGtw\":{\"layout\":[\"fixed\",\"auto\"]},\"LLJ1gmT7i\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerjgsArEgAZ=withCSS(Component,css,\"framer-avF0J\");export default FramerjgsArEgAZ;FramerjgsArEgAZ.displayName=\"Netflix\";FramerjgsArEgAZ.defaultProps={height:18241,width:1440};addFonts(FramerjgsArEgAZ,[{explicitInter:true,fonts:[{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjukmDSFXjQiQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\",weight:\"400\"},{family:\"Chivo\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrTN33AiasJ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Source Code Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhMthTXUcdJg.woff2\",weight:\"400\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_WxjukmDSFXjQiQ.woff2\",weight:\"700\"}]},...TopNavFonts,...TickerFonts,...CarouselFonts,...Carousel1Fonts,...ButtonFonts,...ViewCaseStudyFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjgsArEgAZ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"18241\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UI5fwQGtw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LLJ1gmT7i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "TopNavFonts", "getFonts", "aXtxR0byl_default", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "Carousel1Fonts", "ButtonFonts", "KhH10uUqk_default", "ViewCaseStudyFonts", "ikH2JjdDe_default", "FooterFonts", "UqpqQn_cn_default", "MotionDivWithFX", "withFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "Link", "SVG", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerjgsArEgAZ", "withCSS", "jgsArEgAZ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
