{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/XcbS0MNrS3zJ4HduQcZH/nvZ8x6F3TLYNlxwOSadE/GyPfMRA55.js", "ssg:https://framerusercontent.com/modules/HO7rA9O0bE0sJwU7Md9l/6OR2zO63BZ97DI67iEqg/o7WStsbCS.js", "ssg:https://framerusercontent.com/modules/1jJW0ARjSL1k2MKhaObC/jdBhH3q3fAPlqWDTNHQA/ade69bFoI.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (236a21b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ASDxIDJHpFSLvCBR2iN8/0yyHvqTKaD20LMUY54nz/HoFo8sP15.js\";const RichTextWithFX=withFX(RichText);const cycleOrder=[\"oge3tyzOg\",\"dmikYfWmm\"];const serializationHash=\"framer-SlweV\";const variantClassNames={dmikYfWmm:\"framer-v-1dg3ezx\",oge3tyzOg:\"framer-v-196hc9a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition2={delay:0,duration:1.5,ease:[.19,1,.22,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:50,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-20,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Main:\"oge3tyzOg\",Mobile:\"dmikYfWmm\"};const getProps=({attribute,height,id,value,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,apwMlcZtt:(_ref=value!==null&&value!==void 0?value:props.apwMlcZtt)!==null&&_ref!==void 0?_ref:\"Value\",ltcpQViEc:(_ref1=attribute!==null&&attribute!==void 0?attribute:props.ltcpQViEc)!==null&&_ref1!==void 0?_ref1:\"Attribute\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"oge3tyzOg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ltcpQViEc,apwMlcZtt,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oge3tyzOg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-196hc9a\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"oge3tyzOg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-74eb8845-2c5b-4972-bb2a-40be173f95c3, rgba(79, 79, 79, 0.25))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",...style},...addPropertyOverrides({dmikYfWmm:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nko2jc\",layoutDependency:layoutDependency,layoutId:\"F0v5nmfR7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, rgb(38, 38, 38)))\"},children:\"Attribute\"})}),className:\"framer-1dfpt2s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mAXZYgAoj\",style:{\"--extracted-r6o4lv\":\"var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ltcpQViEc,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, rgb(38, 38, 38)))\"},children:\"Value\"})}),className:\"framer-11x8x5q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OwZIISX6Z\",style:{\"--extracted-r6o4lv\":\"var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:apwMlcZtt,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dmikYfWmm:{__framer__enter:animation2,__framer__exit:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, rgb(38, 38, 38)))\"},children:\"Value\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SlweV.framer-1m5x56l, .framer-SlweV .framer-1m5x56l { display: block; }\",\".framer-SlweV.framer-196hc9a { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 400px; }\",\".framer-SlweV .framer-1nko2jc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-SlweV .framer-1dfpt2s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SlweV .framer-11x8x5q { flex: 1 0 0px; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SlweV .framer-1nko2jc { gap: 0px; } .framer-SlweV .framer-1nko2jc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SlweV .framer-1nko2jc > :first-child { margin-left: 0px; } .framer-SlweV .framer-1nko2jc > :last-child { margin-right: 0px; } }\",\".framer-SlweV.framer-v-1dg3ezx.framer-196hc9a { flex-direction: column; }\",\".framer-SlweV.framer-v-1dg3ezx .framer-1nko2jc { padding: 0px 16px 4px 0px; }\",\".framer-SlweV.framer-v-1dg3ezx .framer-11x8x5q { flex: none; max-width: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SlweV.framer-v-1dg3ezx.framer-196hc9a { gap: 0px; } .framer-SlweV.framer-v-1dg3ezx.framer-196hc9a > *, .framer-SlweV.framer-v-1dg3ezx.framer-196hc9a > :first-child, .framer-SlweV.framer-v-1dg3ezx.framer-196hc9a > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-SlweV[data-border=\"true\"]::after, .framer-SlweV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dmikYfWmm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ltcpQViEc\":\"attribute\",\"apwMlcZtt\":\"value\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGyPfMRA55=withCSS(Component,css,\"framer-SlweV\");export default FramerGyPfMRA55;FramerGyPfMRA55.displayName=\"section-specs / table-row\";FramerGyPfMRA55.defaultProps={height:50,width:400};addPropertyControls(FramerGyPfMRA55,{variant:{options:[\"oge3tyzOg\",\"dmikYfWmm\"],optionTitles:[\"Main\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ltcpQViEc:{defaultValue:\"Attribute\",displayTextArea:false,title:\"Attribute\",type:ControlType.String},apwMlcZtt:{defaultValue:\"Value\",displayTextArea:false,title:\"Value\",type:ControlType.String}});addFonts(FramerGyPfMRA55,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGyPfMRA55\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dmikYfWmm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ltcpQViEc\\\":\\\"attribute\\\",\\\"apwMlcZtt\\\":\\\"value\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-ch6Co .framer-styles-preset-p8qqxw:not(.rich-text-wrapper), .framer-ch6Co .framer-styles-preset-p8qqxw.rich-text-wrapper a { --framer-link-current-text-color: var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, #1c1c21); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, #262626) /* {\"name\":\"Text\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-a31d5043-947c-4b72-8ac5-3a2cd17fc6f0, #262626); --framer-link-text-decoration: none; transition: color 0.2s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-ch6Co\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/a7rhR3dn7/a7rhR3dn7.js\";import WorkItem from\"#framer/local/canvasComponent/BNUDwMFl6/BNUDwMFl6.js\";import ImageAspectRatio from\"#framer/local/canvasComponent/gtTB3sfvP/gtTB3sfvP.js\";import SectionSpecsTableRow from\"#framer/local/canvasComponent/GyPfMRA55/GyPfMRA55.js\";import LinkArrow from\"#framer/local/canvasComponent/I8k1b6GjA/I8k1b6GjA.js\";import Button from\"#framer/local/canvasComponent/kyq4Vwl3j/kyq4Vwl3j.js\";import VideoHover from\"#framer/local/canvasComponent/LwhDQO3U8/LwhDQO3U8.js\";import Footer from\"#framer/local/canvasComponent/STQt2b579/STQt2b579.js\";import Work from\"#framer/local/collection/CiGJbYnE3/CiGJbYnE3.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/EBynRuKhU/EBynRuKhU.js\";import*as sharedStyle from\"#framer/local/css/HoFo8sP15/HoFo8sP15.js\";import*as sharedStyle1 from\"#framer/local/css/hZFUSe_OH/hZFUSe_OH.js\";import*as sharedStyle7 from\"#framer/local/css/jzZd_sV5q/jzZd_sV5q.js\";import*as sharedStyle2 from\"#framer/local/css/l18Fo0cuF/l18Fo0cuF.js\";import*as sharedStyle6 from\"#framer/local/css/nynLpePqR/nynLpePqR.js\";import*as sharedStyle8 from\"#framer/local/css/o7WStsbCS/o7WStsbCS.js\";import*as sharedStyle4 from\"#framer/local/css/PnQehpPGM/PnQehpPGM.js\";import*as sharedStyle3 from\"#framer/local/css/XRrJY23yw/XRrJY23yw.js\";import metadataProvider from\"#framer/local/webPageMetadata/ade69bFoI/ade69bFoI.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const MotionDivWithFX=withFX(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageAspectRatioFonts=getFonts(ImageAspectRatio);const ContainerWithFX=withFX(Container);const VideoHoverFonts=getFonts(VideoHover);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonFonts=getFonts(Button);const SectionSpecsTableRowFonts=getFonts(SectionSpecsTableRow);const SlideshowFonts=getFonts(Slideshow);const LinkArrowFonts=getFonts(LinkArrow);const WorkItemFonts=getFonts(WorkItem);const FooterFonts=getFonts(Footer);const breakpoints={ipKdoRuvr:\"(min-width: 1200px)\",TBpsqCGcO:\"(min-width: 810px) and (max-width: 1199px)\",vHLU9R77O:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2Up9m\";const variantClassNames={ipKdoRuvr:\"framer-v-s74ypc\",TBpsqCGcO:\"framer-v-1gx68nm\",vHLU9R77O:\"framer-v-1ih7vkc\"};const transition1={delay:0,duration:.3,ease:[.17,.25,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const transition2={delay:0,duration:.4,ease:[.18,.26,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition3={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.15,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.45,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition7={damping:44,delay:0,mass:1,stiffness:185,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:44,delay:.1,mass:1,stiffness:185,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:47,delay:0,mass:1,stiffness:204,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:44,delay:.2,mass:1,stiffness:185,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={delay:0,duration:.5,ease:[.02,.69,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.96,skewX:0,skewY:0,transition:transition11};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"auto\";}else{return\"none\";}};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition12={delay:0,duration:1.5,ease:[.19,1,.22,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:50,y:0};const transition13={delay:.1,duration:1.5,ease:[.19,1,.22,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:50,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition14={delay:0,duration:1,ease:[.62,0,.72,.97],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ipKdoRuvr\",Phone:\"vHLU9R77O\",Tablet:\"TBpsqCGcO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ipKdoRuvr\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"ade69bFoI\",data:Work,type:\"Collection\"},select:[{collection:\"ade69bFoI\",name:\"UsZbOstXi\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"HYsvORKzG\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"cjerbeg0k\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"AgQAAvKb0\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"fpnSYN2Kh\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"j4Y2f4s4m\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"xffv2XAbO\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"stWJbydqa\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"HYVahnfNk\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"rMkoCIFtq\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"UYtTzNGIY\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"OAhgXxBkr\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"xcZzGyVfd\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"TPI85vfiF\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"MpC2vAfNX\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"rbjQtWOHq\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"CUT0Ilgt1\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"TYyjW9J7h\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"Ft_x1ewUr\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"jz8sYZniW\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"uOxpDzAQO\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"D8HqpkQH1\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"QoeWoVL4S\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"VaZofQ4tF\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"EJuXPUwMU\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"M7IyKZomF\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"thXxmsHFf\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"UBZqQwGxr\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"GAYQweH5T\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"gtVVdSQMF\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"mClXFPv8A\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"ErhEkhWDc\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"evnXxPcia\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"Dho3zKH0W\",type:\"Identifier\"},{collection:\"ade69bFoI\",name:\"fHIG39Q26\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ade69bFoI\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,UsZbOstXi=getFromCurrentRouteData(\"UsZbOstXi\")??\"\",cjerbeg0k=getFromCurrentRouteData(\"cjerbeg0k\")??\"\",HYsvORKzG=getFromCurrentRouteData(\"HYsvORKzG\")??\"\",AgQAAvKb0=getFromCurrentRouteData(\"AgQAAvKb0\"),fpnSYN2Kh=getFromCurrentRouteData(\"fpnSYN2Kh\"),j4Y2f4s4m=getFromCurrentRouteData(\"j4Y2f4s4m\"),xffv2XAbO=getFromCurrentRouteData(\"xffv2XAbO\"),stWJbydqa=getFromCurrentRouteData(\"stWJbydqa\"),HYVahnfNk=getFromCurrentRouteData(\"HYVahnfNk\"),rMkoCIFtq=getFromCurrentRouteData(\"rMkoCIFtq\")??\"\",UYtTzNGIY=getFromCurrentRouteData(\"UYtTzNGIY\"),OAhgXxBkr=getFromCurrentRouteData(\"OAhgXxBkr\"),xcZzGyVfd=getFromCurrentRouteData(\"xcZzGyVfd\"),TPI85vfiF=getFromCurrentRouteData(\"TPI85vfiF\"),MpC2vAfNX=getFromCurrentRouteData(\"MpC2vAfNX\"),rbjQtWOHq=getFromCurrentRouteData(\"rbjQtWOHq\"),CUT0Ilgt1=getFromCurrentRouteData(\"CUT0Ilgt1\")??\"\",TYyjW9J7h=getFromCurrentRouteData(\"TYyjW9J7h\")??true,Ft_x1ewUr=getFromCurrentRouteData(\"Ft_x1ewUr\")??\"\",jz8sYZniW=getFromCurrentRouteData(\"jz8sYZniW\")??true,uOxpDzAQO=getFromCurrentRouteData(\"uOxpDzAQO\")??\"\",D8HqpkQH1=getFromCurrentRouteData(\"D8HqpkQH1\")??\"\",QoeWoVL4S=getFromCurrentRouteData(\"QoeWoVL4S\")??\"\",VaZofQ4tF=getFromCurrentRouteData(\"VaZofQ4tF\")??true,EJuXPUwMU=getFromCurrentRouteData(\"EJuXPUwMU\")??\"\",M7IyKZomF=getFromCurrentRouteData(\"M7IyKZomF\")??\"\",thXxmsHFf=getFromCurrentRouteData(\"thXxmsHFf\")??true,UBZqQwGxr=getFromCurrentRouteData(\"UBZqQwGxr\")??\"\",GAYQweH5T=getFromCurrentRouteData(\"GAYQweH5T\")??\"\",gtVVdSQMF=getFromCurrentRouteData(\"gtVVdSQMF\"),mClXFPv8A=getFromCurrentRouteData(\"mClXFPv8A\"),ErhEkhWDc=getFromCurrentRouteData(\"ErhEkhWDc\"),evnXxPcia=getFromCurrentRouteData(\"evnXxPcia\"),Dho3zKH0W=getFromCurrentRouteData(\"Dho3zKH0W\"),fHIG39Q26=getFromCurrentRouteData(\"fHIG39Q26\"),UsZbOstXiExwu4HLvF,HYsvORKzGExwu4HLvF,cjerbeg0kExwu4HLvF,ZvJgb0TpAExwu4HLvF,pu4GsmxwpExwu4HLvF,idExwu4HLvF,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(AgQAAvKb0);const ref1=React.useRef(null);const visible1=isSet(fpnSYN2Kh);const ref2=React.useRef(null);const visible2=isSet(j4Y2f4s4m);const visible3=isSet(xffv2XAbO);const visible4=isSet(stWJbydqa);const visible5=isSet(HYVahnfNk);const visible6=isSet(rMkoCIFtq);const elementId=useRouteElementId(\"V723b1gVa\");const elementId1=useRouteElementId(\"XxixJvZQ7\");const visible7=isSet(UYtTzNGIY);const ref3=React.useRef(null);const visible8=isSet(OAhgXxBkr);const visible9=isSet(xcZzGyVfd);const visible10=isSet(TPI85vfiF);const visible11=isSet(MpC2vAfNX);const visible12=isSet(rbjQtWOHq);const visible13=isSet(CUT0Ilgt1);const pointerEvents=convertFromBoolean(TYyjW9J7h,activeLocale);const visible14=isSet(Ft_x1ewUr);const isDisplayed=value=>{if(!isBrowser())return true;if([\"TBpsqCGcO\",\"vHLU9R77O\"].includes(baseVariant))return false;return value;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"TBpsqCGcO\",\"vHLU9R77O\"].includes(baseVariant))return false;return true;};const pointerEvents1=convertFromBoolean(jz8sYZniW,activeLocale);const visible15=isSet(uOxpDzAQO);const elementId2=useRouteElementId(\"w_uL5dvtE\");const visible16=isSet(D8HqpkQH1);const router=useRouter();const visible17=isSet(EJuXPUwMU);const elementId3=useRouteElementId(\"r8U4P_Vih\");const ref4=React.useRef(null);const visible18=isSet(gtVVdSQMF);const isDisplayed2=value=>{if(!isBrowser())return true;if(baseVariant===\"TBpsqCGcO\")return true;return value;};const ref5=React.useRef(null);const visible19=isSet(mClXFPv8A);const visible20=isSet(ErhEkhWDc);const visible21=isSet(evnXxPcia);const visible22=isSet(Dho3zKH0W);const visible23=isSet(fHIG39Q26);const elementId4=useRouteElementId(\"BRpFzGvPB\");const elementId5=useRouteElementId(\"v42ji8uTv\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ipKdoRuvr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-s74ypc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12h432i-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"KIoxsHBAe\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"KIoxsHBAe\",intensity:12,layoutId:\"KIoxsHBAe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{__framer__animate:{transition:transition2},__framer__scrollDirection:{direction:\"down\",target:animation1}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8emjmr\",\"data-framer-name\":\"Navbar Fixed\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{width:\"calc(100vw - 32px)\"},vHLU9R77O:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"calc(100vw - 64px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywyjc9-container\",nodeId:\"qSeDDKhSM\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"znbJodqJn\"},vHLU9R77O:{variant:\"znbJodqJn\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"qSeDDKhSM\",layoutId:\"qSeDDKhSM\",style:{width:\"100%\"},variant:\"CYuIV823_\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hdlty\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wcfjuz\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfodda\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wsn7n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1h1ze\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-acka54\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-86ukyx\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",children:\"02\"})}),className:\"framer-1vv48zq\",\"data-framer-appear-id\":\"1vv48zq\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},text:UsZbOstXi,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sq95m3\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",children:\"UX, Web\"})}),className:\"framer-1mlwgsj\",\"data-framer-appear-id\":\"1mlwgsj\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},text:cjerbeg0k,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxf64j\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1gbwo2r\",\"data-styles-preset\":\"hZFUSe_OH\",children:\"Stacks\u2014Ideation & Prototype\"})}),className:\"framer-1o19ti3\",\"data-framer-appear-id\":\"1o19ti3\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},text:HYsvORKzG,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4dv0k\",\"data-framer-name\":\"Project Images\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1oy8ivd\",\"data-framer-appear-id\":\"1oy8ivd\",\"data-framer-name\":\"Images\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ngugj2-container\",nodeId:\"A9KJlEBYN\",rendersWithMotion:true,scopeId:\"ade69bFoI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"A9KJlEBYN\",layoutId:\"A9KJlEBYN\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(AgQAAvKb0)})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11h346g\",children:[visible1&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16fv7q3\",\"data-framer-name\":\"Image Row\",style:{transformPerspective:1200},children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kp325p-container\",nodeId:\"rESRIE4Wn\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"rESRIE4Wn\",layoutId:\"rESRIE4Wn\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(fpnSYN2Kh)})})})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{__framer__animate:{transition:transition9},__framer__exit:animation10}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xt741m-container\",nodeId:\"UlNGSM87o\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"UlNGSM87o\",layoutId:\"UlNGSM87o\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(j4Y2f4s4m)})})})})})]}),visible3&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1noceeb\",\"data-framer-name\":\"Image Row\",style:{transformPerspective:1200},children:[visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4tb9fs-container\",nodeId:\"CMrwW8cLK\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"CMrwW8cLK\",layoutId:\"CMrwW8cLK\",style:{width:\"100%\"},variant:\"MeTIOntQr\",width:\"100%\",WKR34BYYJ:toResponsiveImage(xffv2XAbO)})})})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{__framer__animate:{transition:transition9},__framer__exit:animation10}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jzd348-container\",nodeId:\"H1Wfy_Uez\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"H1Wfy_Uez\",layoutId:\"H1Wfy_Uez\",style:{width:\"100%\"},variant:\"MeTIOntQr\",width:\"100%\",WKR34BYYJ:toResponsiveImage(stWJbydqa)})})})})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{__framer__animate:{transition:transition9},__framer__exit:animation10}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-imsxk9-container\",nodeId:\"M5Jg3whi7\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"M5Jg3whi7\",layoutId:\"M5Jg3whi7\",style:{width:\"100%\"},variant:\"MeTIOntQr\",width:\"100%\",WKR34BYYJ:toResponsiveImage(HYVahnfNk)})})})})})]})]}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flu92k\",\"data-framer-name\":\"Spacer\"}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvzwtk\",\"data-framer-name\":\"Objectives\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1uqh6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",children:\"Overview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Overview\"})}),className:\"framer-to2lod\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywvmtc\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"D0SeEHbHN\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PitnNiBRZ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"QUie2Qanx\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:rMkoCIFtq,className:\"framer-1psai3m\",\"data-framer-name\":\"Objectives\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-errik9\",code:\"framer-styles-preset-10s5767\",h1:\"framer-styles-preset-1byivmi\",h2:\"framer-styles-preset-1s0h6xz\",img:\"framer-styles-preset-jph8t7\",p:\"framer-styles-preset-yo33vq\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jwwt35\",\"data-framer-name\":\"Spacer\",id:elementId1,ref:ref1}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1samtpl\",children:[visible7&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-acf0vu\",\"data-framer-name\":\"Video Row\",style:{transformPerspective:1200},children:[visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1twz32w-container\",nodeId:\"C46Lvo33m\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(UYtTzNGIY),height:\"100%\",id:\"C46Lvo33m\",layoutId:\"C46Lvo33m\",NsF9i2Q3Y:UYtTzNGIY,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-euyu1g-container\",nodeId:\"Bw9Lp6Oxd\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(OAhgXxBkr),height:\"100%\",id:\"Bw9Lp6Oxd\",layoutId:\"Bw9Lp6Oxd\",NsF9i2Q3Y:OAhgXxBkr,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})})]}),visible9&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kdkqld\",\"data-framer-name\":\"Video Row\",id:\"1kdkqld\",style:{transformPerspective:1200},children:[visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1js51t6-container\",nodeId:\"FS3JFgPse\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(xcZzGyVfd),height:\"100%\",id:\"FS3JFgPse\",layoutId:\"FS3JFgPse\",NsF9i2Q3Y:xcZzGyVfd,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jtltgs-container\",nodeId:\"rjtSR5AqP\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(TPI85vfiF),height:\"100%\",id:\"rjtSR5AqP\",layoutId:\"rjtSR5AqP\",NsF9i2Q3Y:TPI85vfiF,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})})]}),visible11&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18jd97c\",\"data-framer-name\":\"Video Row\",style:{transformPerspective:1200},children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bmlt4r-container\",nodeId:\"XlGvQDInc\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(MpC2vAfNX),height:\"100%\",id:\"XlGvQDInc\",layoutId:\"XlGvQDInc\",NsF9i2Q3Y:MpC2vAfNX,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})}),visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:`max((${componentViewport?.width||\"100vw\"} - 48px) / 0, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mc8fqv-container\",nodeId:\"GaEDhncUy\",rendersWithMotion:true,scopeId:\"ade69bFoI\",whileHover:animation12,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"fydXhbmIi\"},vHLU9R77O:{variant:\"fydXhbmIi\"}},children:/*#__PURE__*/_jsx(VideoHover,{eLAx_nDmC:isSet(rbjQtWOHq),height:\"100%\",id:\"GaEDhncUy\",layoutId:\"GaEDhncUy\",NsF9i2Q3Y:rbjQtWOHq,style:{width:\"100%\"},variant:\"PMv7XxY6b\",width:\"100%\"})})})})})]}),visible13&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3n52z3\",\"data-framer-name\":\"Video Row\",style:{transformPerspective:1200},children:[visible13&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x81blq\",\"data-framer-name\":\"Video 1\",children:[visible13&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y86xd6\",\"data-framer-name\":\"Video Inline\",whileHover:animation12,children:visible13&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"D0SeEHbHN\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PitnNiBRZ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"QUie2Qanx\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:CUT0Ilgt1,className:\"framer-1l01c0h\",\"data-framer-name\":\"Video Inline\",fonts:[\"Inter\"],style:{\"--1kecrkj\":pointerEvents},stylesPresetsClassNames:{a:\"framer-styles-preset-p8qqxw\",code:\"framer-styles-preset-10s5767\",h1:\"framer-styles-preset-15kguhk\",h2:\"framer-styles-preset-1s0h6xz\",p:\"framer-styles-preset-yo33vq\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed(visible14)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-gawwj9\",\"hidden-1gx68nm\",\"hidden-1ih7vkc\",!visible14&&\"hidden-s74ypc\"),\"data-framer-name\":\"Grid Padding\"})]}),visible14&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17s7jfr\",\"data-framer-name\":\"Video 2\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18lmbry hidden-1gx68nm hidden-1ih7vkc\",\"data-framer-name\":\"Grid Padding\"}),visible14&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-210alf\",\"data-framer-name\":\"Video Inline\",whileHover:animation12,children:visible14&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"D0SeEHbHN\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PitnNiBRZ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"QUie2Qanx\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Ft_x1ewUr,className:\"framer-wm7kzl\",\"data-framer-name\":\"Video Inline\",fonts:[\"Inter\"],style:{\"--icmru3\":pointerEvents1},stylesPresetsClassNames:{a:\"framer-styles-preset-p8qqxw\",code:\"framer-styles-preset-10s5767\",h1:\"framer-styles-preset-15kguhk\",h2:\"framer-styles-preset-1s0h6xz\",p:\"framer-styles-preset-yo33vq\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12v2ps7\",children:[visible15&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ep2kzb\",\"data-framer-name\":\"Results\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdrk1b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vHLU9R77O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hsd3vm\",\"data-styles-preset\":\"HoFo8sP15\",children:\"Outcomes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Outcomes\"})}),className:\"framer-1awjb5l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dfiw0y\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"D0SeEHbHN\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PitnNiBRZ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"QUie2Qanx\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uOxpDzAQO,className:\"framer-1locivh\",\"data-framer-name\":\"Results\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-errik9\",code:\"framer-styles-preset-10s5767\",h1:\"framer-styles-preset-1byivmi\",h2:\"framer-styles-preset-1s0h6xz\",img:\"framer-styles-preset-jph8t7\",p:\"framer-styles-preset-yo33vq\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible16&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hk3fug\",children:[visible16&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:D8HqpkQH1,implicitPathVariables:undefined},{href:D8HqpkQH1,implicitPathVariables:undefined},{href:D8HqpkQH1,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f4kn7-container\",nodeId:\"gkjNhz7j9\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{PuyoZnKHA:resolvedLinks[1]},vHLU9R77O:{PuyoZnKHA:resolvedLinks[2],variant:\"JWhtHoMhX\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"gkjNhz7j9\",ksSvOzS7g:QoeWoVL4S,layoutId:\"gkjNhz7j9\",PuyoZnKHA:resolvedLinks[0],U1DeJwzN2:VaZofQ4tF,variant:\"WfbLmbFm1\",width:\"100%\"})})})})}),visible17&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:EJuXPUwMU,implicitPathVariables:undefined},{href:EJuXPUwMU,implicitPathVariables:undefined},{href:EJuXPUwMU,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a1gspb-container\",nodeId:\"Ztrytfm47\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{PuyoZnKHA:resolvedLinks1[1]},vHLU9R77O:{PuyoZnKHA:resolvedLinks1[2],variant:\"JWhtHoMhX\"}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Ztrytfm47\",ksSvOzS7g:M7IyKZomF,layoutId:\"Ztrytfm47\",PuyoZnKHA:resolvedLinks1[0],U1DeJwzN2:thXxmsHFf,variant:\"WfbLmbFm1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juhec\",\"data-framer-name\":\"Skills\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{width:`max((${componentViewport?.width||\"100vw\"} - 80px) * 0.75, 1px)`},vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i6u1xy-container\",nodeId:\"cfzKkTKXL\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(SectionSpecsTableRow,{apwMlcZtt:UBZqQwGxr,height:\"100%\",id:\"cfzKkTKXL\",layoutId:\"cfzKkTKXL\",ltcpQViEc:\"Skills\",style:{width:\"100%\"},variant:\"dmikYfWmm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{width:`max((${componentViewport?.width||\"100vw\"} - 80px) * 0.75, 1px)`},vHLU9R77O:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1btyy2q-container\",nodeId:\"v5V4Hf58M\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(SectionSpecsTableRow,{apwMlcZtt:GAYQweH5T,height:\"100%\",id:\"v5V4Hf58M\",layoutId:\"v5V4Hf58M\",ltcpQViEc:\"Tools\",style:{width:\"100%\"},variant:\"dmikYfWmm\",width:\"100%\"})})})})]})]})]}),isDisplayed2(visible18)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-1gxz23c\",!visible18&&\"hidden-s74ypc\",!visible18&&\"hidden-1ih7vkc\"),\"data-framer-name\":\"Spacer\"}),isDisplayed2(visible18)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation17,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:431,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:cx(\"framer-p0yg4q-container\",!visible18&&\"hidden-s74ypc\",!visible18&&\"hidden-1ih7vkc\"),isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jAwSfwHVT\",rendersWithMotion:true,scopeId:\"ade69bFoI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{gap:0,itemAmount:1},vHLU9R77O:{gap:0,itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"jAwSfwHVT\",intervalControl:2.5,itemAmount:2,layoutId:\"jAwSfwHVT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[visible18&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iwkvtu-container\",inComponentSlot:true,nodeId:\"F2tlqngEq\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"F2tlqngEq\",layoutId:\"F2tlqngEq\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(gtVVdSQMF)})})}),visible19&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y3w3no-container\",inComponentSlot:true,nodeId:\"eKQ6WiuFb\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"eKQ6WiuFb\",layoutId:\"eKQ6WiuFb\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(mClXFPv8A)})})}),visible20&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rbwhj-container\",inComponentSlot:true,nodeId:\"rLzHGzCH2\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"rLzHGzCH2\",layoutId:\"rLzHGzCH2\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(ErhEkhWDc)})})}),visible21&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-caadvz-container\",inComponentSlot:true,nodeId:\"cAR2OQ3xZ\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"cAR2OQ3xZ\",layoutId:\"cAR2OQ3xZ\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(evnXxPcia)})})}),visible22&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uz1xwl-container\",inComponentSlot:true,nodeId:\"PJ21c3ti1\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"PJ21c3ti1\",layoutId:\"PJ21c3ti1\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(Dho3zKH0W)})})}),visible23&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1920,width:\"1136px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17oinjk-container\",inComponentSlot:true,nodeId:\"hF5dQsvK7\",rendersWithMotion:true,scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(ImageAspectRatio,{height:\"100%\",id:\"hF5dQsvK7\",layoutId:\"hF5dQsvK7\",style:{width:\"100%\"},variant:\"FUIdc3Ser\",width:\"100%\",WKR34BYYJ:toResponsiveImage(fHIG39Q26)})})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2q8pxi\",\"data-framer-name\":\"Spacer\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2yjgn\",\"data-border\":true,\"data-framer-name\":\"More\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0d7p1\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fbn6kf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yo33vq\",\"data-styles-preset\":\"l18Fo0cuF\",children:\"Next work\"})}),className:\"framer-1sxcd5a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gwjz02\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZsEGvBl1c\"},implicitPathVariables:undefined},{href:{webPageId:\"ZsEGvBl1c\"},implicitPathVariables:undefined},{href:{webPageId:\"ZsEGvBl1c\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hbbld-container\",nodeId:\"gLUNeEd46\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{en7Ddh0c3:resolvedLinks2[1]},vHLU9R77O:{en7Ddh0c3:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(LinkArrow,{en7Ddh0c3:resolvedLinks2[0],height:\"100%\",id:\"gLUNeEd46\",kbuRaQtfC:\"Index List\",layoutId:\"gLUNeEd46\",style:{height:\"100%\"},width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177crkz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-naevr2\",\"data-framer-name\":\"Work\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Exwu4HLvF\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Exwu4HLvF\",name:\"UsZbOstXi\",type:\"Identifier\"},{collection:\"Exwu4HLvF\",name:\"HYsvORKzG\",type:\"Identifier\"},{collection:\"Exwu4HLvF\",name:\"cjerbeg0k\",type:\"Identifier\"},{collection:\"Exwu4HLvF\",name:\"ZvJgb0TpA\",type:\"Identifier\"},{collection:\"Exwu4HLvF\",name:\"pu4Gsmxwp\",type:\"Identifier\"},{collection:\"Exwu4HLvF\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"Exwu4HLvF\",name:\"UsZbOstXi\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:UsZbOstXi},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cjerbeg0k:cjerbeg0kExwu4HLvF,HYsvORKzG:HYsvORKzGExwu4HLvF,id:idExwu4HLvF,pu4Gsmxwp:pu4GsmxwpExwu4HLvF,UsZbOstXi:UsZbOstXiExwu4HLvF,ZvJgb0TpA:ZvJgb0TpAExwu4HLvF},index)=>{UsZbOstXiExwu4HLvF??=\"\";HYsvORKzGExwu4HLvF??=\"\";cjerbeg0kExwu4HLvF??=\"\";pu4GsmxwpExwu4HLvF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Exwu4HLvF-${idExwu4HLvF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4b2e9s\",\"data-framer-name\":\"Work List\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined},{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined},{href:{pathVariables:{pu4Gsmxwp:pu4GsmxwpExwu4HLvF},webPageId:\"ade69bFoI\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 200px)`},vHLU9R77O:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:445,width:`max((max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px) - 16px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isvrf6-container\",nodeId:\"oafcYXH3u\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{ejc0wl_X0:resolvedLinks3[1]},vHLU9R77O:{ejc0wl_X0:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(WorkItem,{dy8ve8BDs:\"var(--token-28400ff0-1ea7-4d56-b9a2-e3a9fa7c3ba7, rgb(0, 0, 0))\",ejc0wl_X0:resolvedLinks3[0],gP0qHAbx9:cjerbeg0kExwu4HLvF,height:\"100%\",i02RspAU5:UsZbOstXiExwu4HLvF,id:\"oafcYXH3u\",J4iImaLRF:false,layoutId:\"oafcYXH3u\",rXch_f5Zc:toResponsiveImage(ZvJgb0TpAExwu4HLvF),style:{width:\"100%\"},variant:\"tONPzsCJ2\",width:\"100%\",xSiKNVxPh:HYsvORKzGExwu4HLvF,yhckIRiz9:\"var(--token-03ae56eb-df7a-4c7b-b3df-9bf716a6723a, rgb(35, 35, 41))\"})})})})})})})})},idExwu4HLvF);})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1edg2x0\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:726,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ry3u70-container\",nodeId:\"QzwUbJZTt\",scopeId:\"ade69bFoI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TBpsqCGcO:{variant:\"lqmKCfeJO\"},vHLU9R77O:{variant:\"eLCldUbsU\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QzwUbJZTt\",layoutId:\"QzwUbJZTt\",style:{width:\"100%\"},variant:\"S_Iixiy5t\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Up9m.framer-19kax7z, .framer-2Up9m .framer-19kax7z { display: block; }\",\".framer-2Up9m.framer-s74ypc { align-content: center; align-items: center; background-color: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-2Up9m .framer-12h432i-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\".framer-2Up9m .framer-8emjmr { align-content: center; align-items: center; background-color: var(--token-38e83481-a340-4535-b223-ac61fd3243f4, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px 32px 0px 32px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-2Up9m .framer-ywyjc9-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-2Up9m .framer-3hdlty { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-wcfjuz { flex: none; height: 25vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-2Up9m .framer-mfodda { --border-bottom-width: 0px; --border-color: var(--token-74eb8845-2c5b-4972-bb2a-40be173f95c3, rgba(79, 79, 79, 0.5)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1wsn7n { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-o1h1ze { flex: none; height: 19px; overflow: hidden; position: relative; width: 198px; }\",\".framer-2Up9m .framer-acka54 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-86ukyx, .framer-2Up9m .framer-1sq95m3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1vv48zq, .framer-2Up9m .framer-1mlwgsj, .framer-2Up9m .framer-1o19ti3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-2Up9m .framer-oxf64j { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1f4dv0k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1oy8ivd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2Up9m .framer-1ngugj2-container, .framer-2Up9m .framer-1i6u1xy-container, .framer-2Up9m .framer-1btyy2q-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2Up9m .framer-11h346g, .framer-2Up9m .framer-1samtpl, .framer-2Up9m .framer-12v2ps7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-16fv7q3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1kp325p-container, .framer-2Up9m .framer-1xt741m-container, .framer-2Up9m .framer-4tb9fs-container, .framer-2Up9m .framer-1jzd348-container, .framer-2Up9m .framer-imsxk9-container, .framer-2Up9m .framer-1isvrf6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1noceeb, .framer-2Up9m .framer-acf0vu, .framer-2Up9m .framer-1kdkqld, .framer-2Up9m .framer-18jd97c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1flu92k, .framer-2Up9m .framer-jwwt35 { flex: none; height: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2Up9m .framer-fvzwtk, .framer-2Up9m .framer-ep2kzb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-x1uqh6, .framer-2Up9m .framer-1fdrk1b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-to2lod, .framer-2Up9m .framer-1awjb5l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2Up9m .framer-ywvmtc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1psai3m, .framer-2Up9m .framer-1locivh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2Up9m .framer-1twz32w-container, .framer-2Up9m .framer-euyu1g-container, .framer-2Up9m .framer-1js51t6-container, .framer-2Up9m .framer-1jtltgs-container, .framer-2Up9m .framer-1bmlt4r-container, .framer-2Up9m .framer-mc8fqv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2Up9m .framer-3n52z3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-height: 639px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1x81blq { 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; min-height: 639px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1y86xd6 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.7789613848202397 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 112px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2Up9m .framer-1l01c0h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; pointer-events: var(--1kecrkj); position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2Up9m .framer-gawwj9, .framer-2Up9m .framer-18lmbry { flex: none; height: 50px; overflow: hidden; position: relative; width: 40%; }\",\".framer-2Up9m .framer-17s7jfr { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-210alf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 378px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2Up9m .framer-wm7kzl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; pointer-events: var(--icmru3); position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2Up9m .framer-1dfiw0y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1hk3fug { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 108px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1f4kn7-container, .framer-2Up9m .framer-a1gspb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2Up9m .framer-1juhec { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1gxz23c { flex: none; height: 24px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2Up9m .framer-p0yg4q-container { aspect-ratio: 3.5555555555555554 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); position: relative; width: 100%; }\",\".framer-2Up9m .framer-1iwkvtu-container, .framer-2Up9m .framer-y3w3no-container, .framer-2Up9m .framer-9rbwhj-container, .framer-2Up9m .framer-caadvz-container, .framer-2Up9m .framer-1uz1xwl-container, .framer-2Up9m .framer-17oinjk-container { height: auto; position: relative; width: 1136px; }\",\".framer-2Up9m .framer-2q8pxi { flex: none; height: 50px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2Up9m .framer-s2yjgn { --border-bottom-width: 0px; --border-color: var(--token-74eb8845-2c5b-4972-bb2a-40be173f95c3, rgba(79, 79, 79, 0.25)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-c0d7p1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-1fbn6kf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2Up9m .framer-1sxcd5a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2Up9m .framer-1gwjz02 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-5hbbld-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-2Up9m .framer-177crkz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2Up9m .framer-naevr2 { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-4b2e9s { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1edg2x0 { flex: none; height: 15vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-2Up9m .framer-1ry3u70-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2Up9m.framer-s74ypc, .framer-2Up9m .framer-8emjmr, .framer-2Up9m .framer-3hdlty, .framer-2Up9m .framer-mfodda, .framer-2Up9m .framer-1wsn7n, .framer-2Up9m .framer-acka54, .framer-2Up9m .framer-86ukyx, .framer-2Up9m .framer-1sq95m3, .framer-2Up9m .framer-oxf64j, .framer-2Up9m .framer-1f4dv0k, .framer-2Up9m .framer-1oy8ivd, .framer-2Up9m .framer-11h346g, .framer-2Up9m .framer-16fv7q3, .framer-2Up9m .framer-1noceeb, .framer-2Up9m .framer-fvzwtk, .framer-2Up9m .framer-x1uqh6, .framer-2Up9m .framer-ywvmtc, .framer-2Up9m .framer-1samtpl, .framer-2Up9m .framer-acf0vu, .framer-2Up9m .framer-1kdkqld, .framer-2Up9m .framer-18jd97c, .framer-2Up9m .framer-3n52z3, .framer-2Up9m .framer-1x81blq, .framer-2Up9m .framer-1y86xd6, .framer-2Up9m .framer-17s7jfr, .framer-2Up9m .framer-210alf, .framer-2Up9m .framer-12v2ps7, .framer-2Up9m .framer-ep2kzb, .framer-2Up9m .framer-1fdrk1b, .framer-2Up9m .framer-1dfiw0y, .framer-2Up9m .framer-1hk3fug, .framer-2Up9m .framer-1juhec, .framer-2Up9m .framer-s2yjgn, .framer-2Up9m .framer-c0d7p1, .framer-2Up9m .framer-1fbn6kf, .framer-2Up9m .framer-1gwjz02, .framer-2Up9m .framer-177crkz, .framer-2Up9m .framer-4b2e9s { gap: 0px; } .framer-2Up9m.framer-s74ypc > *, .framer-2Up9m .framer-3hdlty > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-2Up9m.framer-s74ypc > :first-child, .framer-2Up9m .framer-3hdlty > :first-child, .framer-2Up9m .framer-1wsn7n > :first-child, .framer-2Up9m .framer-1f4dv0k > :first-child, .framer-2Up9m .framer-1oy8ivd > :first-child, .framer-2Up9m .framer-11h346g > :first-child, .framer-2Up9m .framer-x1uqh6 > :first-child, .framer-2Up9m .framer-ywvmtc > :first-child, .framer-2Up9m .framer-1samtpl > :first-child, .framer-2Up9m .framer-3n52z3 > :first-child, .framer-2Up9m .framer-1y86xd6 > :first-child, .framer-2Up9m .framer-210alf > :first-child, .framer-2Up9m .framer-12v2ps7 > :first-child, .framer-2Up9m .framer-1fdrk1b > :first-child, .framer-2Up9m .framer-1dfiw0y > :first-child, .framer-2Up9m .framer-1hk3fug > :first-child, .framer-2Up9m .framer-1juhec > :first-child, .framer-2Up9m .framer-177crkz > :first-child { margin-top: 0px; } .framer-2Up9m.framer-s74ypc > :last-child, .framer-2Up9m .framer-3hdlty > :last-child, .framer-2Up9m .framer-1wsn7n > :last-child, .framer-2Up9m .framer-1f4dv0k > :last-child, .framer-2Up9m .framer-1oy8ivd > :last-child, .framer-2Up9m .framer-11h346g > :last-child, .framer-2Up9m .framer-x1uqh6 > :last-child, .framer-2Up9m .framer-ywvmtc > :last-child, .framer-2Up9m .framer-1samtpl > :last-child, .framer-2Up9m .framer-3n52z3 > :last-child, .framer-2Up9m .framer-1y86xd6 > :last-child, .framer-2Up9m .framer-210alf > :last-child, .framer-2Up9m .framer-12v2ps7 > :last-child, .framer-2Up9m .framer-1fdrk1b > :last-child, .framer-2Up9m .framer-1dfiw0y > :last-child, .framer-2Up9m .framer-1hk3fug > :last-child, .framer-2Up9m .framer-1juhec > :last-child, .framer-2Up9m .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-2Up9m .framer-8emjmr > *, .framer-2Up9m .framer-86ukyx > *, .framer-2Up9m .framer-1sq95m3 > *, .framer-2Up9m .framer-1x81blq > *, .framer-2Up9m .framer-17s7jfr > *, .framer-2Up9m .framer-1fbn6kf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2Up9m .framer-8emjmr > :first-child, .framer-2Up9m .framer-mfodda > :first-child, .framer-2Up9m .framer-acka54 > :first-child, .framer-2Up9m .framer-86ukyx > :first-child, .framer-2Up9m .framer-1sq95m3 > :first-child, .framer-2Up9m .framer-oxf64j > :first-child, .framer-2Up9m .framer-16fv7q3 > :first-child, .framer-2Up9m .framer-1noceeb > :first-child, .framer-2Up9m .framer-fvzwtk > :first-child, .framer-2Up9m .framer-acf0vu > :first-child, .framer-2Up9m .framer-1kdkqld > :first-child, .framer-2Up9m .framer-18jd97c > :first-child, .framer-2Up9m .framer-1x81blq > :first-child, .framer-2Up9m .framer-17s7jfr > :first-child, .framer-2Up9m .framer-ep2kzb > :first-child, .framer-2Up9m .framer-s2yjgn > :first-child, .framer-2Up9m .framer-c0d7p1 > :first-child, .framer-2Up9m .framer-1fbn6kf > :first-child, .framer-2Up9m .framer-1gwjz02 > :first-child, .framer-2Up9m .framer-4b2e9s > :first-child { margin-left: 0px; } .framer-2Up9m .framer-8emjmr > :last-child, .framer-2Up9m .framer-mfodda > :last-child, .framer-2Up9m .framer-acka54 > :last-child, .framer-2Up9m .framer-86ukyx > :last-child, .framer-2Up9m .framer-1sq95m3 > :last-child, .framer-2Up9m .framer-oxf64j > :last-child, .framer-2Up9m .framer-16fv7q3 > :last-child, .framer-2Up9m .framer-1noceeb > :last-child, .framer-2Up9m .framer-fvzwtk > :last-child, .framer-2Up9m .framer-acf0vu > :last-child, .framer-2Up9m .framer-1kdkqld > :last-child, .framer-2Up9m .framer-18jd97c > :last-child, .framer-2Up9m .framer-1x81blq > :last-child, .framer-2Up9m .framer-17s7jfr > :last-child, .framer-2Up9m .framer-ep2kzb > :last-child, .framer-2Up9m .framer-s2yjgn > :last-child, .framer-2Up9m .framer-c0d7p1 > :last-child, .framer-2Up9m .framer-1fbn6kf > :last-child, .framer-2Up9m .framer-1gwjz02 > :last-child, .framer-2Up9m .framer-4b2e9s > :last-child { margin-right: 0px; } .framer-2Up9m .framer-mfodda > *, .framer-2Up9m .framer-acka54 > *, .framer-2Up9m .framer-oxf64j > *, .framer-2Up9m .framer-16fv7q3 > *, .framer-2Up9m .framer-1noceeb > *, .framer-2Up9m .framer-fvzwtk > *, .framer-2Up9m .framer-acf0vu > *, .framer-2Up9m .framer-1kdkqld > *, .framer-2Up9m .framer-18jd97c > *, .framer-2Up9m .framer-ep2kzb > *, .framer-2Up9m .framer-s2yjgn > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-2Up9m .framer-1wsn7n > *, .framer-2Up9m .framer-1hk3fug > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2Up9m .framer-1f4dv0k > *, .framer-2Up9m .framer-1oy8ivd > *, .framer-2Up9m .framer-11h346g > *, .framer-2Up9m .framer-x1uqh6 > *, .framer-2Up9m .framer-1samtpl > *, .framer-2Up9m .framer-3n52z3 > *, .framer-2Up9m .framer-12v2ps7 > *, .framer-2Up9m .framer-1fdrk1b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2Up9m .framer-ywvmtc > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-2Up9m .framer-1y86xd6 > *, .framer-2Up9m .framer-210alf > *, .framer-2Up9m .framer-1juhec > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2Up9m .framer-1dfiw0y > *, .framer-2Up9m .framer-177crkz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2Up9m .framer-c0d7p1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2Up9m .framer-1gwjz02 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-2Up9m .framer-4b2e9s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-2Up9m[data-border=\"true\"]::after, .framer-2Up9m [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: 1199px) { .framer-2Up9m.framer-s74ypc { gap: 80px; width: 810px; } .framer-2Up9m .framer-8emjmr { padding: 0px 16px 0px 16px; } .framer-2Up9m .framer-3hdlty { gap: 80px; } .framer-2Up9m .framer-mfodda { flex-direction: column; } .framer-2Up9m .framer-1wsn7n { align-self: unset; height: 1px; width: 100%; } .framer-2Up9m .framer-acka54 { flex: none; height: min-content; } .framer-2Up9m .framer-oxf64j { flex: none; width: 100%; } .framer-2Up9m .framer-1flu92k, .framer-2Up9m .framer-jwwt35, .framer-2Up9m .framer-2q8pxi { height: 80px; } .framer-2Up9m .framer-ywvmtc, .framer-2Up9m .framer-1dfiw0y { flex: 3 0 0px; } .framer-2Up9m .framer-1x81blq, .framer-2Up9m .framer-17s7jfr, .framer-2Up9m .framer-210alf { min-height: 420px; } .framer-2Up9m .framer-p0yg4q-container { aspect-ratio: 1.776190476190476 / 1; height: var(--framer-aspect-ratio-supported, 420px); } .framer-2Up9m .framer-s2yjgn { flex-direction: column; gap: 40px; } .framer-2Up9m .framer-c0d7p1 { flex: none; gap: 12px; width: 100%; } .framer-2Up9m .framer-1fbn6kf { order: 0; } .framer-2Up9m .framer-1gwjz02 { flex: 97.5 0 0px; order: 1; } .framer-2Up9m .framer-177crkz { flex: none; gap: 16px; overflow: visible; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2Up9m.framer-s74ypc, .framer-2Up9m .framer-3hdlty, .framer-2Up9m .framer-mfodda, .framer-2Up9m .framer-s2yjgn, .framer-2Up9m .framer-c0d7p1, .framer-2Up9m .framer-177crkz { gap: 0px; } .framer-2Up9m.framer-s74ypc > *, .framer-2Up9m .framer-3hdlty > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2Up9m.framer-s74ypc > :first-child, .framer-2Up9m .framer-3hdlty > :first-child, .framer-2Up9m .framer-mfodda > :first-child, .framer-2Up9m .framer-s2yjgn > :first-child, .framer-2Up9m .framer-177crkz > :first-child { margin-top: 0px; } .framer-2Up9m.framer-s74ypc > :last-child, .framer-2Up9m .framer-3hdlty > :last-child, .framer-2Up9m .framer-mfodda > :last-child, .framer-2Up9m .framer-s2yjgn > :last-child, .framer-2Up9m .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-2Up9m .framer-mfodda > *, .framer-2Up9m .framer-177crkz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2Up9m .framer-s2yjgn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2Up9m .framer-c0d7p1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-2Up9m .framer-c0d7p1 > :first-child { margin-left: 0px; } .framer-2Up9m .framer-c0d7p1 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-2Up9m.framer-s74ypc { gap: 60px; width: 390px; } .framer-2Up9m .framer-8emjmr { padding: 0px; } .framer-2Up9m .framer-3hdlty { gap: 60px; padding: 0px 16px 0px 16px; } .framer-2Up9m .framer-mfodda, .framer-2Up9m .framer-16fv7q3, .framer-2Up9m .framer-1noceeb, .framer-2Up9m .framer-fvzwtk, .framer-2Up9m .framer-ep2kzb { flex-direction: column; } .framer-2Up9m .framer-1wsn7n { align-self: unset; height: 1px; order: 1; width: 100%; } .framer-2Up9m .framer-acka54 { flex: none; flex-direction: column; gap: 0px; height: min-content; } .framer-2Up9m .framer-86ukyx, .framer-2Up9m .framer-1sq95m3, .framer-2Up9m .framer-1kp325p-container, .framer-2Up9m .framer-1xt741m-container, .framer-2Up9m .framer-4tb9fs-container, .framer-2Up9m .framer-1jzd348-container, .framer-2Up9m .framer-imsxk9-container, .framer-2Up9m .framer-x1uqh6, .framer-2Up9m .framer-1twz32w-container, .framer-2Up9m .framer-euyu1g-container, .framer-2Up9m .framer-1js51t6-container, .framer-2Up9m .framer-1jtltgs-container, .framer-2Up9m .framer-1bmlt4r-container, .framer-2Up9m .framer-mc8fqv-container, .framer-2Up9m .framer-1fdrk1b { flex: none; width: 100%; } .framer-2Up9m .framer-oxf64j { flex: none; order: 0; width: 100%; } .framer-2Up9m .framer-1flu92k { height: 40px; } .framer-2Up9m .framer-ywvmtc, .framer-2Up9m .framer-1dfiw0y { flex: none; gap: 32px; width: 100%; } .framer-2Up9m .framer-1psai3m, .framer-2Up9m .framer-1locivh, .framer-2Up9m .framer-1fbn6kf { order: 0; } .framer-2Up9m .framer-jwwt35, .framer-2Up9m .framer-2q8pxi { height: 60px; } .framer-2Up9m .framer-acf0vu { flex-direction: column; order: 0; } .framer-2Up9m .framer-1kdkqld { flex-direction: column; order: 1; } .framer-2Up9m .framer-18jd97c { flex-direction: column; order: 2; } .framer-2Up9m .framer-3n52z3 { order: 3; } .framer-2Up9m .framer-1x81blq, .framer-2Up9m .framer-17s7jfr, .framer-2Up9m .framer-210alf { min-height: 202px; } .framer-2Up9m .framer-1hk3fug, .framer-2Up9m .framer-1gwjz02 { order: 1; } .framer-2Up9m .framer-1juhec { order: 2; } .framer-2Up9m .framer-1gxz23c { height: 12px; } .framer-2Up9m .framer-p0yg4q-container { aspect-ratio: 1.7810945273631842 / 1; height: var(--framer-aspect-ratio-supported, 201px); } .framer-2Up9m .framer-s2yjgn { flex-direction: column; flex-wrap: wrap; gap: 40px; } .framer-2Up9m .framer-c0d7p1 { flex: none; gap: 12px; order: 0; width: 100%; } .framer-2Up9m .framer-177crkz { flex: none; gap: 16px; order: 1; width: 100%; } .framer-2Up9m .framer-naevr2 { gap: 40px; grid-template-columns: repeat(1, minmax(200px, 1fr)); order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2Up9m.framer-s74ypc, .framer-2Up9m .framer-3hdlty, .framer-2Up9m .framer-mfodda, .framer-2Up9m .framer-acka54, .framer-2Up9m .framer-16fv7q3, .framer-2Up9m .framer-1noceeb, .framer-2Up9m .framer-fvzwtk, .framer-2Up9m .framer-ywvmtc, .framer-2Up9m .framer-acf0vu, .framer-2Up9m .framer-1kdkqld, .framer-2Up9m .framer-18jd97c, .framer-2Up9m .framer-ep2kzb, .framer-2Up9m .framer-1dfiw0y, .framer-2Up9m .framer-s2yjgn, .framer-2Up9m .framer-c0d7p1, .framer-2Up9m .framer-177crkz, .framer-2Up9m .framer-naevr2 { gap: 0px; } .framer-2Up9m.framer-s74ypc > *, .framer-2Up9m .framer-3hdlty > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2Up9m.framer-s74ypc > :first-child, .framer-2Up9m .framer-3hdlty > :first-child, .framer-2Up9m .framer-mfodda > :first-child, .framer-2Up9m .framer-acka54 > :first-child, .framer-2Up9m .framer-16fv7q3 > :first-child, .framer-2Up9m .framer-1noceeb > :first-child, .framer-2Up9m .framer-fvzwtk > :first-child, .framer-2Up9m .framer-ywvmtc > :first-child, .framer-2Up9m .framer-acf0vu > :first-child, .framer-2Up9m .framer-1kdkqld > :first-child, .framer-2Up9m .framer-18jd97c > :first-child, .framer-2Up9m .framer-ep2kzb > :first-child, .framer-2Up9m .framer-1dfiw0y > :first-child, .framer-2Up9m .framer-s2yjgn > :first-child, .framer-2Up9m .framer-177crkz > :first-child { margin-top: 0px; } .framer-2Up9m.framer-s74ypc > :last-child, .framer-2Up9m .framer-3hdlty > :last-child, .framer-2Up9m .framer-mfodda > :last-child, .framer-2Up9m .framer-acka54 > :last-child, .framer-2Up9m .framer-16fv7q3 > :last-child, .framer-2Up9m .framer-1noceeb > :last-child, .framer-2Up9m .framer-fvzwtk > :last-child, .framer-2Up9m .framer-ywvmtc > :last-child, .framer-2Up9m .framer-acf0vu > :last-child, .framer-2Up9m .framer-1kdkqld > :last-child, .framer-2Up9m .framer-18jd97c > :last-child, .framer-2Up9m .framer-ep2kzb > :last-child, .framer-2Up9m .framer-1dfiw0y > :last-child, .framer-2Up9m .framer-s2yjgn > :last-child, .framer-2Up9m .framer-177crkz > :last-child { margin-bottom: 0px; } .framer-2Up9m .framer-mfodda > *, .framer-2Up9m .framer-16fv7q3 > *, .framer-2Up9m .framer-1noceeb > *, .framer-2Up9m .framer-fvzwtk > *, .framer-2Up9m .framer-acf0vu > *, .framer-2Up9m .framer-1kdkqld > *, .framer-2Up9m .framer-18jd97c > *, .framer-2Up9m .framer-ep2kzb > *, .framer-2Up9m .framer-177crkz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2Up9m .framer-acka54 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2Up9m .framer-ywvmtc > *, .framer-2Up9m .framer-1dfiw0y > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2Up9m .framer-s2yjgn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2Up9m .framer-c0d7p1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-2Up9m .framer-c0d7p1 > :first-child { margin-left: 0px; } .framer-2Up9m .framer-c0d7p1 > :last-child { margin-right: 0px; } .framer-2Up9m .framer-naevr2 > *, .framer-2Up9m .framer-naevr2 > :first-child, .framer-2Up9m .framer-naevr2 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7259\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TBpsqCGcO\":{\"layout\":[\"fixed\",\"auto\"]},\"vHLU9R77O\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"V723b1gVa\":{\"pattern\":\":V723b1gVa\",\"name\":\"objectives\"},\"XxixJvZQ7\":{\"pattern\":\":XxixJvZQ7\",\"name\":\"spacer\"},\"w_uL5dvtE\":{\"pattern\":\":w_uL5dvtE\",\"name\":\"results\"},\"r8U4P_Vih\":{\"pattern\":\":r8U4P_Vih\",\"name\":\"skills\"},\"BRpFzGvPB\":{\"pattern\":\":BRpFzGvPB\",\"name\":\"nextblock\"},\"v42ji8uTv\":{\"pattern\":\":v42ji8uTv\",\"name\":\"nexttext\"}}\n * @framerResponsiveScreen\n */const Framerade69bFoI=withCSS(Component,css,\"framer-2Up9m\");export default Framerade69bFoI;Framerade69bFoI.displayName=\"Page\";Framerade69bFoI.defaultProps={height:7259,width:1200};addFonts(Framerade69bFoI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavigationFonts,...ImageAspectRatioFonts,...VideoHoverFonts,...ButtonFonts,...SectionSpecsTableRowFonts,...SlideshowFonts,...LinkArrowFonts,...WorkItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...componentPresets.fonts?.[\"QUie2Qanx\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"QUie2Qanx\"]):[],...componentPresets.fonts?.[\"D0SeEHbHN\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"D0SeEHbHN\"]):[],...componentPresets.fonts?.[\"PitnNiBRZ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PitnNiBRZ\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerade69bFoI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7259\",\"framerScrollSections\":\"{\\\"V723b1gVa\\\":{\\\"pattern\\\":\\\":V723b1gVa\\\",\\\"name\\\":\\\"objectives\\\"},\\\"XxixJvZQ7\\\":{\\\"pattern\\\":\\\":XxixJvZQ7\\\",\\\"name\\\":\\\"spacer\\\"},\\\"w_uL5dvtE\\\":{\\\"pattern\\\":\\\":w_uL5dvtE\\\",\\\"name\\\":\\\"results\\\"},\\\"r8U4P_Vih\\\":{\\\"pattern\\\":\\\":r8U4P_Vih\\\",\\\"name\\\":\\\"skills\\\"},\\\"BRpFzGvPB\\\":{\\\"pattern\\\":\\\":BRpFzGvPB\\\",\\\"name\\\":\\\"nextblock\\\"},\\\"v42ji8uTv\\\":{\\\"pattern\\\":\\\":v42ji8uTv\\\",\\\"name\\\":\\\"nexttext\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TBpsqCGcO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vHLU9R77O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,Y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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "attribute", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ltcpQViEc", "apwMlcZtt", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerGyPfMRA55", "withCSS", "GyPfMRA55_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "a7rhR3dn7_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ImageAspectRatioFonts", "gtTB3sfvP_default", "ContainerWithFX", "Container", "VideoHoverFonts", "LwhDQO3U8_default", "MotionDivWithOptimizedAppearEffect", "ButtonFonts", "kyq4Vwl3j_default", "SectionSpecsTableRowFonts", "GyPfMRA55_default", "SlideshowFonts", "Slideshow", "LinkArrowFonts", "I8k1b6GjA_default", "WorkItemFonts", "BNUDwMFl6_default", "FooterFonts", "STQt2b579_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "isSet", "value", "toResponsiveImage", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "transition10", "animation11", "transition11", "animation12", "convertFromBoolean", "activeLocale", "animation13", "transition12", "animation14", "transition13", "animation15", "animation16", "transition14", "animation17", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "CiGJbYnE3_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "UsZbOstXi", "cjerbeg0k", "HYsvORKzG", "AgQAAvKb0", "fpnSYN2Kh", "j4Y2f4s4m", "xffv2XAbO", "stWJbydqa", "HYVahnfNk", "rMkoCIFtq", "UYtTzNGIY", "OAhgXxBkr", "xcZzGyVfd", "TPI85vfiF", "MpC2vAfNX", "rbjQtWOHq", "CUT0Ilgt1", "TYyjW9J7h", "Ft_x1ewUr", "jz8sYZniW", "uOxpDzAQO", "D8HqpkQH1", "QoeWoVL4S", "VaZofQ4tF", "EJuXPUwMU", "M7IyKZomF", "thXxmsHFf", "UBZqQwGxr", "GAYQweH5T", "gtVVdSQMF", "mClXFPv8A", "ErhEkhWDc", "evnXxPcia", "Dho3zKH0W", "fHIG39Q26", "UsZbOstXiExwu4HLvF", "HYsvORKzGExwu4HLvF", "cjerbeg0kExwu4HLvF", "ZvJgb0TpAExwu4HLvF", "pu4GsmxwpExwu4HLvF", "idExwu4HLvF", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "visible", "ref1", "visible1", "ref2", "visible2", "visible3", "visible4", "visible5", "visible6", "elementId", "useRouteElementId", "elementId1", "visible7", "ref3", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "pointerEvents", "visible14", "isDisplayed", "isDisplayed1", "pointerEvents1", "visible15", "elementId2", "visible16", "router", "useRouter", "visible17", "elementId3", "ref4", "visible18", "isDisplayed2", "ref5", "visible19", "visible20", "visible21", "visible22", "visible23", "elementId4", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "css", "Framerade69bFoI", "withCSS", "ade69bFoI_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
