{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js", "ssg:https://framerusercontent.com/modules/AiHe4bBOh4uoOdJjswq3/Rd5KtsZhKyEKFuKler8p/aDwYpu7va.js", "ssg:https://framerusercontent.com/modules/eCRf0AbIJjZbRrxAMZgs/ThNnIWbf2rJ0ohBIfFn6/aHq5Tebu2.js", "ssg:https://framerusercontent.com/modules/isYGlqgn3CJpQLqXJc5c/4E6EI7ooixI5yqTNVYux/Er2HgXLyL.js", "ssg:https://framerusercontent.com/modules/3LoYg394pbjaZOm4NXJF/Dq9WpadxVhmzZVhG0oGL/FT5q6zxMV.js", "ssg:https://framerusercontent.com/modules/XQemmXdxcUjp9aoIdalp/HslMUdFIBRQ66wEipFY7/pEt8stBuL.js", "ssg:https://framerusercontent.com/modules/CQUpxqun70avxLGAT6Nf/lYmIHJTTS1fLQ0huTvuz/SMCsCBMM5.js", "ssg:https://framerusercontent.com/modules/007VE6wKkqaCtO187JrC/KVxOdFmFVClhJmk9WGPc/UxbbKR7uj.js", "ssg:https://framerusercontent.com/modules/hcctFELXBZJAca75koh6/fVLQkSjk0tEyhJ11vtYI/enSxR6QOA.js", "ssg:https://framerusercontent.com/modules/v94d1DKQx9Khqh6qEm6X/eFAzBYywZSETQ6fN4J09/S8W8AzVv8.js", "ssg:https://framerusercontent.com/modules/aqrJVZqXpZJQwOMQyzTQ/DfipQiciwYxUcbHFrAoL/vcPPCDLle.js", "ssg:https://framerusercontent.com/modules/q1m9CtiS1YWmqbCwXXtR/H9OuFinWFhPFwXzZga2w/xZndidUCt.js", "ssg:https://framerusercontent.com/modules/zdbnqOguIRrkkgv0VFFc/KW24eFMQSi3HqLL2UXIw/augiA20Il.js", "ssg:https://framerusercontent.com/modules/jzeGAoJjFnwBM9VK5PLN/pV2g2PcwPBJhJ6NWRPeG/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective: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?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;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=>{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:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.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}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./aDwYpu7va-0.js\";const cycleOrder=[\"VugnYFFXG\",\"nCkJaGSRp\"];const serializationHash=\"framer-tdo4a\";const variantClassNames={nCkJaGSRp:\"framer-v-lpfvy\",VugnYFFXG:\"framer-v-xnwxgw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"VugnYFFXG\",Open:\"nCkJaGSRp\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"VugnYFFXG\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"VugnYFFXG\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1t4enui=activeVariantCallback(async(...args)=>{setVariant(\"nCkJaGSRp\");});const onTap1qq4gce=activeVariantCallback(async(...args)=>{setVariant(\"VugnYFFXG\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"nCkJaGSRp\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xnwxgw\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"VugnYFFXG\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nCkJaGSRp:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s5bket\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xNX9m6z8Z\",onTap:onTap1t4enui,...addPropertyOverrides({nCkJaGSRp:{onTap:onTap1qq4gce}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c4ujno\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"geZfANCFy\",style:{opacity:.3,rotate:0},variants:{nCkJaGSRp:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16j899m\",layoutDependency:layoutDependency,layoutId:\"gW2LOy8NZ\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15u3v0e\",layoutDependency:layoutDependency,layoutId:\"kz48D0f4b\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1uws8al\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"GAgQzrhZ4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-195lxkx\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"QCLwd88dU\",style:{opacity:0},variants:{nCkJaGSRp:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1glwb96\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"pk6Obmk01\",style:{opacity:.6},text:T8rQFvSBR,variants:{nCkJaGSRp:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-tdo4a[data-border=\"true\"]::after, .framer-tdo4a [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tdo4a.framer-1ynlyvj, .framer-tdo4a .framer-1ynlyvj { display: block; }\",\".framer-tdo4a.framer-xnwxgw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-tdo4a .framer-s5bket { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-tdo4a .framer-1c4ujno { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-tdo4a .framer-16j899m { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-tdo4a .framer-15u3v0e { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-tdo4a .framer-1uws8al { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tdo4a .framer-195lxkx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-tdo4a .framer-1glwb96 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tdo4a.framer-xnwxgw, .framer-tdo4a .framer-s5bket, .framer-tdo4a .framer-195lxkx { gap: 0px; } .framer-tdo4a.framer-xnwxgw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tdo4a.framer-xnwxgw > :first-child, .framer-tdo4a .framer-195lxkx > :first-child { margin-top: 0px; } .framer-tdo4a.framer-xnwxgw > :last-child, .framer-tdo4a .framer-195lxkx > :last-child { margin-bottom: 0px; } .framer-tdo4a .framer-s5bket > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-tdo4a .framer-s5bket > :first-child { margin-left: 0px; } .framer-tdo4a .framer-s5bket > :last-child { margin-right: 0px; } .framer-tdo4a .framer-195lxkx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nCkJaGSRp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraDwYpu7va=withCSS(Component,css,\"framer-tdo4a\");export default FrameraDwYpu7va;FrameraDwYpu7va.displayName=\"Row\";FrameraDwYpu7va.defaultProps={height:82,width:400};addPropertyControls(FrameraDwYpu7va,{variant:{options:[\"VugnYFFXG\",\"nCkJaGSRp\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FrameraDwYpu7va,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraDwYpu7va\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nCkJaGSRp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"82\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aDwYpu7va.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./aHq5Tebu2-0.js\";const cycleOrder=[\"dObT6iAID\",\"m9hjCWt0B\"];const serializationHash=\"framer-qAHkx\";const variantClassNames={dObT6iAID:\"framer-v-phoerb\",m9hjCWt0B:\"framer-v-uni5xr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"dObT6iAID\",Open:\"m9hjCWt0B\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"dObT6iAID\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. \\nBe sure to check out framer.com to \\nlearn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"dObT6iAID\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapw8kqj5=activeVariantCallback(async(...args)=>{setVariant(\"m9hjCWt0B\");});const onTap1wou4l4=activeVariantCallback(async(...args)=>{setVariant(\"dObT6iAID\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"m9hjCWt0B\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-phoerb\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"dObT6iAID\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({m9hjCWt0B:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5slk2e\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZxjSCPyS4\",onTap:onTapw8kqj5,...addPropertyOverrides({m9hjCWt0B:{onTap:onTap1wou4l4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n4ky9e\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"Xka83HlIJ\",style:{opacity:.3,rotate:0},variants:{m9hjCWt0B:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1351ox8\",layoutDependency:layoutDependency,layoutId:\"QRNKN3ZFg\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4qu7g6\",layoutDependency:layoutDependency,layoutId:\"CkcYzVo_C\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-uibscc\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"DyIMecfhe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjssgt\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"rHEbV7JnQ\",style:{opacity:0},variants:{m9hjCWt0B:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-dhnlfv\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"yZ6qURz2R\",style:{opacity:.6},text:T8rQFvSBR,variants:{m9hjCWt0B:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-qAHkx[data-border=\"true\"]::after, .framer-qAHkx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qAHkx.framer-w2ebrh, .framer-qAHkx .framer-w2ebrh { display: block; }\",\".framer-qAHkx.framer-phoerb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-qAHkx .framer-5slk2e { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-qAHkx .framer-1n4ky9e { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-qAHkx .framer-1351ox8 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-qAHkx .framer-4qu7g6 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-qAHkx .framer-uibscc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qAHkx .framer-kjssgt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-qAHkx .framer-dhnlfv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qAHkx.framer-phoerb, .framer-qAHkx .framer-5slk2e, .framer-qAHkx .framer-kjssgt { gap: 0px; } .framer-qAHkx.framer-phoerb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qAHkx.framer-phoerb > :first-child, .framer-qAHkx .framer-kjssgt > :first-child { margin-top: 0px; } .framer-qAHkx.framer-phoerb > :last-child, .framer-qAHkx .framer-kjssgt > :last-child { margin-bottom: 0px; } .framer-qAHkx .framer-5slk2e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qAHkx .framer-5slk2e > :first-child { margin-left: 0px; } .framer-qAHkx .framer-5slk2e > :last-child { margin-right: 0px; } .framer-qAHkx .framer-kjssgt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m9hjCWt0B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraHq5Tebu2=withCSS(Component,css,\"framer-qAHkx\");export default FrameraHq5Tebu2;FrameraHq5Tebu2.displayName=\"Row Copy 6\";FrameraHq5Tebu2.defaultProps={height:82,width:400};addPropertyControls(FrameraHq5Tebu2,{variant:{options:[\"dObT6iAID\",\"m9hjCWt0B\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. \\nBe sure to check out framer.com to \\nlearn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FrameraHq5Tebu2,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraHq5Tebu2\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"82\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m9hjCWt0B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aHq5Tebu2.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./Er2HgXLyL-0.js\";const cycleOrder=[\"R0CkFXW5Y\",\"aoaLHQ4NT\"];const serializationHash=\"framer-MnWSD\";const variantClassNames={aoaLHQ4NT:\"framer-v-fpqd33\",R0CkFXW5Y:\"framer-v-t7ato\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"R0CkFXW5Y\",Open:\"aoaLHQ4NT\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"R0CkFXW5Y\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"R0CkFXW5Y\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ti78fr=activeVariantCallback(async(...args)=>{setVariant(\"aoaLHQ4NT\");});const onTap1sivvfg=activeVariantCallback(async(...args)=>{setVariant(\"R0CkFXW5Y\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aoaLHQ4NT\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t7ato\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"R0CkFXW5Y\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aoaLHQ4NT:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z8wo9f\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fBb1GOfqJ\",onTap:onTap1ti78fr,...addPropertyOverrides({aoaLHQ4NT:{onTap:onTap1sivvfg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3yy9t9\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"SQHbwEUma\",style:{opacity:.3,rotate:0},variants:{aoaLHQ4NT:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-92qwvm\",layoutDependency:layoutDependency,layoutId:\"cKTRlxZw4\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o7loj3\",layoutDependency:layoutDependency,layoutId:\"z9iQp_ixA\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1636437\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"NrPEM9Ib3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-x8ujrw\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"VPsj5TPPI\",style:{opacity:0},variants:{aoaLHQ4NT:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-h2b1or\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"avWAzUcMq\",style:{opacity:.6},text:T8rQFvSBR,variants:{aoaLHQ4NT:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-MnWSD[data-border=\"true\"]::after, .framer-MnWSD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MnWSD.framer-ycldbn, .framer-MnWSD .framer-ycldbn { display: block; }\",\".framer-MnWSD.framer-t7ato { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-MnWSD .framer-z8wo9f { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-MnWSD .framer-3yy9t9 { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-MnWSD .framer-92qwvm { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-MnWSD .framer-o7loj3 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-MnWSD .framer-1636437 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MnWSD .framer-x8ujrw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-MnWSD .framer-h2b1or { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MnWSD.framer-t7ato, .framer-MnWSD .framer-z8wo9f, .framer-MnWSD .framer-x8ujrw { gap: 0px; } .framer-MnWSD.framer-t7ato > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MnWSD.framer-t7ato > :first-child, .framer-MnWSD .framer-x8ujrw > :first-child { margin-top: 0px; } .framer-MnWSD.framer-t7ato > :last-child, .framer-MnWSD .framer-x8ujrw > :last-child { margin-bottom: 0px; } .framer-MnWSD .framer-z8wo9f > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-MnWSD .framer-z8wo9f > :first-child { margin-left: 0px; } .framer-MnWSD .framer-z8wo9f > :last-child { margin-right: 0px; } .framer-MnWSD .framer-x8ujrw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aoaLHQ4NT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEr2HgXLyL=withCSS(Component,css,\"framer-MnWSD\");export default FramerEr2HgXLyL;FramerEr2HgXLyL.displayName=\"Row Copy 4\";FramerEr2HgXLyL.defaultProps={height:88,width:400};addPropertyControls(FramerEr2HgXLyL,{variant:{options:[\"R0CkFXW5Y\",\"aoaLHQ4NT\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerEr2HgXLyL,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEr2HgXLyL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aoaLHQ4NT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Er2HgXLyL.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./FT5q6zxMV-0.js\";const cycleOrder=[\"NVOsh5Fg7\",\"wFRKVM34C\"];const serializationHash=\"framer-QcfvV\";const variantClassNames={NVOsh5Fg7:\"framer-v-w81cln\",wFRKVM34C:\"framer-v-1y34de5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"NVOsh5Fg7\",Open:\"wFRKVM34C\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"NVOsh5Fg7\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"NVOsh5Fg7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1se1phk=activeVariantCallback(async(...args)=>{setVariant(\"wFRKVM34C\");});const onTap1grxl5k=activeVariantCallback(async(...args)=>{setVariant(\"NVOsh5Fg7\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wFRKVM34C\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w81cln\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"NVOsh5Fg7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({wFRKVM34C:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q7to52\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lVcbCZA3k\",onTap:onTap1se1phk,...addPropertyOverrides({wFRKVM34C:{onTap:onTap1grxl5k}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14tfo8p\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"OG2_JUPW4\",style:{opacity:.3,rotate:0},variants:{wFRKVM34C:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pfuikv\",layoutDependency:layoutDependency,layoutId:\"yQDwy98lC\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgx1ia\",layoutDependency:layoutDependency,layoutId:\"pLY6pt5mH\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1ebtn8a\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"n9xSks1kJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17cqh81\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"j6r7vu_Wz\",style:{opacity:0},variants:{wFRKVM34C:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-e9b316\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"BsdrPR4NA\",style:{opacity:.6},text:T8rQFvSBR,variants:{wFRKVM34C:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-QcfvV[data-border=\"true\"]::after, .framer-QcfvV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QcfvV.framer-1k2qgyi, .framer-QcfvV .framer-1k2qgyi { display: block; }\",\".framer-QcfvV.framer-w81cln { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-QcfvV .framer-q7to52 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-QcfvV .framer-14tfo8p { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-QcfvV .framer-1pfuikv { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-QcfvV .framer-jgx1ia { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-QcfvV .framer-1ebtn8a { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QcfvV .framer-17cqh81 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-QcfvV .framer-e9b316 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QcfvV.framer-w81cln, .framer-QcfvV .framer-q7to52, .framer-QcfvV .framer-17cqh81 { gap: 0px; } .framer-QcfvV.framer-w81cln > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QcfvV.framer-w81cln > :first-child, .framer-QcfvV .framer-17cqh81 > :first-child { margin-top: 0px; } .framer-QcfvV.framer-w81cln > :last-child, .framer-QcfvV .framer-17cqh81 > :last-child { margin-bottom: 0px; } .framer-QcfvV .framer-q7to52 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-QcfvV .framer-q7to52 > :first-child { margin-left: 0px; } .framer-QcfvV .framer-q7to52 > :last-child { margin-right: 0px; } .framer-QcfvV .framer-17cqh81 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wFRKVM34C\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFT5q6zxMV=withCSS(Component,css,\"framer-QcfvV\");export default FramerFT5q6zxMV;FramerFT5q6zxMV.displayName=\"Row Copy 2\";FramerFT5q6zxMV.defaultProps={height:82,width:400};addPropertyControls(FramerFT5q6zxMV,{variant:{options:[\"NVOsh5Fg7\",\"wFRKVM34C\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerFT5q6zxMV,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFT5q6zxMV\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"82\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wFRKVM34C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FT5q6zxMV.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./pEt8stBuL-0.js\";const cycleOrder=[\"YioSeW9_X\",\"lI0xuBjIC\"];const serializationHash=\"framer-rsPdc\";const variantClassNames={lI0xuBjIC:\"framer-v-yqy7mh\",YioSeW9_X:\"framer-v-ojosx0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"YioSeW9_X\",Open:\"lI0xuBjIC\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YioSeW9_X\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"YioSeW9_X\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap18joqy3=activeVariantCallback(async(...args)=>{setVariant(\"lI0xuBjIC\");});const onTap11eivyo=activeVariantCallback(async(...args)=>{setVariant(\"YioSeW9_X\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"lI0xuBjIC\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ojosx0\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"YioSeW9_X\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({lI0xuBjIC:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19p20jy\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vTnTjkAyM\",onTap:onTap18joqy3,...addPropertyOverrides({lI0xuBjIC:{onTap:onTap11eivyo}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14pvmez\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"lNaJqCyEc\",style:{opacity:.3,rotate:0},variants:{lI0xuBjIC:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhqy5p\",layoutDependency:layoutDependency,layoutId:\"OYu00qq6v\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o8mpii\",layoutDependency:layoutDependency,layoutId:\"x0yfoKkpM\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-3adxy9\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"cKfcDAhag\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfs0so\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"pSmfjfWAi\",style:{opacity:0},variants:{lI0xuBjIC:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-rvoga6\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"HW5SqgfKG\",style:{opacity:.6},text:T8rQFvSBR,variants:{lI0xuBjIC:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-rsPdc[data-border=\"true\"]::after, .framer-rsPdc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rsPdc.framer-1atclbz, .framer-rsPdc .framer-1atclbz { display: block; }\",\".framer-rsPdc.framer-ojosx0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-rsPdc .framer-19p20jy { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-rsPdc .framer-14pvmez { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-rsPdc .framer-1xhqy5p { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-rsPdc .framer-1o8mpii { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-rsPdc .framer-3adxy9 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-rsPdc .framer-1dfs0so { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-rsPdc .framer-rvoga6 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rsPdc.framer-ojosx0, .framer-rsPdc .framer-19p20jy, .framer-rsPdc .framer-1dfs0so { gap: 0px; } .framer-rsPdc.framer-ojosx0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rsPdc.framer-ojosx0 > :first-child, .framer-rsPdc .framer-1dfs0so > :first-child { margin-top: 0px; } .framer-rsPdc.framer-ojosx0 > :last-child, .framer-rsPdc .framer-1dfs0so > :last-child { margin-bottom: 0px; } .framer-rsPdc .framer-19p20jy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-rsPdc .framer-19p20jy > :first-child { margin-left: 0px; } .framer-rsPdc .framer-19p20jy > :last-child { margin-right: 0px; } .framer-rsPdc .framer-1dfs0so > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lI0xuBjIC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpEt8stBuL=withCSS(Component,css,\"framer-rsPdc\");export default FramerpEt8stBuL;FramerpEt8stBuL.displayName=\"Row Copy 5\";FramerpEt8stBuL.defaultProps={height:82,width:400};addPropertyControls(FramerpEt8stBuL,{variant:{options:[\"YioSeW9_X\",\"lI0xuBjIC\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerpEt8stBuL,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpEt8stBuL\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"82\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lI0xuBjIC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pEt8stBuL.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./SMCsCBMM5-0.js\";const cycleOrder=[\"D4ReJE9wM\",\"SSV2Xws0S\"];const serializationHash=\"framer-3Fe4H\";const variantClassNames={D4ReJE9wM:\"framer-v-96x0ey\",SSV2Xws0S:\"framer-v-yl5fr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"D4ReJE9wM\",Open:\"SSV2Xws0S\"};const getProps=({answer,height,id,question,tap,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,nQQH9rBsV:tap!==null&&tap!==void 0?tap:props.nQQH9rBsV,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"D4ReJE9wM\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,nQQH9rBsV,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"D4ReJE9wM\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1r4ke0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nQQH9rBsV){const res=await nQQH9rBsV(...args);if(res===false)return false;}});const onTapkbienc=activeVariantCallback(async(...args)=>{setVariant(\"SSV2Xws0S\");});const onTap19s3f3a=activeVariantCallback(async(...args)=>{setVariant(\"D4ReJE9wM\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"SSV2Xws0S\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-96x0ey\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"D4ReJE9wM\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1r4ke0,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SSV2Xws0S:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zmpgqk\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ViNTvdaTJ\",onTap:onTapkbienc,...addPropertyOverrides({SSV2Xws0S:{onTap:onTap19s3f3a}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13i561w\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"JE7M_GCk6\",style:{opacity:.3,rotate:0},variants:{SSV2Xws0S:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-118pfpk\",layoutDependency:layoutDependency,layoutId:\"USp7wmVnP\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ihdnne\",layoutDependency:layoutDependency,layoutId:\"QfGxt258i\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1a5f1br\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"ptU7FQPgj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wpa6c0\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"UBhdHnEJ_\",style:{opacity:0},variants:{SSV2Xws0S:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1352ll3\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"SJQfRPJOa\",style:{opacity:.6},text:T8rQFvSBR,variants:{SSV2Xws0S:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-3Fe4H[data-border=\"true\"]::after, .framer-3Fe4H [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Fe4H.framer-lundt6, .framer-3Fe4H .framer-lundt6 { display: block; }\",\".framer-3Fe4H.framer-96x0ey { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-3Fe4H .framer-zmpgqk { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-3Fe4H .framer-13i561w { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-3Fe4H .framer-118pfpk { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-3Fe4H .framer-1ihdnne { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-3Fe4H .framer-1a5f1br { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3Fe4H .framer-wpa6c0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-3Fe4H .framer-1352ll3 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Fe4H.framer-96x0ey, .framer-3Fe4H .framer-zmpgqk, .framer-3Fe4H .framer-wpa6c0 { gap: 0px; } .framer-3Fe4H.framer-96x0ey > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3Fe4H.framer-96x0ey > :first-child, .framer-3Fe4H .framer-wpa6c0 > :first-child { margin-top: 0px; } .framer-3Fe4H.framer-96x0ey > :last-child, .framer-3Fe4H .framer-wpa6c0 > :last-child { margin-bottom: 0px; } .framer-3Fe4H .framer-zmpgqk > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-3Fe4H .framer-zmpgqk > :first-child { margin-left: 0px; } .framer-3Fe4H .framer-zmpgqk > :last-child { margin-right: 0px; } .framer-3Fe4H .framer-wpa6c0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SSV2Xws0S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"nQQH9rBsV\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSMCsCBMM5=withCSS(Component,css,\"framer-3Fe4H\");export default FramerSMCsCBMM5;FramerSMCsCBMM5.displayName=\"Row Copy\";FramerSMCsCBMM5.defaultProps={height:82,width:400};addPropertyControls(FramerSMCsCBMM5,{variant:{options:[\"D4ReJE9wM\",\"SSV2Xws0S\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},nQQH9rBsV:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerSMCsCBMM5,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSMCsCBMM5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SSV2Xws0S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"nQQH9rBsV\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"82\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SMCsCBMM5.map", "// Generated by Framer (3d7d016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./UxbbKR7uj-0.js\";const cycleOrder=[\"yrzVuJoXF\",\"A8Duh_rIC\"];const serializationHash=\"framer-VFCib\";const variantClassNames={A8Duh_rIC:\"framer-v-dml7dt\",yrzVuJoXF:\"framer-v-1fv7fou\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const valuesByLocaleId={pzjLHr77T:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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={Closed:\"yrzVuJoXF\",Open:\"A8Duh_rIC\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"yrzVuJoXF\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"yrzVuJoXF\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15symtc=activeVariantCallback(async(...args)=>{setVariant(\"A8Duh_rIC\");});const onTap96qtdw=activeVariantCallback(async(...args)=>{setVariant(\"yrzVuJoXF\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"A8Duh_rIC\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fv7fou\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"yrzVuJoXF\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A8Duh_rIC:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pade15\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XBpNVrdbe\",onTap:onTap15symtc,...addPropertyOverrides({A8Duh_rIC:{onTap:onTap96qtdw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m73rcg\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"kyHsMHsU_\",style:{opacity:.3,rotate:0},variants:{A8Duh_rIC:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-utay3q\",layoutDependency:layoutDependency,layoutId:\"pEh4ULQ9f\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yvzfy3\",layoutDependency:layoutDependency,layoutId:\"Av4sc8JuC\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1x7axtn\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"ua69kFR0f\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uogzk4\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"AW3VQYWmt\",style:{opacity:0},variants:{A8Duh_rIC:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-pn52wm\",fonts:[\"CUSTOM;Celias Light\"],layoutDependency:layoutDependency,layoutId:\"dWa2uh9_F\",style:{opacity:.6},text:T8rQFvSBR,variants:{A8Duh_rIC:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-VFCib[data-border=\"true\"]::after, .framer-VFCib [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VFCib.framer-1qv0fxw, .framer-VFCib .framer-1qv0fxw { display: block; }\",\".framer-VFCib.framer-1fv7fou { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-VFCib .framer-pade15 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-VFCib .framer-1m73rcg { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-VFCib .framer-utay3q { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-VFCib .framer-1yvzfy3 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-VFCib .framer-1x7axtn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VFCib .framer-uogzk4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-VFCib .framer-pn52wm { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VFCib.framer-1fv7fou, .framer-VFCib .framer-pade15, .framer-VFCib .framer-uogzk4 { gap: 0px; } .framer-VFCib.framer-1fv7fou > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VFCib.framer-1fv7fou > :first-child, .framer-VFCib .framer-uogzk4 > :first-child { margin-top: 0px; } .framer-VFCib.framer-1fv7fou > :last-child, .framer-VFCib .framer-uogzk4 > :last-child { margin-bottom: 0px; } .framer-VFCib .framer-pade15 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VFCib .framer-pade15 > :first-child { margin-left: 0px; } .framer-VFCib .framer-pade15 > :last-child { margin-right: 0px; } .framer-VFCib .framer-uogzk4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-VFCib.framer-v-dml7dt .framer-pn52wm { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"A8Duh_rIC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUxbbKR7uj=withCSS(Component,css,\"framer-VFCib\");export default FramerUxbbKR7uj;FramerUxbbKR7uj.displayName=\"Row Copy 3\";FramerUxbbKR7uj.defaultProps={height:88,width:400};addPropertyControls(FramerUxbbKR7uj,{variant:{options:[\"yrzVuJoXF\",\"A8Duh_rIC\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerUxbbKR7uj,[{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUxbbKR7uj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A8Duh_rIC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UxbbKR7uj.map", "// Generated by Framer (10753fe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/AiHe4bBOh4uoOdJjswq3/Rd5KtsZhKyEKFuKler8p/aDwYpu7va.js\";import RowCopy6 from\"https://framerusercontent.com/modules/eCRf0AbIJjZbRrxAMZgs/ThNnIWbf2rJ0ohBIfFn6/aHq5Tebu2.js\";import RowCopy4 from\"https://framerusercontent.com/modules/isYGlqgn3CJpQLqXJc5c/4E6EI7ooixI5yqTNVYux/Er2HgXLyL.js\";import RowCopy2 from\"https://framerusercontent.com/modules/3LoYg394pbjaZOm4NXJF/Dq9WpadxVhmzZVhG0oGL/FT5q6zxMV.js\";import RowCopy5 from\"https://framerusercontent.com/modules/XQemmXdxcUjp9aoIdalp/HslMUdFIBRQ66wEipFY7/pEt8stBuL.js\";import RowCopy from\"https://framerusercontent.com/modules/CQUpxqun70avxLGAT6Nf/lYmIHJTTS1fLQ0huTvuz/SMCsCBMM5.js\";import RowCopy3 from\"https://framerusercontent.com/modules/007VE6wKkqaCtO187JrC/KVxOdFmFVClhJmk9WGPc/UxbbKR7uj.js\";const RowFonts=getFonts(Row);const RowCopyFonts=getFonts(RowCopy);const RowCopy2Fonts=getFonts(RowCopy2);const RowCopy3Fonts=getFonts(RowCopy3);const RowCopy5Fonts=getFonts(RowCopy5);const RowCopy4Fonts=getFonts(RowCopy4);const RowCopy6Fonts=getFonts(RowCopy6);const cycleOrder=[\"uYefdUCQp\",\"OjXlg5RKV\"];const variantClassNames={OjXlg5RKV:\"framer-v-1q2sdj5\",uYefdUCQp:\"framer-v-196b4gw\"};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 humanReadableVariantMap={\"Variant 1\":\"uYefdUCQp\",\"Variant 2\":\"OjXlg5RKV\"};const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"uYefdUCQp\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"uYefdUCQp\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-B0F3z\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-196b4gw\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uYefdUCQp\",ref:ref,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},transition:transition,variants:{OjXlg5RKV:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9}},...addPropertyOverrides({OjXlg5RKV:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lg8p5d-container\",layoutDependency:layoutDependency,layoutId:\"A01l8LP27-container\",transition:transition,children:/*#__PURE__*/_jsx(Row,{answer:\"Northfork connects food (recipes and meals) content to transactions. This enables grocers to deploy personlised shopping experience, publishers to monetize content and brands to connect advertising to transactions.\",height:\"100%\",id:\"A01l8LP27\",layoutId:\"A01l8LP27\",question:\"What does Northfork do?\",style:{width:\"100%\"},variant:\"VugnYFFXG\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9hy15-container\",layoutDependency:layoutDependency,layoutId:\"KDAUFl6u1-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy,{answer:\"The Northfork engine ingests recipe content and live assortment data, then matches live price and assortment (by store) to ingredients within our database. \\n\\nFor more information on integration requirements check out our Developer portal:\\n\\nhttps://developers.northfork.ai/\",height:\"100%\",id:\"KDAUFl6u1\",layoutId:\"KDAUFl6u1\",question:\"How does Northfork technology work? \",style:{width:\"100%\"},variant:\"D4ReJE9wM\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2rxl6-container\",layoutDependency:layoutDependency,layoutId:\"qvc48uWYA-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy2,{answer:\"Matching plain text to products is a complex process. We use the most advanced technologies to deliver quality matching and superior simplicity. Retailers have tried and failed to provide the quality of matching Northfork provides.\",height:\"100%\",id:\"qvc48uWYA\",layoutId:\"qvc48uWYA\",question:\"I can just build this myself - why invest in Northfork?\",style:{width:\"100%\"},variant:\"NVOsh5Fg7\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ktbwy-container\",layoutDependency:layoutDependency,layoutId:\"JKtTs2df_-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy3,{answer:\"Getting up and running is very easy. Northfork's many customers are using plug and play solutions for meal planning, recipe discovery, dietary filters and more to harvest the value of connecting recipes to shopping. \",height:\"100%\",id:\"JKtTs2df_\",layoutId:\"JKtTs2df_\",question:\"How can I use Northfork technology?\",style:{width:\"100%\"},variant:\"yrzVuJoXF\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o4qhn5-container\",layoutDependency:layoutDependency,layoutId:\"daBZqACFA-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy5,{answer:\"We add value in three areas to our partners. \\n- Recipe and meal planning on retailers own sites and apps\\n- Making content on publishers sites shoppable with retailer partners\\n- Connecting advertising revenue throughout the interaction with recipes, from inspiration to transactions. \",height:\"100%\",id:\"daBZqACFA\",layoutId:\"daBZqACFA\",question:\"What value does Northfork bring?\",style:{width:\"100%\"},variant:\"YioSeW9_X\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-446sgr-container\",layoutDependency:layoutDependency,layoutId:\"LHOu4nWQq-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy4,{answer:\"If it\u2019s an app-based experience, building on top of APIs is better, otherwise it will take you to a webpage. However, APIs require front-end development which can be an issue for clients that have limited tech resources available. In that event, widgets are the better solution because it enables a quick and easy way to deploy a multi-recipe shopping experience on the web. You can change the design and theming, but the user experience is consistent and not customizable. \",height:\"100%\",id:\"LHOu4nWQq\",layoutId:\"LHOu4nWQq\",question:\"When should I use Widgets vs APIs?\",style:{width:\"100%\"},variant:\"R0CkFXW5Y\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-155ente-container\",layoutDependency:layoutDependency,layoutId:\"M34JRf_g3-container\",transition:transition,children:/*#__PURE__*/_jsx(RowCopy6,{answer:\"Recipe shopping is crucial for grocery retailers due to changing consumer preferences. It meets the demand for home cooking, drives customer loyalty, boosts sales, and differentiates your brand as a one-stop-shop. Investing in recipe shopping helps cater to evolving needs, drive growth, and stay ahead of the competition.\",height:\"100%\",id:\"M34JRf_g3\",layoutId:\"M34JRf_g3\",question:\"Why should I prioritize recipe shopping?\",style:{width:\"100%\"},variant:\"dObT6iAID\",width:\"100%\"})})]})})});});const css=['.framer-B0F3z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B0F3z .framer-95ivak { display: block; }\",\".framer-B0F3z .framer-196b4gw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 486px; justify-content: center; overflow: auto; padding: 0px 0px 0px 0px; position: relative; width: 970px; }\",\".framer-B0F3z .framer-lg8p5d-container { flex: none; height: auto; position: relative; width: 522px; }\",\".framer-B0F3z .framer-1m9hy15-container { flex: none; height: auto; position: relative; width: 454px; }\",\".framer-B0F3z .framer-1p2rxl6-container { flex: none; height: auto; position: relative; width: 530px; }\",\".framer-B0F3z .framer-14ktbwy-container { flex: none; height: auto; position: relative; width: 450px; }\",\".framer-B0F3z .framer-o4qhn5-container { flex: none; height: auto; position: relative; width: 474px; }\",\".framer-B0F3z .framer-446sgr-container { flex: none; height: auto; position: relative; width: 492px; }\",\".framer-B0F3z .framer-155ente-container { flex: none; height: auto; position: relative; width: 582px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B0F3z .framer-196b4gw { gap: 0px; } .framer-B0F3z .framer-196b4gw > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-B0F3z .framer-196b4gw > :first-child { margin-top: 0px; } .framer-B0F3z .framer-196b4gw > :last-child { margin-bottom: 0px; } }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-196b4gw { gap: 0px; height: 508px; overflow: visible; width: 455px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-lg8p5d-container { width: 311px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-1m9hy15-container { width: 360px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-1p2rxl6-container { width: 357px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-14ktbwy-container { width: 346px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-o4qhn5-container { width: 354px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-446sgr-container { width: 352px; }\",\".framer-B0F3z.framer-v-1q2sdj5 .framer-155ente-container { width: 358px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B0F3z.framer-v-1q2sdj5 .framer-196b4gw { gap: 0px; } .framer-B0F3z.framer-v-1q2sdj5 .framer-196b4gw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B0F3z.framer-v-1q2sdj5 .framer-196b4gw > :first-child { margin-top: 0px; } .framer-B0F3z.framer-v-1q2sdj5 .framer-196b4gw > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 486\n * @framerIntrinsicWidth 970\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OjXlg5RKV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */const FramerenSxR6QOA=withCSS(Component,css,\"framer-B0F3z\");export default FramerenSxR6QOA;FramerenSxR6QOA.displayName=\"Accordion\";FramerenSxR6QOA.defaultProps={height:486,width:970};addPropertyControls(FramerenSxR6QOA,{variant:{options:[\"uYefdUCQp\",\"OjXlg5RKV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerenSxR6QOA,[...RowFonts,...RowCopyFonts,...RowCopy2Fonts,...RowCopy3Fonts,...RowCopy5Fonts,...RowCopy4Fonts,...RowCopy6Fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerenSxR6QOA\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"486\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OjXlg5RKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"970\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Poppins-500\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/S8W8AzVv8:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",weight:\"500\"}];export const css=['.framer-ETjVS .framer-styles-preset-2lkfbw:not(.rich-text-wrapper), .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper p, .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #5d5f6d; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 810px) { .framer-ETjVS .framer-styles-preset-2lkfbw:not(.rich-text-wrapper), .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper p, .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #5d5f6d; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ETjVS .framer-styles-preset-2lkfbw:not(.rich-text-wrapper), .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper p, .framer-ETjVS .framer-styles-preset-2lkfbw.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #5d5f6d; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-ETjVS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Poppins-600\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/vcPPCDLle:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\",weight:\"600\"}];export const css=['.framer-VHDlV .framer-styles-preset-2y5gio:not(.rich-text-wrapper), .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper p, .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #232536; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-VHDlV .framer-styles-preset-2y5gio:not(.rich-text-wrapper), .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper p, .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #232536; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-VHDlV .framer-styles-preset-2y5gio:not(.rich-text-wrapper), .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper p, .framer-VHDlV .framer-styles-preset-2y5gio.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #232536; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-VHDlV\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Poppins-regular\"]);export const fonts=[{family:\"Poppins\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",weight:\"400\"}];export const css=['.framer-myVi4 .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-myVi4 .framer-styles-preset-21ogod.rich-text-wrapper p, .framer-myVi4 .framer-styles-preset-21ogod.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 31px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-myVi4\";\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 (b2780b5)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={pzjLHr77T:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import Accordion from\"#framer/local/canvasComponent/enSxR6QOA/enSxR6QOA.js\";import Navbar from\"#framer/local/canvasComponent/gpZNcxuZd/gpZNcxuZd.js\";import Button from\"#framer/local/canvasComponent/OEDLFASeH/OEDLFASeH.js\";import Walmart1 from\"#framer/local/canvasComponent/q7qXBiS7P/q7qXBiS7P.js\";import Footer from\"#framer/local/canvasComponent/VvkHCiwSO/VvkHCiwSO.js\";import Blog from\"#framer/local/collection/jp8Xysm8L/jp8Xysm8L.js\";import*as sharedStyle1 from\"#framer/local/css/S8W8AzVv8/S8W8AzVv8.js\";import*as sharedStyle2 from\"#framer/local/css/vcPPCDLle/vcPPCDLle.js\";import*as sharedStyle from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle3 from\"#framer/local/css/Z2VsOjpm8/Z2VsOjpm8.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const Walmart1Fonts=getFonts(Walmart1);const TickerFonts=getFonts(Ticker);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={IC9vgNW5c:\"(min-width: 414px) and (max-width: 767px)\",Ik64js3Sn:\"(min-width: 768px) and (max-width: 1199px)\",lz6Bu_rUC:\"(min-width: 1200px) and (max-width: 1279px)\",vZtpcx2rC:\"(max-width: 413px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9yqWF\";const variantClassNames={IC9vgNW5c:\"framer-v-nzzpp2\",Ik64js3Sn:\"framer-v-2rowbl\",lz6Bu_rUC:\"framer-v-hwhldx\",vZtpcx2rC:\"framer-v-1cy7395\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1930,x:0,y:60};const transition1={damping:30,delay:0,mass:1,stiffness:178,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transformPerspective:1930,x:0,y:60};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:30,delay:.5,mass:1,stiffness:178,type:\"spring\"};const animation3={boxShadow:\"0px 60px 80px -55px hsla(180, 7%, 36%, 0.35)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition2};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={\"Phone 2\":\"vZtpcx2rC\",\"Tablet 2\":\"Ik64js3Sn\",Desktop:\"WQLkyLRf1\",Phone:\"IC9vgNW5c\",Tablet:\"lz6Bu_rUC\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,L5jVK9bDHEcsmKcRv6,LZk938y6CEcsmKcRv6,Ir0UXuJbAEcsmKcRv6,KGEPmWIzREcsmKcRv6,idEcsmKcRv6,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-9yqWF`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-9yqWF`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"vZtpcx2rC\",\"IC9vgNW5c\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"lOD6QvP9h\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IC9vgNW5c\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"vZtpcx2rC\")return true;return false;};const elementId1=useRouteElementId(\"Wqmp4M6LX\");const ref3=React.useRef(null);usePreloadLocalizedValues(activeLocale);const elementId2=useRouteElementId(\"JqXX_Atxe\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"g132tIVd1\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"vZtpcx2rC\",\"Ik64js3Sn\",\"IC9vgNW5c\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"IC9vgNW5c\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"lz6Bu_rUC\",\"vZtpcx2rC\",\"Ik64js3Sn\",\"IC9vgNW5c\"].includes(baseVariant))return false;return true;};const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47,_getLocalizedValue48,_getLocalizedValue49,_getLocalizedValue50,_getLocalizedValue51,_getLocalizedValue52,_getLocalizedValue53,_getLocalizedValue54,_getLocalizedValue55,_getLocalizedValue56,_getLocalizedValue57,_getLocalizedValue58,_getLocalizedValue59,_getLocalizedValue60,_getLocalizedValue61,_getLocalizedValue62,_getLocalizedValue63,_getLocalizedValue64;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ik64js3Sn:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ctr9ix-container hidden-1cy7395 hidden-nzzpp2\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ik64js3Sn:{variant:\"xTmb97vJ0\"},lz6Bu_rUC:{variant:\"jQnp500xY\"}},children:/*#__PURE__*/_jsx(Navbar,{aszaV4Cyv:31,height:\"100%\",id:\"lOD6QvP9h\",layoutId:\"lOD6QvP9h\",style:{height:\"100%\",width:\"100%\"},variant:\"AR2OpqWYs\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{height:80,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f30859-container hidden-72rtr7 hidden-hwhldx hidden-1cy7395 hidden-2rowbl\",children:/*#__PURE__*/_jsx(Navbar,{aszaV4Cyv:31,height:\"100%\",id:\"nWwifA0d6\",layoutId:\"nWwifA0d6\",style:{width:\"100%\"},variant:\"vfPaINrKw\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vZtpcx2rC:{height:80,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fhyfd7-container hidden-72rtr7 hidden-hwhldx hidden-2rowbl hidden-nzzpp2\",children:/*#__PURE__*/_jsx(Navbar,{aszaV4Cyv:31,height:\"100%\",id:\"Fcck52cef\",layoutId:\"Fcck52cef\",style:{width:\"100%\"},variant:\"vfPaINrKw\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-8dtd3o\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oyv8iu\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1162cft\",\"data-framer-name\":\"Hero Section\",id:elementId1,name:\"Hero Section\",ref:ref3,style:{transformPerspective:1930},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ah3gy2\",\"data-framer-name\":\"Header Text\",name:\"Header Text\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yizrzl\",\"data-framer-name\":\"Grey\",name:\"Grey\",style:{rotate:-90}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.3em\"},children:\"Recipe shopping anywhere\"})})},vZtpcx2rC:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"1.3em\"},children:\"Recipe shopping anywhere\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue2=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"1.3em\"},children:\"Recipe shopping anywhere\"})}),className:\"framer-ntb8w0\",\"data-framer-name\":\"Transform Your Idea Into Reality with Finsweet\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Transform Your Idea Into Reality with Finsweet\",style:{transformPerspective:1930},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vZtpcx2rC:{children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"31px\"},children:\"Capture revenue from food-related content on all your platforms through Northfork full-service technology.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\"},children:\"Capture revenue from food-related content on all your platforms through Northfork full-service technology.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-estn3s\",\"data-framer-name\":\"The entire Finsweet team knows what's good with Webflow and you can too with 1 week and a good attitude.\",fonts:[\"CUSTOM;Celias Light\"],name:\"The entire Finsweet team knows what's good with Webflow and you can too with 1 week and a good attitude.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{y:848.0487444608568},Ik64js3Sn:{y:694.1000000000001},vZtpcx2rC:{y:767.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"232px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r51gea-container\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"JqXX_Atxe\",layoutId:\"JqXX_Atxe\",style:{height:\"100%\",width:\"100%\"},variant:\"ZnfHJdvOa\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{background:{alt:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(149.5),pixelHeight:660,pixelWidth:660,sizes:\"402px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}},Ik64js3Sn:{background:{alt:(_getLocalizedValue6=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(416.5),pixelHeight:660,pixelWidth:660,sizes:\"281px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}},lz6Bu_rUC:{background:{alt:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,pixelHeight:660,pixelWidth:660,sizes:\"417px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}},vZtpcx2rC:{background:{alt:(_getLocalizedValue8=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(182.5),pixelHeight:660,pixelWidth:660,sizes:\"402px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue9=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,pixelHeight:660,pixelWidth:660,sizes:\"402px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"},className:\"framer-g94mky\",\"data-framer-name\":\"Header Image\",name:\"Header Image\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vZtpcx2rC:{background:{alt:(_getLocalizedValue10=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(328.5),pixelHeight:660,pixelWidth:660,sizes:\"261px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue11=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,pixelHeight:660,pixelWidth:660,src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"},className:\"framer-174zyuv hidden-72rtr7 hidden-hwhldx hidden-2rowbl hidden-nzzpp2\",\"data-framer-name\":\"Header Image\",name:\"Header Image\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{background:{alt:(_getLocalizedValue12=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(151.5),pixelHeight:660,pixelWidth:660,sizes:\"261px\",src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue13=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Office Conversation\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,pixelHeight:660,pixelWidth:660,src:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif\",srcSet:\"https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/8kyqQzFNtH5WjuWsNBrLqFEF5UU.gif 660w\"},className:\"framer-1dgqnv1 hidden-72rtr7 hidden-hwhldx hidden-1cy7395 hidden-2rowbl\",\"data-framer-name\":\"Header Image\",name:\"Header Image\"})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-7kijxe\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13581s7\"}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-locrbp\",\"data-framer-name\":\"Header\",id:elementId3,name:\"Header\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-afpu0b\",\"data-framer-name\":\"Section Logos\",name:\"Section Logos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13i4fdv-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:128,height:\"100%\",hoverFactor:.5,id:\"k_u8FrFZu\",layoutId:\"k_u8FrFZu\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7e7kxp-container\",\"data-framer-name\":\"Picsmart\",name:\"Picsmart\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"myGkS6Vo4\",layoutId:\"myGkS6Vo4\",name:\"Picsmart\",variant:\"A9ujwDly1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sxk5lj-container\",\"data-framer-name\":\"Kiwi\",name:\"Kiwi\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"cd5PcuE8m\",layoutId:\"cd5PcuE8m\",name:\"Kiwi\",variant:\"bSItmf5nV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h7kc76-container\",\"data-framer-name\":\"Corte\",name:\"Corte\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"ZZc1D7G2S\",layoutId:\"ZZc1D7G2S\",name:\"Corte\",variant:\"zs3se1K1n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lhrd6p-container\",\"data-framer-name\":\"Target\",name:\"Target\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"vEAAi40tI\",layoutId:\"vEAAi40tI\",name:\"Target\",variant:\"eft21lEvs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e6ejjl-container\",\"data-framer-name\":\"Buzzfeed\",name:\"Buzzfeed\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"g0PpWinmJ\",layoutId:\"g0PpWinmJ\",name:\"Buzzfeed\",variant:\"r7UU2OsRW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oc3ugx-container\",\"data-framer-name\":\"Kavall\",name:\"Kavall\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"N29kXfs5Y\",layoutId:\"N29kXfs5Y\",name:\"Kavall\",variant:\"N7ZT0STN4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e9crgs-container\",\"data-framer-name\":\"Justo\",name:\"Justo\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"qE3WOkGo4\",layoutId:\"qE3WOkGo4\",name:\"Justo\",variant:\"RULbkX_uV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sb7ync-container\",\"data-framer-name\":\"nbcu\",name:\"nbcu\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"DjGSChWtg\",layoutId:\"DjGSChWtg\",name:\"nbcu\",variant:\"o_WXGRY25\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xfkvt4-container\",\"data-framer-name\":\"coop\",name:\"coop\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"b00vxlZbz\",layoutId:\"b00vxlZbz\",name:\"coop\",variant:\"ngRAO5FFs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jo1tnc-container\",\"data-framer-name\":\"unilever\",name:\"unilever\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"aZ7XbgMat\",layoutId:\"aZ7XbgMat\",name:\"unilever\",variant:\"NLCi3zyt9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wtc19o-container\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"ZB5JvL0Wq\",layoutId:\"ZB5JvL0Wq\",variant:\"c8MfeGfVZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ju098k-container\",\"data-framer-name\":\"thmomix\",name:\"thmomix\",children:/*#__PURE__*/_jsx(Walmart1,{height:\"100%\",id:\"YeIYic0js\",layoutId:\"YeIYic0js\",name:\"thmomix\",variant:\"NNhcM0nET\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lhlclo\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8ta3z\",\"data-framer-name\":\"Title Wrapper\",name:\"Title Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"28px\"},children:\"Trusted by\"})}),className:\"framer-1u60hcy\",\"data-framer-name\":\"We've Worked with\",fonts:[\"CUSTOM;Celias Regular\"],name:\"We've Worked with\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vf5ko1\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjtimi\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue15=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"30px\"},children:\"The benefits with Northfork\"})})},vZtpcx2rC:{children:(_getLocalizedValue16=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"36px\"},children:\"The benefits with Northfork\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\"},children:\"The benefits with Northfork\"})}),className:\"framer-3rfn0n\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sjokm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhpfep\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1067,intrinsicWidth:1067,pixelHeight:1067,pixelWidth:1067,positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/j1Vcn9svWHSrkrY9nT9tsP1SPI.jpg\",srcSet:\"https://framerusercontent.com/images/j1Vcn9svWHSrkrY9nT9tsP1SPI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j1Vcn9svWHSrkrY9nT9tsP1SPI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1Vcn9svWHSrkrY9nT9tsP1SPI.jpg 1067w\"},className:\"framer-1lf54oa\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gps5b4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Increase revenue\"})}),className:\"framer-7yxm11\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Brand-sponsored campaigns at the point of inspiration and purchase. \"})}),className:\"framer-1rifana\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q28jgf\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1067,intrinsicWidth:1067,pixelHeight:1067,pixelWidth:1067,positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/2QN7GKwzflAlWSm6XF3SwzDMYW4.jpg\",srcSet:\"https://framerusercontent.com/images/2QN7GKwzflAlWSm6XF3SwzDMYW4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2QN7GKwzflAlWSm6XF3SwzDMYW4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2QN7GKwzflAlWSm6XF3SwzDMYW4.jpg 1067w\"},className:\"framer-1hnhqoa\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-la3qg4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Retain shoppers\"})}),className:\"framer-1mqugwf\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Drive great customer experiences to retain a share of spend.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1bsj68w\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s064ie\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1067,intrinsicWidth:1067,pixelHeight:1067,pixelWidth:1067,positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/3T0LeNV0kBMSh0CwKN01QpRUiXc.jpg\",srcSet:\"https://framerusercontent.com/images/3T0LeNV0kBMSh0CwKN01QpRUiXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3T0LeNV0kBMSh0CwKN01QpRUiXc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3T0LeNV0kBMSh0CwKN01QpRUiXc.jpg 1067w\"},className:\"framer-k8xwpm\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omkqoe\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Lower your CAC\"})}),className:\"framer-rkiv18\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue23=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"Bring shoppers onto your platform from 3rd party sites, apps, and marketing channels.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-bxuahh\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y6dq7a\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ctrgwq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13t8bj9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-itwf4m\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qo1p20\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-iwz9tf hidden-1cy7395 hidden-2rowbl hidden-nzzpp2\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1libqiw\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fck38a\",\"data-framer-name\":\"2 Columns Image Text\",name:\"2 Columns Image Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ipu2b5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l8k38j\",\"data-framer-name\":\"2 Columns Image Text\",name:\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gsxptw\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1khdzp0-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"jPRgmXJdx\",isMixedBorderRadius:false,layoutId:\"jPRgmXJdx\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/VYTwwZZYvzcEa7xufhT82nGlNZM.mp4\",srcType:\"Upload\",srcUrl:(_getLocalizedValue24=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwkg3x\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9bp12y\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Optimize Your Ad Revenue Potential\"})})}),className:\"framer-2rs6b8\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Use plug-and-play solutions to maximize incremental growth.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1ftbewr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uniq7t\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NE7PXT9ZF\"},nodeId:\"aUYZhzCx9\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1iye6d framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-1xk4c0s\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-wv9cs6 hidden-nzzpp2\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1252lyt\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1quwqnm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l3azm6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue28=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Retain Shoppers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Retain Shoppers\"})}),className:\"framer-1ssrkrg\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue30=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"31px\",\"--framer-text-alignment\":\"left\"},children:\"Driving loyalty and differentiation through excellent experiences across owned and operated. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue31=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\",\"--framer-text-alignment\":\"left\"},children:\"Driving loyalty and differentiation through excellent experiences across owned and operated. \"})}),className:\"framer-185ofe8\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zhrjh\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MeM5vLc2Z\"},nodeId:\"bVub1QkaC\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1yccymr framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-h9xg76\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{background:{alt:(_getLocalizedValue33=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:\"Walmart shopping cart\",fit:\"fit\",intrinsicHeight:1279,intrinsicWidth:1155,loading:getLoadingLazyAtYPosition(3379.2553897180765),pixelHeight:1279,pixelWidth:1155,positionX:\"center\",positionY:\"center\",sizes:\"397px\",src:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png\",srcSet:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png?scale-down-to=1024 924w,https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png 1155w\"}},Ik64js3Sn:{background:{alt:(_getLocalizedValue34=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:\"Walmart shopping cart\",fit:\"fit\",intrinsicHeight:1279,intrinsicWidth:1155,loading:getLoadingLazyAtYPosition(3277.6631259484066),pixelHeight:1279,pixelWidth:1155,positionX:\"center\",positionY:\"center\",sizes:\"399.5px\",src:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png\",srcSet:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png?scale-down-to=1024 924w,https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png 1155w\"}},lz6Bu_rUC:{background:{alt:(_getLocalizedValue35=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:\"Walmart shopping cart\",fit:\"fit\",intrinsicHeight:1279,intrinsicWidth:1155,pixelHeight:1279,pixelWidth:1155,positionX:\"center\",positionY:\"center\",sizes:\"564px\",src:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png\",srcSet:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png?scale-down-to=1024 924w,https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png 1155w\"}},vZtpcx2rC:{background:{alt:(_getLocalizedValue36=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:\"Walmart shopping cart\",fit:\"fit\",intrinsicHeight:1279,intrinsicWidth:1155,loading:getLoadingLazyAtYPosition(3938),pixelHeight:1279,pixelWidth:1155,positionX:\"center\",positionY:\"center\",sizes:\"391px\",src:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png\",srcSet:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png?scale-down-to=1024 924w,https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png 1155w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue37=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:\"Walmart shopping cart\",fit:\"fit\",intrinsicHeight:1279,intrinsicWidth:1155,pixelHeight:1279,pixelWidth:1155,positionX:\"center\",positionY:\"center\",sizes:\"590px\",src:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png\",srcSet:\"https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png?scale-down-to=1024 924w,https://framerusercontent.com/images/1wALoiu7Gqdemo1cYlQxXmrvEw.png 1155w\"},className:\"framer-1hd54so\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-5sxjgg hidden-nzzpp2\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbfv0b\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ik64js3Sn:{background:{alt:(_getLocalizedValue38=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:\"Target shopping cart\",fit:\"fit\",intrinsicHeight:1313,intrinsicWidth:1231,loading:getLoadingLazyAtYPosition(3910.5),pixelHeight:1313,pixelWidth:1231,positionX:\"center\",positionY:\"center\",sizes:\"464px\",src:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png\",srcSet:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png?scale-down-to=1024 960w,https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png 1231w\"}},vZtpcx2rC:{background:{alt:(_getLocalizedValue39=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:\"Target shopping cart\",fit:\"fit\",intrinsicHeight:1313,intrinsicWidth:1231,loading:getLoadingLazyAtYPosition(4794),pixelHeight:1313,pixelWidth:1231,positionX:\"center\",positionY:\"center\",sizes:\"310px\",src:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png\",srcSet:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png?scale-down-to=1024 960w,https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png 1231w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue40=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:\"Target shopping cart\",fit:\"fit\",intrinsicHeight:1313,intrinsicWidth:1231,pixelHeight:1313,pixelWidth:1231,positionX:\"center\",positionY:\"center\",sizes:\"599px\",src:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png\",srcSet:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png?scale-down-to=1024 960w,https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png 1231w\"},className:\"framer-zoj96i hidden-nzzpp2\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r2rkpz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxx96t\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue41=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Boost Website Traffic\"})})},Ik64js3Sn:{children:(_getLocalizedValue42=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Boost Website Traffic\"})})},lz6Bu_rUC:{children:(_getLocalizedValue43=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Boost Website Traffic\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue44=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\"},children:\"Boost Website Traffic\"})}),className:\"framer-xgg0l\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue45=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-line-height\":\"31px\",\"--framer-text-alignment\":\"left\"},children:\"Acquire customers and present your brand at the point of inspiration, and connect to transactions.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue46=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"31px\",\"--framer-text-alignment\":\"left\"},children:\"Acquire customers and present your brand at the point of inspiration, and connect to transactions.\"})}),className:\"framer-1ixj25q\",fonts:[\"CUSTOM;Celias Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ccvuxh\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MeM5vLc2Z\"},nodeId:\"PNIHha1Dc\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1eh1mdc framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue47=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Read More\"})}),className:\"framer-5cooz8\",fonts:[\"CUSTOM;Celias Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1313,intrinsicWidth:1231,loading:getLoadingLazyAtYPosition(3991),pixelHeight:1313,pixelWidth:1231,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png\",srcSet:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png?scale-down-to=1024 960w,https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png 1231w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1313,intrinsicWidth:1231,pixelHeight:1313,pixelWidth:1231,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png\",srcSet:\"https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png?scale-down-to=1024 960w,https://framerusercontent.com/images/CC7Bx54trmB1nTAECo52jQLXw.png 1231w\"},className:\"framer-xcx2tw hidden-72rtr7 hidden-hwhldx hidden-1cy7395 hidden-2rowbl\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-10lsa4x hidden-1cy7395 hidden-2rowbl hidden-nzzpp2\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-wao2o7\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3w9lfh-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:11,height:\"100%\",id:\"o8mG5Nn1y\",intervalControl:5,itemAmount:1,layoutId:\"o8mG5Nn1y\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8yvhr7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue48=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue48!==void 0?_getLocalizedValue48:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"36px\"},children:'\"Today is using Northfork\u2019s lightweight widgets to deliver its new service. Fast and easy to integrate, the widgets provide grocery cart functionality on the Today site.\"'})}),className:\"framer-1aw3oqf\",\"data-framer-name\":\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",fonts:[\"CUSTOM;Celias Light\"],name:\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cqyou\",\"data-framer-name\":\"Person\",name:\"Person\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pp0dg8\",\"data-framer-name\":\"Frame 1878\",name:\"Frame 1878\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:559,intrinsicWidth:567,pixelHeight:559,pixelWidth:567,sizes:\"38px\",src:\"https://framerusercontent.com/images/rsvpVFPcg1T0jZClcso8iJZERpo.png\",srcSet:\"https://framerusercontent.com/images/rsvpVFPcg1T0jZClcso8iJZERpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rsvpVFPcg1T0jZClcso8iJZERpo.png 567w\"},className:\"framer-1i0sldk\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qri503\",\"data-framer-name\":\"Frame 1858\",name:\"Frame 1858\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue49=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue49!==void 0?_getLocalizedValue49:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"NBCU\"})}),className:\"framer-1fi8zv3\",\"data-framer-name\":\"Johnny Andro\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Johnny Andro\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue50=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue50!==void 0?_getLocalizedValue50:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Today, The crown jewel at NBCU\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-14oro4c\",\"data-framer-name\":\"Director, Company\",fonts:[\"CUSTOM;Celias Regular\",\"GF;Poppins-500\"],name:\"Director, Company\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8gi6b\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ls1uj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue51=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue51!==void 0?_getLocalizedValue51:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"36px\"},children:\"\\\"Northfork's technology helped us unify 200+ stores' customer offerings for recipes and weekly menus. Their support enabled Coop to stand out in the Swedish market.\\\"\"})}),className:\"framer-1dkr8s\",\"data-framer-name\":\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",fonts:[\"CUSTOM;Celias Light\"],name:\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ef5yvf\",\"data-framer-name\":\"Person\",name:\"Person\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g7g5za\",\"data-framer-name\":\"Frame 1878\",name:\"Frame 1878\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:174,intrinsicWidth:600,pixelHeight:174,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"46px\",src:\"https://framerusercontent.com/images/eoYp1eTdTqvoTMBD9e6ETyZUr9E.png\",srcSet:\"https://framerusercontent.com/images/eoYp1eTdTqvoTMBD9e6ETyZUr9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/eoYp1eTdTqvoTMBD9e6ETyZUr9E.png 600w\"},className:\"framer-p4uwkh\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5x9hj3\",\"data-framer-name\":\"Frame 1858\",name:\"Frame 1858\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue52=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue52!==void 0?_getLocalizedValue52:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Niklas Zeitlin\"})}),className:\"framer-13ibj67\",\"data-framer-name\":\"Johnny Andro\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Johnny Andro\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue53=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue53!==void 0?_getLocalizedValue53:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Chef E-commerce, Coop.se\"})}),className:\"framer-892xt8\",\"data-framer-name\":\"Director, Company\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Director, Company\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jry18\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1392ubb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue54=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue54!==void 0?_getLocalizedValue54:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBMaWdodA==\",\"--framer-font-family\":'\"Celias Light\", \"Celias Light Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:'\"Northfork\u2019s technology for Shoppable Recipes, we\u2019re thrilled to be able to solve the pain point of grocery shopping.\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-12nq8nt\",\"data-framer-name\":\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",fonts:[\"CUSTOM;Celias Light\",\"CUSTOM;Celias Regular\"],name:\"Finsweet has been a wonderful partner to work with. I have been a customer now for the past few months now and I have had nothing but positive experiences!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i4n0bh\",\"data-framer-name\":\"Person\",name:\"Person\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hc1v7q\",\"data-framer-name\":\"Frame 1878\",name:\"Frame 1878\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:1280,pixelHeight:225,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"69px\",src:\"https://framerusercontent.com/images/S7ZjxM2Ev5gU6EkGg6yKuObqSoo.png\",srcSet:\"https://framerusercontent.com/images/S7ZjxM2Ev5gU6EkGg6yKuObqSoo.png?scale-down-to=512 512w,https://framerusercontent.com/images/S7ZjxM2Ev5gU6EkGg6yKuObqSoo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S7ZjxM2Ev5gU6EkGg6yKuObqSoo.png 1280w\"},className:\"framer-k3gh45\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nmz8an\",\"data-framer-name\":\"Frame 1858\",name:\"Frame 1858\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue55=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue55!==void 0?_getLocalizedValue55:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Ben Kaufman\"})}),className:\"framer-14kzzl3\",\"data-framer-name\":\"Johnny Andro\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Johnny Andro\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue56=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue56!==void 0?_getLocalizedValue56:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Chief Marketing Officer\"})}),className:\"framer-1uka7lp\",\"data-framer-name\":\"Director, Company\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Director, Company\",verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vZtpcx2rC:{children:(_getLocalizedValue57=getLocalizedValue(\"v42\",activeLocale))!==null&&_getLocalizedValue57!==void 0?_getLocalizedValue57:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.1em\"},children:[\"Read our latest \",/*#__PURE__*/_jsx(\"br\",{}),\"blogs & news\"]})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue58=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue58!==void 0?_getLocalizedValue58:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"Partner Testimonials and Success Stories\"})}),className:\"framer-1ajjv65\",\"data-framer-name\":\"Read our latest blogs & news\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Read our latest blogs & news\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-gmj0zv hidden-hwhldx hidden-1cy7395 hidden-2rowbl hidden-nzzpp2\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zeqpo9\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2z2g7t\",\"data-framer-name\":\"Frame 1857\",name:\"Frame 1857\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue59=getLocalizedValue(\"v45\",activeLocale))!==null&&_getLocalizedValue59!==void 0?_getLocalizedValue59:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"Frequently asked questions\"})}),transformTemplate:transformTemplate2},vZtpcx2rC:{children:(_getLocalizedValue60=getLocalizedValue(\"v44\",activeLocale))!==null&&_getLocalizedValue60!==void 0?_getLocalizedValue60:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.1em\"},children:[\"Frequently \",/*#__PURE__*/_jsx(\"br\",{}),\"asked questions\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue61=getLocalizedValue(\"v43\",activeLocale))!==null&&_getLocalizedValue61!==void 0?_getLocalizedValue61:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"Frequently asked questions\"})}),className:\"framer-xgd9i7\",\"data-framer-name\":\"We build software solutions that solve client's business challenges\",fonts:[\"CUSTOM;Celias Regular\"],name:\"We build software solutions that solve client's business challenges\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wal7vr\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3aytyw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{style:{height:\"100%\",width:\"100%\"},variant:\"OjXlg5RKV\"},Ik64js3Sn:{style:{height:\"100%\",width:\"100%\"}},lz6Bu_rUC:{style:{height:\"100%\",width:\"100%\"}},vZtpcx2rC:{style:{height:\"100%\",width:\"100%\"},variant:\"OjXlg5RKV\"}},children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"I0Zb8rBAP\",layoutId:\"I0Zb8rBAP\",style:{width:\"100%\"},variant:\"uYefdUCQp\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1m6ilht\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xpmqo1\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10ooa6g\",\"data-framer-name\":\"Blog\",name:\"Blog\",style:{transformPerspective:1930},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-od87tt\",\"data-framer-name\":\"Frame 1857\",name:\"Frame 1857\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{children:(_getLocalizedValue62=getLocalizedValue(\"v48\",activeLocale))!==null&&_getLocalizedValue62!==void 0?_getLocalizedValue62:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Read our latest blogs & news\"})}),transformTemplate:transformTemplate2},vZtpcx2rC:{children:(_getLocalizedValue63=getLocalizedValue(\"v47\",activeLocale))!==null&&_getLocalizedValue63!==void 0?_getLocalizedValue63:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1.1em\"},children:[\"Read our latest \",/*#__PURE__*/_jsx(\"br\",{}),\"blogs & news\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue64=getLocalizedValue(\"v46\",activeLocale))!==null&&_getLocalizedValue64!==void 0?_getLocalizedValue64:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0NlbGlhcyBSZWd1bGFy\",\"--framer-font-family\":'\"Celias Regular\", \"Celias Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Read our latest blogs & news\"})}),className:\"framer-10n6gxc\",\"data-framer-name\":\"Read our latest blogs & news\",fonts:[\"CUSTOM;Celias Regular\"],name:\"Read our latest blogs & news\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hzblq7\",style:{transformPerspective:1930},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EcsmKcRv6\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"EcsmKcRv6\",name:\"L5jVK9bDH\",type:\"Identifier\"},{collection:\"EcsmKcRv6\",name:\"LZk938y6C\",type:\"Identifier\"},{collection:\"EcsmKcRv6\",name:\"Ir0UXuJbA\",type:\"Identifier\"},{collection:\"EcsmKcRv6\",name:\"KGEPmWIzR\",type:\"Identifier\"},{collection:\"EcsmKcRv6\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"L5jVK9bDH\":L5jVK9bDHEcsmKcRv6,\"LZk938y6C\":LZk938y6CEcsmKcRv6,\"Ir0UXuJbA\":Ir0UXuJbAEcsmKcRv6,\"KGEPmWIzR\":KGEPmWIzREcsmKcRv6,\"id\":idEcsmKcRv6},i)=>{L5jVK9bDHEcsmKcRv6!==null&&L5jVK9bDHEcsmKcRv6!==void 0?L5jVK9bDHEcsmKcRv6:L5jVK9bDHEcsmKcRv6=\"\";KGEPmWIzREcsmKcRv6!==null&&KGEPmWIzREcsmKcRv6!==void 0?KGEPmWIzREcsmKcRv6:KGEPmWIzREcsmKcRv6=\"\";const textContent=toDateString(Ir0UXuJbAEcsmKcRv6,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:`EcsmKcRv6-${idEcsmKcRv6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L5jVK9bDH:L5jVK9bDHEcsmKcRv6},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{L5jVK9bDH:L5jVK9bDHEcsmKcRv6},webPageId:\"kIVqRvWgK\"},nodeId:\"fQWP0PLzG\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ps3scr framer-lux5qc\",whileHover:animation3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vZtpcx2rC:{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",...toResponsiveImage(LZk938y6CEcsmKcRv6)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(LZk938y6CEcsmKcRv6)},className:\"framer-1587mgm\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19i6j2t\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2lkfbw\",\"data-styles-preset\":\"S8W8AzVv8\",style:{\"--framer-text-color\":\"rgb(35, 37, 54)\"},children:\"Content\"})}),className:\"framer-cojvo5\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2y5gio\",\"data-styles-preset\":\"vcPPCDLle\",children:\"Starting and Growing a Career in Web Design\"})}),className:\"framer-6lbgv9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:KGEPmWIzREcsmKcRv6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hz4qh3\",\"data-framer-name\":\"Read more\",name:\"Read more\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v49\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-99p9g4\",\"data-styles-preset\":\"Z2VsOjpm8\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Read More\"})}),className:\"framer-9ooebz\",\"data-framer-name\":\"Read More\",fonts:[\"Inter\"],name:\"Read More\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nfairy\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 8\"><path d=\"M 24.354 4.421 C 24.549 4.226 24.549 3.91 24.354 3.714 L 21.172 0.532 C 20.976 0.337 20.66 0.337 20.465 0.532 C 20.269 0.728 20.269 1.044 20.465 1.239 L 23.293 4.068 L 20.465 6.896 C 20.269 7.092 20.269 7.408 20.465 7.603 C 20.66 7.799 20.976 7.799 21.172 7.603 Z M 0 4.568 L 24 4.568 L 24 3.568 L 0 3.568 Z\" fill=\"rgb(35,37,54)\"></path></svg>',svgContentId:10539562727,withExternalLayout:true})]})]})]})})})},idEcsmKcRv6);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{width:\"418px\",y:7349},Ik64js3Sn:{width:\"810px\",y:6297},vZtpcx2rC:{width:\"393px\",y:8290}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"1280px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p0p1dm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IC9vgNW5c:{variant:\"jbjiVkCii\"},Ik64js3Sn:{variant:\"oLV2Iw3gn\"},vZtpcx2rC:{variant:\"jbjiVkCii\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"y0olKvJlX\",layoutId:\"y0olKvJlX\",style:{width:\"100%\"},variant:\"pSBmaFbEg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-9yqWF { background: white; }`,\".framer-9yqWF.framer-lux5qc, .framer-9yqWF .framer-lux5qc { display: block; }\",\".framer-9yqWF.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-9yqWF .framer-ctr9ix-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-1f30859-container, .framer-9yqWF .framer-fhyfd7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9yqWF .framer-8dtd3o, .framer-9yqWF .framer-wao2o7 { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-1oyv8iu, .framer-9yqWF .framer-1xpmqo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1162cft { align-content: flex-start; align-items: flex-start; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 93px; height: min-content; justify-content: center; max-width: 100%; min-height: 628px; min-width: 1280px; overflow: visible; padding: 96px 56px 124px 56px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1ah3gy2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; left: 62px; overflow: visible; padding: 0px; position: absolute; top: 55%; transform: translateY(-50%); width: 538px; z-index: 1; }\",\".framer-9yqWF .framer-1yizrzl { aspect-ratio: 1 / 1; background-color: rgba(255, 255, 255, 0.06); flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-9yqWF .framer-ntb8w0, .framer-9yqWF .framer-6lbgv9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9yqWF .framer-estn3s, .framer-9yqWF .framer-cojvo5 { flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9yqWF .framer-1r51gea-container { flex: none; height: 86px; position: relative; width: 232px; }\",\".framer-9yqWF .framer-g94mky { bottom: 57px; flex: none; height: 431px; left: 835px; overflow: visible; position: absolute; width: 402px; z-index: 1; }\",\".framer-9yqWF .framer-174zyuv { flex: none; height: 243px; left: -2px; overflow: visible; position: absolute; top: -121px; width: 261px; z-index: 1; }\",\".framer-9yqWF .framer-1dgqnv1 { flex: none; height: 243px; left: calc(46.73123486682811% - 261px / 2); overflow: visible; position: absolute; top: 72px; width: 261px; z-index: 1; }\",\".framer-9yqWF .framer-7kijxe { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 191px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 101%; }\",\".framer-9yqWF .framer-13581s7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 107px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-locrbp { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-afpu0b { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 11px 56px 11px 56px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-13i4fdv-container { flex: none; height: 50px; left: calc(54.21875000000003% - 885px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 885px; z-index: 1; }\",\".framer-9yqWF .framer-7e7kxp-container, .framer-9yqWF .framer-1sxk5lj-container, .framer-9yqWF .framer-h7kc76-container, .framer-9yqWF .framer-lhrd6p-container, .framer-9yqWF .framer-1e6ejjl-container, .framer-9yqWF .framer-1oc3ugx-container, .framer-9yqWF .framer-e9crgs-container, .framer-9yqWF .framer-sb7ync-container, .framer-9yqWF .framer-xfkvt4-container, .framer-9yqWF .framer-jo1tnc-container, .framer-9yqWF .framer-1wtc19o-container, .framer-9yqWF .framer-ju098k-container { height: auto; position: relative; width: auto; }\",\".framer-9yqWF .framer-lhlclo { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 1168px; }\",\".framer-9yqWF .framer-a8ta3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; min-height: 50px; overflow: visible; padding: 0px; position: relative; width: 187px; }\",\".framer-9yqWF .framer-1u60hcy { flex: none; height: auto; position: absolute; right: -48px; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 229px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-9yqWF .framer-vf5ko1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 109px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1cjtimi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1282px; }\",\".framer-9yqWF .framer-3rfn0n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 56px; left: calc(45.41595925297116% - 1049px / 2); position: absolute; top: 72px; white-space: pre-wrap; width: 1049px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-9yqWF .framer-5sjokm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-9yqWF .framer-yhpfep { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; }\",\".framer-9yqWF .framer-1lf54oa { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9yqWF .framer-1gps5b4 { align-content: flex-start; align-items: flex-start; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-7yxm11, .framer-9yqWF .framer-1mqugwf, .framer-9yqWF .framer-rkiv18, .framer-9yqWF .framer-2rs6b8, .framer-9yqWF .framer-1ssrkrg, .framer-9yqWF .framer-xgg0l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9yqWF .framer-1rifana, .framer-9yqWF .framer-1bsj68w, .framer-9yqWF .framer-bxuahh, .framer-9yqWF .framer-1ftbewr, .framer-9yqWF .framer-185ofe8, .framer-9yqWF .framer-1ixj25q { flex: none; height: auto; opacity: 0.6; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9yqWF .framer-q28jgf, .framer-9yqWF .framer-s064ie { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; }\",\".framer-9yqWF .framer-1hnhqoa, .framer-9yqWF .framer-k8xwpm { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9yqWF .framer-la3qg4, .framer-9yqWF .framer-1omkqoe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-1y6dq7a, .framer-9yqWF .framer-fck38a { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-ctrgwq { align-content: center; align-items: center; align-self: stretch; background-color: #eef8fc; 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-9yqWF .framer-13t8bj9 { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-itwf4m { align-content: flex-start; align-items: flex-start; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-9yqWF .framer-1qo1p20 { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 109px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-iwz9tf { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 92px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 102%; }\",\".framer-9yqWF .framer-1libqiw { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 107px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-ipu2b5 { align-content: center; align-items: center; align-self: stretch; background-color: #eef8fc; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9yqWF .framer-1l8k38j { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-gsxptw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 758px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 640px; }\",\".framer-9yqWF .framer-1khdzp0-container { flex: none; height: 662px; position: relative; width: 331px; }\",\".framer-9yqWF .framer-1uwkg3x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 757px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 650px; }\",\".framer-9yqWF .framer-9bp12y { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-9yqWF .framer-uniq7t { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1iye6d, .framer-9yqWF .framer-1yccymr, .framer-9yqWF .framer-1eh1mdc { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 40px; justify-content: center; overflow: visible; padding: 25px 30px 25px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9yqWF .framer-1xk4c0s, .framer-9yqWF .framer-h9xg76, .framer-9yqWF .framer-5cooz8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9yqWF .framer-wv9cs6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 2px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 99%; }\",\".framer-9yqWF .framer-1252lyt, .framer-9yqWF .framer-1dbfv0b { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1quwqnm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 659px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 640px; }\",\".framer-9yqWF .framer-l3azm6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 449px; }\",\".framer-9yqWF .framer-1zhrjh, .framer-9yqWF .framer-1ccvuxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1hd54so { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 663px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 590px; }\",\".framer-9yqWF .framer-5sxjgg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 146px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 98%; }\",\".framer-9yqWF .framer-zoj96i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 633px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 599px; }\",\".framer-9yqWF .framer-r2rkpz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 671px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 640px; }\",\".framer-9yqWF .framer-cxx96t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 476px; }\",\".framer-9yqWF .framer-xcx2tw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 225px; justify-content: center; left: calc(45.02487562189057% - 325px / 2); overflow: hidden; padding: 0px; position: absolute; top: 26px; width: 325px; z-index: 1; }\",\".framer-9yqWF .framer-10lsa4x, .framer-9yqWF .framer-gmj0zv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 111px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 99%; }\",\".framer-9yqWF .framer-3w9lfh-container { flex: none; height: 285px; position: relative; width: 917px; z-index: 1; }\",\".framer-9yqWF .framer-8yvhr7, .framer-9yqWF .framer-1392ubb { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 42px 48px 42px; position: relative; width: 492px; }\",\".framer-9yqWF .framer-1aw3oqf, .framer-9yqWF .framer-1dkr8s, .framer-9yqWF .framer-12nq8nt { flex: none; height: auto; opacity: 0.87; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9yqWF .framer-1cqyou, .framer-9yqWF .framer-1ef5yvf, .framer-9yqWF .framer-1i4n0bh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-1pp0dg8, .framer-9yqWF .framer-g7g5za, .framer-9yqWF .framer-hc1v7q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1i0sldk { aspect-ratio: 1 / 1; border-bottom-left-radius: 4%; border-bottom-right-radius: 4%; border-top-left-radius: 4%; border-top-right-radius: 4%; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 38px; }\",\".framer-9yqWF .framer-qri503, .framer-9yqWF .framer-5x9hj3, .framer-9yqWF .framer-1nmz8an { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-1fi8zv3, .framer-9yqWF .framer-13ibj67, .framer-9yqWF .framer-14kzzl3 { flex: none; height: auto; opacity: 0.87; position: relative; white-space: pre; width: auto; }\",\".framer-9yqWF .framer-14oro4c, .framer-9yqWF .framer-892xt8, .framer-9yqWF .framer-1uka7lp { flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-9yqWF .framer-j8gi6b, .framer-9yqWF .framer-15jry18 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 18px; z-index: 1; }\",\".framer-9yqWF .framer-11ls1uj { align-content: center; align-items: center; background-color: rgba(246, 244, 243, 0); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 42px 48px 42px; position: relative; width: 492px; }\",\".framer-9yqWF .framer-p4uwkh { aspect-ratio: 1 / 1; border-bottom-left-radius: 37%; border-bottom-right-radius: 37%; border-top-left-radius: 37%; border-top-right-radius: 37%; flex: none; height: var(--framer-aspect-ratio-supported, 46px); position: relative; width: 46px; }\",\".framer-9yqWF .framer-k3gh45 { aspect-ratio: 1 / 1; border-bottom-left-radius: 37%; border-bottom-right-radius: 37%; border-top-left-radius: 37%; border-top-right-radius: 37%; flex: none; height: var(--framer-aspect-ratio-supported, 69px); position: relative; width: 69px; }\",\".framer-9yqWF .framer-1ajjv65 { flex: none; height: auto; left: 50%; position: absolute; top: 84px; transform: translateX(-50%); white-space: pre-wrap; width: 1088px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-9yqWF .framer-zeqpo9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 925px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1272px; }\",\".framer-9yqWF .framer-2z2g7t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-height: 148px; overflow: visible; padding: 0px; position: relative; width: 1276px; }\",\".framer-9yqWF .framer-xgd9i7 { flex: none; height: auto; position: absolute; right: -51px; top: -198px; white-space: pre-wrap; width: 1233px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-9yqWF .framer-wal7vr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; min-height: 194px; overflow: visible; padding: 0px; position: relative; width: 826px; }\",\".framer-9yqWF .framer-3aytyw-container { flex: none; height: auto; left: 50%; position: absolute; top: -4%; transform: translate(-50%, -50%); width: 1000px; z-index: 2; }\",\".framer-9yqWF .framer-1m6ilht { align-content: center; align-items: center; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 931px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-9yqWF .framer-10ooa6g { align-content: flex-start; align-items: flex-start; background-color: #eef8fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 95px 96px 95px; position: relative; width: min-content; }\",\".framer-9yqWF .framer-od87tt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; min-height: 93px; overflow: visible; padding: 0px; position: relative; width: 1088px; }\",\".framer-9yqWF .framer-10n6gxc { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: -84px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-9yqWF .framer-1hzblq7 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 51px; height: 368px; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1067px; }\",\".framer-9yqWF .framer-1ps3scr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px 32px 0px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-9yqWF .framer-1587mgm { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9yqWF .framer-19i6j2t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 200px; padding: 32px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-9yqWF .framer-1hz4qh3 { flex: none; height: 24px; overflow: visible; position: relative; width: 122px; }\",\".framer-9yqWF .framer-9ooebz { flex: none; height: auto; left: 0px; opacity: 0.87; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-9yqWF .framer-nfairy { flex: none; height: 8px; left: 98px; position: absolute; top: 9px; width: 25px; }\",\".framer-9yqWF .framer-1p0p1dm-container { flex: none; height: auto; position: relative; width: 1280px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9yqWF.framer-72rtr7, .framer-9yqWF .framer-8dtd3o, .framer-9yqWF .framer-1oyv8iu, .framer-9yqWF .framer-1162cft, .framer-9yqWF .framer-1ah3gy2, .framer-9yqWF .framer-7kijxe, .framer-9yqWF .framer-13581s7, .framer-9yqWF .framer-locrbp, .framer-9yqWF .framer-afpu0b, .framer-9yqWF .framer-lhlclo, .framer-9yqWF .framer-a8ta3z, .framer-9yqWF .framer-vf5ko1, .framer-9yqWF .framer-1cjtimi, .framer-9yqWF .framer-5sjokm, .framer-9yqWF .framer-yhpfep, .framer-9yqWF .framer-1gps5b4, .framer-9yqWF .framer-q28jgf, .framer-9yqWF .framer-la3qg4, .framer-9yqWF .framer-s064ie, .framer-9yqWF .framer-1omkqoe, .framer-9yqWF .framer-1y6dq7a, .framer-9yqWF .framer-ctrgwq, .framer-9yqWF .framer-13t8bj9, .framer-9yqWF .framer-itwf4m, .framer-9yqWF .framer-1qo1p20, .framer-9yqWF .framer-iwz9tf, .framer-9yqWF .framer-1libqiw, .framer-9yqWF .framer-fck38a, .framer-9yqWF .framer-ipu2b5, .framer-9yqWF .framer-1l8k38j, .framer-9yqWF .framer-gsxptw, .framer-9yqWF .framer-1uwkg3x, .framer-9yqWF .framer-9bp12y, .framer-9yqWF .framer-uniq7t, .framer-9yqWF .framer-1iye6d, .framer-9yqWF .framer-wv9cs6, .framer-9yqWF .framer-1252lyt, .framer-9yqWF .framer-1quwqnm, .framer-9yqWF .framer-l3azm6, .framer-9yqWF .framer-1zhrjh, .framer-9yqWF .framer-1yccymr, .framer-9yqWF .framer-1hd54so, .framer-9yqWF .framer-5sxjgg, .framer-9yqWF .framer-1dbfv0b, .framer-9yqWF .framer-zoj96i, .framer-9yqWF .framer-r2rkpz, .framer-9yqWF .framer-cxx96t, .framer-9yqWF .framer-1ccvuxh, .framer-9yqWF .framer-1eh1mdc, .framer-9yqWF .framer-xcx2tw, .framer-9yqWF .framer-10lsa4x, .framer-9yqWF .framer-wao2o7, .framer-9yqWF .framer-8yvhr7, .framer-9yqWF .framer-1pp0dg8, .framer-9yqWF .framer-qri503, .framer-9yqWF .framer-j8gi6b, .framer-9yqWF .framer-11ls1uj, .framer-9yqWF .framer-g7g5za, .framer-9yqWF .framer-5x9hj3, .framer-9yqWF .framer-15jry18, .framer-9yqWF .framer-1392ubb, .framer-9yqWF .framer-hc1v7q, .framer-9yqWF .framer-1nmz8an, .framer-9yqWF .framer-gmj0zv, .framer-9yqWF .framer-zeqpo9, .framer-9yqWF .framer-2z2g7t, .framer-9yqWF .framer-wal7vr, .framer-9yqWF .framer-1m6ilht, .framer-9yqWF .framer-1xpmqo1, .framer-9yqWF .framer-10ooa6g, .framer-9yqWF .framer-od87tt, .framer-9yqWF .framer-1hzblq7, .framer-9yqWF .framer-1ps3scr, .framer-9yqWF .framer-19i6j2t { gap: 0px; } .framer-9yqWF.framer-72rtr7 > *, .framer-9yqWF .framer-7kijxe > *, .framer-9yqWF .framer-yhpfep > *, .framer-9yqWF .framer-q28jgf > *, .framer-9yqWF .framer-s064ie > *, .framer-9yqWF .framer-qri503 > *, .framer-9yqWF .framer-5x9hj3 > *, .framer-9yqWF .framer-1nmz8an > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9yqWF.framer-72rtr7 > :first-child, .framer-9yqWF .framer-8dtd3o > :first-child, .framer-9yqWF .framer-1ah3gy2 > :first-child, .framer-9yqWF .framer-7kijxe > :first-child, .framer-9yqWF .framer-locrbp > :first-child, .framer-9yqWF .framer-afpu0b > :first-child, .framer-9yqWF .framer-a8ta3z > :first-child, .framer-9yqWF .framer-1cjtimi > :first-child, .framer-9yqWF .framer-yhpfep > :first-child, .framer-9yqWF .framer-1gps5b4 > :first-child, .framer-9yqWF .framer-q28jgf > :first-child, .framer-9yqWF .framer-la3qg4 > :first-child, .framer-9yqWF .framer-s064ie > :first-child, .framer-9yqWF .framer-1omkqoe > :first-child, .framer-9yqWF .framer-ctrgwq > :first-child, .framer-9yqWF .framer-itwf4m > :first-child, .framer-9yqWF .framer-iwz9tf > :first-child, .framer-9yqWF .framer-gsxptw > :first-child, .framer-9yqWF .framer-9bp12y > :first-child, .framer-9yqWF .framer-wv9cs6 > :first-child, .framer-9yqWF .framer-l3azm6 > :first-child, .framer-9yqWF .framer-1hd54so > :first-child, .framer-9yqWF .framer-5sxjgg > :first-child, .framer-9yqWF .framer-zoj96i > :first-child, .framer-9yqWF .framer-cxx96t > :first-child, .framer-9yqWF .framer-xcx2tw > :first-child, .framer-9yqWF .framer-10lsa4x > :first-child, .framer-9yqWF .framer-wao2o7 > :first-child, .framer-9yqWF .framer-8yvhr7 > :first-child, .framer-9yqWF .framer-qri503 > :first-child, .framer-9yqWF .framer-11ls1uj > :first-child, .framer-9yqWF .framer-5x9hj3 > :first-child, .framer-9yqWF .framer-1392ubb > :first-child, .framer-9yqWF .framer-1nmz8an > :first-child, .framer-9yqWF .framer-gmj0zv > :first-child, .framer-9yqWF .framer-zeqpo9 > :first-child, .framer-9yqWF .framer-2z2g7t > :first-child, .framer-9yqWF .framer-1m6ilht > :first-child, .framer-9yqWF .framer-10ooa6g > :first-child, .framer-9yqWF .framer-od87tt > :first-child, .framer-9yqWF .framer-19i6j2t > :first-child { margin-top: 0px; } .framer-9yqWF.framer-72rtr7 > :last-child, .framer-9yqWF .framer-8dtd3o > :last-child, .framer-9yqWF .framer-1ah3gy2 > :last-child, .framer-9yqWF .framer-7kijxe > :last-child, .framer-9yqWF .framer-locrbp > :last-child, .framer-9yqWF .framer-afpu0b > :last-child, .framer-9yqWF .framer-a8ta3z > :last-child, .framer-9yqWF .framer-1cjtimi > :last-child, .framer-9yqWF .framer-yhpfep > :last-child, .framer-9yqWF .framer-1gps5b4 > :last-child, .framer-9yqWF .framer-q28jgf > :last-child, .framer-9yqWF .framer-la3qg4 > :last-child, .framer-9yqWF .framer-s064ie > :last-child, .framer-9yqWF .framer-1omkqoe > :last-child, .framer-9yqWF .framer-ctrgwq > :last-child, .framer-9yqWF .framer-itwf4m > :last-child, .framer-9yqWF .framer-iwz9tf > :last-child, .framer-9yqWF .framer-gsxptw > :last-child, .framer-9yqWF .framer-9bp12y > :last-child, .framer-9yqWF .framer-wv9cs6 > :last-child, .framer-9yqWF .framer-l3azm6 > :last-child, .framer-9yqWF .framer-1hd54so > :last-child, .framer-9yqWF .framer-5sxjgg > :last-child, .framer-9yqWF .framer-zoj96i > :last-child, .framer-9yqWF .framer-cxx96t > :last-child, .framer-9yqWF .framer-xcx2tw > :last-child, .framer-9yqWF .framer-10lsa4x > :last-child, .framer-9yqWF .framer-wao2o7 > :last-child, .framer-9yqWF .framer-8yvhr7 > :last-child, .framer-9yqWF .framer-qri503 > :last-child, .framer-9yqWF .framer-11ls1uj > :last-child, .framer-9yqWF .framer-5x9hj3 > :last-child, .framer-9yqWF .framer-1392ubb > :last-child, .framer-9yqWF .framer-1nmz8an > :last-child, .framer-9yqWF .framer-gmj0zv > :last-child, .framer-9yqWF .framer-zeqpo9 > :last-child, .framer-9yqWF .framer-2z2g7t > :last-child, .framer-9yqWF .framer-1m6ilht > :last-child, .framer-9yqWF .framer-10ooa6g > :last-child, .framer-9yqWF .framer-od87tt > :last-child, .framer-9yqWF .framer-19i6j2t > :last-child { margin-bottom: 0px; } .framer-9yqWF .framer-8dtd3o > *, .framer-9yqWF .framer-locrbp > *, .framer-9yqWF .framer-1gps5b4 > *, .framer-9yqWF .framer-la3qg4 > *, .framer-9yqWF .framer-1omkqoe > *, .framer-9yqWF .framer-itwf4m > *, .framer-9yqWF .framer-iwz9tf > *, .framer-9yqWF .framer-gsxptw > *, .framer-9yqWF .framer-9bp12y > *, .framer-9yqWF .framer-wv9cs6 > *, .framer-9yqWF .framer-l3azm6 > *, .framer-9yqWF .framer-1hd54so > *, .framer-9yqWF .framer-5sxjgg > *, .framer-9yqWF .framer-zoj96i > *, .framer-9yqWF .framer-cxx96t > *, .framer-9yqWF .framer-xcx2tw > *, .framer-9yqWF .framer-10lsa4x > *, .framer-9yqWF .framer-wao2o7 > *, .framer-9yqWF .framer-gmj0zv > *, .framer-9yqWF .framer-1m6ilht > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9yqWF .framer-1oyv8iu > *, .framer-9yqWF .framer-13581s7 > *, .framer-9yqWF .framer-vf5ko1 > *, .framer-9yqWF .framer-1qo1p20 > *, .framer-9yqWF .framer-1libqiw > *, .framer-9yqWF .framer-uniq7t > *, .framer-9yqWF .framer-1zhrjh > *, .framer-9yqWF .framer-1ccvuxh > *, .framer-9yqWF .framer-1xpmqo1 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-9yqWF .framer-1oyv8iu > :first-child, .framer-9yqWF .framer-1162cft > :first-child, .framer-9yqWF .framer-13581s7 > :first-child, .framer-9yqWF .framer-lhlclo > :first-child, .framer-9yqWF .framer-vf5ko1 > :first-child, .framer-9yqWF .framer-5sjokm > :first-child, .framer-9yqWF .framer-1y6dq7a > :first-child, .framer-9yqWF .framer-13t8bj9 > :first-child, .framer-9yqWF .framer-1qo1p20 > :first-child, .framer-9yqWF .framer-1libqiw > :first-child, .framer-9yqWF .framer-fck38a > :first-child, .framer-9yqWF .framer-ipu2b5 > :first-child, .framer-9yqWF .framer-1l8k38j > :first-child, .framer-9yqWF .framer-1uwkg3x > :first-child, .framer-9yqWF .framer-uniq7t > :first-child, .framer-9yqWF .framer-1iye6d > :first-child, .framer-9yqWF .framer-1252lyt > :first-child, .framer-9yqWF .framer-1quwqnm > :first-child, .framer-9yqWF .framer-1zhrjh > :first-child, .framer-9yqWF .framer-1yccymr > :first-child, .framer-9yqWF .framer-1dbfv0b > :first-child, .framer-9yqWF .framer-r2rkpz > :first-child, .framer-9yqWF .framer-1ccvuxh > :first-child, .framer-9yqWF .framer-1eh1mdc > :first-child, .framer-9yqWF .framer-1pp0dg8 > :first-child, .framer-9yqWF .framer-j8gi6b > :first-child, .framer-9yqWF .framer-g7g5za > :first-child, .framer-9yqWF .framer-15jry18 > :first-child, .framer-9yqWF .framer-hc1v7q > :first-child, .framer-9yqWF .framer-wal7vr > :first-child, .framer-9yqWF .framer-1xpmqo1 > :first-child, .framer-9yqWF .framer-1hzblq7 > :first-child, .framer-9yqWF .framer-1ps3scr > :first-child { margin-left: 0px; } .framer-9yqWF .framer-1oyv8iu > :last-child, .framer-9yqWF .framer-1162cft > :last-child, .framer-9yqWF .framer-13581s7 > :last-child, .framer-9yqWF .framer-lhlclo > :last-child, .framer-9yqWF .framer-vf5ko1 > :last-child, .framer-9yqWF .framer-5sjokm > :last-child, .framer-9yqWF .framer-1y6dq7a > :last-child, .framer-9yqWF .framer-13t8bj9 > :last-child, .framer-9yqWF .framer-1qo1p20 > :last-child, .framer-9yqWF .framer-1libqiw > :last-child, .framer-9yqWF .framer-fck38a > :last-child, .framer-9yqWF .framer-ipu2b5 > :last-child, .framer-9yqWF .framer-1l8k38j > :last-child, .framer-9yqWF .framer-1uwkg3x > :last-child, .framer-9yqWF .framer-uniq7t > :last-child, .framer-9yqWF .framer-1iye6d > :last-child, .framer-9yqWF .framer-1252lyt > :last-child, .framer-9yqWF .framer-1quwqnm > :last-child, .framer-9yqWF .framer-1zhrjh > :last-child, .framer-9yqWF .framer-1yccymr > :last-child, .framer-9yqWF .framer-1dbfv0b > :last-child, .framer-9yqWF .framer-r2rkpz > :last-child, .framer-9yqWF .framer-1ccvuxh > :last-child, .framer-9yqWF .framer-1eh1mdc > :last-child, .framer-9yqWF .framer-1pp0dg8 > :last-child, .framer-9yqWF .framer-j8gi6b > :last-child, .framer-9yqWF .framer-g7g5za > :last-child, .framer-9yqWF .framer-15jry18 > :last-child, .framer-9yqWF .framer-hc1v7q > :last-child, .framer-9yqWF .framer-wal7vr > :last-child, .framer-9yqWF .framer-1xpmqo1 > :last-child, .framer-9yqWF .framer-1hzblq7 > :last-child, .framer-9yqWF .framer-1ps3scr > :last-child { margin-right: 0px; } .framer-9yqWF .framer-1162cft > * { margin: 0px; margin-left: calc(93px / 2); margin-right: calc(93px / 2); } .framer-9yqWF .framer-1ah3gy2 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-9yqWF .framer-afpu0b > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-9yqWF .framer-lhlclo > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-9yqWF .framer-a8ta3z > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-9yqWF .framer-1cjtimi > *, .framer-9yqWF .framer-zeqpo9 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-9yqWF .framer-5sjokm > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-9yqWF .framer-1y6dq7a > *, .framer-9yqWF .framer-fck38a > *, .framer-9yqWF .framer-1l8k38j > *, .framer-9yqWF .framer-1252lyt > *, .framer-9yqWF .framer-1dbfv0b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9yqWF .framer-ctrgwq > *, .framer-9yqWF .framer-19i6j2t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9yqWF .framer-13t8bj9 > *, .framer-9yqWF .framer-ipu2b5 > *, .framer-9yqWF .framer-1uwkg3x > *, .framer-9yqWF .framer-1quwqnm > *, .framer-9yqWF .framer-r2rkpz > *, .framer-9yqWF .framer-j8gi6b > *, .framer-9yqWF .framer-15jry18 > *, .framer-9yqWF .framer-wal7vr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9yqWF .framer-1iye6d > *, .framer-9yqWF .framer-1yccymr > *, .framer-9yqWF .framer-1eh1mdc > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-9yqWF .framer-8yvhr7 > *, .framer-9yqWF .framer-11ls1uj > *, .framer-9yqWF .framer-1392ubb > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-9yqWF .framer-1pp0dg8 > *, .framer-9yqWF .framer-g7g5za > *, .framer-9yqWF .framer-hc1v7q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-9yqWF .framer-2z2g7t > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9yqWF .framer-10ooa6g > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-9yqWF .framer-od87tt > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-9yqWF .framer-1hzblq7 > * { margin: 0px; margin-left: calc(51px / 2); margin-right: calc(51px / 2); } .framer-9yqWF .framer-1ps3scr > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-9yqWF { background: white; } .framer-9yqWF.framer-72rtr7 { width: 1200px; } .framer-9yqWF .framer-1ah3gy2 { left: 63px; } .framer-9yqWF .framer-g94mky { bottom: 14px; height: 435px; left: 742px; width: 417px; } .framer-9yqWF .framer-7kijxe { height: 173px; width: 100%; } .framer-9yqWF .framer-a8ta3z { min-height: 28px; } .framer-9yqWF .framer-1l8k38j { background-color: #ffffff; height: 556px; width: 100%; } .framer-9yqWF .framer-gsxptw, .framer-9yqWF .framer-zoj96i { height: 500px; } .framer-9yqWF .framer-1khdzp0-container { height: 454px; width: 228px; } .framer-9yqWF .framer-9bp12y, .framer-9yqWF .framer-cxx96t { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-9yqWF .framer-wv9cs6 { height: 11px; width: 100%; } .framer-9yqWF .framer-1252lyt { height: 530px; width: 100%; } .framer-9yqWF .framer-l3azm6 { flex: 1 0 0px; order: 0; padding: 40px; width: 1px; } .framer-9yqWF .framer-1hd54so { height: 502px; width: 564px; } .framer-9yqWF .framer-5sxjgg, .framer-9yqWF .framer-10lsa4x { height: 54px; width: 99%; } .framer-9yqWF .framer-r2rkpz { height: 657px; width: 555px; } .framer-9yqWF .framer-1ajjv65 { top: 105px; } .framer-9yqWF .framer-zeqpo9 { height: 1133px; width: 1201px; } .framer-9yqWF .framer-xgd9i7 { right: -46px; top: -203px; } .framer-9yqWF .framer-3aytyw-container { height: 591px; left: calc(44.4309927360775% - 1009px / 2); top: calc(46.907216494845386% - 591px / 2); transform: unset; width: 1009px; } .framer-9yqWF .framer-od87tt { order: 0; } .framer-9yqWF .framer-10n6gxc { top: 7px; } .framer-9yqWF .framer-1hzblq7 { height: 320px; order: 1; width: 995px; }}`,`@media (max-width: 413px) { .${metadata.bodyClassName}-framer-9yqWF { background: white; } .framer-9yqWF.framer-72rtr7 { width: 390px; } .framer-9yqWF .framer-fhyfd7-container { order: 2; } .framer-9yqWF .framer-8dtd3o { height: 940px; order: 4; width: 102%; } .framer-9yqWF .framer-1162cft { min-width: unset; width: 1280px; } .framer-9yqWF .framer-1ah3gy2 { bottom: 0px; height: 528px; left: 0px; right: 0px; top: unset; transform: unset; width: unset; } .framer-9yqWF .framer-1yizrzl { order: 0; } .framer-9yqWF .framer-ntb8w0 { order: 1; width: 300px; } .framer-9yqWF .framer-estn3s { order: 2; width: 285px; } .framer-9yqWF .framer-1r51gea-container { order: 3; } .framer-9yqWF .framer-7kijxe { height: 203px; order: 5; width: 100%; } .framer-9yqWF .framer-locrbp { height: 179px; width: 404px; } .framer-9yqWF .framer-lhlclo { height: 106px; } .framer-9yqWF .framer-a8ta3z { min-height: 28px; order: 0; } .framer-9yqWF .framer-1cjtimi { height: 1802px; order: 6; width: 391px; } .framer-9yqWF .framer-3rfn0n { height: 48px; left: calc(45.01278772378519% - 282px / 2); top: 68px; width: 282px; } .framer-9yqWF .framer-1lf54oa, .framer-9yqWF .framer-1hnhqoa, .framer-9yqWF .framer-k8xwpm { height: var(--framer-aspect-ratio-supported, 150px); } .framer-9yqWF .framer-1y6dq7a { flex-direction: column; order: 7; } .framer-9yqWF .framer-ctrgwq, .framer-9yqWF .framer-ipu2b5 { align-self: unset; height: 1px; width: 100%; } .framer-9yqWF .framer-fck38a { flex-direction: column; order: 8; } .framer-9yqWF .framer-1l8k38j { flex-direction: column; order: 10; width: 100%; } .framer-9yqWF .framer-gsxptw { height: 345px; order: 0; width: 398px; } .framer-9yqWF .framer-1khdzp0-container { height: 342px; width: 171px; } .framer-9yqWF .framer-1uwkg3x { height: 510px; order: 1; width: 415px; } .framer-9yqWF .framer-9bp12y { order: 0; width: 316px; } .framer-9yqWF .framer-wv9cs6 { height: 26px; order: 13; width: 99%; } .framer-9yqWF .framer-1252lyt { flex-direction: column; order: 12; } .framer-9yqWF .framer-1quwqnm { height: 502px; order: 1; } .framer-9yqWF .framer-l3azm6 { width: 340px; } .framer-9yqWF .framer-1hd54so { height: 328px; order: 0; width: 391px; } .framer-9yqWF .framer-5sxjgg { height: 58px; order: 11; width: 98%; } .framer-9yqWF .framer-1dbfv0b { flex-direction: column; order: 15; width: 640px; } .framer-9yqWF .framer-zoj96i { height: 311px; width: 310px; } .framer-9yqWF .framer-r2rkpz { height: 390px; } .framer-9yqWF .framer-cxx96t { width: 324px; } .framer-9yqWF .framer-wao2o7 { height: 809px; order: 17; width: 101%; } .framer-9yqWF .framer-3w9lfh-container { height: 523px; width: 334px; } .framer-9yqWF .framer-1ajjv65 { left: 22px; top: -79px; transform: unset; width: 282px; } .framer-9yqWF .framer-zeqpo9 { height: 1055px; order: 18; width: 394px; } .framer-9yqWF .framer-xgd9i7 { left: 476px; right: unset; top: -254px; width: 693px; } .framer-9yqWF .framer-3aytyw-container { height: 689px; left: calc(51.273885350318494% - 381px / 2); top: calc(24.742268041237136% - 689px / 2); transform: unset; width: 381px; } .framer-9yqWF .framer-1m6ilht { order: 19; } .framer-9yqWF .framer-10ooa6g { height: 731px; width: 546px; } .framer-9yqWF .framer-10n6gxc { left: 22px; right: unset; top: -79px; width: 282px; } .framer-9yqWF .framer-1hzblq7 { flex-direction: column; height: 315px; width: 369px; } .framer-9yqWF .framer-1ps3scr { flex: none; width: 100%; } .framer-9yqWF .framer-1p0p1dm-container { order: 20; width: 393px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9yqWF .framer-1y6dq7a, .framer-9yqWF .framer-fck38a, .framer-9yqWF .framer-1l8k38j, .framer-9yqWF .framer-1252lyt, .framer-9yqWF .framer-1dbfv0b, .framer-9yqWF .framer-1hzblq7 { gap: 0px; } .framer-9yqWF .framer-1y6dq7a > *, .framer-9yqWF .framer-fck38a > *, .framer-9yqWF .framer-1l8k38j > *, .framer-9yqWF .framer-1252lyt > *, .framer-9yqWF .framer-1dbfv0b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9yqWF .framer-1y6dq7a > :first-child, .framer-9yqWF .framer-fck38a > :first-child, .framer-9yqWF .framer-1l8k38j > :first-child, .framer-9yqWF .framer-1252lyt > :first-child, .framer-9yqWF .framer-1dbfv0b > :first-child, .framer-9yqWF .framer-1hzblq7 > :first-child { margin-top: 0px; } .framer-9yqWF .framer-1y6dq7a > :last-child, .framer-9yqWF .framer-fck38a > :last-child, .framer-9yqWF .framer-1l8k38j > :last-child, .framer-9yqWF .framer-1252lyt > :last-child, .framer-9yqWF .framer-1dbfv0b > :last-child, .framer-9yqWF .framer-1hzblq7 > :last-child { margin-bottom: 0px; } .framer-9yqWF .framer-1hzblq7 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-9yqWF { background: white; } .framer-9yqWF.framer-72rtr7 { width: 768px; } .framer-9yqWF .framer-ctr9ix-container, .framer-9yqWF .framer-1omkqoe, .framer-9yqWF .framer-rkiv18, .framer-9yqWF .framer-10ooa6g, .framer-9yqWF .framer-1587mgm { order: 0; } .framer-9yqWF .framer-8dtd3o { order: 4; } .framer-9yqWF .framer-1162cft { height: 570px; min-height: unset; min-width: unset; width: 810px; } .framer-9yqWF .framer-1ah3gy2 { left: 0px; order: 1; top: 55%; } .framer-9yqWF .framer-g94mky { bottom: -14px; height: 273px; left: unset; order: 0; right: -21px; width: 281px; } .framer-9yqWF .framer-7kijxe { height: 310px; order: 5; width: 102%; } .framer-9yqWF .framer-locrbp { height: 227px; width: 890px; } .framer-9yqWF .framer-afpu0b { height: 136px; width: 774px; } .framer-9yqWF .framer-13i4fdv-container { left: -24px; right: -12px; width: unset; } .framer-9yqWF .framer-a8ta3z { min-height: 28px; } .framer-9yqWF .framer-1cjtimi { height: 1650px; order: 6; width: 655px; } .framer-9yqWF .framer-3rfn0n { height: 28px; left: 0px; order: 0; right: -168px; top: 41px; width: unset; } .framer-9yqWF .framer-5sjokm, .framer-9yqWF .framer-1gps5b4, .framer-9yqWF .framer-bxuahh, .framer-9yqWF .framer-1xpmqo1, .framer-9yqWF .framer-19i6j2t { order: 1; } .framer-9yqWF .framer-1lf54oa { height: var(--framer-aspect-ratio-supported, 150px); order: 0; } .framer-9yqWF .framer-1hnhqoa, .framer-9yqWF .framer-k8xwpm { height: var(--framer-aspect-ratio-supported, 150px); } .framer-9yqWF .framer-1y6dq7a { order: 7; } .framer-9yqWF .framer-fck38a { order: 8; } .framer-9yqWF .framer-1l8k38j { background-color: #ffffff; height: 556px; order: 9; width: 100%; } .framer-9yqWF .framer-gsxptw { height: 393px; width: 394px; } .framer-9yqWF .framer-1khdzp0-container { height: 380px; width: 190px; } .framer-9yqWF .framer-1uwkg3x { height: 531px; width: 401px; } .framer-9yqWF .framer-9bp12y, .framer-9yqWF .framer-l3azm6, .framer-9yqWF .framer-cxx96t { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-9yqWF .framer-wv9cs6 { height: 84px; order: 12; width: 99%; } .framer-9yqWF .framer-1252lyt { height: 548px; order: 11; width: 100%; } .framer-9yqWF .framer-1quwqnm { height: 507px; width: 400px; } .framer-9yqWF .framer-1hd54so { height: 385px; width: 400px; } .framer-9yqWF .framer-5sxjgg { height: 54px; order: 15; width: 97%; } .framer-9yqWF .framer-1dbfv0b { height: 526px; order: 14; width: 806px; } .framer-9yqWF .framer-zoj96i { height: 361px; width: 464px; } .framer-9yqWF .framer-r2rkpz { height: 636px; width: 331px; } .framer-9yqWF .framer-wao2o7 { order: 17; } .framer-9yqWF .framer-3w9lfh-container { height: 337px; order: 0; width: 719px; } .framer-9yqWF .framer-1ajjv65 { order: 1; top: 39px; width: 643px; } .framer-9yqWF .framer-zeqpo9 { height: 741px; order: 18; } .framer-9yqWF .framer-xgd9i7 { right: -236px; top: -137px; } .framer-9yqWF .framer-3aytyw-container { height: 587px; left: calc(51.81598062953997% - 696px / 2); top: calc(21.649484536082497% - 587px / 2); transform: unset; width: 696px; } .framer-9yqWF .framer-1m6ilht { height: 548px; order: 19; width: 100%; } .framer-9yqWF .framer-od87tt { order: 0; width: 676px; } .framer-9yqWF .framer-10n6gxc { bottom: 7px; left: -206px; right: -206px; top: unset; } .framer-9yqWF .framer-1hzblq7 { height: 310px; order: 1; width: 726px; } .framer-9yqWF .framer-1p0p1dm-container { order: 20; width: 810px; }}`,`@media (min-width: 414px) and (max-width: 767px) { .${metadata.bodyClassName}-framer-9yqWF { background: white; } .framer-9yqWF.framer-72rtr7 { width: 414px; } .framer-9yqWF .framer-8dtd3o { height: 968px; width: 100%; } .framer-9yqWF .framer-1162cft { height: 126px; min-height: unset; min-width: unset; width: 404px; } .framer-9yqWF .framer-1ah3gy2 { left: 47%; top: 55%; transform: translate(-50%, -50%); width: 257px; } .framer-9yqWF .framer-1yizrzl, .framer-9yqWF .framer-13i4fdv-container, .framer-9yqWF .framer-od87tt { order: 0; } .framer-9yqWF .framer-ntb8w0, .framer-9yqWF .framer-xcx2tw { order: 1; } .framer-9yqWF .framer-estn3s { order: 2; } .framer-9yqWF .framer-1r51gea-container { order: 3; } .framer-9yqWF .framer-7kijxe { height: 167px; padding: 60px; width: 99%; } .framer-9yqWF .framer-lhlclo { height: 106px; order: 1; } .framer-9yqWF .framer-a8ta3z { min-height: 28px; order: 0; } .framer-9yqWF .framer-1cjtimi { height: 1537px; width: 412px; } .framer-9yqWF .framer-3rfn0n { height: 2px; left: calc(51.116625310173724% - 365px / 2); top: 46px; width: 365px; } .framer-9yqWF .framer-1lf54oa, .framer-9yqWF .framer-1hnhqoa, .framer-9yqWF .framer-k8xwpm { height: var(--framer-aspect-ratio-supported, 150px); } .framer-9yqWF .framer-1y6dq7a, .framer-9yqWF .framer-fck38a { flex-direction: column; } .framer-9yqWF .framer-ctrgwq, .framer-9yqWF .framer-ipu2b5 { align-self: unset; height: 1px; width: 100%; } .framer-9yqWF .framer-1l8k38j { flex-direction: column; height: 595px; width: 100%; } .framer-9yqWF .framer-gsxptw { height: 256px; order: 0; width: 422px; } .framer-9yqWF .framer-1khdzp0-container { height: 239px; width: 119px; } .framer-9yqWF .framer-1uwkg3x { height: 344px; order: 1; width: 620px; } .framer-9yqWF .framer-9bp12y { height: 285px; padding: 40px; width: 402px; } .framer-9yqWF .framer-1252lyt { flex-direction: column; height: 644px; width: 102%; } .framer-9yqWF .framer-1quwqnm { height: 344px; order: 1; width: 353px; } .framer-9yqWF .framer-l3azm6 { padding: 40px; width: 393px; } .framer-9yqWF .framer-1hd54so { height: 235px; order: 0; width: 397px; } .framer-9yqWF .framer-1dbfv0b { flex-direction: column; height: 624px; width: 101%; } .framer-9yqWF .framer-r2rkpz { height: 676px; order: 1; width: 402px; } .framer-9yqWF .framer-cxx96t { bottom: 59px; left: -1px; order: 0; padding: 40px; position: absolute; width: 399px; z-index: 1; } .framer-9yqWF .framer-wao2o7 { height: 739px; padding: 60px; width: 100%; } .framer-9yqWF .framer-3w9lfh-container { height: 476px; width: 354px; } .framer-9yqWF .framer-1ajjv65 { top: -323px; width: 328px; } .framer-9yqWF .framer-zeqpo9 { height: 1064px; width: 408px; } .framer-9yqWF .framer-xgd9i7 { left: 50%; right: unset; top: -258px; transform: translateX(-50%); width: 318px; } .framer-9yqWF .framer-3aytyw-container { height: 737px; left: calc(55.18292682926832% - 363px / 2); top: calc(15.463917525773219% - 737px / 2); transform: unset; width: 363px; } .framer-9yqWF .framer-10n6gxc { left: 50%; right: unset; top: -323px; transform: translateX(-50%); width: 328px; } .framer-9yqWF .framer-1hzblq7 { bottom: -120px; flex-direction: column; height: unset; left: calc(50.15649452269173% - min(100%, 348px) / 2); order: 1; position: absolute; top: -60px; width: 348px; z-index: 1; } .framer-9yqWF .framer-1ps3scr { flex: none; width: 100%; } .framer-9yqWF .framer-1p0p1dm-container { width: 418px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9yqWF .framer-1y6dq7a, .framer-9yqWF .framer-fck38a, .framer-9yqWF .framer-1l8k38j, .framer-9yqWF .framer-1252lyt, .framer-9yqWF .framer-1dbfv0b, .framer-9yqWF .framer-1hzblq7 { gap: 0px; } .framer-9yqWF .framer-1y6dq7a > *, .framer-9yqWF .framer-fck38a > *, .framer-9yqWF .framer-1l8k38j > *, .framer-9yqWF .framer-1252lyt > *, .framer-9yqWF .framer-1dbfv0b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9yqWF .framer-1y6dq7a > :first-child, .framer-9yqWF .framer-fck38a > :first-child, .framer-9yqWF .framer-1l8k38j > :first-child, .framer-9yqWF .framer-1252lyt > :first-child, .framer-9yqWF .framer-1dbfv0b > :first-child, .framer-9yqWF .framer-1hzblq7 > :first-child { margin-top: 0px; } .framer-9yqWF .framer-1y6dq7a > :last-child, .framer-9yqWF .framer-fck38a > :last-child, .framer-9yqWF .framer-1l8k38j > :last-child, .framer-9yqWF .framer-1252lyt > :last-child, .framer-9yqWF .framer-1dbfv0b > :last-child, .framer-9yqWF .framer-1hzblq7 > :last-child { margin-bottom: 0px; } .framer-9yqWF .framer-1hzblq7 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-9yqWF[data-border=\"true\"]::after, .framer-9yqWF [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 6881\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lz6Bu_rUC\":{\"layout\":[\"fixed\",\"auto\"]},\"vZtpcx2rC\":{\"layout\":[\"fixed\",\"auto\"]},\"Ik64js3Sn\":{\"layout\":[\"fixed\",\"auto\"]},\"IC9vgNW5c\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-9yqWF\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6881,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Celias Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/oVPZB4olQjiWNqhDKHQEWUSg28.otf\"},{family:\"Celias Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/MPOzN02VEWuwBC0E6gjZXbbKCw.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...NavbarFonts,...ButtonFonts,...Walmart1Fonts,...TickerFonts,...VideoFonts,...SlideshowFonts,...AccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lz6Bu_rUC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vZtpcx2rC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ik64js3Sn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IC9vgNW5c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerIntrinsicHeight\":\"6881\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1t4enui", "args", "onTap1qq4gce", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FrameraDwYpu7va", "withCSS", "aDwYpu7va_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapw8kqj5", "args", "onTap1wou4l4", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FrameraHq5Tebu2", "withCSS", "aHq5Tebu2_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ti78fr", "args", "onTap1sivvfg", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerEr2HgXLyL", "withCSS", "Er2HgXLyL_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1se1phk", "args", "onTap1grxl5k", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerFT5q6zxMV", "withCSS", "FT5q6zxMV_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap18joqy3", "args", "onTap11eivyo", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerpEt8stBuL", "withCSS", "pEt8stBuL_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "tap", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "nQQH9rBsV", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1r4ke0", "args", "onTapkbienc", "onTap19s3f3a", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerSMCsCBMM5", "withCSS", "SMCsCBMM5_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "transitions", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15symtc", "args", "onTap96qtdw", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerUxbbKR7uj", "withCSS", "UxbbKR7uj_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "aDwYpu7va_default", "RowCopyFonts", "SMCsCBMM5_default", "RowCopy2Fonts", "FT5q6zxMV_default", "RowCopy3Fonts", "UxbbKR7uj_default", "RowCopy5Fonts", "pEt8stBuL_default", "RowCopy4Fonts", "Er2HgXLyL_default", "RowCopy6Fonts", "aHq5Tebu2_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "css", "FramerenSxR6QOA", "withCSS", "enSxR6QOA_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavbarFonts", "getFonts", "gpZNcxuZd_default", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "OEDLFASeH_default", "MotionDivWithFX", "motion", "Walmart1Fonts", "q7qXBiS7P_default", "TickerFonts", "Ticker", "VideoFonts", "Video", "SlideshowFonts", "Slideshow", "AccordionFonts", "enSxR6QOA_default", "FooterFonts", "VvkHCiwSO_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "animation2", "transformTemplate1", "_", "t", "transformTemplate2", "transition3", "animation3", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "L5jVK9bDHEcsmKcRv6", "LZk938y6CEcsmKcRv6", "Ir0UXuJbAEcsmKcRv6", "KGEPmWIzREcsmKcRv6", "idEcsmKcRv6", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "isDisplayed1", "isDisplayed2", "elementId1", "ref3", "usePreloadLocalizedValues", "elementId2", "ref4", "elementId3", "ref5", "isDisplayed3", "isDisplayed4", "isDisplayed5", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "_getLocalizedValue48", "_getLocalizedValue49", "_getLocalizedValue50", "_getLocalizedValue51", "_getLocalizedValue52", "_getLocalizedValue53", "_getLocalizedValue54", "_getLocalizedValue55", "_getLocalizedValue56", "_getLocalizedValue57", "_getLocalizedValue58", "_getLocalizedValue59", "_getLocalizedValue60", "_getLocalizedValue61", "_getLocalizedValue62", "_getLocalizedValue63", "_getLocalizedValue64", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLocalizedValue", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "ChildrenCanSuspend", "jp8Xysm8L_default", "collection", "paginationInfo", "loadMore", "l", "i", "textContent", "PathVariablesContext", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
