{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/tVB5DCuFW7lIs8GsP2jH/v2tJooXJaZU3tP9ER1qC/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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=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===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")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=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)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=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import RecommendedReading from\"#framer/local/canvasComponent/AkUV3EZp4/AkUV3EZp4.js\";import Footer from\"#framer/local/canvasComponent/E7nYPPm5e/E7nYPPm5e.js\";import CTABlocksStandard from\"#framer/local/canvasComponent/FARZ7z5DA/FARZ7z5DA.js\";import TheLightkeepersCollective from\"#framer/local/canvasComponent/fYGaP503t/fYGaP503t.js\";import Testimonial from\"#framer/local/canvasComponent/KZ2VhsytZ/KZ2VhsytZ.js\";import ModalHubspotForm from\"#framer/local/canvasComponent/Q4ejFOvFF/Q4ejFOvFF.js\";import SolutionsBlock from\"#framer/local/canvasComponent/qxfv4U7YX/qxfv4U7YX.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/S9N1UMVFB/S9N1UMVFB.js\";import NavigationTopBar from\"#framer/local/canvasComponent/THeSFKcsQ/THeSFKcsQ.js\";import*as sharedStyle4 from\"#framer/local/css/cY2eIK2EJ/cY2eIK2EJ.js\";import*as sharedStyle from\"#framer/local/css/D2EFp62uX/D2EFp62uX.js\";import*as sharedStyle5 from\"#framer/local/css/iDF1TJWB8/iDF1TJWB8.js\";import*as sharedStyle1 from\"#framer/local/css/kI3AB6Nlf/kI3AB6Nlf.js\";import*as sharedStyle2 from\"#framer/local/css/ri0LDmpnr/ri0LDmpnr.js\";import*as sharedStyle3 from\"#framer/local/css/WXnxT4Uo2/WXnxT4Uo2.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationTopBarFonts=getFonts(NavigationTopBar);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const AudioFonts=getFonts(Audio);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const SolutionsBlockFonts=getFonts(SolutionsBlock);const CTABlocksStandardFonts=getFonts(CTABlocksStandard);const TestimonialFonts=getFonts(Testimonial);const TheLightkeepersCollectiveFonts=getFonts(TheLightkeepersCollective);const RecommendedReadingFonts=getFonts(RecommendedReading);const FooterFonts=getFonts(Footer);const ModalHubspotFormFonts=getFonts(ModalHubspotForm);const breakpoints={KNYWOQczD:\"(min-width: 810px) and (max-width: 1199px)\",VIwV3Ow5c:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oCfQZ\";const variantClassNames={KNYWOQczD:\"framer-v-1fwijmd\",VIwV3Ow5c:\"framer-v-1hncgrv\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:20,delay:0,mass:.1,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition3={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"VIwV3Ow5c\",Tablet:\"KNYWOQczD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const dD5NwBbb83bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Xlf3xSTsK1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"E2gtMRryQ\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"KNYWOQczD\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"KNYWOQczD\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-okns7v-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{variant:\"ryNInIZDF\"},VIwV3Ow5c:{variant:\"Cc_uUTNER\"}},children:/*#__PURE__*/_jsx(NavigationTopBar,{aBM15Znj6:\"ockZcVUd5\",height:\"100%\",id:\"dL65t40Fj\",KVY7y1zYo:\"ockZcVUd5\",layoutId:\"dL65t40Fj\",style:{width:\"100%\"},variant:\"ell_ypwYF\",vfoCEhOZo:\"ockZcVUd5\",width:\"100%\",x3LvwwaPf:\"ockZcVUd5\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o8iall\",\"data-framer-name\":\"Content\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1qz2ipd\",\"data-framer-appear-id\":\"1qz2ipd\",\"data-framer-name\":\"Hero / Solutions\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chndwg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Harnessing data to illuminate and eradicate human trafficking\"})}),className:\"framer-1qidkbc\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Human trafficking is often invisible, misunderstood, and difficult to measure. Our data-driven solutions help allies identify, confront, and prevent exploitation.\"})}),className:\"framer-6s3wgn\",\"data-framer-name\":\"Detail\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eynhpq\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined},{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined},{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{y:(componentViewport?.y||0)+80+0+0+0+0+0+24+299.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"168px\",y:(componentViewport?.y||0)+80+0+0+0+0+0+80+299.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hqc7yc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{fXXXg66s4:resolvedLinks[1]},VIwV3Ow5c:{fXXXg66s4:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{EkSAg5ob2:\"Learn More\",fXXXg66s4:resolvedLinks[0],height:\"100%\",id:\"k0i0TDHgX\",layoutId:\"k0i0TDHgX\",style:{height:\"100%\",width:\"100%\"},uBxc3uQEP:false,variant:\"I6473:29024;204:592\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vJoWamzEb\"},implicitPathVariables:undefined},{href:{webPageId:\"vJoWamzEb\"},implicitPathVariables:undefined},{href:{webPageId:\"vJoWamzEb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{y:(componentViewport?.y||0)+80+0+0+0+0+0+24+299.2+0+58}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"168px\",y:(componentViewport?.y||0)+80+0+0+0+0+0+80+299.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11lh6ss-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{fXXXg66s4:resolvedLinks1[1]},VIwV3Ow5c:{fXXXg66s4:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{EkSAg5ob2:\"Partner with Us\",fXXXg66s4:resolvedLinks1[0],height:\"100%\",id:\"k6n1n1zZ1\",layoutId:\"k6n1n1zZ1\",style:{height:\"100%\",width:\"100%\"},uBxc3uQEP:false,variant:\"yPvglGkyv\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9cuuk\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4h5lu-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VwXPxqDgn\",isMixedBorderRadius:false,layoutId:\"VwXPxqDgn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/rul2TlAeTRJ6f73MTkgVERQEvw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyd12f\",\"data-framer-name\":\"Fade\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:1080.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+0+0+0+453.2+0),pixelHeight:1216,pixelWidth:2160,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:607.5,intrinsicWidth:1080.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+0+0+0+507.2+0),pixelHeight:1216,pixelWidth:2160,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bM40hcrRMsU61mPiemjYc2gAQ.png 2160w\"},className:\"framer-1lhgvrq\",\"data-framer-name\":\"Floating components\"})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-adhzpj\",\"data-framer-name\":\"Impact and Outcomes\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1llaa7t\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Impact & Outcomes\"})}),className:\"framer-1xst0oj\",\"data-framer-name\":\"Impact & Outcomes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Over a decade of success\"})}),className:\"framer-1pkgouv\",\"data-framer-name\":\"Over a decade of data-driven success in ending human trafficking\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsvx35\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fkl3w2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbvcxr\",\"data-framer-name\":\"Skill\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cck2fo\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1r5h44d\",\"data-styles-preset\":\"ri0LDmpnr\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Strategic Partnerships\"})}),className:\"framer-11r354c\",\"data-framer-name\":\"Revealed Trafficking Victims\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Collaborated with over 200 organizations to combat trafficking\"})}),className:\"framer-9pkip0\",\"data-framer-name\":\"Over 10,000 trafficking victims identified since 2020.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"200+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y6u4n9\",\"data-styles-preset\":\"WXnxT4Uo2\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"200+\"})}),className:\"framer-1nrb6gr\",\"data-framer-name\":\"10,000+\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sssk7w\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4phvz\",\"data-framer-name\":\"Skill\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5ps69\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1r5h44d\",\"data-styles-preset\":\"ri0LDmpnr\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Victim Identification\"})}),className:\"framer-z2t8iq\",\"data-framer-name\":\"Strategic Partnerships\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Over 18,000 potential victims identified since 2017\"})}),className:\"framer-1y4rysi\",\"data-framer-name\":\"Collaborated with 50+ organizations to combat trafficking.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"18,000+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y6u4n9\",\"data-styles-preset\":\"WXnxT4Uo2\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"18,000+\"})}),className:\"framer-h43ysy\",\"data-framer-name\":\"50+\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hgtnp hidden-72rtr7 hidden-1hncgrv\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gpevy1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rlqmq3 hidden-1fwijmd\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-okfpw4\",\"data-framer-name\":\"Skill\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cur4k7\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1r5h44d\",\"data-styles-preset\":\"ri0LDmpnr\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Trafficker Accountability\"})}),className:\"framer-e7ejwo\",\"data-framer-name\":\"Prosecuted Traffickers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Analyzed 2,500+ federally prosecuted cases of 4,500+ traffickers\"})}),className:\"framer-1ddhro\",\"data-framer-name\":\"Contributed to the successful prosecution of 2,000+ traffickers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"4,500+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y6u4n9\",\"data-styles-preset\":\"WXnxT4Uo2\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"4,500+\"})}),className:\"framer-o814bl\",\"data-framer-name\":\"2,000+\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1yhmv\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7f3h4x\",\"data-framer-name\":\"Skill\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ynju9\",\"data-framer-name\":\"Detail\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1r5h44d\",\"data-styles-preset\":\"ri0LDmpnr\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Policy Analysis\"})}),className:\"framer-1k7yq0x\",\"data-framer-name\":\"Mapped Trafficking Networks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Analyzed 650+ state anti-trafficking policies nationwide\"})}),className:\"framer-16s4cct\",\"data-framer-name\":\"Uncovered hidden trafficking networks through 1 million+ data points.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"650+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y6u4n9\",\"data-styles-preset\":\"WXnxT4Uo2\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"650+\"})}),className:\"framer-1slmpe\",\"data-framer-name\":\"1 Million+\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yzq6kp\",\"data-framer-name\":\"Our Working Model\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s0qhja\",\"data-framer-name\":\"Intro Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34c5uo\",\"data-framer-name\":\"Survivor Partner\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11f681b\",\"data-framer-name\":\"Pricing Card \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bwkbbc\",\"data-framer-name\":\"Frame 1000001853\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Survivor centered and focused\"})})},VIwV3Ow5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Survivor centered and focused\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Survivor centered and focused\"})}),className:\"framer-1lv731u\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8e8b1n-container\",children:/*#__PURE__*/_jsx(Audio,{background:\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,font:{fontFamily:'\"Mulish\", \"Mulish Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},gap:16,height:\"100%\",id:\"fwdumbQJ8\",isMixedBorderRadius:false,layoutId:\"fwdumbQJ8\",loop:false,onPlayGlobalPauseOption:\"continue\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-f092d9c9-0af7-4b72-9de3-d00a50e88695, rgb(68, 206, 165))\",showPlayPause:true,showTime:true,showTrack:true,srcFile:\"https://framerusercontent.com/assets/LK7O9h0smNjcShbeW5MA6GeozSE.m4a\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,trackColor:\"var(--token-ef81faca-c1b3-45df-aada-027e9fab6d0e, rgb(235, 235, 235))\",volume:50,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+0+2302.4+0+0+160+0+0+0+0+345.6),pixelHeight:540,pixelWidth:1080,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.8)`,src:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png 1080w\"}},VIwV3Ow5c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+0+2403.4+0+0+80+0+0+0+0+265.6),pixelHeight:540,pixelWidth:1080,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,src:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:306,intrinsicWidth:600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+0+1974.4+0+0+160+0+0+0+0+264),pixelHeight:540,pixelWidth:1080,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.64)`,src:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kBEr404br0u20yWkOL0tFDeS4s.png 1080w\"},className:\"framer-19k7ouw\",\"data-framer-name\":\"Rhonda anonymized\"})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zpbrqo\",\"data-border\":true,\"data-framer-name\":\"Frame 1000001855\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7bs6bt\",\"data-styles-preset\":\"iDF1TJWB8\",children:\"Rhonda speaks about Allies' partnership and the power of data to influence anti-human trafficking awareness and policy\"})}),className:\"framer-1iky2xb\",\"data-framer-name\":\"Rhonda speaks about Allie\u2019s partnership and impact on her work to influence anti-human trafficking awareness and policy\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o9gz0i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13cfode\",\"data-styles-preset\":\"D2EFp62uX\",style:{\"--framer-text-alignment\":\"center\"},children:\"How we work\"})}),className:\"framer-1lemdf1\",\"data-framer-name\":\"Our working model\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-alignment\":\"center\"},children:\"We approach the problem from all sides, giving allies the data needed to make a comprehensive impact.\"})}),className:\"framer-jf1ua\",\"data-framer-name\":\"We approach the problem from all sides to make the most comprehensive impact.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o28yl7-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:true},gap:24,height:\"100%\",hoverFactor:.5,id:\"SAcKY69xT\",layoutId:\"SAcKY69xT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qplko5\",\"data-framer-name\":\"Component Ticker\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xcairc\",\"data-framer-name\":\"Prevention\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Prevention\"})}),className:\"framer-1k1pf8l\",\"data-framer-name\":\"Prevention\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wjz81b\",\"data-framer-name\":\"3:2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ly1q6a\",\"data-framer-name\":\"warning\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_10701_3461\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"48\">\\n<rect width=\"48\" height=\"48\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_10701_3461)\">\\n<path d=\"M6.22928 41.0009C5.94428 41.0009 5.69344 40.9339 5.47678 40.7999C5.26011 40.6659 5.09144 40.4892 4.97078 40.2699C4.84278 40.0679 4.77228 39.8405 4.75928 39.5879C4.74661 39.3349 4.81611 39.0814 4.96778 38.8274L22.7623 8.14936C22.9116 7.91203 23.0914 7.73503 23.3018 7.61836C23.5118 7.50169 23.7438 7.44336 23.9978 7.44336C24.2518 7.44336 24.4838 7.50169 24.6938 7.61836C24.9041 7.73503 25.0839 7.91203 25.2333 8.14936L43.0278 38.8274C43.1794 39.0814 43.2489 39.3349 43.2363 39.5879C43.2233 39.8405 43.1528 40.0679 43.0248 40.2699C42.9041 40.4892 42.7354 40.6659 42.5188 40.7999C42.3021 40.9339 42.0513 41.0009 41.7663 41.0009H6.22928ZM7.65928 38.7314H40.3363L23.9978 10.5394L7.65928 38.7314ZM24.1493 35.7279C24.5059 35.7279 24.8019 35.6072 25.0373 35.3659C25.2726 35.1245 25.3903 34.8255 25.3903 34.4689C25.3903 34.1119 25.2696 33.8159 25.0283 33.5809C24.7869 33.3455 24.4878 33.2279 24.1308 33.2279C23.7741 33.2279 23.4781 33.3485 23.2428 33.5899C23.0078 33.8312 22.8903 34.1302 22.8903 34.4869C22.8903 34.8435 23.0109 35.1395 23.2523 35.3749C23.4936 35.6102 23.7926 35.7279 24.1493 35.7279ZM24.1498 30.8319C24.4741 30.8319 24.7426 30.723 24.9553 30.5054C25.1683 30.288 25.2748 30.0185 25.2748 29.6969V21.0739C25.2748 20.7525 25.1651 20.483 24.9458 20.2654C24.7264 20.048 24.4546 19.9394 24.1303 19.9394C23.8059 19.9394 23.5374 20.048 23.3248 20.2654C23.1118 20.483 23.0053 20.7525 23.0053 21.0739V29.6969C23.0053 30.0185 23.1149 30.288 23.3343 30.5054C23.5536 30.723 23.8254 30.8319 24.1498 30.8319Z\" fill=\"#171C20\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",children:\"Screening for risk prevents human trafficking.\"})}),className:\"framer-lbzyfy\",\"data-framer-name\":\"Screening for risk prevents human trafficking.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nyycya\",\"data-framer-name\":\"Frame 1000002047\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Protection\"})}),className:\"framer-7556mq\",\"data-framer-name\":\"Protection\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-121nrjn\",\"data-framer-name\":\"3:2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-127r4w\",\"data-framer-name\":\"admin_panel_settings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_10701_3456\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"48\">\\n<rect width=\"48\" height=\"48\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_10701_3456)\">\\n<path d=\"M24.0065 5.22656C24.1688 5.22656 24.3353 5.24323 24.506 5.27656C24.6763 5.3099 24.8448 5.3599 25.0115 5.42656L37.127 9.93056C37.6793 10.1539 38.1295 10.5136 38.4775 11.0096C38.8258 11.5059 39 12.0641 39 12.6841V21.9766C39 22.2969 38.8882 22.5609 38.6645 22.7686C38.4412 22.9766 38.1745 23.0806 37.8645 23.0806C37.5548 23.0806 37.2885 22.9687 37.0655 22.7451C36.8422 22.5217 36.7305 22.2552 36.7305 21.9456V12.6456C36.7305 12.5302 36.6953 12.4181 36.625 12.3091C36.5543 12.2001 36.455 12.1199 36.327 12.0686L24.2115 7.61506C24.1475 7.5764 24.077 7.55706 24 7.55706C23.923 7.55706 23.8525 7.5764 23.7885 7.61506L11.673 12.0686C11.545 12.1199 11.4457 12.2001 11.375 12.3091C11.3047 12.4181 11.2695 12.5302 11.2695 12.6456V21.9766C11.2695 24.2712 11.6098 26.4007 12.2905 28.3651C12.9712 30.3291 13.8615 32.0881 14.9615 33.6421C16.0615 35.1957 17.3128 36.5277 18.7155 37.6381C20.1182 38.7484 21.5245 39.5907 22.9345 40.1651C23.2115 40.2931 23.4173 40.5007 23.552 40.7881C23.6867 41.0751 23.7007 41.3637 23.594 41.6541C23.4697 41.9637 23.2442 42.1827 22.9175 42.3111C22.5905 42.4394 22.2783 42.4394 21.981 42.3111C17.9297 40.7137 14.7533 37.9994 12.452 34.1681C10.1507 30.3371 9 26.2732 9 21.9766V12.6841C9 12.0641 9.17417 11.5059 9.5225 11.0096C9.8705 10.5136 10.3207 10.1539 10.873 9.93056L22.9885 5.42656C23.1668 5.34156 23.3353 5.2869 23.494 5.26256C23.653 5.23856 23.8238 5.22656 24.0065 5.22656ZM34.461 42.9996C32.102 42.9996 30.0892 42.1611 28.4225 40.4841C26.7562 38.8071 25.923 36.8046 25.923 34.4766C25.923 32.0886 26.756 30.0576 28.422 28.3836C30.0883 26.7096 32.1097 25.8726 34.486 25.8726C36.8287 25.8726 38.8385 26.7096 40.5155 28.3836C42.1922 30.0576 43.0305 32.0886 43.0305 34.4766C43.0305 36.8046 42.1922 38.8071 40.5155 40.4841C38.8385 42.1611 36.8203 42.9996 34.461 42.9996ZM34.3905 34.3651C35.2478 34.3651 35.9765 34.0536 36.5765 33.4306C37.1768 32.8079 37.477 32.0727 37.477 31.2251C37.477 30.3774 37.175 29.6516 36.571 29.0476C35.967 28.4439 35.2412 28.1421 34.3935 28.1421C33.5458 28.1421 32.8107 28.4414 32.188 29.0401C31.5653 29.6384 31.254 30.3652 31.254 31.2206C31.254 32.0759 31.565 32.8137 32.187 33.4341C32.809 34.0547 33.5435 34.3651 34.3905 34.3651ZM34.375 40.5381C35.302 40.5381 36.1757 40.3579 36.996 39.9976C37.8167 39.6372 38.527 39.1206 39.127 38.4476C39.2473 38.3002 39.2858 38.1297 39.2425 37.9361C39.1988 37.7424 39.0937 37.6122 38.927 37.5456C38.2047 37.1996 37.4583 36.9349 36.688 36.7516C35.9177 36.5682 35.138 36.4766 34.349 36.4766C33.56 36.4766 32.7853 36.5631 32.025 36.7361C31.2647 36.9091 30.5243 37.1789 29.804 37.5456C29.6373 37.6122 29.5238 37.7424 29.4635 37.9361C29.4032 38.1297 29.4397 38.3034 29.573 38.4571C30.173 39.1571 30.8917 39.6789 31.729 40.0226C32.566 40.3662 33.448 40.5381 34.375 40.5381Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Survivors deserve evidence-based solutions.\"})}),className:\"framer-xhykyb\",\"data-framer-name\":\"Survivors deserve evidence-based solutions.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hgn48e\",\"data-framer-name\":\"Frame 1000002045\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Prosecution\"})}),className:\"framer-1ff3xtb\",\"data-framer-name\":\"Prosecution\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17q9d50\",\"data-framer-name\":\"3:2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a6cico\",\"data-framer-name\":\"gavel\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_10701_3466\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"48\">\\n<rect width=\"48\" height=\"48\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_10701_3466)\">\\n<path d=\"M9.25169 39.2319H29.9822C30.3132 39.2319 30.585 39.3383 30.7977 39.5509C31.0107 39.7636 31.1172 40.0354 31.1172 40.3664C31.1172 40.6971 31.0107 40.9688 30.7977 41.1814C30.585 41.3944 30.3132 41.5009 29.9822 41.5009H9.25169C8.92102 41.5009 8.64919 41.3944 8.43619 41.1814C8.22352 40.9688 8.11719 40.6971 8.11719 40.3664C8.11719 40.0354 8.22352 39.7636 8.43619 39.5509C8.64919 39.3383 8.92102 39.2319 9.25169 39.2319ZM17.5592 28.5124L11.1402 22.0934C10.5865 21.5394 10.3014 20.8733 10.2847 20.0949C10.268 19.3169 10.5365 18.6343 11.0902 18.0469L12.1172 16.9704L22.6827 27.4354L21.5862 28.5124C21.0452 29.0661 20.3774 29.3429 19.5827 29.3429C18.7877 29.3429 18.1132 29.0661 17.5592 28.5124ZM31.4362 18.6819L20.9712 8.11643L22.0477 7.08944C22.635 6.53577 23.3177 6.26727 24.0957 6.28393C24.874 6.3006 25.5402 6.58577 26.0942 7.13944L32.5132 13.5584C33.0669 14.1124 33.3437 14.7869 33.3437 15.5819C33.3437 16.3766 33.0669 17.0444 32.5132 17.5854L31.4362 18.6819ZM40.9092 38.5084L15.7942 13.3934L17.3942 11.7934L42.5092 36.9084C42.7325 37.1318 42.8474 37.3953 42.8537 37.6989C42.86 38.0029 42.7452 38.2728 42.5092 38.5084C42.2735 38.7444 42.0069 38.8624 41.7092 38.8624C41.4119 38.8624 41.1452 38.7444 40.9092 38.5084Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Data helps drive effective prosecutorial strategies.\"})}),className:\"framer-6cdysl\",\"data-framer-name\":\"Data helps drive effective prosecutorial strategies.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wevm7p\",\"data-framer-name\":\"Frame 1000002048\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Policy\"})}),className:\"framer-5wej0w\",\"data-framer-name\":\"Policy\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-181w2zp\",\"data-framer-name\":\"3:2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o8n8cm\",\"data-framer-name\":\"troubleshoot\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_10701_3446\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"48\">\\n<rect width=\"48\" height=\"48\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_10701_3446)\">\\n<path d=\"M21.5379 34.769C19.5226 34.769 17.6278 34.3992 15.8534 33.6595C14.0791 32.9198 12.5149 31.8962 11.1609 30.5885C10.9046 30.3732 10.7566 30.0905 10.7169 29.7405C10.6769 29.3905 10.7749 29.0872 11.0109 28.8305C11.2136 28.6075 11.4834 28.5077 11.8204 28.531C12.1578 28.554 12.4481 28.6795 12.6914 28.9075C13.8351 30.0128 15.1691 30.8878 16.6934 31.5325C18.2178 32.1775 19.8326 32.5 21.5379 32.5C25.1073 32.5 28.1438 31.2398 30.6474 28.7195C33.1514 26.1988 34.4034 23.1705 34.4034 19.6345C34.4034 16.0655 33.1514 13.029 30.6474 10.525C28.1438 8.021 25.1073 6.769 21.5379 6.769C18.3429 6.769 15.5474 7.80183 13.1514 9.8675C10.7551 11.9328 9.31594 14.5027 8.83394 17.577C8.78027 17.954 8.6451 18.2853 8.42844 18.571C8.21177 18.857 7.92127 19 7.55694 19C7.19294 19 6.9231 18.832 6.74744 18.496C6.57177 18.1603 6.51094 17.7873 6.56494 17.377C7.09294 13.7153 8.76144 10.6538 11.5704 8.1925C14.3794 5.73083 17.7019 4.5 21.5379 4.5C25.7483 4.5 29.3233 5.96983 32.2629 8.9095C35.2026 11.8495 36.6724 15.4245 36.6724 19.6345C36.6724 21.4988 36.3443 23.2637 35.6879 24.929C35.0316 26.5943 34.1379 28.1193 33.0069 29.504L42.9879 39.4845C43.2239 39.7205 43.3386 39.9872 43.3319 40.2845C43.3256 40.5822 43.2109 40.8488 42.9879 41.0845C42.7519 41.3205 42.4821 41.4385 42.1784 41.4385C41.8744 41.4385 41.6046 41.3205 41.3689 41.0845L31.3879 31.104C30.0033 32.2347 28.4814 33.1282 26.8224 33.7845C25.1634 34.4408 23.4019 34.769 21.5379 34.769ZM21.2339 23.7385L23.3919 17.104C23.4789 16.8757 23.6179 16.6858 23.8089 16.5345C23.9999 16.3832 24.2198 16.3075 24.4684 16.3075H25.4954C25.7238 16.3075 25.9251 16.3615 26.0994 16.4695C26.2738 16.5772 26.4148 16.7348 26.5224 16.9425L29.2109 22.3075H29.5954C29.9391 22.3075 30.2238 22.4203 30.4494 22.646C30.6751 22.8717 30.7879 23.1563 30.7879 23.5C30.7879 23.8437 30.6751 24.1283 30.4494 24.354C30.2238 24.5797 29.9391 24.6925 29.5954 24.6925H28.5034C28.2881 24.6925 28.0809 24.6335 27.8819 24.5155C27.6833 24.3975 27.5301 24.2308 27.4224 24.0155L25.1454 19.492L22.7339 26.877C22.6469 27.1257 22.5028 27.3237 22.3014 27.471C22.1001 27.6187 21.8751 27.6925 21.6264 27.6925H20.8609C20.5993 27.6925 20.3628 27.6135 20.1514 27.4555C19.9398 27.2978 19.7904 27.0947 19.7034 26.846L16.6224 16.619L14.0649 23.904C13.9776 24.1527 13.8378 24.3462 13.6454 24.4845C13.4531 24.6232 13.2224 24.6925 12.9534 24.6925H5.40344C5.05977 24.6925 4.7751 24.5797 4.54944 24.354C4.32377 24.1283 4.21094 23.8437 4.21094 23.5C4.21094 23.1563 4.32377 22.8717 4.54944 22.646C4.7751 22.4203 5.05977 22.3075 5.40344 22.3075H12.1149L15.1224 13.623C15.2098 13.3743 15.3591 13.1763 15.5704 13.029C15.7821 12.8813 16.0188 12.8075 16.2804 12.8075H17.0764C17.3584 12.8075 17.6001 12.8915 17.8014 13.0595C18.0028 13.2275 18.1469 13.4423 18.2339 13.704L21.2339 23.7385Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",style:{\"--framer-text-color\":\"var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255))\"},children:\"Data helps identify gaps in anti-trafficking policy.\"})}),className:\"framer-u3xsbp\",\"data-framer-name\":\"Data helps identify anti-trafficking policy gaps.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yx6fxw\",\"data-framer-name\":\"Frame 1000002049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1iajtdf\",\"data-styles-preset\":\"cY2eIK2EJ\",children:\"Partnership\"})}),className:\"framer-5ma9sr\",\"data-framer-name\":\"Partnership\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1id9xkm\",\"data-framer-name\":\"3:2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19d6q3f\",\"data-framer-name\":\"diversity_2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_10701_3451\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"48\" height=\"48\">\\n<rect width=\"48\" height=\"48\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_10701_3451)\">\\n<path d=\"M17.5888 43.9769C16.0144 43.9769 14.6266 43.489 13.4253 42.5134C12.2239 41.5377 11.4118 40.2999 10.9888 38.7999C10.5194 39.6025 9.91758 40.2262 9.18325 40.6709C8.44858 41.1159 7.59908 41.3384 6.63475 41.3384C5.18375 41.3384 3.97042 40.83 2.99475 39.8134C2.01908 38.7967 1.53125 37.5832 1.53125 36.1729C1.53125 34.6935 2.00742 33.4884 2.95975 32.5574C3.91242 31.6267 5.12725 31.1639 6.60425 31.1689C5.94025 30.5279 5.41592 29.7562 5.03125 28.8539C4.64658 27.9512 4.45425 27.0242 4.45425 26.0729C4.45425 25.3112 4.59008 24.5894 4.86175 23.9074C5.13375 23.2254 5.52225 22.6049 6.02725 22.0459C6.22225 21.7819 6.47475 21.6204 6.78475 21.5614C7.09508 21.5024 7.37592 21.5767 7.62725 21.7844C7.89125 21.9794 8.04642 22.2287 8.09275 22.5324C8.13875 22.8364 8.06442 23.1204 7.86975 23.3844C7.51075 23.774 7.23308 24.206 7.03675 24.6804C6.84075 25.155 6.74275 25.6525 6.74275 26.1729C6.74275 28.1959 7.49358 29.5034 8.99525 30.0954C10.4973 30.687 12.0438 31.1219 13.6348 31.3999C13.7411 31.4465 13.8439 31.5037 13.9432 31.5714C14.0429 31.639 14.1233 31.7285 14.1842 31.8399C14.2456 31.9382 14.2744 32.0414 14.2708 32.1494C14.2674 32.2574 14.2452 32.3755 14.2042 32.5039C13.8376 33.5705 13.5491 34.4499 13.3387 35.1419C13.1284 35.8342 13.0232 36.4907 13.0232 37.1114C13.0232 38.3344 13.4804 39.403 14.3948 40.3174C15.3088 41.2314 16.3911 41.6884 17.6418 41.6884C18.8911 41.6884 19.9516 41.2269 20.8232 40.3039C21.6952 39.3805 22.4146 38.257 22.9813 36.9334C23.5483 35.6097 24.0061 34.2052 24.3547 32.7199C24.7031 31.2349 24.9836 29.9257 25.1963 28.7924C25.2579 28.457 25.4201 28.1899 25.6828 27.9909C25.9458 27.7919 26.2324 27.7295 26.5427 27.8039C26.8861 27.9115 27.1289 28.1185 27.2712 28.4249C27.4136 28.7312 27.4476 29.0729 27.3733 29.4499C27.0863 30.8395 26.7439 32.3837 26.3463 34.0824C25.9489 35.781 25.3878 37.3647 24.6628 38.8334C23.9377 40.3017 23.0146 41.526 21.8932 42.5064C20.7722 43.4867 19.3374 43.9769 17.5888 43.9769ZM30.3043 44.0269C29.9862 43.9935 29.7093 43.8704 29.4733 43.6574C29.2373 43.4447 29.1359 43.173 29.1693 42.8424C29.2026 42.5114 29.3373 42.2312 29.5733 42.0019C29.8093 41.7722 30.0926 41.674 30.4233 41.7074C31.6796 41.7074 32.7546 41.2504 33.6483 40.3364C34.5419 39.4224 34.9888 38.3435 34.9888 37.0999C34.9888 36.4742 34.8753 35.803 34.6483 35.0864C34.4212 34.3697 34.1244 33.478 33.7578 32.4114C33.7168 32.3164 33.7014 32.2215 33.7118 32.1269C33.7221 32.0319 33.7541 31.9305 33.8078 31.8229C33.8618 31.7152 33.9269 31.6385 34.0033 31.5929C34.0793 31.5475 34.1731 31.5127 34.2848 31.4884C35.8851 31.21 37.4526 30.7737 38.9873 30.1794C40.5216 29.5854 41.2888 28.2715 41.2888 26.2379C41.2888 24.6585 40.7257 23.4817 39.5998 22.7074C38.4734 21.933 37.2214 21.5459 35.8438 21.5459C34.5814 21.5459 33.1194 21.7534 31.4578 22.1684C29.7961 22.5837 27.9103 23.13 25.8003 23.8074C25.4566 23.915 25.1233 23.908 24.8003 23.7864C24.4773 23.6647 24.2786 23.4404 24.2043 23.1134C24.1299 22.7864 24.1953 22.4812 24.4003 22.1979C24.6053 21.9145 24.8834 21.7089 25.2348 21.5809C27.3311 20.9109 29.2344 20.3529 30.9448 19.9069C32.6551 19.4612 34.2454 19.2384 35.7158 19.2384C37.7591 19.2384 39.5769 19.8427 41.1693 21.0514C42.7616 22.2597 43.5578 23.9734 43.5578 26.1924C43.5578 27.1307 43.3719 28.0364 43.0003 28.9094C42.6283 29.7824 42.1039 30.5459 41.4272 31.1999C42.8836 31.2075 44.0931 31.6787 45.0558 32.6134C46.0188 33.548 46.5003 34.7449 46.5003 36.2039C46.5003 37.6139 46.0124 38.8305 45.0368 39.8539C44.0611 40.8769 42.8476 41.3884 41.3963 41.3884C40.4526 41.3884 39.6033 41.1659 38.8483 40.7209C38.0933 40.2762 37.4913 39.646 37.0423 38.8304C36.5859 40.3434 35.7539 41.5877 34.5462 42.5634C33.3386 43.539 31.9246 44.0269 30.3043 44.0269ZM19.3232 28.8384C16.7876 26.5487 14.7441 24.4847 13.1928 22.6464C11.6414 20.8084 10.8658 18.821 10.8658 16.6844C10.8658 14.7744 11.5304 13.1577 12.8598 11.8344C14.1894 10.5114 15.8029 9.84987 17.7003 9.84987C18.0643 9.84987 18.4084 9.86471 18.7327 9.89438C19.0574 9.92371 19.3658 9.98454 19.6578 10.0769C19.3834 9.58721 19.1829 9.15187 19.0562 8.77087C18.9292 8.39021 18.8658 8.00638 18.8658 7.61938C18.8658 6.19404 19.3658 4.98187 20.3658 3.98287C21.3658 2.98387 22.5793 2.48438 24.0063 2.48438C25.4329 2.48438 26.6444 2.98387 27.6408 3.98287C28.6368 4.98187 29.1348 6.19404 29.1348 7.61938C29.1348 7.98604 29.0764 8.36487 28.9598 8.75587C28.8431 9.14687 28.6374 9.58721 28.3427 10.0769C28.6477 9.98454 28.9561 9.92371 29.2677 9.89438C29.5791 9.86471 29.9233 9.84987 30.3003 9.84987C31.3156 9.84987 32.2534 10.0575 33.1138 10.4729C33.9741 10.8885 34.7016 11.4527 35.2962 12.1654C35.5272 12.3937 35.6433 12.6565 35.6443 12.9539C35.6456 13.2512 35.5323 13.5152 35.3043 13.7459C35.0759 13.9769 34.8131 14.0847 34.5158 14.0694C34.2184 14.0537 33.9543 13.9319 33.7233 13.7039C33.3309 13.2115 32.8489 12.8244 32.2773 12.5424C31.7056 12.2604 31.0466 12.1194 30.3003 12.1194C29.0746 12.1194 28.0989 12.436 27.3733 13.0694C26.6476 13.7027 25.7053 14.6924 24.5463 16.0384C24.4719 16.146 24.3778 16.2185 24.2638 16.2559C24.1497 16.2929 24.0429 16.3114 23.9433 16.3114C23.8439 16.3114 23.7478 16.2929 23.6548 16.2559C23.5621 16.2185 23.4786 16.146 23.4042 16.0384C22.2246 14.646 21.2759 13.6447 20.5583 13.0344C19.8406 12.4244 18.8879 12.1194 17.7003 12.1194C16.3869 12.1194 15.2977 12.5519 14.4327 13.4169C13.5674 14.2819 13.1348 15.371 13.1348 16.6844C13.1348 18.1897 13.8251 19.7737 15.2057 21.4364C16.5868 23.0994 18.5234 25.0437 21.0158 27.2694C21.3054 27.518 21.4784 27.8109 21.5347 28.1479C21.5911 28.4852 21.4966 28.7672 21.2512 28.9939C20.9926 29.2595 20.6791 29.364 20.3108 29.3074C19.9421 29.251 19.6129 29.0947 19.3232 28.8384ZM6.65675 39.0689C7.46542 39.0689 8.14658 38.7949 8.70025 38.2469C9.25425 37.6989 9.53125 37.0207 9.53125 36.2124C9.53125 35.4167 9.25725 34.7389 8.70925 34.1789C8.16125 33.6185 7.48292 33.3384 6.67425 33.3384C5.87892 33.3384 5.20108 33.6155 4.64075 34.1699C4.08042 34.7242 3.80025 35.3992 3.80025 36.1949C3.80025 37.0032 4.07742 37.6844 4.63175 38.2384C5.18642 38.792 5.86142 39.0689 6.65675 39.0689ZM23.9913 10.4844C24.7999 10.4844 25.4811 10.2104 26.0347 9.66237C26.5888 9.11438 26.8658 8.43621 26.8658 7.62787C26.8658 6.81954 26.5918 6.13838 26.0438 5.58438C25.4958 5.03071 24.8176 4.75388 24.0093 4.75388C23.2006 4.75388 22.5194 5.02788 21.9657 5.57588C21.4117 6.12388 21.1348 6.80204 21.1348 7.61038C21.1348 8.41871 21.4088 9.09988 21.9568 9.65388C22.5048 10.2075 23.1829 10.4844 23.9913 10.4844ZM41.4158 39.1189C42.1848 39.1189 42.8462 38.8409 43.4002 38.2849C43.9539 37.7289 44.2308 37.0519 44.2308 36.2539C44.2308 35.4845 43.9456 34.8062 43.3753 34.2189C42.8046 33.6319 42.1348 33.3384 41.3657 33.3384C40.5964 33.3384 39.9264 33.6235 39.3558 34.1939C38.7854 34.7645 38.5003 35.4345 38.5003 36.2039C38.5003 36.9729 38.7937 37.651 39.3807 38.2384C39.9681 38.8254 40.6464 39.1189 41.4158 39.1189Z\" fill=\"#171C20\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o4q6yj\",\"data-styles-preset\":\"kI3AB6Nlf\",children:\"The anti-trafficking movement depends on collaboration.\"})}),className:\"framer-11dz09s\",\"data-framer-name\":\"The anti-trafficking movement depends on collaboration.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k67emd\",\"data-framer-name\":\"Our Work Features\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined},{href:{webPageId:\"t2QoqYmg6\"},implicitPathVariables:undefined},{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined},{href:{webPageId:\"t2QoqYmg6\"},implicitPathVariables:undefined},{href:{webPageId:\"GluUja_yG\"},implicitPathVariables:undefined},{href:{webPageId:\"t2QoqYmg6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+0},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x6bxwz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{BGXWSz7fK:resolvedLinks2[3],GzRK8ZfYQ:resolvedLinks2[2],variant:\"RNRPU0T8r\"},VIwV3Ow5c:{BGXWSz7fK:resolvedLinks2[5],GzRK8ZfYQ:resolvedLinks2[4],variant:\"RNRPU0T8r\"}},children:/*#__PURE__*/_jsx(SolutionsBlock,{BGXWSz7fK:resolvedLinks2[1],gH5xoeu6e:\"We\u2019re creating a new ecosystem with the best data sources, tools, and values-driven partnerships.\",GpNi1_lDP:true,GzRK8ZfYQ:resolvedLinks2[0],height:\"100%\",id:\"iVl6GAn4p\",layoutId:\"iVl6GAn4p\",Mi2zKD9EF:\"Our Solutions\",R8s3DQQ_C:false,rmt3h8Y8m:\"Data Ecosystem\",SKDHSB_U9:\"Checkout our public data site!\",style:{width:\"100%\"},variant:\"UfgBQcl_4\",vFICOWN86:addImageAlt({src:\"https://framerusercontent.com/images/g3oo8JQdtq0tiWc25PZLelsYZ40.png\",srcSet:\"https://framerusercontent.com/images/g3oo8JQdtq0tiWc25PZLelsYZ40.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/g3oo8JQdtq0tiWc25PZLelsYZ40.png 1520w\"},\"\"),width:\"100%\",ZPfQiVeTe:\"Building a powerful data ecosystem to combat human trafficking\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+720},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+720}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+720,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16tkv5h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{variant:\"RNRPU0T8r\"},VIwV3Ow5c:{variant:\"RNRPU0T8r\"}},children:/*#__PURE__*/_jsx(SolutionsBlock,{gH5xoeu6e:\"Explore human trafficking trends, patterns, and risk factors from our aggregated data.\",GpNi1_lDP:false,GzRK8ZfYQ:\"https://lighthouse-data.alliesagainstslavery.org/insights\",height:\"100%\",id:\"VuuNvLNF3\",layoutId:\"VuuNvLNF3\",Mi2zKD9EF:\"Go to Site\",R8s3DQQ_C:true,rmt3h8Y8m:\"Data Ecosystem\",SKDHSB_U9:\"Check out our public data site!\",style:{width:\"100%\"},variant:\"eR2Ny_cKP\",vFICOWN86:addImageAlt({src:\"https://framerusercontent.com/images/jUbD9lRi05T0d42L2VdvWWMih4c.png\",srcSet:\"https://framerusercontent.com/images/jUbD9lRi05T0d42L2VdvWWMih4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/jUbD9lRi05T0d42L2VdvWWMih4c.png 568w\"},\"\"),width:\"100%\",ZPfQiVeTe:\"Allies Insights\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u3NCtaiVs\"},implicitPathVariables:undefined},{href:{webPageId:\"UDRGe1VkY\"},implicitPathVariables:undefined},{href:{webPageId:\"u3NCtaiVs\"},implicitPathVariables:undefined},{href:{webPageId:\"UDRGe1VkY\"},implicitPathVariables:undefined},{href:{webPageId:\"u3NCtaiVs\"},implicitPathVariables:undefined},{href:{webPageId:\"UDRGe1VkY\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+1440},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+1440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+1440,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wsepr8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{BGXWSz7fK:resolvedLinks3[3],GzRK8ZfYQ:resolvedLinks3[2],variant:\"RNRPU0T8r\"},VIwV3Ow5c:{BGXWSz7fK:resolvedLinks3[5],GzRK8ZfYQ:resolvedLinks3[4],variant:\"RNRPU0T8r\"}},children:/*#__PURE__*/_jsx(SolutionsBlock,{BGXWSz7fK:resolvedLinks3[1],gH5xoeu6e:\"Our data provides researchers and policymakers with evidence-based insights into an otherwise hidden trade.\",GpNi1_lDP:true,GzRK8ZfYQ:resolvedLinks3[0],height:\"100%\",id:\"cC_Zi7PCg\",layoutId:\"cC_Zi7PCg\",Mi2zKD9EF:\"Research Hub\",R8s3DQQ_C:false,rmt3h8Y8m:\"Policy Work\",SKDHSB_U9:\"Checkout our public data site!\",style:{width:\"100%\"},variant:\"UfgBQcl_4\",vFICOWN86:addImageAlt({src:\"https://framerusercontent.com/images/bHZRHtlLDu6Rtz3vCFSBfJjG3lw.png\",srcSet:\"https://framerusercontent.com/images/bHZRHtlLDu6Rtz3vCFSBfJjG3lw.png?scale-down-to=512 512w,https://framerusercontent.com/images/bHZRHtlLDu6Rtz3vCFSBfJjG3lw.png 878w\"},\"\"),width:\"100%\",ZPfQiVeTe:\"Empowering research and policy efforts\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"b7lAIfk5t\"},implicitPathVariables:undefined},{href:{webPageId:\"b7lAIfk5t\"},implicitPathVariables:undefined},{href:{webPageId:\"b7lAIfk5t\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+2160},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+2160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+2160,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rxodg3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{GzRK8ZfYQ:resolvedLinks4[1],variant:\"RNRPU0T8r\"},VIwV3Ow5c:{GzRK8ZfYQ:resolvedLinks4[2],variant:\"RNRPU0T8r\"}},children:/*#__PURE__*/_jsx(SolutionsBlock,{gH5xoeu6e:\"We bring public, private, and social sector partners together to influence large-scale change.\",GpNi1_lDP:false,GzRK8ZfYQ:resolvedLinks4[0],height:\"100%\",id:\"LaiTrrpqt\",layoutId:\"LaiTrrpqt\",Mi2zKD9EF:\"Learn More\",R8s3DQQ_C:false,rmt3h8Y8m:\"Data Ecosystem\",SKDHSB_U9:\"Checkout our public data site!\",style:{width:\"100%\"},variant:\"eR2Ny_cKP\",vFICOWN86:addImageAlt({src:\"https://framerusercontent.com/images/UCNDFRyZpgp6EVEdXVKGmhP5m4.png\",srcSet:\"https://framerusercontent.com/images/UCNDFRyZpgp6EVEdXVKGmhP5m4.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCNDFRyZpgp6EVEdXVKGmhP5m4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCNDFRyZpgp6EVEdXVKGmhP5m4.png 1136w\"},\"\"),width:\"100%\",ZPfQiVeTe:\"Igniting collaboration with strategic partners\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dWhJDAlPA\"},implicitPathVariables:undefined},{href:{webPageId:\"dWhJDAlPA\"},implicitPathVariables:undefined},{href:{webPageId:\"dWhJDAlPA\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+2880},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+2880}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+2880,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2zoxkf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{AaHjX8E3A:resolvedLinks5[1],variant:\"ASekwAX9F\"},VIwV3Ow5c:{AaHjX8E3A:resolvedLinks5[2],variant:\"UAyKH3X1K\"}},children:/*#__PURE__*/_jsx(CTABlocksStandard,{AaHjX8E3A:resolvedLinks5[0],adfVuHzQR:\"Donate Today\",bNdjdXZBO:true,H5ZKwhNEv:true,height:\"100%\",id:\"X7ttByCeI\",layoutId:\"X7ttByCeI\",nmzMcxfqp:\"Will you join us?\",q6SXtMjJG:\"Partner with Us\",Qr5hrAH7W:true,style:{width:\"100%\"},variant:\"FsfFN9IFD\",vl79_VUnN:\"40px\",waHN4pu6D:\"https://www.every.org/alliesagainstslavery?suggestedAmounts=25%2C50%2C100%2C250&theme_color=1957cd&designation=General+Donation&utm_campaign=donate-link#/donate\",width:\"100%\",zaHLq7KpA:\"We believe in a future where every community has the data it needs to make victims visible and prevent human trafficking.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+2302.4+0+1634.8+160+3483},VIwV3Ow5c:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,y:(componentViewport?.y||0)+80+0+0+2403.4+0+1474.8+160+3483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:493,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+80+0+0+1974.4+0+1633.2+160+3483,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fgwdzp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{M1xm1h7Xy:\"0px\"}},children:/*#__PURE__*/_jsx(Testimonial,{D1Zqq25yb:\"We envision a world where data empowers communities to combat injustice. Human trafficking is a hidden crisis that demands urgent attention, and Allies Against Slavery is leading the way with their innovative Lighthouse platform, which uses data to equip professionals with the tools they need to identify and help victims. Their commitment to leveraging data for positive change shines a light on human trafficking and brings us closer to a world free from exploitation.\",F4OiTkFCZ:\"Vilas Dhar\",height:\"100%\",id:\"VuqN0LshI\",kz9e6QrBj:\"Patrick J. McGovern Foundation\",layoutId:\"VuqN0LshI\",M1xm1h7Xy:\"40px\",style:{width:\"100%\"},VjM1x9zY3:\"President\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+8233.2},VIwV3Ow5c:{y:(componentViewport?.y||0)+80+0+0+8094.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1209,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+80+0+0+7903.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lwrg7u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{variant:\"BB7FZP065\"},VIwV3Ow5c:{variant:\"bySpJnnd4\"}},children:/*#__PURE__*/_jsx(TheLightkeepersCollective,{height:\"100%\",id:\"n0mRGvTcl\",iRr8YSbyi:\"var(--token-f1f7d5a7-6021-4bf5-bc96-d36c94e50765, rgb(250, 247, 244))\",layoutId:\"n0mRGvTcl\",style:{width:\"100%\"},variant:\"J3O1rcr_W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+9442.2},VIwV3Ow5c:{y:(componentViewport?.y||0)+80+0+0+9303.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:933,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+80+0+0+9112.6,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oint4k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{Q4c6sAYmZ:\"column\"},VIwV3Ow5c:{cKp1sWdGk:\"80px 24px 80px 24px\",Q4c6sAYmZ:\"column\"}},children:/*#__PURE__*/_jsx(RecommendedReading,{cKp1sWdGk:\"160px 80px 160px 80px\",height:\"100%\",id:\"LiFRNrk51\",layoutId:\"LiFRNrk51\",Q4c6sAYmZ:\"row\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{y:(componentViewport?.y||0)+80+0+0+10375.2},VIwV3Ow5c:{y:(componentViewport?.y||0)+80+0+0+10236.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:696,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+80+0+0+10045.6,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i81d7a-container\",id:\"1i81d7a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KNYWOQczD:{jhX5hnf1m:\"column\"},VIwV3Ow5c:{jhX5hnf1m:\"column\",variant:\"I0QhJfV5Z\"}},children:/*#__PURE__*/_jsx(Footer,{dD5NwBbb8:dD5NwBbb83bnx0g({overlay}),height:\"100%\",id:\"mcZ0Bt1DL\",jhX5hnf1m:\"row\",layoutId:\"mcZ0Bt1DL\",style:{width:\"100%\"},variant:\"SlyrB05qb\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1g3hg7h\"),\"data-framer-portal-id\":\"1i81d7a\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"TJi6Zqklf\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VIwV3Ow5c:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"80vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-wqok62-container\"),\"data-framer-portal-id\":\"1i81d7a\",children:/*#__PURE__*/_jsx(ModalHubspotForm,{f6fKFplSG:\"Get inspiration in your inbox.\",height:\"100%\",id:\"u4xoPbif9\",layoutId:\"u4xoPbif9\",style:{height:\"100%\",width:\"100%\"},UZeauMk7F:\"9bafa647-87f2-4b1b-b6be-f43328ff3328\",width:\"100%\",xe4Ke43qb:\"Our newsletter shares stories of hope, the latest news, and successes you help achieve in the fight against human trafficking.\",Xlf3xSTsK:Xlf3xSTsK1wnntms({overlay})})})})})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oCfQZ.framer-lux5qc, .framer-oCfQZ .framer-lux5qc { display: block; }\",\".framer-oCfQZ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-oCfQZ .framer-okns7v-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 4; }\",\".framer-oCfQZ .framer-1o8iall { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1qz2ipd { align-content: center; align-items: center; background-color: var(--token-f1f7d5a7-6021-4bf5-bc96-d36c94e50765, #faf7f4); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1chndwg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1qidkbc, .framer-oCfQZ .framer-1pkgouv, .framer-oCfQZ .framer-1nrb6gr, .framer-oCfQZ .framer-h43ysy, .framer-oCfQZ .framer-o814bl, .framer-oCfQZ .framer-1slmpe, .framer-oCfQZ .framer-1lemdf1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-6s3wgn, .framer-oCfQZ .framer-1xst0oj, .framer-oCfQZ .framer-9pkip0, .framer-oCfQZ .framer-1y4rysi, .framer-oCfQZ .framer-1ddhro, .framer-oCfQZ .framer-16s4cct { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-1eynhpq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1hqc7yc-container, .framer-oCfQZ .framer-11lh6ss-container { flex: none; height: 48px; position: relative; width: 168px; }\",\".framer-oCfQZ .framer-1e9cuuk { aspect-ratio: 1.7857142857142858 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 672px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1o4h5lu-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oCfQZ .framer-uyd12f { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-oCfQZ .framer-1lhgvrq { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-oCfQZ .framer-adhzpj { align-content: flex-start; align-items: flex-start; background-color: var(--token-14c204be-05b8-4229-82f3-d6fdc0b1ecda, #1957cd); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1llaa7t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1tsvx35 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1fkl3w2, .framer-oCfQZ .framer-gpevy1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oCfQZ .framer-wbvcxr, .framer-oCfQZ .framer-1d4phvz, .framer-oCfQZ .framer-okfpw4, .framer-oCfQZ .framer-7f3h4x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 320px; justify-content: space-between; min-width: 250px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-oCfQZ .framer-cck2fo, .framer-oCfQZ .framer-y5ps69, .framer-oCfQZ .framer-cur4k7, .framer-oCfQZ .framer-4ynju9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-11r354c, .framer-oCfQZ .framer-z2t8iq, .framer-oCfQZ .framer-e7ejwo, .framer-oCfQZ .framer-1k7yq0x { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-1sssk7w, .framer-oCfQZ .framer-rlqmq3, .framer-oCfQZ .framer-1a1yhmv { align-self: stretch; background-color: var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, #ffffff); flex: none; height: auto; opacity: 0.4; overflow: hidden; position: relative; width: 1px; }\",\".framer-oCfQZ .framer-hgtnp { background-color: var(--token-4e77dd2a-7de4-4ed8-a5ee-101ca3c36aae, #ffffff); flex: 1 0 0px; height: 1px; opacity: 0.4; overflow: hidden; position: relative; width: 1px; }\",\".framer-oCfQZ .framer-yzq6kp { align-content: center; align-items: center; 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: 100%; }\",\".framer-oCfQZ .framer-s0qhja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-34c5uo { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-oCfQZ .framer-11f681b { align-content: center; align-items: center; background-color: var(--token-9fabf4e8-df3d-410f-9a99-0769a1b37aed, #daf5ed); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1bwkbbc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-1lv731u { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-8e8b1n-container { flex: 1 0 0px; height: 64px; position: relative; width: 1px; }\",\".framer-oCfQZ .framer-19k7ouw { aspect-ratio: 1.9607843137254901 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 339px); overflow: visible; position: relative; width: 80%; }\",\".framer-oCfQZ .framer-zpbrqo { --border-bottom-width: 0px; --border-color: #171c20; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 30%; }\",\".framer-oCfQZ .framer-1iky2xb { --framer-paragraph-spacing: 10px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-o9gz0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-jf1ua { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-oCfQZ .framer-1o28yl7-container { flex: none; height: 104px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-qplko5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oCfQZ .framer-xcairc, .framer-oCfQZ .framer-nyycya, .framer-oCfQZ .framer-1hgn48e, .framer-oCfQZ .framer-1wevm7p, .framer-oCfQZ .framer-yx6fxw { align-content: center; align-items: center; background-color: var(--token-f1f7d5a7-6021-4bf5-bc96-d36c94e50765, #faf7f4); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 96px; justify-content: center; overflow: visible; padding: 24px 40px 24px 40px; position: relative; width: min-content; }\",\".framer-oCfQZ .framer-1k1pf8l, .framer-oCfQZ .framer-7556mq, .framer-oCfQZ .framer-1ff3xtb, .framer-oCfQZ .framer-5wej0w, .framer-oCfQZ .framer-5ma9sr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oCfQZ .framer-1wjz81b { align-content: center; align-items: center; background-color: var(--token-b4ce0d9f-c228-418a-9913-97653649698c, #fcae3c); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: flex-start; overflow: hidden; padding: 24px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1ly1q6a, .framer-oCfQZ .framer-127r4w, .framer-oCfQZ .framer-a6cico, .framer-oCfQZ .framer-1o8n8cm, .framer-oCfQZ .framer-19d6q3f { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-oCfQZ .framer-lbzyfy, .framer-oCfQZ .framer-xhykyb, .framer-oCfQZ .framer-6cdysl, .framer-oCfQZ .framer-u3xsbp, .framer-oCfQZ .framer-11dz09s { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oCfQZ .framer-121nrjn { align-content: center; align-items: center; background-color: var(--token-85e10587-72c7-4bd4-8b93-167e2fb6f814, #1899dc); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: flex-start; overflow: hidden; padding: 24px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-17q9d50 { align-content: center; align-items: center; background-color: var(--token-0b7bdd14-7939-47f2-88b1-0cd6dc138594, #5e59e6); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: flex-start; overflow: hidden; padding: 24px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-181w2zp { align-content: center; align-items: center; background-color: var(--token-14c204be-05b8-4229-82f3-d6fdc0b1ecda, #1957cd); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: flex-start; overflow: hidden; padding: 24px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1id9xkm { align-content: center; align-items: center; background-color: var(--token-f092d9c9-0af7-4b72-9de3-d00a50e88695, #44cea5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: flex-start; overflow: hidden; padding: 24px 40px 24px 40px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oCfQZ .framer-1k67emd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-oCfQZ .framer-x6bxwz-container, .framer-oCfQZ .framer-16tkv5h-container, .framer-oCfQZ .framer-wsepr8-container, .framer-oCfQZ .framer-1rxodg3-container, .framer-oCfQZ .framer-2zoxkf-container, .framer-oCfQZ .framer-1fgwdzp-container, .framer-oCfQZ .framer-1lwrg7u-container, .framer-oCfQZ .framer-1oint4k-container, .framer-oCfQZ .framer-1i81d7a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oCfQZ.framer-1g3hg7h { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-oCfQZ.framer-wqok62-container { flex: none; height: 80%; left: calc(50.00000000000002% - 80% / 2); position: fixed; top: calc(50.00000000000002% - 80% / 2); width: 80%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oCfQZ.framer-72rtr7, .framer-oCfQZ .framer-1o8iall, .framer-oCfQZ .framer-1qz2ipd, .framer-oCfQZ .framer-1chndwg, .framer-oCfQZ .framer-1eynhpq, .framer-oCfQZ .framer-adhzpj, .framer-oCfQZ .framer-1llaa7t, .framer-oCfQZ .framer-1tsvx35, .framer-oCfQZ .framer-1fkl3w2, .framer-oCfQZ .framer-cck2fo, .framer-oCfQZ .framer-y5ps69, .framer-oCfQZ .framer-gpevy1, .framer-oCfQZ .framer-cur4k7, .framer-oCfQZ .framer-4ynju9, .framer-oCfQZ .framer-yzq6kp, .framer-oCfQZ .framer-s0qhja, .framer-oCfQZ .framer-34c5uo, .framer-oCfQZ .framer-11f681b, .framer-oCfQZ .framer-1bwkbbc, .framer-oCfQZ .framer-zpbrqo, .framer-oCfQZ .framer-o9gz0i, .framer-oCfQZ .framer-qplko5, .framer-oCfQZ .framer-xcairc, .framer-oCfQZ .framer-1wjz81b, .framer-oCfQZ .framer-nyycya, .framer-oCfQZ .framer-121nrjn, .framer-oCfQZ .framer-1hgn48e, .framer-oCfQZ .framer-17q9d50, .framer-oCfQZ .framer-1wevm7p, .framer-oCfQZ .framer-181w2zp, .framer-oCfQZ .framer-yx6fxw, .framer-oCfQZ .framer-1id9xkm, .framer-oCfQZ .framer-1k67emd { gap: 0px; } .framer-oCfQZ.framer-72rtr7 > *, .framer-oCfQZ .framer-1o8iall > *, .framer-oCfQZ .framer-1qz2ipd > *, .framer-oCfQZ .framer-yzq6kp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oCfQZ.framer-72rtr7 > :first-child, .framer-oCfQZ .framer-1o8iall > :first-child, .framer-oCfQZ .framer-1qz2ipd > :first-child, .framer-oCfQZ .framer-1chndwg > :first-child, .framer-oCfQZ .framer-adhzpj > :first-child, .framer-oCfQZ .framer-1llaa7t > :first-child, .framer-oCfQZ .framer-cck2fo > :first-child, .framer-oCfQZ .framer-y5ps69 > :first-child, .framer-oCfQZ .framer-cur4k7 > :first-child, .framer-oCfQZ .framer-4ynju9 > :first-child, .framer-oCfQZ .framer-yzq6kp > :first-child, .framer-oCfQZ .framer-s0qhja > :first-child, .framer-oCfQZ .framer-34c5uo > :first-child, .framer-oCfQZ .framer-11f681b > :first-child, .framer-oCfQZ .framer-o9gz0i > :first-child, .framer-oCfQZ .framer-1k67emd > :first-child { margin-top: 0px; } .framer-oCfQZ.framer-72rtr7 > :last-child, .framer-oCfQZ .framer-1o8iall > :last-child, .framer-oCfQZ .framer-1qz2ipd > :last-child, .framer-oCfQZ .framer-1chndwg > :last-child, .framer-oCfQZ .framer-adhzpj > :last-child, .framer-oCfQZ .framer-1llaa7t > :last-child, .framer-oCfQZ .framer-cck2fo > :last-child, .framer-oCfQZ .framer-y5ps69 > :last-child, .framer-oCfQZ .framer-cur4k7 > :last-child, .framer-oCfQZ .framer-4ynju9 > :last-child, .framer-oCfQZ .framer-yzq6kp > :last-child, .framer-oCfQZ .framer-s0qhja > :last-child, .framer-oCfQZ .framer-34c5uo > :last-child, .framer-oCfQZ .framer-11f681b > :last-child, .framer-oCfQZ .framer-o9gz0i > :last-child, .framer-oCfQZ .framer-1k67emd > :last-child { margin-bottom: 0px; } .framer-oCfQZ .framer-1chndwg > *, .framer-oCfQZ .framer-1llaa7t > *, .framer-oCfQZ .framer-o9gz0i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oCfQZ .framer-1eynhpq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oCfQZ .framer-1eynhpq > :first-child, .framer-oCfQZ .framer-1tsvx35 > :first-child, .framer-oCfQZ .framer-1fkl3w2 > :first-child, .framer-oCfQZ .framer-gpevy1 > :first-child, .framer-oCfQZ .framer-1bwkbbc > :first-child, .framer-oCfQZ .framer-zpbrqo > :first-child, .framer-oCfQZ .framer-qplko5 > :first-child, .framer-oCfQZ .framer-xcairc > :first-child, .framer-oCfQZ .framer-1wjz81b > :first-child, .framer-oCfQZ .framer-nyycya > :first-child, .framer-oCfQZ .framer-121nrjn > :first-child, .framer-oCfQZ .framer-1hgn48e > :first-child, .framer-oCfQZ .framer-17q9d50 > :first-child, .framer-oCfQZ .framer-1wevm7p > :first-child, .framer-oCfQZ .framer-181w2zp > :first-child, .framer-oCfQZ .framer-yx6fxw > :first-child, .framer-oCfQZ .framer-1id9xkm > :first-child { margin-left: 0px; } .framer-oCfQZ .framer-1eynhpq > :last-child, .framer-oCfQZ .framer-1tsvx35 > :last-child, .framer-oCfQZ .framer-1fkl3w2 > :last-child, .framer-oCfQZ .framer-gpevy1 > :last-child, .framer-oCfQZ .framer-1bwkbbc > :last-child, .framer-oCfQZ .framer-zpbrqo > :last-child, .framer-oCfQZ .framer-qplko5 > :last-child, .framer-oCfQZ .framer-xcairc > :last-child, .framer-oCfQZ .framer-1wjz81b > :last-child, .framer-oCfQZ .framer-nyycya > :last-child, .framer-oCfQZ .framer-121nrjn > :last-child, .framer-oCfQZ .framer-1hgn48e > :last-child, .framer-oCfQZ .framer-17q9d50 > :last-child, .framer-oCfQZ .framer-1wevm7p > :last-child, .framer-oCfQZ .framer-181w2zp > :last-child, .framer-oCfQZ .framer-yx6fxw > :last-child, .framer-oCfQZ .framer-1id9xkm > :last-child { margin-right: 0px; } .framer-oCfQZ .framer-adhzpj > *, .framer-oCfQZ .framer-34c5uo > *, .framer-oCfQZ .framer-11f681b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oCfQZ .framer-1tsvx35 > *, .framer-oCfQZ .framer-1fkl3w2 > *, .framer-oCfQZ .framer-gpevy1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oCfQZ .framer-cck2fo > *, .framer-oCfQZ .framer-y5ps69 > *, .framer-oCfQZ .framer-cur4k7 > *, .framer-oCfQZ .framer-4ynju9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-oCfQZ .framer-s0qhja > *, .framer-oCfQZ .framer-1k67emd > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-oCfQZ .framer-1bwkbbc > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-oCfQZ .framer-zpbrqo > *, .framer-oCfQZ .framer-qplko5 > *, .framer-oCfQZ .framer-1wjz81b > *, .framer-oCfQZ .framer-121nrjn > *, .framer-oCfQZ .framer-17q9d50 > *, .framer-oCfQZ .framer-181w2zp > *, .framer-oCfQZ .framer-1id9xkm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-oCfQZ .framer-xcairc > *, .framer-oCfQZ .framer-nyycya > *, .framer-oCfQZ .framer-1hgn48e > *, .framer-oCfQZ .framer-1wevm7p > *, .framer-oCfQZ .framer-yx6fxw > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-oCfQZ[data-border=\"true\"]::after, .framer-oCfQZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-oCfQZ.framer-72rtr7 { width: 810px; } .framer-oCfQZ .framer-1e9cuuk { height: var(--framer-aspect-ratio-supported, 454px); } .framer-oCfQZ .framer-1tsvx35 { flex-direction: column; gap: 24px; height: 648px; } .framer-oCfQZ .framer-1fkl3w2, .framer-oCfQZ .framer-hgtnp, .framer-oCfQZ .framer-gpevy1, .framer-oCfQZ .framer-1lv731u { flex: none; width: 100%; } .framer-oCfQZ .framer-wbvcxr, .framer-oCfQZ .framer-okfpw4 { height: 240px; padding: 0px 24px 0px 0px; } .framer-oCfQZ .framer-1d4phvz, .framer-oCfQZ .framer-7f3h4x { height: 240px; } .framer-oCfQZ .framer-s0qhja { padding: 160px 80px 80px 80px; } .framer-oCfQZ .framer-1bwkbbc { flex-direction: column; justify-content: center; order: 0; } .framer-oCfQZ .framer-8e8b1n-container { flex: none; width: 80%; } .framer-oCfQZ .framer-19k7ouw { height: var(--framer-aspect-ratio-supported, 265px); order: 1; width: 100%; } .framer-oCfQZ .framer-zpbrqo { width: 40%; } .framer-oCfQZ .framer-jf1ua { width: 80%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oCfQZ .framer-1tsvx35, .framer-oCfQZ .framer-1bwkbbc { gap: 0px; } .framer-oCfQZ .framer-1tsvx35 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oCfQZ .framer-1tsvx35 > :first-child, .framer-oCfQZ .framer-1bwkbbc > :first-child { margin-top: 0px; } .framer-oCfQZ .framer-1tsvx35 > :last-child, .framer-oCfQZ .framer-1bwkbbc > :last-child { margin-bottom: 0px; } .framer-oCfQZ .framer-1bwkbbc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-oCfQZ.framer-72rtr7 { width: 390px; } .framer-oCfQZ .framer-1chndwg { padding: 24px; } .framer-oCfQZ .framer-1eynhpq { flex-direction: column; } .framer-oCfQZ .framer-1e9cuuk { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 219px); } .framer-oCfQZ .framer-adhzpj { padding: 48px 24px 48px 24px; } .framer-oCfQZ .framer-1tsvx35 { flex-direction: column; gap: 24px; } .framer-oCfQZ .framer-1fkl3w2, .framer-oCfQZ .framer-gpevy1 { flex: none; flex-direction: column; gap: 24px; width: 100%; } .framer-oCfQZ .framer-wbvcxr, .framer-oCfQZ .framer-1d4phvz, .framer-oCfQZ .framer-okfpw4, .framer-oCfQZ .framer-7f3h4x { flex: none; height: 180px; padding: 0px; width: 100%; } .framer-oCfQZ .framer-1sssk7w, .framer-oCfQZ .framer-rlqmq3, .framer-oCfQZ .framer-1a1yhmv { align-self: unset; height: 1px; width: 100%; } .framer-oCfQZ .framer-s0qhja { padding: 80px 24px 80px 24px; } .framer-oCfQZ .framer-34c5uo, .framer-oCfQZ .framer-jf1ua { width: 100%; } .framer-oCfQZ .framer-1bwkbbc { flex-direction: column; padding: 40px; } .framer-oCfQZ .framer-1lv731u, .framer-oCfQZ .framer-8e8b1n-container { flex: none; width: 100%; } .framer-oCfQZ .framer-19k7ouw { height: var(--framer-aspect-ratio-supported, 175px); width: 100%; } .framer-oCfQZ .framer-zpbrqo { width: 60%; } .framer-oCfQZ .framer-1k67emd { padding: 160px 24px 80px 24px; } .framer-oCfQZ.framer-wqok62-container { height: 90%; left: calc(50.00000000000002% - 90% / 2); top: calc(50.00000000000002% - 90% / 2); width: 90%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oCfQZ .framer-1eynhpq, .framer-oCfQZ .framer-1tsvx35, .framer-oCfQZ .framer-1fkl3w2, .framer-oCfQZ .framer-gpevy1, .framer-oCfQZ .framer-1bwkbbc { gap: 0px; } .framer-oCfQZ .framer-1eynhpq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oCfQZ .framer-1eynhpq > :first-child, .framer-oCfQZ .framer-1tsvx35 > :first-child, .framer-oCfQZ .framer-1fkl3w2 > :first-child, .framer-oCfQZ .framer-gpevy1 > :first-child, .framer-oCfQZ .framer-1bwkbbc > :first-child { margin-top: 0px; } .framer-oCfQZ .framer-1eynhpq > :last-child, .framer-oCfQZ .framer-1tsvx35 > :last-child, .framer-oCfQZ .framer-1fkl3w2 > :last-child, .framer-oCfQZ .framer-gpevy1 > :last-child, .framer-oCfQZ .framer-1bwkbbc > :last-child { margin-bottom: 0px; } .framer-oCfQZ .framer-1tsvx35 > *, .framer-oCfQZ .framer-1fkl3w2 > *, .framer-oCfQZ .framer-gpevy1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oCfQZ .framer-1bwkbbc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10539\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KNYWOQczD\":{\"layout\":[\"fixed\",\"auto\"]},\"VIwV3Ow5c\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-oCfQZ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10539,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\",weight:\"400\"}]},...NavigationTopBarFonts,...ButtonsPrimaryFonts,...VideoFonts,...AudioFonts,...TickerFonts,...SolutionsBlockFonts,...CTABlocksStandardFonts,...TestimonialFonts,...TheLightkeepersCollectiveFonts,...RecommendedReadingFonts,...FooterFonts,...ModalHubspotFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"10539\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KNYWOQczD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VIwV3Ow5c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "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", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavigationTopBarFonts", "getFonts", "THeSFKcsQ_default", "ButtonsPrimaryFonts", "S9N1UMVFB_default", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "AudioFonts", "Audio", "TickerFonts", "Ticker", "ContainerWithFX", "Container", "SolutionsBlockFonts", "qxfv4U7YX_default", "CTABlocksStandardFonts", "FARZ7z5DA_default", "TestimonialFonts", "KZ2VhsytZ_default", "TheLightkeepersCollectiveFonts", "fYGaP503t_default", "RecommendedReadingFonts", "AkUV3EZp4_default", "FooterFonts", "E7nYPPm5e_default", "ModalHubspotFormFonts", "Q4ejFOvFF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "addImageAlt", "image", "alt", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "dD5NwBbb83bnx0g", "overlay", "loadMore", "args", "Xlf3xSTsK1wnntms", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "l", "AnimatePresence", "Ga", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
