{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/JTMubMzXjWXer4Z14T0r/V5gUtVFjOykGr7Xl5BtX/A4Pns1nUK.js", "ssg:https://framerusercontent.com/modules/JpYdHXZRURbC9IQkXHM7/bfK4YX1k4vcy9Ezo1omQ/bDr5DdA_P.js", "ssg:https://framerusercontent.com/modules/1cXLQH7oWuZJqmGe0fiC/o6GQchOZ4JZuPkgw49aZ/lQM6lJc3z.js", "ssg:https://framerusercontent.com/modules/hjLzhgmmo2rlERI4Zm75/CuBuhXCTLjg2XRQ3mwHl/NHCeppDVi.js", "ssg:https://framerusercontent.com/modules/u6LE0FZg2tY3Ga4COH0p/2jx2NI5h2p7qdytcfGEY/Z3DqoBYW1.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"CUSTOM;Raptor V3 Premium Bold\"]);export const fonts=[{family:\"Raptor V3 Premium Bold\",moduleAsset:{localModuleIdentifier:\"local-module:css/A4Pns1nUK:default\",url:\"https://framerusercontent.com/assets/htpMh721toLsOeVKPm715tmamg.otf\"},url:\"https://framerusercontent.com/assets/htpMh721toLsOeVKPm715tmamg.otf\"}];export const css=['.framer-Zv9yJ .framer-styles-preset-zy3wv6:not(.rich-text-wrapper), .framer-Zv9yJ .framer-styles-preset-zy3wv6.rich-text-wrapper h6 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-Zv9yJ .framer-styles-preset-zy3wv6:not(.rich-text-wrapper), .framer-Zv9yJ .framer-styles-preset-zy3wv6.rich-text-wrapper h6 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Zv9yJ .framer-styles-preset-zy3wv6:not(.rich-text-wrapper), .framer-Zv9yJ .framer-styles-preset-zy3wv6.rich-text-wrapper h6 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Zv9yJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"CUSTOM;Raptor V3 Premium Semibold\"]);export const fonts=[{family:\"Raptor V3 Premium Semibold\",moduleAsset:{localModuleIdentifier:\"local-module:css/bDr5DdA_P:default\",url:\"https://framerusercontent.com/assets/OAGi6A93ScjjRfAgFwm7fmpPZQ4.otf\"},url:\"https://framerusercontent.com/assets/OAGi6A93ScjjRfAgFwm7fmpPZQ4.otf\"}];export const css=['.framer-gcPPW .framer-styles-preset-1i5t9sn:not(.rich-text-wrapper), .framer-gcPPW .framer-styles-preset-1i5t9sn.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Semibold\", \"Raptor V3 Premium Semibold Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-gcPPW .framer-styles-preset-1i5t9sn:not(.rich-text-wrapper), .framer-gcPPW .framer-styles-preset-1i5t9sn.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Semibold\", \"Raptor V3 Premium Semibold Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-gcPPW .framer-styles-preset-1i5t9sn:not(.rich-text-wrapper), .framer-gcPPW .framer-styles-preset-1i5t9sn.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Semibold\", \"Raptor V3 Premium Semibold Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-gcPPW\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"CUSTOM;Raptor V3 Premium Bold\"]);export const fonts=[{family:\"Raptor V3 Premium Bold\",moduleAsset:{localModuleIdentifier:\"local-module:css/lQM6lJc3z:default\",url:\"https://framerusercontent.com/assets/htpMh721toLsOeVKPm715tmamg.otf\"},url:\"https://framerusercontent.com/assets/htpMh721toLsOeVKPm715tmamg.otf\"}];export const css=['.framer-kq4By .framer-styles-preset-1uqtv5y:not(.rich-text-wrapper), .framer-kq4By .framer-styles-preset-1uqtv5y.rich-text-wrapper h5 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 44px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-kq4By .framer-styles-preset-1uqtv5y:not(.rich-text-wrapper), .framer-kq4By .framer-styles-preset-1uqtv5y.rich-text-wrapper h5 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-kq4By .framer-styles-preset-1uqtv5y:not(.rich-text-wrapper), .framer-kq4By .framer-styles-preset-1uqtv5y.rich-text-wrapper h5 { --framer-font-family: \"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-kq4By\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"CUSTOM;Raptor V3 Premium Regular\"]);export const fonts=[{family:\"Raptor V3 Premium Regular\",moduleAsset:{localModuleIdentifier:\"local-module:css/NHCeppDVi:default\",url:\"https://framerusercontent.com/assets/cXdTu5JqA1UJDrAE2ho5EPb8T84.otf\"},url:\"https://framerusercontent.com/assets/cXdTu5JqA1UJDrAE2ho5EPb8T84.otf\"}];export const css=['.framer-iA65M .framer-styles-preset-1emf7or:not(.rich-text-wrapper), .framer-iA65M .framer-styles-preset-1emf7or.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Regular\", \"Raptor V3 Premium Regular Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 32px; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-iA65M .framer-styles-preset-1emf7or:not(.rich-text-wrapper), .framer-iA65M .framer-styles-preset-1emf7or.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Regular\", \"Raptor V3 Premium Regular Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 28px; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-iA65M .framer-styles-preset-1emf7or:not(.rich-text-wrapper), .framer-iA65M .framer-styles-preset-1emf7or.rich-text-wrapper p { --framer-font-family: \"Raptor V3 Premium Regular\", \"Raptor V3 Premium Regular Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 26px; --framer-paragraph-spacing: 32px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-iA65M\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import Button from\"#framer/local/canvasComponent/BIUQMZv1k/BIUQMZv1k.js\";import TopNavigation from\"#framer/local/canvasComponent/XIaMnlLC9/XIaMnlLC9.js\";import Footer from\"#framer/local/canvasComponent/YOrW85URN/YOrW85URN.js\";import*as sharedStyle6 from\"#framer/local/css/A4Pns1nUK/A4Pns1nUK.js\";import*as sharedStyle3 from\"#framer/local/css/bDr5DdA_P/bDr5DdA_P.js\";import*as sharedStyle from\"#framer/local/css/jpUxHtncG/jpUxHtncG.js\";import*as sharedStyle2 from\"#framer/local/css/lQM6lJc3z/lQM6lJc3z.js\";import*as sharedStyle5 from\"#framer/local/css/NB5SOovTS/NB5SOovTS.js\";import*as sharedStyle1 from\"#framer/local/css/NHCeppDVi/NHCeppDVi.js\";import*as sharedStyle4 from\"#framer/local/css/WheEd54xC/WheEd54xC.js\";import metadataProvider from\"#framer/local/webPageMetadata/Z3DqoBYW1/Z3DqoBYW1.js\";const TopNavigationFonts=getFonts(TopNavigation);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const breakpoints={CziMSSdBk:\"(min-width: 810px) and (max-width: 1279px)\",hFjw46qEX:\"(max-width: 809px)\",l4eqvIgLU:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-B0PY8\";const variantClassNames={CziMSSdBk:\"framer-v-1uupdqd\",hFjw46qEX:\"framer-v-c7lrxp\",l4eqvIgLU:\"framer-v-kp9k9t\"};const transition1={delay:0,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-64};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:40,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:60,y:0};const transition3={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.4,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:40,y:0};const transition6={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:40,y:0};const transition7={delay:.2,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:-40,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"l4eqvIgLU\",Phone:\"hFjw46qEX\",Tablet:\"CziMSSdBk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"l4eqvIgLU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"hFjw46qEX\")return false;return true;};const elementId=useRouteElementId(\"ZV88Beex4\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"RJNA6AVRE\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"l4eqvIgLU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5f3e3840-4ba1-4a77-8d8a-2c6e743e57d2, rgb(0, 37, 2)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-kp9k9t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ha51y1-container\",nodeId:\"u0JhHmlgh\",rendersWithMotion:true,scopeId:\"Z3DqoBYW1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{variant:\"YMp8j5ycL\"},hFjw46qEX:{variant:\"oHfbnOGnn\"}},children:/*#__PURE__*/_jsx(TopNavigation,{height:\"100%\",id:\"u0JhHmlgh\",ijRWmdF0X:\"oLrJdVKYq\",layoutId:\"u0JhHmlgh\",style:{width:\"100%\"},variant:\"neaY3tmQQ\",width:\"100%\",X51BfkR5t:\"uMVPKrH3o\",xlevnthZ5:\"uMVPKrH3o\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18kcd5w\",\"data-framer-name\":\"hero wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9zudiu\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eb0coy\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"61px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(169, 240, 5)\"},children:\"The New Standard in\"})}),initial:animation3},hFjw46qEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(169, 240, 5)\"},children:\"The New Standard in\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"128px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(169, 240, 5)\"},children:\"The New Standard in\"})}),className:\"framer-3veod2\",\"data-framer-appear-id\":\"3veod2\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Raptor V3 Premium Bold\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"61px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Creator Marketing\"})}),initial:animation3},hFjw46qEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Creator Marketing\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JhcHRvciBWMyBQcmVtaXVtIEJvbGQ=\",\"--framer-font-family\":'\"Raptor V3 Premium Bold\", \"Raptor V3 Premium Bold Placeholder\", sans-serif',\"--framer-font-size\":\"128px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Creator Marketing\"})}),className:\"framer-yqyugj\",\"data-framer-appear-id\":\"yqyugj\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Raptor V3 Premium Bold\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:783,pixelHeight:1380,pixelWidth:1566,sizes:\"501px\",src:\"https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png 1566w\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:783,pixelHeight:1380,pixelWidth:1566,sizes:\"648px\",src:\"https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LUluWa5ddryZL6qfu3FB7gvrAOE.png 1566w\"},className:\"framer-122amcj hidden-c7lrxp\",\"data-framer-name\":\"placeholder\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"rgba(15, 26, 0, 0)\"},children:\"T\"})}),className:\"framer-3eg5jr\",\"data-framer-name\":\"Title\",fonts:[\"GF;Poppins-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ddwa7k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"trttigVkc\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"trttigVkc\",isMixedBorderRadius:false,layoutId:\"trttigVkc\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/eGEd6Uxc7bfZCmkBvDrJ4CNtE.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/SNJesGxuygVfDrnRo01kSW5lhyw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rzkfcc\",\"data-framer-name\":\"equal access wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162dnfb\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sflo8p\",\"data-framer-name\":\"frame\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9kxlln-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CRGke4Z4p\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"CRGke4Z4p\",isMixedBorderRadius:false,layoutId:\"CRGke4Z4p\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/mg7m7JXKg6Qhin7QeetoWtI1U.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"323px\",src:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png\",srcSet:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=1024 816w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=2048 1633w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png 1860w\"}},hFjw46qEX:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+0+0+48+364+8),positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png\",srcSet:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=1024 816w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=2048 1633w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png 1860w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"465px\",src:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png\",srcSet:\"https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=1024 816w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png?scale-down-to=2048 1633w,https://framerusercontent.com/images/GaHi1Zz5Uz6qAmkus8cNygNQpc0.png 1860w\"},className:\"framer-16m6xlz\",\"data-framer-name\":\"Exclude\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fc1oo9\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wiu39h\",\"data-styles-preset\":\"jpUxHtncG\",children:[\"Equal access\",/*#__PURE__*/_jsx(\"br\",{}),\"to opportunity\",/*#__PURE__*/_jsx(\"br\",{}),\"for all creators.\"]})}),className:\"framer-xz0i7v\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1emf7or\",\"data-styles-preset\":\"NHCeppDVi\",children:\"At Pearpop we believe everyone is a creator, and everyone has worth. We connect real people to real opportunity and empower them as individuals, regardless of their career stage, point of view, or identity.\"})}),className:\"framer-7qocf6\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1uqtv5y\",\"data-styles-preset\":\"lQM6lJc3z\",children:\"Create What Moves You.\"})}),className:\"framer-9ti2xc\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d6yn7y\",\"data-framer-name\":\"newsroom wrap\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czhwja\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-395xz4\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wiu39h\",\"data-styles-preset\":\"jpUxHtncG\",children:\"Newsroom\"})}),className:\"framer-pp3pfz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t606w\",\"data-framer-name\":\"news\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:\"NOV 17, 2022\"})}),className:\"framer-1cue9fb\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 167 28\"><g transform=\"translate(0.501 0)\" id=\"ss10153002744_1\"><path d=\"M -0.017 28.482 L -0.017 0.482 L 166.016 0.482 L 166.016 28.482 Z\" fill=\"transparent\"></path><path d=\"M 52.221 27.502 C 46.868 26.058 43.362 22.049 42.547 16.438 C 41.873 11.798 43.037 7.549 45.832 4.444 C 50.791 -1.065 62.163 -1.543 67.859 3.519 L 69.122 4.64 L 62.937 9.691 L 61.831 8.765 C 60.472 7.626 57.995 6.987 56.152 7.3 C 51.988 8.006 49.966 13.751 52.4 17.964 C 53.754 20.31 57.196 21.385 60.1 20.369 C 60.992 20.057 61.141 19.844 61.141 18.876 L 61.141 17.747 L 56.842 17.747 L 56.842 11.111 L 70.069 11.111 L 70.069 23.252 L 68.498 24.443 C 66.383 26.047 63.987 27.21 61.869 27.661 C 59.457 28.174 54.406 28.091 52.221 27.502 Z M 0.96 13.931 L 0.96 0.16 L 7.491 0.163 C 11.082 0.164 14.988 0.322 16.171 0.512 C 20.523 1.214 23.959 3.457 25.697 6.729 C 28.653 12.294 27.487 20.802 23.302 24.206 C 19.771 27.078 17.061 27.689 7.821 27.696 L 0.96 27.702 Z M 15.72 19.214 C 17.611 17.798 17.989 16.926 17.989 13.99 C 17.989 11.87 17.843 11.022 17.321 10.115 C 16.388 8.495 14.236 7.46 11.802 7.46 L 9.888 7.46 L 9.888 20.142 L 12.351 20.018 C 14.178 19.925 15.049 19.717 15.72 19.214 Z M 30.059 13.931 L 30.059 0.16 L 39.317 0.16 L 39.317 27.702 L 30.059 27.702 Z M 73.376 13.931 L 73.376 0.16 L 82.635 0.16 L 82.635 27.702 L 73.376 27.702 Z M 86.603 13.931 L 86.603 0.16 L 93.188 0.16 C 100.638 0.16 103.876 0.616 106.46 2.027 C 108.806 3.308 111.156 5.932 112.011 8.224 C 114.097 13.819 112.689 21.161 108.945 24.206 C 105.414 27.077 102.704 27.689 93.464 27.696 L 86.603 27.702 Z M 101.363 19.214 C 103.253 17.798 103.632 16.926 103.632 13.99 C 103.632 11.87 103.486 11.022 102.963 10.115 C 102.03 8.495 99.879 7.46 97.445 7.46 L 95.531 7.46 L 95.531 20.142 L 97.994 20.018 C 99.821 19.925 100.691 19.717 101.363 19.214 Z M 113.868 23.646 C 114.665 21.405 116.855 15.206 118.733 9.87 L 122.15 0.167 L 132.4 0.171 L 137.194 13.625 C 139.831 21.025 142.039 27.219 142.099 27.39 C 142.165 27.575 140.194 27.702 137.246 27.702 L 132.281 27.702 L 131.077 23.886 L 123.165 23.886 L 122.069 27.536 L 112.417 27.719 Z M 129.259 16.907 C 129.259 16.62 127.275 10.005 127.152 9.881 C 126.997 9.726 125.291 15.81 125.291 16.516 C 125.291 16.988 125.624 17.083 127.275 17.083 C 128.366 17.083 129.259 17.004 129.259 16.907 Z M 147.115 22.335 L 147.115 16.968 L 142.32 8.754 C 139.683 4.237 137.526 0.451 137.526 0.342 C 137.526 0.232 139.776 0.184 142.528 0.235 L 147.529 0.326 L 149.502 4.806 C 150.587 7.27 151.509 9.322 151.552 9.367 C 151.596 9.411 152.57 7.358 153.717 4.804 L 155.804 0.16 L 166.017 0.16 L 165.358 1.239 C 164.996 1.832 162.752 5.667 160.371 9.761 L 156.043 17.206 L 156.043 27.702 L 147.115 27.702 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10153002744}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jsni5o\",\"data-framer-name\":\"Digiday_logo 1\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 238 40\"><g transform=\"translate(0.689 0)\" id=\"ss8969168006_1\"><path d=\"M 0 40.689 L 0 0.689 L 236.622 0.689 L 236.622 40.689 Z\" fill=\"transparent\"></path><path d=\"M 74.448 39.289 C 66.818 37.226 61.822 31.499 60.66 23.483 C 59.7 16.854 61.358 10.784 65.342 6.348 C 72.41 -1.522 88.616 -2.204 96.734 5.027 L 98.533 6.629 L 89.719 13.845 L 88.143 12.521 C 86.206 10.895 82.676 9.982 80.05 10.428 C 74.115 11.437 71.234 19.644 74.702 25.663 C 76.633 29.014 81.538 30.55 85.676 29.099 C 86.948 28.653 87.16 28.349 87.16 26.966 L 87.16 25.353 L 81.034 25.353 L 81.034 15.872 L 99.883 15.872 L 99.883 33.217 L 97.645 34.918 C 94.63 37.21 91.215 38.871 88.197 39.515 C 84.76 40.249 77.561 40.13 74.448 39.289 Z M 1.393 19.902 L 1.393 0.229 L 10.7 0.233 C 15.819 0.235 21.386 0.459 23.07 0.732 C 29.274 1.735 34.17 4.938 36.647 9.613 C 40.859 17.563 39.197 29.717 33.233 34.58 C 28.202 38.682 24.339 39.555 11.171 39.566 L 1.393 39.574 Z M 22.428 27.449 C 25.122 25.426 25.662 24.179 25.662 19.985 C 25.662 16.957 25.454 15.746 24.709 14.45 C 23.38 12.136 20.313 10.657 16.844 10.657 L 14.117 10.657 L 14.117 28.775 L 17.627 28.596 C 20.23 28.464 21.472 28.168 22.428 27.449 Z M 42.863 19.902 L 42.863 0.229 L 56.058 0.229 L 56.058 39.574 L 42.863 39.574 Z M 104.597 19.902 L 104.597 0.229 L 117.792 0.229 L 117.792 39.574 L 104.597 39.574 Z M 123.447 19.902 L 123.447 0.229 L 132.831 0.229 C 143.449 0.229 148.064 0.88 151.746 2.895 C 155.09 4.726 158.439 8.474 159.657 11.748 C 162.63 19.742 160.623 30.229 155.287 34.58 C 150.256 38.682 146.393 39.555 133.225 39.566 L 123.447 39.574 Z M 144.482 27.449 C 147.176 25.426 147.716 24.179 147.716 19.985 C 147.716 16.957 147.507 15.746 146.763 14.45 C 145.433 12.136 142.367 10.657 138.898 10.657 L 136.17 10.657 L 136.17 28.775 L 139.681 28.596 C 142.284 28.464 143.525 28.168 144.482 27.449 Z M 162.303 33.78 C 163.439 30.579 166.56 21.723 169.237 14.099 L 174.106 0.239 L 188.714 0.244 L 195.547 19.464 C 199.305 30.035 202.451 38.885 202.537 39.129 C 202.631 39.393 199.822 39.574 195.62 39.574 L 188.545 39.574 L 186.829 34.122 L 175.553 34.122 L 173.991 39.337 L 160.236 39.599 Z M 184.238 24.153 C 184.238 23.743 181.41 14.292 181.235 14.116 C 181.014 13.894 178.583 22.585 178.583 23.595 C 178.583 24.269 179.057 24.405 181.41 24.405 C 182.965 24.405 184.238 24.292 184.238 24.153 Z M 209.685 31.907 L 209.685 24.24 L 202.852 12.506 C 199.094 6.052 196.019 0.644 196.019 0.488 C 196.019 0.332 199.227 0.263 203.148 0.335 L 210.276 0.466 L 213.087 6.865 C 214.633 10.385 215.948 13.317 216.009 13.381 C 216.071 13.445 217.459 10.512 219.095 6.863 L 222.068 0.229 L 236.623 0.229 L 235.684 1.769 C 235.168 2.617 231.97 8.096 228.577 13.945 L 222.409 24.579 L 222.409 39.574 L 209.685 39.574 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:8969168006,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1emf7or\",\"data-styles-preset\":\"NHCeppDVi\",children:[\"Pearpop named Digiday\",/*#__PURE__*/_jsx(\"br\",{}),'\"Best Influencer Marketing Platform\u201D']})}),className:\"framer-cu2ks9\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+1882+0+0+48+0+0+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-id3bsr-container\",nodeId:\"fQFM8WHtv\",rendersWithMotion:true,scopeId:\"Z3DqoBYW1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{c4EvubInh:\"Read More\",eZoS6M5ml:\"https://digiday.com/announcement/awards/commerce-layer-frequence-and-khoros-are-among-the-2022-digiday-technology-awards-winners/\",FlGxVfKzp:true,height:\"100%\",id:\"fQFM8WHtv\",layoutId:\"fQFM8WHtv\",variant:\"PVR3D2gtl\",width:\"100%\",y6yhREPqQ:false})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004,intrinsicWidth:740,pixelHeight:1004,pixelWidth:740,sizes:\"336px\",src:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png\",srcSet:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png 740w\"}},hFjw46qEX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1882+0+0+48+384),pixelHeight:1004,pixelWidth:740,sizes:\"279px\",src:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png\",srcSet:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png 740w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004,intrinsicWidth:740,pixelHeight:1004,pixelWidth:740,sizes:\"370px\",src:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png\",srcSet:\"https://framerusercontent.com/images/ztD1qxNAFzbeBMHQhlbcUjk0.png 740w\"},className:\"framer-163t7s0\",\"data-framer-name\":\"image 2\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13pjqal\",\"data-framer-name\":\"power stats wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{__framer__animate:{transition:transition5},__framer__enter:animation11,__framer__exit:animation12},hFjw46qEX:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-46rph7\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1kkz23p\",\"data-framer-name\":\"stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:\"NOV 17, 2022\"})}),className:\"framer-9yhl8\",\"data-framer-name\":\"date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ximoz4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14x3lk9\",\"data-framer-name\":\"tc\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:280,svg:'<svg width=\"280\" height=\"40\" viewBox=\"0 0 280 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M52.261 13.3333H78.4148V0H52.261V13.3333Z\" fill=\"white\"/>\\n<path d=\"M0 0V13.3333H13.0536V40H26.1072V13.3333H39.2074V0H0Z\" fill=\"white\"/>\\n<path d=\"M39.2074 40H78.4148V26.6666H52.261V13.3333H39.2074V40Z\" fill=\"white\"/>\\n<path d=\"M111.748 10.0699H92.5408V15.6177H98.9743V33.007H105.315V15.6177H111.748V10.0699Z\" fill=\"white\"/>\\n<path d=\"M118.974 15.4312C114.452 15.4312 111.095 18.4615 111.095 24.4289C111.095 29.6969 113.939 33.3799 119.114 33.3799C121.818 33.3799 124.009 32.6806 126.107 31.4219L123.869 27.6457C122.144 28.5314 120.932 28.8578 119.394 28.8578C117.809 28.8578 116.69 28.0186 116.457 26.1072H126.573C126.62 25.8275 126.62 25.4545 126.62 24.9417C126.667 18.5548 123.729 15.4312 118.974 15.4312ZM116.55 22.4242C116.736 20.6993 117.482 19.8135 118.834 19.8135C120.559 19.8135 121.165 20.6993 121.445 22.4242H116.55Z\" fill=\"white\"/>\\n<path d=\"M137.855 28.5781C136.27 28.5781 135.431 27.1795 135.431 24.4289C135.431 21.7249 136.177 20.1865 137.716 20.1865C138.974 20.1865 139.534 20.8858 140.373 22.4242L144.429 19.3473C142.937 16.9231 141.072 15.4312 137.809 15.4312C132.308 15.4312 129.604 19.0676 129.604 24.3356C129.604 30.1165 132.634 33.3333 137.669 33.3333C140.699 33.3333 142.564 32.1678 144.569 29.2307L140.839 26.2937C139.72 27.972 138.974 28.5781 137.855 28.5781Z\" fill=\"white\"/>\\n<path d=\"M158.182 15.4312C156.13 15.4312 154.918 16.1305 153.846 16.9231V9.13751L147.925 11.5151V33.0536H153.846V23.2168C153.846 21.0722 154.592 20.4662 155.851 20.4662C157.063 20.4662 157.809 21.0722 157.809 23.2634V33.0536H163.729V22.5175C163.729 17.9953 161.911 15.4312 158.182 15.4312Z\" fill=\"white\"/>\\n<path d=\"M177.949 27.8322C175.198 27.8322 174.079 25.035 174.079 21.5384C174.079 17.9021 175.245 15.2447 177.902 15.2447C180 15.2447 180.792 16.5967 181.585 18.7412L187.366 16.4569C185.781 12.1212 183.543 9.69696 177.902 9.69696C171.748 9.69696 167.412 14.1725 167.412 21.5384C167.412 28.345 171.049 33.3799 177.855 33.3799C183.31 33.3799 185.874 30.4429 187.412 27.4592L182.051 24.6154C180.792 26.7599 179.953 27.8322 177.949 27.8322Z\" fill=\"white\"/>\\n<path d=\"M196.923 17.0629V15.8042H191.002V33.007H196.923V23.6363C196.923 21.5384 197.809 20.8391 199.254 20.8391C200.419 20.8391 201.259 21.4452 202.005 22.2844L203.403 16.1771C202.704 15.7576 201.865 15.4312 200.606 15.4312C199.067 15.4312 197.902 16.0839 196.923 17.0629Z\" fill=\"white\"/>\\n<path d=\"M216.037 25.641C216.037 27.7856 215.291 28.3916 214.079 28.3916C212.867 28.3916 212.121 27.7855 212.121 25.5944V15.8042H206.2V26.3403C206.2 30.8625 208.018 33.38 211.795 33.38C213.799 33.38 215.058 32.6807 216.084 31.8881V33.0536H222.005V15.8508H216.084V25.641\" fill=\"white\"/>\\n<path d=\"M236.503 15.4312C234.452 15.4312 233.24 16.1305 232.168 16.9231V15.7576H226.247V32.9604H232.168V23.1235C232.168 20.979 232.914 20.3729 234.172 20.3729C235.384 20.3729 236.13 20.979 236.13 23.1701V32.9604H242.051V22.4242C242.051 17.9953 240.28 15.4312 236.503 15.4312Z\" fill=\"white\"/>\\n<path d=\"M253.799 28.5781C252.214 28.5781 251.375 27.1795 251.375 24.4289C251.375 21.7249 252.121 20.1865 253.613 20.1865C254.872 20.1865 255.431 20.8858 256.27 22.4242L260.326 19.3473C258.834 16.9231 256.97 15.4312 253.706 15.4312C248.205 15.4312 245.501 19.0676 245.501 24.3356C245.501 30.1165 248.531 33.3333 253.566 33.3333C256.597 33.3333 258.461 32.1678 260.466 29.2307L256.736 26.2937C255.711 27.972 254.918 28.5781 253.799 28.5781Z\" fill=\"white\"/>\\n<path d=\"M274.126 15.4312C272.074 15.4312 270.862 16.1305 269.79 16.9231V9.13751L263.869 11.5151V33.0536H269.79V23.2168C269.79 21.0722 270.536 20.4662 271.795 20.4662C273.007 20.4662 273.753 21.0722 273.753 23.2634V33.0536H279.673V22.5175C279.72 17.9953 277.902 15.4312 274.126 15.4312Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-paq0ki\",\"data-styles-preset\":\"WheEd54xC\",children:\"Pearpop raises $18M at a $300M valuation to scale its social collaboration marketplace\"})}),className:\"framer-qkgo3i\",\"data-framer-name\":\"The Largest & \\u2028Fastest Growing \\u2028Creator Community\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:/*#__PURE__*/_jsx(Link,{href:\"https://techcrunch.com/2022/11/29/pearpop-raises-18m-300m-valuation-social-collaboration-marketplace/\",motionChild:true,nodeId:\"RtOFdv4Ko\",openInNewTab:true,scopeId:\"Z3DqoBYW1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-28albb\",\"data-styles-preset\":\"NB5SOovTS\",children:\"Read More\"})})})}),className:\"framer-doa1ru\",\"data-framer-name\":\"link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-xv8kse\",\"data-framer-name\":\"stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:\"MAY 10, 2022\"})}),className:\"framer-1wslunh\",\"data-framer-name\":\"date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sddmyy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aumw1p\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:266,svg:'<svg width=\"266\" height=\"40\" viewBox=\"0 0 266 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1359_3051)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M126.311 10.8114C126.311 16.2177 125.777 32.9744 125.777 32.9744C125.777 36.2177 126.845 37.6577 129.875 37.6577V39.0989H117.939V37.6577C120.967 37.6577 122.569 36.2165 122.569 32.9744L123.638 5.58672C122.748 3.42373 121.857 2.70312 119.541 2.52386V1.26309H128.626L138.246 26.8498L148.046 1.26309H156.241V2.52386C153.925 2.52386 152.679 3.60535 152.679 6.12806L153.749 32.6147C153.749 36.5798 154.461 37.6589 157.669 37.6589V39.1001H143.951V37.6589C146.621 37.6589 147.872 36.7578 147.691 32.6147C147.691 32.6147 147.156 14.0559 146.978 10.8126L140.389 29.1909C139.399 31.7797 138.566 34.4274 137.893 37.1187L135.758 37.2992C135.223 35.3166 133.798 31.7148 133.798 31.7148C133.798 31.7148 128.27 16.0361 126.311 10.8114ZM115.087 39.2794C114.375 39.0989 113.662 39.0989 112.949 39.0989C111.524 39.0989 109.028 39.8195 106.001 39.8195C94.4203 39.8195 85.8692 32.7928 85.8692 19.8195C85.8692 8.82885 93.8862 0.360866 106.178 0.360866C109.028 0.360866 112.235 0.902203 114.908 1.98252C115.442 1.44118 115.62 1.08147 116.154 0.541312H117.224C117.045 2.52386 116.333 9.00929 116.333 9.00929H115.263C114.551 5.22701 112.591 2.70312 106.355 2.70312C98.8737 2.70312 92.1044 8.6484 92.1044 19.6403C92.1044 32.0733 99.0521 37.4773 106.712 37.4773C111.702 37.4773 114.729 34.5949 116.69 30.9918L117.937 31.5332L115.087 39.2794ZM81.4158 8.28869H80.1692C79.9908 4.86493 78.9215 3.78344 76.2488 3.78344H71.0829V32.0722C71.0829 36.7555 71.9738 37.6565 75.0033 37.6565V39.0977H61.6408V37.6565C64.6704 37.6565 65.5613 36.7555 65.5613 31.8893V3.78462H60.3954C57.0102 3.78462 56.475 4.68567 55.584 8.28987H54.3375L55.2272 0.18042L56.1181 0.360866C56.4738 1.26192 57.1874 1.26192 59.3249 1.26192H76.6056C79.8136 1.26192 80.5261 1.26192 81.2386 0.18042H82.3079L81.4158 8.28869Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.6465 40C41.1522 40 39.1919 39.6403 37.7681 39.0989C36.3431 38.7392 35.2738 38.1979 34.7397 37.8382C34.0272 38.5588 33.492 39.4598 33.492 39.4598L32.4226 39.1001L33.3136 30.6322L34.5613 30.8126C35.2738 34.7753 37.9465 37.6589 43.4692 37.6589C47.7454 37.6589 50.5954 34.0571 50.5954 30.092C50.5954 26.8487 49.3476 25.2259 45.0715 21.9837C43.6465 21.0827 42.3988 20.3621 41.3294 19.461C37.4113 16.9407 34.9158 14.0571 34.9158 9.37139C34.9158 3.96509 39.3704 0.362071 45.2487 0.362071C48.634 0.362071 50.7726 1.44357 51.484 1.80328L52.7305 0.362071L53.6214 0.542517L52.7305 8.28989L51.484 8.10945C51.484 4.50761 49.3453 2.88477 45.7817 2.88477C42.218 2.88477 39.9033 4.68687 39.9033 8.10945C39.9033 11.1735 42.2192 13.1537 44.8907 14.9581C46.3157 15.8592 47.3851 16.5798 48.4521 17.3004C54.6873 21.8033 56.1123 24.6869 56.1123 29.0117C56.1158 35.3167 51.3044 40 43.6442 40H43.6465ZM23.3386 8.28871H21.9136C21.9136 5.04423 20.4886 3.78347 17.6375 3.78347H9.62044V18.0186H14.7863C17.4591 18.0186 17.9943 16.5774 18.35 14.234H19.5966V24.3248H18.35C17.9943 21.6217 17.4591 20.5402 14.6079 20.5402H9.62044V32.6135C9.62044 37.1164 10.6898 37.6577 13.5409 37.6577V39.0989H0V37.6577C3.38523 37.6577 3.91814 36.7567 3.91814 32.6135V6.12572C3.91814 3.60302 2.84882 2.52152 0 2.52152V1.26194H18.5272C21.734 1.26194 22.4454 1.0815 22.9818 0H24.2295L23.3386 8.28871ZM215.568 10.4505V32.0722C215.568 36.7555 216.634 37.6566 219.485 37.6566V39.0978H198.466V37.6566C200.07 37.6566 201.494 37.1152 201.494 36.0349C201.494 35.3131 201.317 34.0524 200.959 32.7904L199.354 27.5658H187.599C187.419 28.2875 185.283 34.2316 185.283 35.8545C185.283 37.2957 186.887 37.6566 187.953 37.6566V39.0978H178.154V37.6566C179.936 37.6566 181.362 37.4761 182.609 33.6938L191.695 4.32362C191.16 3.06286 190.449 2.70197 189.203 2.52152V1.26076H197.22L206.837 32.0722C207.729 35.3155 208.619 36.9383 210.045 37.6566C212.184 36.936 212.719 36.2154 212.719 32.0722V6.12572C211.115 3.96273 210.935 2.52152 207.907 2.52152V1.26194H216.993L231.959 27.0268V7.38766C231.959 3.42257 231.069 2.52152 228.038 2.52152V1.26194H247.992V2.5227C246.745 2.5227 245.676 3.06404 245.676 4.3248C245.676 5.22585 246.033 6.1269 246.388 7.2084L252.091 19.6415L257.615 7.56929C258.504 5.94764 258.684 5.04659 258.684 4.14554C258.684 3.06404 257.969 2.5227 256.368 2.5227V1.26194H265.809V2.5227C263.493 2.5227 262.066 4.68569 261 7.20604L253.695 22.3423V32.2526C253.695 36.5786 254.765 37.6589 257.616 37.6589V39.1001H244.075V37.6589C246.926 37.6589 247.995 36.5786 247.995 32.2526V23.7846L240.154 7.02795C238.732 3.78464 238.195 3.06522 237.303 2.5227C235.521 3.24331 234.987 4.50525 234.987 7.38884V35.1362C234.987 35.1362 235.167 37.2992 235.344 39.8196L233.028 40L215.569 10.4505H215.568ZM193.299 8.64843L188.309 25.0466H198.642L193.299 8.64843Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M171.204 25.0466H168.534V32.7928C168.534 36.7579 169.6 37.6589 172.632 37.6589V39.1001H158.913V37.6589C161.765 37.6589 162.834 36.5786 162.834 32.6147V7.20722C162.834 3.24449 161.765 2.52388 158.913 2.52388V1.26312H169.246C179.222 1.26312 185.1 4.32598 185.1 12.6135C185.101 21.2619 177.976 25.0466 171.205 25.0466H171.204ZM169.422 3.78465H168.533V22.3423H170.134C176.016 22.3423 179.043 19.6391 179.043 12.7928C179.043 5.94646 176.369 3.78465 169.421 3.78465H169.422ZM109.028 31.8917C102.259 31.8917 97.6259 27.0256 97.6259 20C97.6259 12.9744 102.437 8.10827 109.028 8.10827C115.619 8.10827 120.252 13.1525 120.252 20C120.253 26.6659 115.265 31.8917 109.028 31.8917ZM109.028 10.2701C104.398 10.2701 102.793 14.7753 102.793 20C102.793 24.8661 104.219 29.7299 109.028 29.7299C113.837 29.7299 115.085 24.8638 115.085 19.8196C115.086 14.9558 113.304 10.2701 109.028 10.2701ZM30.6431 29.7299V28.468C32.425 28.468 32.7818 27.9278 32.7818 27.3877C32.7818 26.6659 32.6034 26.1257 32.425 25.5856C32.425 25.5856 32.0681 24.1432 31.7125 23.0629H24.7647L24.0523 25.4051C23.875 25.9465 23.6966 26.4866 23.6966 27.2072C23.6966 27.9278 24.4091 28.468 25.4784 28.468V29.7299H18.5307V28.468C20.3125 28.468 21.025 27.9278 21.7375 25.9476L27.083 9.72992C26.9046 9.00814 26.3693 8.46798 25.3012 8.46798V7.20604H31C32.9439 12.9779 34.9041 18.744 36.8783 24.5052C37.7693 27.5681 38.6602 28.468 40.0852 28.468V29.7299H30.6443H30.6431ZM28.1476 12.2526L25.4749 21.0815H30.9988L28.1476 12.2526Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1359_3051\">\\n<rect width=\"265.806\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-paq0ki\",\"data-styles-preset\":\"WheEd54xC\",children:\"Fast Company Most Innovative Companies List 2022: Pearpop\"})}),className:\"framer-mv0b3n\",\"data-framer-name\":\"The Largest & \\u2028Fastest Growing \\u2028Creator Community\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.fastcompany.com/90748440/monetizing-influence\",motionChild:true,nodeId:\"CueVosPVE\",openInNewTab:true,scopeId:\"Z3DqoBYW1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-28albb\",\"data-styles-preset\":\"NB5SOovTS\",children:\"Read More\"})})})}),className:\"framer-16gkuls\",\"data-framer-name\":\"link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1qfh1q2\",\"data-framer-name\":\"stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:\"NOV 17, 2022\"})}),className:\"framer-1svfpkb\",\"data-framer-name\":\"date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pll01a\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h62bxv\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:165,svg:'<svg width=\"165\" height=\"40\" viewBox=\"0 0 165 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M100.238 11.3967C97.632 11.3967 95.5474 12.079 93.3737 13.1059C93.3874 7.1542 93.4697 1.95913 93.6137 0L80.9623 2.36447V3.46563L82.1966 3.62101C83.9657 3.85746 84.6377 4.85053 84.8503 7.13393C85.2549 11.5048 85.1863 34.913 84.8503 38.6556C88.2583 39.3987 91.9406 39.9595 95.6366 39.9595C105.662 39.9595 111.71 33.9605 111.71 24.4621C111.71 16.862 106.807 11.39 100.238 11.39V11.3967ZM95.8354 38.0409C95.1154 38.0409 94.1966 37.9328 93.6823 37.8382C93.4903 35.2103 93.36 24.3743 93.3737 14.9096C94.5326 14.5381 95.3211 14.4435 96.3291 14.4435C100.478 14.4435 102.823 19.0779 102.823 24.935C102.823 32.3797 99.9429 38.0409 95.8286 38.0409H95.8354ZM33.4286 11.694L31.4537 12.2209C29.7326 6.65428 26.9829 3.51968 21.8743 3.51968H15.3189C15.0103 7.06637 14.9006 12.9708 14.9349 19.1116L19.3577 18.9698C22.2994 18.8752 23.52 16.7607 24.2263 13.6396H25.8789V26.6509H24.2263C23.52 23.5298 22.2789 21.4288 19.3577 21.3207L14.9554 21.1789C15.0034 25.8402 15.1337 29.8193 15.3394 32.1838C15.648 35.6494 16.608 37.1762 19.1451 37.5274L21.3943 37.7639V39.3177H0V37.7639L1.76914 37.5274C4.30629 37.1694 5.27314 35.6494 5.57486 32.1838C6.05486 26.482 6.13714 14.6056 5.57486 7.98514C5.26629 4.51951 4.30629 2.99274 1.76914 2.64145L0 2.405V0.844452H33.2503L33.4286 11.694ZM44.0709 11.086C53.52 11.086 58.2103 17.2876 58.2103 25.4484C58.2103 33.6092 52.9097 39.9662 43.4537 39.9662C33.9977 39.9662 29.2937 33.7646 29.2937 25.6038C29.2937 17.443 34.5943 11.086 44.064 11.086H44.0709ZM43.5703 12.8559C39.3943 12.8559 38.2217 18.328 38.2217 25.5227C38.2217 32.7174 40.0731 38.1895 43.9406 38.1895C48.1166 38.1895 49.2891 32.7174 49.2891 25.5227C49.2891 18.328 47.4377 12.8559 43.5703 12.8559ZM114.027 25.7862C114.014 18.2131 118.965 11.113 128.702 11.113C136.622 11.113 140.421 16.8012 140.448 24.2324H122.77C122.578 30.9813 126.117 35.9399 132.864 35.9399C135.84 35.9399 137.445 35.2238 139.241 33.9064L140.078 34.8725C138.117 37.5004 134.016 40 128.585 40C120.048 39.9865 114.041 34.1429 114.027 25.7929V25.7862ZM122.832 22.307L131.705 22.1179C131.753 18.328 131.129 12.9032 127.927 12.9032C124.725 12.9032 122.914 18.0307 122.832 22.307ZM163.173 19.6048L161.726 19.9764C160.183 15.1393 157.838 13.0924 154.416 13.0924C152.133 13.0924 150.48 14.7543 150.48 17.166C150.48 19.5778 152.331 20.8208 157.68 22.8205C162.617 24.6715 164.571 26.7995 164.571 30.6705C164.571 36.4533 159.991 39.9932 152.469 39.9932C148.855 39.9932 144.837 39.2163 142.491 38.2976L142.238 30.3057L143.685 29.9341C145.755 35.5278 148.457 37.568 152.009 37.568C155.033 37.568 156.72 35.4872 156.72 33.2646C156.72 31.0421 155.451 29.8125 150.631 28.1371C146.146 26.5833 142.903 24.685 142.903 19.8345C142.903 14.984 147.209 11.0995 154.327 11.0995C157.639 11.0995 160.773 11.6602 162.878 12.5925L163.186 19.6048H163.173ZM79.7966 19.3886C75.9703 16.9025 71.8423 17.9902 70.992 19.3413C70.704 23.8203 70.7657 30.6705 71.088 34.1226C71.2937 36.406 71.9726 37.3991 73.7417 37.6355L76.0251 37.7909V39.3447H58.4777V37.7909L59.712 37.6355C61.4811 37.3991 62.1531 36.406 62.3657 34.1226C62.7017 30.3732 62.7703 22.5705 62.3657 18.2064C62.16 15.923 61.4811 14.9299 59.712 14.6935L58.4777 14.5381V13.4369L71.0811 11.0725L70.9371 17.443C73.8789 10.8833 79.6937 10.0321 82.896 11.8629L79.8103 19.3886H79.7966Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-paq0ki\",\"data-styles-preset\":\"WheEd54xC\",children:\"Pearpop raises $18M at a $300M valuation to scale its social collaboration marketplace\"})}),className:\"framer-1nc7afn\",\"data-framer-name\":\"The Largest & \\u2028Fastest Growing \\u2028Creator Community\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.forbes.com/sites/dbloom/2022/06/23/how-the-chainsmokers-build-brand-deals-using-pearpop-and-tubular/?sh=54115a137d0e\",motionChild:true,nodeId:\"p8JQHFir2\",openInNewTab:true,scopeId:\"Z3DqoBYW1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-28albb\",\"data-styles-preset\":\"NB5SOovTS\",children:\"Read More\"})})})}),className:\"framer-1xadi0w\",\"data-framer-name\":\"link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1851h6k\",\"data-framer-name\":\"stat\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:\"NOV 17, 2022\"})}),className:\"framer-1lzjewu\",\"data-framer-name\":\"date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-axwnt\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c5dw3s\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:128,svg:'<svg width=\"128\" height=\"40\" viewBox=\"0 0 128 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1359_3028)\">\\n<path d=\"M48.2393 31.1017L45.7033 30.1926C44.3944 29.7349 43.6496 29.2803 43.6496 28.1399C43.6496 26.879 44.834 26.2746 46.4202 26.2746C48.2623 26.2746 49.696 26.9556 51.005 27.9444V25.2352C49.7452 24.4288 48.1327 23.9759 46.3644 23.9759C43.4774 23.9759 41.0628 25.4617 41.0628 28.1953C41.0628 30.7498 42.6572 31.8609 44.7552 32.6217L47.0304 33.4297C48.4362 33.9625 49.2383 34.4382 49.2383 35.6519C49.2383 37.0448 47.9785 37.6752 46.1856 37.6752C44.3927 37.6752 42.6261 37.0171 41.1957 35.8783V38.6397C42.2963 39.3972 44.0843 39.9984 46.1856 39.9984C49.3859 39.9984 51.8235 38.4344 51.8235 35.603C51.8235 33.3532 50.6949 31.9847 48.2393 31.1017Z\" fill=\"white\"/>\\n<path d=\"M61.4064 24.2398H58.7375V39.7605H61.4064V24.2398Z\" fill=\"white\"/>\\n<path d=\"M13.3081 24.2398H10.636V39.7605H13.3081V24.2398Z\" fill=\"white\"/>\\n<path d=\"M75.2362 24.2398H69.2079V39.7605H75.2362C79.8767 39.7605 82.8753 36.7255 82.8753 31.9961C82.8753 27.2667 79.8751 24.2398 75.2362 24.2398ZM75.1361 37.4129H71.8718V26.5662H75.1361C78.4365 26.5662 80.2015 28.658 80.2015 31.9977C80.2015 35.3374 78.4365 37.4129 75.1361 37.4129Z\" fill=\"white\"/>\\n<path d=\"M88.5148 39.7605H98.0485V37.4113H91.1262V32.5972H97.3349V30.2985H91.1262V26.5646H98.0485V24.2398H88.5148V39.7605Z\" fill=\"white\"/>\\n<path d=\"M117.073 28.8926C117.073 25.8543 114.972 24.2398 111.721 24.2398H106.021V39.7605H108.68V33.4639H110.573L116.048 39.7605H119.074L113.419 33.3662C115.905 32.9833 117.072 31.4911 117.072 28.8926H117.073ZM108.681 31.2679V26.5157H111.67C113.44 26.5157 114.437 27.4525 114.437 28.8926C114.437 30.3328 113.44 31.2679 111.67 31.2679H108.681Z\" fill=\"white\"/>\\n<path d=\"M41.2548 13.9323C39.3962 13.9323 37.6657 13.2644 36.2222 12.1093V14.9081C37.331 15.6787 39.1387 16.2962 41.2548 16.2962C44.483 16.2962 46.9353 14.7029 46.9353 11.8275C46.9353 9.5418 45.8002 8.15378 43.3216 7.2545L40.7659 6.32916C39.4487 5.86648 38.7007 5.40381 38.7007 4.24876C38.7007 2.96338 39.8883 2.34757 41.4893 2.34757C43.3478 2.34757 44.793 3.03995 46.1102 4.04186V1.29515C44.8438 0.472438 43.2166 0.00976562 41.4352 0.00976562C38.517 0.00976562 36.0909 1.52486 36.0909 4.29926C36.0909 6.89446 37.6919 8.02345 39.808 8.79403L42.1061 9.61511C43.5266 10.1544 44.3255 10.6431 44.3255 11.8747C44.3255 13.2872 43.0608 13.929 41.2531 13.929L41.2548 13.9323Z\" fill=\"white\"/>\\n<path d=\"M124.005 7.24311L121.45 6.31939C120.133 5.85672 119.385 5.39404 119.385 4.23899C119.385 2.95524 120.572 2.3378 122.171 2.3378C124.032 2.3378 125.477 3.03181 126.794 4.03372V1.28538C125.529 0.462672 123.902 0 122.121 0C119.204 0 116.776 1.51509 116.776 4.2895C116.776 6.88307 118.377 8.01368 120.493 8.78426L122.792 9.60534C124.21 10.1446 125.011 10.6333 125.011 11.8649C125.011 13.2774 123.746 13.9193 121.939 13.9193C120.131 13.9193 118.349 13.2513 116.904 12.0947V14.8951C118.015 15.6657 119.821 16.2831 121.939 16.2831C125.165 16.2831 127.617 14.6899 127.617 11.8144C127.617 9.52877 126.481 8.14076 124.004 7.24148L124.005 7.24311Z\" fill=\"white\"/>\\n<path d=\"M111.404 11.8161C111.404 9.5304 110.267 8.14238 107.791 7.24311L105.235 6.31939C103.919 5.85672 103.171 5.39404 103.171 4.23899C103.171 2.95524 104.359 2.3378 105.958 2.3378C107.818 2.3378 109.264 3.03181 110.581 4.03372V1.28538C109.316 0.462672 107.689 0 105.909 0C102.991 0 100.565 1.51509 100.565 4.2895C100.565 6.88307 102.166 8.01368 104.282 8.78426L106.58 9.60534C107.999 10.1446 108.799 10.6333 108.799 11.8649C108.799 13.2774 107.533 13.9193 105.727 13.9193C103.921 13.9193 102.138 13.2513 100.693 12.0947V14.8951C101.802 15.6657 103.609 16.2831 105.727 16.2831C108.954 16.2831 111.406 14.6899 111.406 11.8144L111.404 11.8161Z\" fill=\"white\"/>\\n<path d=\"M94.4397 13.6537H87.4699V8.7598H93.7212V6.42526H87.4699V2.62939H94.4397V0.267151H84.8387V16.0387H94.4397V13.6537Z\" fill=\"white\"/>\\n<path d=\"M8.8546 7.89636C10.016 7.48419 10.9198 6.25094 10.9198 4.55665C10.9198 1.73174 8.8546 0.267151 5.55094 0.267151H0V16.0387H6.06765C9.37131 16.0387 11.4365 14.4715 11.4365 11.5179C11.4365 9.84806 10.3522 8.38347 8.8546 7.89636ZM2.60815 2.58051H5.52469C7.3586 2.58051 8.33953 3.22239 8.33953 4.71141C8.33953 6.20044 7.3586 6.89445 5.52469 6.89445H2.60815V2.58051ZM6.01515 13.727H2.60815V9.10355H6.01515C7.82282 9.10355 8.80375 9.97676 8.80375 11.4153C8.80375 12.8538 7.82282 13.727 6.01515 13.727Z\" fill=\"white\"/>\\n<path d=\"M56.528 0.267151H53.8428V16.0387H56.528V0.267151Z\" fill=\"white\"/>\\n<path d=\"M29.8986 9.77149V0.267151H27.2133V9.46358C27.2133 12.4954 25.9224 13.9078 23.5472 13.9078C21.1719 13.9078 19.881 12.4954 19.881 9.46358V0.267151H17.1957V9.74705C17.1957 14.0871 19.7776 16.2961 23.5472 16.2961C27.3167 16.2961 29.8986 14.0871 29.8986 9.77149Z\" fill=\"white\"/>\\n<path d=\"M77.6639 0.267178H75.0837V10.3515L64.1885 0.0211792V16.0388H66.7753V5.78015L77.6639 16.2848V0.267178Z\" fill=\"white\"/>\\n<path d=\"M31.7736 34.1612L20.9587 23.9987V39.7589H23.5259V29.6648L34.3341 40V24.2382H31.7736V34.1612Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1359_3028\">\\n<rect width=\"127.619\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-paq0ki\",\"data-styles-preset\":\"WheEd54xC\",children:\"How a TikToker famous for his pet dubecamecks  Pearpop's top earner from brand deals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-paq0ki\",\"data-styles-preset\":\"WheEd54xC\",children:\"How a TikToker famous for his pet ducks became Pearpop's top earner from brand deals\"})}),className:\"framer-nnre06\",\"data-framer-name\":\"The Largest & \\u2028Fastest Growing \\u2028Creator Community\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.businessinsider.com/how-tiktoker-with-pet-ducks-made-over-178k-on-pearpop-2022-7\",motionChild:true,nodeId:\"WKeo7ZlDa\",openInNewTab:true,scopeId:\"Z3DqoBYW1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-28albb\",\"data-styles-preset\":\"NB5SOovTS\",children:\"Read More\"})})})}),className:\"framer-1q6xhx3\",\"data-framer-name\":\"link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iiahph\",\"data-framer-name\":\"join the team wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15p605v\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k0xc06\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wiu39h\",\"data-styles-preset\":\"jpUxHtncG\",children:\"Join The Team\"})}),className:\"framer-g84e8i\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1emf7or\",\"data-styles-preset\":\"NHCeppDVi\",children:\"We believe in encouraging you to create your own career. From engineering, to marketing, to business development and design, we\u2019re always seeking the best and brightest talent to join our team!\"})}),className:\"framer-hq5ro0\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1emf7or\",\"data-styles-preset\":\"NHCeppDVi\",children:[\"For opportunities, contact us at \",/*#__PURE__*/_jsx(Link,{href:\"mailto:careers@pearpop.com\",motionChild:true,nodeId:\"XAaAymn89\",openInNewTab:false,scopeId:\"Z3DqoBYW1\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-28albb\",\"data-styles-preset\":\"NB5SOovTS\",children:\"careers@pearpop.com\"})}),\" or click to view our job board.\"]})}),className:\"framer-1s6gdng\",\"data-framer-name\":\"We helped Taco Bell intercept the stale landscape of football food, enlisting 22 creators to sell out this limited edition menu item in 2 weeks, flat.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wzjgvQunq\"},implicitPathVariables:undefined},{href:{webPageId:\"wzjgvQunq\"},implicitPathVariables:undefined},{href:{webPageId:\"wzjgvQunq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+4213+0+0+64+368+0+480}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aoe4c5-container\",nodeId:\"BRMNT8W2W\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{eZoS6M5ml:resolvedLinks[1]},hFjw46qEX:{eZoS6M5ml:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{c4EvubInh:\"Join the Team\",eZoS6M5ml:resolvedLinks[0],FlGxVfKzp:false,height:\"100%\",id:\"BRMNT8W2W\",layoutId:\"BRMNT8W2W\",variant:\"xtMDiyzQg\",width:\"100%\",y6yhREPqQ:false})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:902,pixelHeight:1150,pixelWidth:902,positionX:\"center\",positionY:\"center\",sizes:\"297px\",src:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png\",srcSet:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png?scale-down-to=1024 803w,https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png 902w\"}},hFjw46qEX:{__framer__enter:animation11,__framer__exit:animation15,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:902,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4213+0+0+64+0),pixelHeight:1150,pixelWidth:902,positionX:\"center\",positionY:\"center\",sizes:\"250.6502px\",src:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png\",srcSet:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png?scale-down-to=1024 803w,https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png 902w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1150,intrinsicWidth:902,pixelHeight:1150,pixelWidth:902,positionX:\"center\",positionY:\"center\",sizes:\"451px\",src:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png\",srcSet:\"https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png?scale-down-to=1024 803w,https://framerusercontent.com/images/lHJjP3NlMR0M0SFpLjLAfSocIuE.png 902w\"},className:\"framer-zzcbkq\",\"data-framer-name\":\"Vector\",style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10607es\",\"data-framer-name\":\"bottom action\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ew57oh\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ilg38o\",\"data-framer-name\":\"actions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rk5bme\",\"data-framer-name\":\"CTA1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",style:{\"--framer-text-alignment\":\"center\"},children:\"FOR BRANDS\"})}),className:\"framer-oaihwl\",\"data-framer-name\":\"Benefit 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-zy3wv6\",\"data-styles-preset\":\"A4Pns1nUK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85bdbb53-9d3c-40c5-adc8-b110653018dc, rgb(169, 240, 5))\"},children:[\"Creator Collaboration,\",/*#__PURE__*/_jsx(\"br\",{}),\"At Scale\",/*#__PURE__*/_jsx(\"br\",{}),\" \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-zy3wv6\",\"data-styles-preset\":\"A4Pns1nUK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85bdbb53-9d3c-40c5-adc8-b110653018dc, rgb(169, 240, 5))\"},children:[\"Creator Collaboration,\",/*#__PURE__*/_jsx(\"br\",{}),\"At Scale\"]})}),className:\"framer-vfvej4\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Rhoncus viverra platea suspendisse quis porta aliquet non a etiam. Sapien turpis sed elit in tellus quam. Ac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ej4in\",\"data-framer-name\":\"btn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Hco2vQc9G\"},implicitPathVariables:undefined},{href:{webPageId:\"Hco2vQc9G\"},implicitPathVariables:undefined},{href:{webPageId:\"Hco2vQc9G\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+5237+64+0+0+0+0+0+0+168+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4d7e3s-container\",nodeId:\"fCcLjG4A_\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{eZoS6M5ml:resolvedLinks1[1]},hFjw46qEX:{eZoS6M5ml:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{c4EvubInh:\"Book a Demo\",eZoS6M5ml:resolvedLinks1[0],FlGxVfKzp:false,height:\"100%\",id:\"fCcLjG4A_\",layoutId:\"fCcLjG4A_\",variant:\"xtMDiyzQg\",width:\"100%\",y6yhREPqQ:false})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nsxcqf\",\"data-framer-name\":\"CTA2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1i5t9sn\",\"data-styles-preset\":\"bDr5DdA_P\",style:{\"--framer-text-alignment\":\"center\"},children:\"FOR CREATORS\"})}),className:\"framer-u27c91\",\"data-framer-name\":\"Benefit 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-zy3wv6\",\"data-styles-preset\":\"A4Pns1nUK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85bdbb53-9d3c-40c5-adc8-b110653018dc, rgb(169, 240, 5))\"},children:\"Where Creators Earn a Living Doing What They Love\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-zy3wv6\",\"data-styles-preset\":\"A4Pns1nUK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-85bdbb53-9d3c-40c5-adc8-b110653018dc, rgb(169, 240, 5))\"},children:[\"Where Creators Earn a Living\",/*#__PURE__*/_jsx(\"br\",{}),\"Doing What They Love\"]})}),className:\"framer-myke28\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Rhoncus viverra platea suspendisse quis porta aliquet non a etiam. Sapien turpis sed elit in tellus quam. Ac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uxh8mg\",\"data-framer-name\":\"btn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sD7vEsV_u\"},implicitPathVariables:undefined},{href:{webPageId:\"sD7vEsV_u\"},implicitPathVariables:undefined},{href:{webPageId:\"sD7vEsV_u\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+5237+64+0+0+0+0+296+0+168+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5cpzb-container\",nodeId:\"gVfUdvrFB\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CziMSSdBk:{eZoS6M5ml:resolvedLinks2[1]},hFjw46qEX:{eZoS6M5ml:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{c4EvubInh:\"Start Earning\",eZoS6M5ml:resolvedLinks2[0],FlGxVfKzp:false,height:\"100%\",id:\"gVfUdvrFB\",layoutId:\"gVfUdvrFB\",variant:\"xtMDiyzQg\",width:\"100%\",y6yhREPqQ:false})})})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{y:(componentViewport?.y||0)+0+5893}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hw7r91-container\",nodeId:\"R8_6gRoZ_\",scopeId:\"Z3DqoBYW1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFjw46qEX:{variant:\"gS5izhDbA\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"R8_6gRoZ_\",layoutId:\"R8_6gRoZ_\",style:{width:\"100%\"},variant:\"myZQqvJti\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B0PY8.framer-116m8oi, .framer-B0PY8 .framer-116m8oi { display: block; }\",\".framer-B0PY8.framer-kp9k9t { align-content: center; align-items: center; background-color: var(--token-5f3e3840-4ba1-4a77-8d8a-2c6e743e57d2, #002502); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-B0PY8 .framer-ha51y1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-B0PY8 .framer-18kcd5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; max-height: 1980px; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-9zudiu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 95%; z-index: 2; }\",\".framer-B0PY8 .framer-eb0coy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-B0PY8 .framer-3veod2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 162%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-yqyugj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 147%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-122amcj { aspect-ratio: 1.1347826086956523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 571px); overflow: visible; position: relative; width: 648px; }\",\".framer-B0PY8 .framer-3eg5jr { flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 18%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-B0PY8 .framer-ddwa7k-container { aspect-ratio: 2.129597197898424 / 1; flex: none; height: 100vh; left: 50%; opacity: 0.8; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 1704px); z-index: 1; }\",\".framer-B0PY8 .framer-1rzkfcc { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-1czhwja, .framer-B0PY8 .framer-15p605v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 95%; }\",\".framer-B0PY8 .framer-1sflo8p { flex: none; height: 583px; overflow: visible; position: relative; width: 465px; }\",\".framer-B0PY8 .framer-9kxlln-container { flex: none; height: 553px; left: calc(49.89247311827959% - 435px / 2); position: absolute; top: calc(49.91423670668956% - 553px / 2); width: 435px; }\",\".framer-B0PY8 .framer-16m6xlz { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-B0PY8 .framer-fc1oo9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-B0PY8 .framer-xz0i7v, .framer-B0PY8 .framer-7qocf6, .framer-B0PY8 .framer-9ti2xc, .framer-B0PY8 .framer-pp3pfz, .framer-B0PY8 .framer-g84e8i, .framer-B0PY8 .framer-hq5ro0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-d6yn7y, .framer-B0PY8 .framer-1iiahph { align-content: center; align-items: center; background-color: var(--token-46fa577d-3711-4e51-91cd-e39300ef70e3, #001b00); 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-B0PY8 .framer-395xz4, .framer-B0PY8 .framer-k0xc06 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-B0PY8 .framer-1t606w { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-B0PY8 .framer-1cue9fb, .framer-B0PY8 .framer-cu2ks9, .framer-B0PY8 .framer-9yhl8, .framer-B0PY8 .framer-doa1ru, .framer-B0PY8 .framer-1wslunh, .framer-B0PY8 .framer-16gkuls, .framer-B0PY8 .framer-1svfpkb, .framer-B0PY8 .framer-1xadi0w, .framer-B0PY8 .framer-1lzjewu, .framer-B0PY8 .framer-1q6xhx3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B0PY8 .framer-jsni5o { flex: none; height: 40px; position: relative; width: 238px; }\",\".framer-B0PY8 .framer-id3bsr-container, .framer-B0PY8 .framer-aoe4c5-container, .framer-B0PY8 .framer-4d7e3s-container, .framer-B0PY8 .framer-1l5cpzb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-B0PY8 .framer-163t7s0 { aspect-ratio: 0.7370517928286853 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 502px); position: relative; width: 370px; }\",\".framer-B0PY8 .framer-13pjqal { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-46rph7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-B0PY8 .framer-1kkz23p, .framer-B0PY8 .framer-1qfh1q2, .framer-B0PY8 .framer-1851h6k { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-B0PY8 .framer-ximoz4, .framer-B0PY8 .framer-sddmyy, .framer-B0PY8 .framer-1pll01a, .framer-B0PY8 .framer-axwnt { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-14x3lk9 { flex: none; height: 40px; position: relative; width: 280px; }\",\".framer-B0PY8 .framer-qkgo3i, .framer-B0PY8 .framer-mv0b3n, .framer-B0PY8 .framer-1nc7afn, .framer-B0PY8 .framer-nnre06 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-xv8kse { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 232px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-B0PY8 .framer-1aumw1p { flex: none; height: 40px; position: relative; width: 266px; }\",\".framer-B0PY8 .framer-1h62bxv { flex: none; height: 40px; position: relative; width: 165px; }\",\".framer-B0PY8 .framer-c5dw3s { flex: none; height: 40px; position: relative; width: 128px; }\",\".framer-B0PY8 .framer-1s6gdng { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-zzcbkq { flex: none; height: 575px; position: relative; width: 451px; }\",\".framer-B0PY8 .framer-10607es { align-content: center; align-items: center; background-color: var(--token-ce91d6f9-8b7d-427b-9f9e-736782af23c4, #007a00); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-1ew57oh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-B0PY8 .framer-ilg38o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B0PY8 .framer-rk5bme, .framer-B0PY8 .framer-nsxcqf { 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: 0px; position: relative; width: min-content; }\",\".framer-B0PY8 .framer-oaihwl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 269px; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-vfvej4, .framer-B0PY8 .framer-myke28 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 450px; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-3ej4in, .framer-B0PY8 .framer-1uxh8mg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-B0PY8 .framer-u27c91 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-B0PY8 .framer-1hw7r91-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B0PY8.framer-kp9k9t, .framer-B0PY8 .framer-18kcd5w, .framer-B0PY8 .framer-eb0coy, .framer-B0PY8 .framer-1rzkfcc, .framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-fc1oo9, .framer-B0PY8 .framer-d6yn7y, .framer-B0PY8 .framer-1czhwja, .framer-B0PY8 .framer-395xz4, .framer-B0PY8 .framer-1t606w, .framer-B0PY8 .framer-13pjqal, .framer-B0PY8 .framer-46rph7, .framer-B0PY8 .framer-1kkz23p, .framer-B0PY8 .framer-ximoz4, .framer-B0PY8 .framer-xv8kse, .framer-B0PY8 .framer-sddmyy, .framer-B0PY8 .framer-1qfh1q2, .framer-B0PY8 .framer-1pll01a, .framer-B0PY8 .framer-1851h6k, .framer-B0PY8 .framer-axwnt, .framer-B0PY8 .framer-1iiahph, .framer-B0PY8 .framer-15p605v, .framer-B0PY8 .framer-k0xc06, .framer-B0PY8 .framer-10607es, .framer-B0PY8 .framer-1ew57oh, .framer-B0PY8 .framer-rk5bme, .framer-B0PY8 .framer-3ej4in, .framer-B0PY8 .framer-nsxcqf, .framer-B0PY8 .framer-1uxh8mg { gap: 0px; } .framer-B0PY8.framer-kp9k9t > *, .framer-B0PY8 .framer-18kcd5w > *, .framer-B0PY8 .framer-eb0coy > *, .framer-B0PY8 .framer-1rzkfcc > *, .framer-B0PY8 .framer-d6yn7y > *, .framer-B0PY8 .framer-1iiahph > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B0PY8.framer-kp9k9t > :first-child, .framer-B0PY8 .framer-18kcd5w > :first-child, .framer-B0PY8 .framer-eb0coy > :first-child, .framer-B0PY8 .framer-1rzkfcc > :first-child, .framer-B0PY8 .framer-fc1oo9 > :first-child, .framer-B0PY8 .framer-d6yn7y > :first-child, .framer-B0PY8 .framer-395xz4 > :first-child, .framer-B0PY8 .framer-1t606w > :first-child, .framer-B0PY8 .framer-13pjqal > :first-child, .framer-B0PY8 .framer-1kkz23p > :first-child, .framer-B0PY8 .framer-ximoz4 > :first-child, .framer-B0PY8 .framer-xv8kse > :first-child, .framer-B0PY8 .framer-sddmyy > :first-child, .framer-B0PY8 .framer-1qfh1q2 > :first-child, .framer-B0PY8 .framer-1pll01a > :first-child, .framer-B0PY8 .framer-1851h6k > :first-child, .framer-B0PY8 .framer-axwnt > :first-child, .framer-B0PY8 .framer-1iiahph > :first-child, .framer-B0PY8 .framer-k0xc06 > :first-child, .framer-B0PY8 .framer-10607es > :first-child, .framer-B0PY8 .framer-1ew57oh > :first-child, .framer-B0PY8 .framer-rk5bme > :first-child, .framer-B0PY8 .framer-nsxcqf > :first-child { margin-top: 0px; } .framer-B0PY8.framer-kp9k9t > :last-child, .framer-B0PY8 .framer-18kcd5w > :last-child, .framer-B0PY8 .framer-eb0coy > :last-child, .framer-B0PY8 .framer-1rzkfcc > :last-child, .framer-B0PY8 .framer-fc1oo9 > :last-child, .framer-B0PY8 .framer-d6yn7y > :last-child, .framer-B0PY8 .framer-395xz4 > :last-child, .framer-B0PY8 .framer-1t606w > :last-child, .framer-B0PY8 .framer-13pjqal > :last-child, .framer-B0PY8 .framer-1kkz23p > :last-child, .framer-B0PY8 .framer-ximoz4 > :last-child, .framer-B0PY8 .framer-xv8kse > :last-child, .framer-B0PY8 .framer-sddmyy > :last-child, .framer-B0PY8 .framer-1qfh1q2 > :last-child, .framer-B0PY8 .framer-1pll01a > :last-child, .framer-B0PY8 .framer-1851h6k > :last-child, .framer-B0PY8 .framer-axwnt > :last-child, .framer-B0PY8 .framer-1iiahph > :last-child, .framer-B0PY8 .framer-k0xc06 > :last-child, .framer-B0PY8 .framer-10607es > :last-child, .framer-B0PY8 .framer-1ew57oh > :last-child, .framer-B0PY8 .framer-rk5bme > :last-child, .framer-B0PY8 .framer-nsxcqf > :last-child { margin-bottom: 0px; } .framer-B0PY8 .framer-162dnfb > *, .framer-B0PY8 .framer-1czhwja > *, .framer-B0PY8 .framer-15p605v > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-B0PY8 .framer-162dnfb > :first-child, .framer-B0PY8 .framer-1czhwja > :first-child, .framer-B0PY8 .framer-46rph7 > :first-child, .framer-B0PY8 .framer-15p605v > :first-child, .framer-B0PY8 .framer-3ej4in > :first-child, .framer-B0PY8 .framer-1uxh8mg > :first-child { margin-left: 0px; } .framer-B0PY8 .framer-162dnfb > :last-child, .framer-B0PY8 .framer-1czhwja > :last-child, .framer-B0PY8 .framer-46rph7 > :last-child, .framer-B0PY8 .framer-15p605v > :last-child, .framer-B0PY8 .framer-3ej4in > :last-child, .framer-B0PY8 .framer-1uxh8mg > :last-child { margin-right: 0px; } .framer-B0PY8 .framer-fc1oo9 > *, .framer-B0PY8 .framer-13pjqal > *, .framer-B0PY8 .framer-1kkz23p > *, .framer-B0PY8 .framer-xv8kse > *, .framer-B0PY8 .framer-1qfh1q2 > *, .framer-B0PY8 .framer-1851h6k > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-B0PY8 .framer-395xz4 > *, .framer-B0PY8 .framer-k0xc06 > *, .framer-B0PY8 .framer-1ew57oh > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-B0PY8 .framer-1t606w > *, .framer-B0PY8 .framer-ximoz4 > *, .framer-B0PY8 .framer-sddmyy > *, .framer-B0PY8 .framer-1pll01a > *, .framer-B0PY8 .framer-axwnt > *, .framer-B0PY8 .framer-rk5bme > *, .framer-B0PY8 .framer-nsxcqf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-B0PY8 .framer-46rph7 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-B0PY8 .framer-10607es > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-B0PY8 .framer-3ej4in > *, .framer-B0PY8 .framer-1uxh8mg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-B0PY8.framer-kp9k9t { width: 810px; } .framer-B0PY8 .framer-18kcd5w { padding: 160px 0px 40px 0px; } .framer-B0PY8 .framer-9zudiu { gap: 50px; justify-content: flex-start; } .framer-B0PY8 .framer-eb0coy { align-self: stretch; height: auto; order: 0; width: 421px; z-index: 1; } .framer-B0PY8 .framer-3veod2 { left: 0px; order: 0; position: absolute; right: -114px; top: 99px; width: unset; z-index: 1; } .framer-B0PY8 .framer-yqyugj { bottom: 95px; order: 1; position: absolute; right: -65px; width: 486px; z-index: 1; } .framer-B0PY8 .framer-122amcj { height: var(--framer-aspect-ratio-supported, 442px); order: 1; width: 501px; } .framer-B0PY8 .framer-ddwa7k-container { left: 93%; width: var(--framer-aspect-ratio-supported, 426px); } .framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-1czhwja { gap: 48px; padding: 80px 0px 80px 0px; } .framer-B0PY8 .framer-1sflo8p { height: 395px; order: 0; width: 315px; } .framer-B0PY8 .framer-9kxlln-container { bottom: 0px; height: unset; left: 6px; right: 6px; top: 10px; width: unset; } .framer-B0PY8 .framer-16m6xlz { bottom: -10px; left: -4px; right: -4px; } .framer-B0PY8 .framer-fc1oo9 { order: 1; } .framer-B0PY8 .framer-7qocf6, .framer-B0PY8 .framer-hq5ro0, .framer-B0PY8 .framer-1s6gdng { width: 90%; } .framer-B0PY8 .framer-9ti2xc { width: 70%; } .framer-B0PY8 .framer-1cue9fb, .framer-B0PY8 .framer-9yhl8, .framer-B0PY8 .framer-doa1ru, .framer-B0PY8 .framer-1wslunh, .framer-B0PY8 .framer-16gkuls, .framer-B0PY8 .framer-1svfpkb, .framer-B0PY8 .framer-1xadi0w, .framer-B0PY8 .framer-1lzjewu, .framer-B0PY8 .framer-1q6xhx3 { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-B0PY8 .framer-cu2ks9 { white-space: pre-wrap; width: 252px; word-break: break-word; word-wrap: break-word; } .framer-B0PY8 .framer-163t7s0 { height: var(--framer-aspect-ratio-supported, 456px); width: 336px; } .framer-B0PY8 .framer-46rph7 { width: 770px; } .framer-B0PY8 .framer-1kkz23p, .framer-B0PY8 .framer-xv8kse, .framer-B0PY8 .framer-1qfh1q2, .framer-B0PY8 .framer-1851h6k { width: 340px; } .framer-B0PY8 .framer-15p605v { gap: 32px; padding: 80px 0px 80px 0px; } .framer-B0PY8 .framer-k0xc06 { gap: 48px; width: 50%; } .framer-B0PY8 .framer-zzcbkq { height: 379px; width: 297px; } .framer-B0PY8 .framer-10607es { padding: 80px 0px 80px 0px; } .framer-B0PY8 .framer-rk5bme, .framer-B0PY8 .framer-nsxcqf { width: 50%; } .framer-B0PY8 .framer-vfvej4 { width: 100%; } .framer-B0PY8 .framer-3ej4in, .framer-B0PY8 .framer-1uxh8mg { padding: 0px; } .framer-B0PY8 .framer-myke28 { width: 385px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B0PY8 .framer-9zudiu, .framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-1czhwja, .framer-B0PY8 .framer-15p605v, .framer-B0PY8 .framer-k0xc06 { gap: 0px; } .framer-B0PY8 .framer-9zudiu > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-B0PY8 .framer-9zudiu > :first-child, .framer-B0PY8 .framer-162dnfb > :first-child, .framer-B0PY8 .framer-1czhwja > :first-child, .framer-B0PY8 .framer-15p605v > :first-child { margin-left: 0px; } .framer-B0PY8 .framer-9zudiu > :last-child, .framer-B0PY8 .framer-162dnfb > :last-child, .framer-B0PY8 .framer-1czhwja > :last-child, .framer-B0PY8 .framer-15p605v > :last-child { margin-right: 0px; } .framer-B0PY8 .framer-162dnfb > *, .framer-B0PY8 .framer-1czhwja > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-B0PY8 .framer-15p605v > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-B0PY8 .framer-k0xc06 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-B0PY8 .framer-k0xc06 > :first-child { margin-top: 0px; } .framer-B0PY8 .framer-k0xc06 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-B0PY8.framer-kp9k9t { width: 390px; } .framer-B0PY8 .framer-18kcd5w { gap: 32px; padding: 80px 0px 0px 0px; } .framer-B0PY8 .framer-9zudiu { flex-direction: column; gap: 40px; justify-content: flex-start; width: 90%; } .framer-B0PY8 .framer-eb0coy { align-content: center; align-items: center; order: 1; width: 100%; } .framer-B0PY8 .framer-3veod2, .framer-B0PY8 .framer-yqyugj, .framer-B0PY8 .framer-qkgo3i, .framer-B0PY8 .framer-mv0b3n, .framer-B0PY8 .framer-1nc7afn, .framer-B0PY8 .framer-nnre06, .framer-B0PY8 .framer-vfvej4, .framer-B0PY8 .framer-myke28 { width: 100%; } .framer-B0PY8 .framer-ddwa7k-container { left: 151%; width: var(--framer-aspect-ratio-supported, 426px); } .framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-1czhwja { flex-direction: column; gap: 48px; justify-content: flex-start; padding: 48px 0px 64px 0px; width: 90%; } .framer-B0PY8 .framer-1sflo8p { height: 342px; order: 1; width: 273px; } .framer-B0PY8 .framer-9kxlln-container { bottom: 15px; height: unset; left: 15px; right: 15px; top: 15px; width: unset; } .framer-B0PY8 .framer-16m6xlz { bottom: 7px; left: 6px; right: 6px; top: 8px; } .framer-B0PY8 .framer-fc1oo9 { gap: 24px; order: 0; width: 100%; } .framer-B0PY8 .framer-395xz4 { gap: 48px; width: 100%; } .framer-B0PY8 .framer-jsni5o { height: 28px; width: 167px; } .framer-B0PY8 .framer-163t7s0 { height: var(--framer-aspect-ratio-supported, 379px); width: 279px; } .framer-B0PY8 .framer-13pjqal { flex-wrap: nowrap; gap: 0px; padding: 56px 0px 56px 0px; } .framer-B0PY8 .framer-46rph7 { flex-direction: column; flex-wrap: nowrap; gap: 56px; justify-content: flex-start; width: 85%; } .framer-B0PY8 .framer-1kkz23p, .framer-B0PY8 .framer-1qfh1q2, .framer-B0PY8 .framer-1851h6k { gap: 24px; width: 100%; } .framer-B0PY8 .framer-ximoz4, .framer-B0PY8 .framer-sddmyy, .framer-B0PY8 .framer-1pll01a, .framer-B0PY8 .framer-axwnt { gap: 16px; } .framer-B0PY8 .framer-14x3lk9 { aspect-ratio: 7 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 168px; } .framer-B0PY8 .framer-xv8kse { gap: 24px; height: min-content; width: 100%; } .framer-B0PY8 .framer-1aumw1p { aspect-ratio: 6.65 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 160px; } .framer-B0PY8 .framer-1h62bxv { aspect-ratio: 4.125 / 1; height: var(--framer-aspect-ratio-supported, 32px); width: 132px; } .framer-B0PY8 .framer-c5dw3s { aspect-ratio: 3.2 / 1; height: var(--framer-aspect-ratio-supported, 40px); } .framer-B0PY8 .framer-15p605v { flex-direction: column; gap: 48px; justify-content: flex-start; padding: 64px 0px 64px 0px; width: 90%; } .framer-B0PY8 .framer-k0xc06 { gap: 32px; order: 1; width: 100%; } .framer-B0PY8 .framer-zzcbkq { aspect-ratio: 0.7832817337461301 / 1; height: var(--framer-aspect-ratio-supported, 320px); order: 0; width: 251px; } .framer-B0PY8 .framer-10607es { padding: 64px 0px 64px 0px; } .framer-B0PY8 .framer-ilg38o { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-B0PY8 .framer-rk5bme, .framer-B0PY8 .framer-nsxcqf { gap: 16px; width: 100%; } .framer-B0PY8 .framer-3ej4in, .framer-B0PY8 .framer-1uxh8mg { padding: 16px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B0PY8 .framer-18kcd5w, .framer-B0PY8 .framer-9zudiu, .framer-B0PY8 .framer-162dnfb, .framer-B0PY8 .framer-fc1oo9, .framer-B0PY8 .framer-1czhwja, .framer-B0PY8 .framer-395xz4, .framer-B0PY8 .framer-13pjqal, .framer-B0PY8 .framer-46rph7, .framer-B0PY8 .framer-1kkz23p, .framer-B0PY8 .framer-ximoz4, .framer-B0PY8 .framer-xv8kse, .framer-B0PY8 .framer-sddmyy, .framer-B0PY8 .framer-1qfh1q2, .framer-B0PY8 .framer-1pll01a, .framer-B0PY8 .framer-1851h6k, .framer-B0PY8 .framer-axwnt, .framer-B0PY8 .framer-15p605v, .framer-B0PY8 .framer-k0xc06, .framer-B0PY8 .framer-ilg38o, .framer-B0PY8 .framer-rk5bme, .framer-B0PY8 .framer-nsxcqf { gap: 0px; } .framer-B0PY8 .framer-18kcd5w > *, .framer-B0PY8 .framer-k0xc06 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-B0PY8 .framer-18kcd5w > :first-child, .framer-B0PY8 .framer-9zudiu > :first-child, .framer-B0PY8 .framer-162dnfb > :first-child, .framer-B0PY8 .framer-fc1oo9 > :first-child, .framer-B0PY8 .framer-1czhwja > :first-child, .framer-B0PY8 .framer-395xz4 > :first-child, .framer-B0PY8 .framer-13pjqal > :first-child, .framer-B0PY8 .framer-46rph7 > :first-child, .framer-B0PY8 .framer-1kkz23p > :first-child, .framer-B0PY8 .framer-ximoz4 > :first-child, .framer-B0PY8 .framer-xv8kse > :first-child, .framer-B0PY8 .framer-sddmyy > :first-child, .framer-B0PY8 .framer-1qfh1q2 > :first-child, .framer-B0PY8 .framer-1pll01a > :first-child, .framer-B0PY8 .framer-1851h6k > :first-child, .framer-B0PY8 .framer-axwnt > :first-child, .framer-B0PY8 .framer-15p605v > :first-child, .framer-B0PY8 .framer-k0xc06 > :first-child, .framer-B0PY8 .framer-ilg38o > :first-child, .framer-B0PY8 .framer-rk5bme > :first-child, .framer-B0PY8 .framer-nsxcqf > :first-child { margin-top: 0px; } .framer-B0PY8 .framer-18kcd5w > :last-child, .framer-B0PY8 .framer-9zudiu > :last-child, .framer-B0PY8 .framer-162dnfb > :last-child, .framer-B0PY8 .framer-fc1oo9 > :last-child, .framer-B0PY8 .framer-1czhwja > :last-child, .framer-B0PY8 .framer-395xz4 > :last-child, .framer-B0PY8 .framer-13pjqal > :last-child, .framer-B0PY8 .framer-46rph7 > :last-child, .framer-B0PY8 .framer-1kkz23p > :last-child, .framer-B0PY8 .framer-ximoz4 > :last-child, .framer-B0PY8 .framer-xv8kse > :last-child, .framer-B0PY8 .framer-sddmyy > :last-child, .framer-B0PY8 .framer-1qfh1q2 > :last-child, .framer-B0PY8 .framer-1pll01a > :last-child, .framer-B0PY8 .framer-1851h6k > :last-child, .framer-B0PY8 .framer-axwnt > :last-child, .framer-B0PY8 .framer-15p605v > :last-child, .framer-B0PY8 .framer-k0xc06 > :last-child, .framer-B0PY8 .framer-ilg38o > :last-child, .framer-B0PY8 .framer-rk5bme > :last-child, .framer-B0PY8 .framer-nsxcqf > :last-child { margin-bottom: 0px; } .framer-B0PY8 .framer-9zudiu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-B0PY8 .framer-162dnfb > *, .framer-B0PY8 .framer-1czhwja > *, .framer-B0PY8 .framer-395xz4 > *, .framer-B0PY8 .framer-15p605v > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-B0PY8 .framer-fc1oo9 > *, .framer-B0PY8 .framer-1kkz23p > *, .framer-B0PY8 .framer-xv8kse > *, .framer-B0PY8 .framer-1qfh1q2 > *, .framer-B0PY8 .framer-1851h6k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-B0PY8 .framer-13pjqal > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B0PY8 .framer-46rph7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-B0PY8 .framer-ximoz4 > *, .framer-B0PY8 .framer-sddmyy > *, .framer-B0PY8 .framer-1pll01a > *, .framer-B0PY8 .framer-axwnt > *, .framer-B0PY8 .framer-rk5bme > *, .framer-B0PY8 .framer-nsxcqf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-B0PY8 .framer-ilg38o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4580\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CziMSSdBk\":{\"layout\":[\"fixed\",\"auto\"]},\"hFjw46qEX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ZV88Beex4\":{\"pattern\":\":ZV88Beex4\",\"name\":\"newsroom\"},\"RJNA6AVRE\":{\"pattern\":\":RJNA6AVRE\",\"name\":\"product-benefit-text\"}}\n * @framerResponsiveScreen\n */const FramerZ3DqoBYW1=withCSS(Component,css,\"framer-B0PY8\");export default FramerZ3DqoBYW1;FramerZ3DqoBYW1.displayName=\"About Us\";FramerZ3DqoBYW1.defaultProps={height:4580,width:1280};addFonts(FramerZ3DqoBYW1,[{explicitInter:true,fonts:[{family:\"Raptor V3 Premium Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/htpMh721toLsOeVKPm715tmamg.otf\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{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\"}]},...TopNavigationFonts,...VideoFonts,...ButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ3DqoBYW1\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"ZV88Beex4\\\":{\\\"pattern\\\":\\\":ZV88Beex4\\\",\\\"name\\\":\\\"newsroom\\\"},\\\"RJNA6AVRE\\\":{\\\"pattern\\\":\\\":RJNA6AVRE\\\",\\\"name\\\":\\\"product-benefit-text\\\"}}\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CziMSSdBk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hFjw46qEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4580\"}},\"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", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TopNavigationFonts", "getFonts", "XIaMnlLC9_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "VideoFonts", "Video", "MotionDivWithFX", "motion", "RichTextWithFX", "ButtonFonts", "BIUQMZv1k_default", "ImageWithFX", "Image2", "FooterFonts", "YOrW85URN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transformTemplate1", "_", "t", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "transition7", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "SVG", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerZ3DqoBYW1", "withCSS", "Z3DqoBYW1_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
