{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/08qigmfcg9s1WW2PWixd/CwR3wrtWVWPcVToFkT9F/Fnq6Xgi2B.js", "ssg:https://framerusercontent.com/modules/62KnJ1bWFGBwgKSO1A6A/mSvh6jtg4rNOpK1XzYpU/fqQN6pJLC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,resolveLink,useActiveVariantCallback,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonNavMenu from\"https://framerusercontent.com/modules/m8Y7nzCyTZYkNaz6MB8x/2crl3C8mCFpkEB2H8edN/kuuvQe79a.js\";import ButtonNormal from\"https://framerusercontent.com/modules/ymjMG5OcXj8urS5Trgf1/5iP9NJS3omb2l37MY2WQ/okJNiZFxZ.js\";const ButtonNavMenuFonts=getFonts(ButtonNavMenu);const ButtonNormalFonts=getFonts(ButtonNormal);const cycleOrder=[\"CH4gJump2\",\"ZwiuLp3Lh\",\"uKWx6e7IL\"];const serializationHash=\"framer-9Ebnl\";const variantClassNames={CH4gJump2:\"framer-v-ebi0c5\",uKWx6e7IL:\"framer-v-ysk244\",ZwiuLp3Lh:\"framer-v-wze53\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Mobile - Base\":\"ZwiuLp3Lh\",\"Mobile - Open\":\"uKWx6e7IL\",Desktop:\"CH4gJump2\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CH4gJump2\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"CH4gJump2\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap1tn5tob=activeVariantCallback(async(...args)=>{setVariant(\"uKWx6e7IL\");});const taps810qo=activeVariantCallback(async(...args)=>{setVariant(\"ZwiuLp3Lh\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZwiuLp3Lh\",\"uKWx6e7IL\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ZwiuLp3Lh\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-9Ebnl\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-ebi0c5\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CH4gJump2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-840a2ce1-e72a-4bbc-bc1b-d7078d4b95e4, rgb(255, 255, 255))\",...style},...addPropertyOverrides({uKWx6e7IL:{\"data-framer-name\":\"Mobile - Open\"},ZwiuLp3Lh:{\"data-framer-name\":\"Mobile - Base\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-id2q8w\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"OCOLSEJaX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(68, 35, 191, 0.59)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-evxvtb\",\"data-framer-name\":\"Wrap\",layoutDependency:layoutDependency,layoutId:\"mEVZjGCUD\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nqwvXaT9P\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qal84y framer-lv6n9b\",\"data-framer-name\":\"Logo Wrap\",layoutDependency:layoutDependency,layoutId:\"KnozkLzbF\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:106.5,intrinsicWidth:193,pixelHeight:213,pixelWidth:386,src:\"https://framerusercontent.com/images/HBl8RIUEBiKcneKg6hoAfbMkS8.png\"},className:\"framer-1kvmb2d\",\"data-framer-name\":\"Mask_group\",layoutDependency:layoutDependency,layoutId:\"a0E_ZrHYt\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bw7jwq-container\",layoutDependency:layoutDependency,layoutId:\"LX8DSGsCE-container\",children:/*#__PURE__*/_jsx(ButtonNavMenu,{height:\"100%\",id:\"LX8DSGsCE\",layoutId:\"LX8DSGsCE\",style:{height:\"100%\",width:\"100%\"},variant:\"r73HJMi0e\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{tap:taps810qo,variant:\"jt5zRQ_BP\"},ZwiuLp3Lh:{tap:tap1tn5tob}},baseVariant,gestureVariant)})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kpf0kv\",\"data-framer-name\":\"Nav Menu\",layoutDependency:layoutDependency,layoutId:\"WNyl0uzSq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o77i3r\",\"data-framer-name\":\"Nav Link Group\",layoutDependency:layoutDependency,layoutId:\"FA9IN4P1Q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9t9twg-container\",layoutDependency:layoutDependency,layoutId:\"Kcf5mtb68-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"nqwvXaT9P\"},router),height:\"100%\",id:\"Kcf5mtb68\",layoutId:\"Kcf5mtb68\",tV30g0sph:\"Home\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lqxf7p-container\",layoutDependency:layoutDependency,layoutId:\"QQGHdBScI-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"FmkrYAoz8\"},router),height:\"100%\",id:\"QQGHdBScI\",layoutId:\"QQGHdBScI\",tV30g0sph:\"About\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3aw8b-container\",layoutDependency:layoutDependency,layoutId:\"nA8ZOvvG9-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"qjDuQ54ur\"},router),height:\"100%\",id:\"nA8ZOvvG9\",layoutId:\"nA8ZOvvG9\",tV30g0sph:\"Services\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l1dgti-container\",layoutDependency:layoutDependency,layoutId:\"iYiUepZOR-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"xCHG0fz8I\"},router),height:\"100%\",id:\"iYiUepZOR\",layoutId:\"iYiUepZOR\",tV30g0sph:\"Case Studies\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-114nu8i-container\",layoutDependency:layoutDependency,layoutId:\"WpjLPR92k-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"gNK3AjRev\"},router),height:\"100%\",id:\"WpjLPR92k\",layoutId:\"WpjLPR92k\",tV30g0sph:\"Blog\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2wjtp5-container\",layoutDependency:layoutDependency,layoutId:\"hKxxpwK5H-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"h2LFv95i7\"},router),height:\"100%\",id:\"hKxxpwK5H\",layoutId:\"hKxxpwK5H\",tV30g0sph:\"Tech\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e21y31-container\",layoutDependency:layoutDependency,layoutId:\"qizHrJi2R-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"fqQN6pJLC\"},router),height:\"100%\",id:\"qizHrJi2R\",layoutId:\"qizHrJi2R\",tV30g0sph:\"Creators\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-im5ffg-container\",layoutDependency:layoutDependency,layoutId:\"cS1FqK4XK-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"we9kjN87B\"},router),height:\"100%\",id:\"cS1FqK4XK\",layoutId:\"cS1FqK4XK\",tV30g0sph:\"Jobs\",variant:\"x32iBFLpn\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{variant:\"OVsOsvQ_k\"}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gbm3di\",\"data-framer-name\":\"Nav Button Group\",layoutDependency:layoutDependency,layoutId:\"Zk9V_rhb4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6yvg5-container\",layoutDependency:layoutDependency,layoutId:\"dyD83RX2V-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:resolveLink({webPageId:\"tiUq8GkNR\"},router),height:\"100%\",id:\"dyD83RX2V\",layoutId:\"dyD83RX2V\",tV30g0sph:\"Book a demo\",variant:\"gJhbJbs5t\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1217ku8-container\",layoutDependency:layoutDependency,layoutId:\"cez5inOtz-container\",children:/*#__PURE__*/_jsx(ButtonNormal,{a2UFp2REk:\"https://creators.tatam.digital/\",height:\"100%\",id:\"cez5inOtz\",layoutId:\"cez5inOtz\",tV30g0sph:\"Login\",variant:\"epgcz3GNj\",width:\"100%\",...addPropertyOverrides({uKWx6e7IL:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})]})]})]})})})})});});const css=['.framer-9Ebnl [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9Ebnl .framer-lv6n9b { display: block; }\",\".framer-9Ebnl .framer-ebi0c5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 24px 0px 24px; position: relative; width: 1200px; }\",\".framer-9Ebnl .framer-id2q8w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-9Ebnl .framer-evxvtb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 59px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 112px; }\",\".framer-9Ebnl .framer-1qal84y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9Ebnl .framer-1kvmb2d { aspect-ratio: 1.812206572769953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 90px; }\",\".framer-9Ebnl .framer-1bw7jwq-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-9Ebnl .framer-kpf0kv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-9Ebnl .framer-1o77i3r { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-9Ebnl .framer-9t9twg-container, .framer-9Ebnl .framer-1lqxf7p-container, .framer-9Ebnl .framer-q3aw8b-container, .framer-9Ebnl .framer-l1dgti-container, .framer-9Ebnl .framer-114nu8i-container, .framer-9Ebnl .framer-2wjtp5-container, .framer-9Ebnl .framer-e21y31-container, .framer-9Ebnl .framer-im5ffg-container, .framer-9Ebnl .framer-m6yvg5-container, .framer-9Ebnl .framer-1217ku8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9Ebnl .framer-gbm3di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9Ebnl .framer-ebi0c5, .framer-9Ebnl .framer-evxvtb, .framer-9Ebnl .framer-1qal84y, .framer-9Ebnl .framer-1o77i3r, .framer-9Ebnl .framer-gbm3di { gap: 0px; } .framer-9Ebnl .framer-ebi0c5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9Ebnl .framer-ebi0c5 > :first-child, .framer-9Ebnl .framer-evxvtb > :first-child, .framer-9Ebnl .framer-1qal84y > :first-child, .framer-9Ebnl .framer-1o77i3r > :first-child, .framer-9Ebnl .framer-gbm3di > :first-child { margin-left: 0px; } .framer-9Ebnl .framer-ebi0c5 > :last-child, .framer-9Ebnl .framer-evxvtb > :last-child, .framer-9Ebnl .framer-1qal84y > :last-child, .framer-9Ebnl .framer-1o77i3r > :last-child, .framer-9Ebnl .framer-gbm3di > :last-child { margin-right: 0px; } .framer-9Ebnl .framer-evxvtb > *, .framer-9Ebnl .framer-gbm3di > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9Ebnl .framer-1qal84y > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-9Ebnl .framer-1o77i3r > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-9Ebnl.framer-v-wze53 .framer-ebi0c5 { flex-direction: column; overflow: visible; padding: 6px 24px 0px 24px; width: 390px; }\",\".framer-9Ebnl.framer-v-wze53 .framer-evxvtb { flex: 1 0 0px; gap: unset; height: min-content; justify-content: space-between; width: 1px; }\",\".framer-9Ebnl.framer-v-wze53 .framer-1qal84y { order: 0; }\",\".framer-9Ebnl.framer-v-wze53 .framer-1kvmb2d, .framer-9Ebnl.framer-v-ysk244 .framer-1kvmb2d { height: var(--framer-aspect-ratio-supported, 50px); }\",\".framer-9Ebnl.framer-v-wze53 .framer-1bw7jwq-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9Ebnl.framer-v-wze53 .framer-ebi0c5, .framer-9Ebnl.framer-v-wze53 .framer-evxvtb { gap: 0px; } .framer-9Ebnl.framer-v-wze53 .framer-ebi0c5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9Ebnl.framer-v-wze53 .framer-ebi0c5 > :first-child { margin-top: 0px; } .framer-9Ebnl.framer-v-wze53 .framer-ebi0c5 > :last-child { margin-bottom: 0px; } .framer-9Ebnl.framer-v-wze53 .framer-evxvtb > *, .framer-9Ebnl.framer-v-wze53 .framer-evxvtb > :first-child, .framer-9Ebnl.framer-v-wze53 .framer-evxvtb > :last-child { margin: 0px; } }\",\".framer-9Ebnl.framer-v-ysk244 .framer-ebi0c5 { overflow: visible; padding: 6px 24px 0px 24px; width: 390px; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-id2q8w { flex-direction: column; gap: 0px; justify-content: flex-start; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-evxvtb { gap: unset; height: min-content; justify-content: space-between; width: 100%; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-kpf0kv { align-content: start; align-items: start; flex: none; flex-direction: column; gap: 38px; justify-content: flex-start; padding: 24px 24px 24px 0px; width: 100%; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-1o77i3r { flex-direction: column; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-gbm3di { align-content: start; align-items: start; flex-direction: column; }\",\".framer-9Ebnl.framer-v-ysk244 .framer-1217ku8-container { align-self: stretch; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9Ebnl.framer-v-ysk244 .framer-id2q8w, .framer-9Ebnl.framer-v-ysk244 .framer-evxvtb, .framer-9Ebnl.framer-v-ysk244 .framer-kpf0kv, .framer-9Ebnl.framer-v-ysk244 .framer-1o77i3r, .framer-9Ebnl.framer-v-ysk244 .framer-gbm3di { gap: 0px; } .framer-9Ebnl.framer-v-ysk244 .framer-id2q8w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9Ebnl.framer-v-ysk244 .framer-id2q8w > :first-child, .framer-9Ebnl.framer-v-ysk244 .framer-kpf0kv > :first-child, .framer-9Ebnl.framer-v-ysk244 .framer-1o77i3r > :first-child, .framer-9Ebnl.framer-v-ysk244 .framer-gbm3di > :first-child { margin-top: 0px; } .framer-9Ebnl.framer-v-ysk244 .framer-id2q8w > :last-child, .framer-9Ebnl.framer-v-ysk244 .framer-kpf0kv > :last-child, .framer-9Ebnl.framer-v-ysk244 .framer-1o77i3r > :last-child, .framer-9Ebnl.framer-v-ysk244 .framer-gbm3di > :last-child { margin-bottom: 0px; } .framer-9Ebnl.framer-v-ysk244 .framer-evxvtb > *, .framer-9Ebnl.framer-v-ysk244 .framer-evxvtb > :first-child, .framer-9Ebnl.framer-v-ysk244 .framer-evxvtb > :last-child { margin: 0px; } .framer-9Ebnl.framer-v-ysk244 .framer-kpf0kv > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-9Ebnl.framer-v-ysk244 .framer-1o77i3r > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9Ebnl.framer-v-ysk244 .framer-gbm3di > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZwiuLp3Lh\":{\"layout\":[\"fixed\",\"auto\"]},\"uKWx6e7IL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerFnq6Xgi2B=withCSS(Component,css,\"framer-9Ebnl\");export default FramerFnq6Xgi2B;FramerFnq6Xgi2B.displayName=\"Nav Creators\";FramerFnq6Xgi2B.defaultProps={height:95,width:1200};addPropertyControls(FramerFnq6Xgi2B,{variant:{options:[\"CH4gJump2\",\"ZwiuLp3Lh\",\"uKWx6e7IL\"],optionTitles:[\"Desktop\",\"Mobile - Base\",\"Mobile - Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFnq6Xgi2B,[...ButtonNavMenuFonts,...ButtonNormalFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFnq6Xgi2B\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZwiuLp3Lh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uKWx6e7IL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"95\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fnq6Xgi2B.map", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,PropertyOverrides,RichText,SVG,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import NavCreators from\"#framer/local/canvasComponent/Fnq6Xgi2B/Fnq6Xgi2B.js\";import SectionFooter from\"#framer/local/canvasComponent/FvikQATYA/FvikQATYA.js\";import ButtonRightIcon from\"#framer/local/canvasComponent/rvlP7s5wj/rvlP7s5wj.js\";import FAQItem from\"#framer/local/canvasComponent/X6hoDUQfH/X6hoDUQfH.js\";import metadataProvider from\"#framer/local/webPageMetadata/fqQN6pJLC/fqQN6pJLC.js\";const NavCreatorsFonts=getFonts(NavCreators);const MotionDivWithFX=withFX(motion.div);const ButtonRightIconFonts=getFonts(ButtonRightIcon);const EmbedFonts=getFonts(Embed);const FAQItemFonts=getFonts(FAQItem);const SectionFooterFonts=getFonts(SectionFooter);const ContainerWithFX=withFX(Container);const cycleOrder=[\"uzKWZaSbN\",\"U0AFxIVsb\",\"H4qSBu5gf\",\"FpAGYcRfS\"];const breakpoints={FpAGYcRfS:\"(max-width: 809px)\",H4qSBu5gf:\"(min-width: 810px) and (max-width: 1199px)\",U0AFxIVsb:\"(min-width: 1200px) and (max-width: 1439px)\",uzKWZaSbN:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Qfa2H\";const variantClassNames={FpAGYcRfS:\"framer-v-vejnqo\",H4qSBu5gf:\"framer-v-1j9osq7\",U0AFxIVsb:\"framer-v-4echki\",uzKWZaSbN:\"framer-v-361j3s\"};const transitions={default:{duration:0}};const transition1={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,x:0,y:0};const animation3={opacity:0,rotate:0,scale:1,x:0,y:50};const animation4={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 1200\":\"U0AFxIVsb\",Desktop:\"uzKWZaSbN\",Phone:\"FpAGYcRfS\",Tablet:\"H4qSBu5gf\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uzKWZaSbN\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-Qfa2H`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-Qfa2H`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const id=useRouteElementId(\"ifAgYQfW7\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uzKWZaSbN\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-361j3s\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{animate:undefined,exit:undefined,initial:undefined,transformTemplate:undefined},H4qSBu5gf:{\"data-framer-appear-id\":\"nzpry2\",animate:optimizeAppear(\"animate\",\"nzpry2\",animation1,\"1j9osq7\"),initial:optimizeAppear(\"initial\",\"nzpry2\",animation2,\"1j9osq7\"),transformTemplate:optimizeAppearTransformTemplate(\"nzpry2\",transformTemplate1)},U0AFxIVsb:{\"data-framer-appear-id\":\"12qys67\",animate:optimizeAppear(\"animate\",\"12qys67\",animation1,\"4echki\"),initial:optimizeAppear(\"initial\",\"12qys67\",animation2,\"4echki\"),transformTemplate:optimizeAppearTransformTemplate(\"12qys67\",transformTemplate1)}},children:/*#__PURE__*/_jsx(motion.div,{animate:optimizeAppear(\"animate\",\"1yebtz8\",animation1,\"361j3s\"),className:\"framer-1yebtz8\",\"data-framer-appear-id\":\"1yebtz8\",\"data-framer-name\":\"Header\",exit:animation,initial:optimizeAppear(\"initial\",\"1yebtz8\",animation2,\"361j3s\"),name:\"Header\",transformTemplate:optimizeAppearTransformTemplate(\"1yebtz8\",transformTemplate1),children:/*#__PURE__*/_jsx(Container,{className:\"framer-19syo37-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{variant:\"ZwiuLp3Lh\"},H4qSBu5gf:{variant:\"ZwiuLp3Lh\"}},children:/*#__PURE__*/_jsx(NavCreators,{height:\"100%\",id:\"u7e8kiR5v\",layoutId:\"u7e8kiR5v\",style:{width:\"100%\"},variant:\"CH4gJump2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwdwwg\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qlq61t\",\"data-framer-name\":\"Container\",name:\"Container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8gbncu\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Creators\"})})},H4qSBu5gf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Creators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Creators\"})}),className:\"framer-1hd413g\",\"data-framer-name\":\"Contact our professional team\",fonts:[\"GF;Archivo-600\"],name:\"Contact our professional team\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"We sponsor great content creators, helping them fund their dreams and grow their business by bringing them amazing brand deals.\"})})},H4qSBu5gf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"We sponsor great content creators, helping them fund their dreams and grow their business by bringing them amazing brand deals.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"We sponsor great content creators, helping them fund their dreams and grow their business by bringing them amazing brand deals.\"})}),className:\"framer-1veayru\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",fonts:[\"GF;Archivo-regular\"],name:\"Lorem ipsum dolor sit amet, consectetur adipiscing.\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcomai\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qkvii\",\"data-framer-name\":\"datos\",name:\"datos\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mhd4d8\",\"data-framer-name\":\"bullets\",name:\"bullets\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frff5p\",\"data-framer-name\":\"Checklist\",name:\"Checklist\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e34kx6\",\"data-framer-name\":\"top\",name:\"top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9fx9zs\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Millions in creator payouts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Millions in creator payouts\"})}),className:\"framer-1hw5q39\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b0v4ii\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Global payments\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Global payments\"})}),className:\"framer-jwng10\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z6zoov\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fast Execution\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fast Execution\"})}),className:\"framer-1kc9895\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10j76qd\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easy process\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easy process\"})}),className:\"framer-1pe6imd\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14kepzh\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contract History\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contract History\"})}),className:\"framer-18bewyp\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2a23bm\",\"data-framer-name\":\"bottom\",name:\"bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mxxwct\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Invoice Tracking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Invoice Tracking\"})}),className:\"framer-1870e0v\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lh3tr\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Always-on Campaigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Always-on Campaigns\"})}),className:\"framer-1kkm0q4\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ckp3i2\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Simple & Open Briefs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Simple & Open Briefs\"})}),className:\"framer-ft3szm\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uaqlhb\",\"data-border\":true,\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data Transparency\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Data Transparency\"})}),className:\"framer-mn8hdi\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"Inter-Medium\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fqqg5z\",\"data-framer-name\":\"feature\",name:\"feature\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cxra70\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fgqdao\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xgs2iq\",\"data-framer-name\":\"Text Wrap\",name:\"Text Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dh9018\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Accessing our payments platform Talent Managers, Agents and Creators are able to keep track of all brand deals we\u2019ve made and access all our partnership\u2019s history in one place\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Accessing our payments platform Talent Managers, Agents and Creators are able to keep track of all brand deals we\u2019ve made and access all our partnership\u2019s history in one place\"})}),className:\"framer-1x9agsb\",fonts:[\"GF;Archivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jcdkjv\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6zh6bh\",\"data-framer-name\":\"Checklist\",name:\"Checklist\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a060zm\",\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19dfd3o\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dhfta4\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 15.5 C 3.858 15.5 0.5 12.142 0.5 8 C 0.5 3.858 3.858 0.5 8 0.5 C 12.142 0.5 15.5 3.858 15.5 8 C 15.5 12.142 12.142 15.5 8 15.5 Z\" fill=\"#a1f79b\"></path><path d=\"M 7.07 10.818 L 12.07 5.818 L 11.07 4.818 L 7.07 8.818 L 5.07 6.818 L 4.07 7.818 Z\" fill=\"#262626\"></path></svg>',svgContentId:4010138098,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by01MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Edit payment details.\"})}),className:\"framer-1rzx7ey\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"GF;Archivo-500\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7s5zw\",\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11wx0dn\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dn1tlx\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 15.5 C 3.858 15.5 0.5 12.142 0.5 8 C 0.5 3.858 3.858 0.5 8 0.5 C 12.142 0.5 15.5 3.858 15.5 8 C 15.5 12.142 12.142 15.5 8 15.5 Z\" fill=\"#a1f79b\"></path><path d=\"M 7.07 10.818 L 12.07 5.818 L 11.07 4.818 L 7.07 8.818 L 5.07 6.818 L 4.07 7.818 Z\" fill=\"#262626\"></path></svg>',svgContentId:4010138098,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by01MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Create and submit invoices.\"})}),className:\"framer-1vwd8xa\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"GF;Archivo-500\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vjn8gq\",\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6d183r\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dhwji0\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 15.5 C 3.858 15.5 0.5 12.142 0.5 8 C 0.5 3.858 3.858 0.5 8 0.5 C 12.142 0.5 15.5 3.858 15.5 8 C 15.5 12.142 12.142 15.5 8 15.5 Z\" fill=\"#a1f79b\"></path><path d=\"M 7.07 10.818 L 12.07 5.818 L 11.07 4.818 L 7.07 8.818 L 5.07 6.818 L 4.07 7.818 Z\" fill=\"#262626\"></path></svg>',svgContentId:4010138098,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by01MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Submit W8/W9.\"})}),className:\"framer-ohpy9g\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"GF;Archivo-500\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iwpsvb\",\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdfksn\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1066qfz\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 15.5 C 3.858 15.5 0.5 12.142 0.5 8 C 0.5 3.858 3.858 0.5 8 0.5 C 12.142 0.5 15.5 3.858 15.5 8 C 15.5 12.142 12.142 15.5 8 15.5 Z\" fill=\"#a1f79b\"></path><path d=\"M 7.07 10.818 L 12.07 5.818 L 11.07 4.818 L 7.07 8.818 L 5.07 6.818 L 4.07 7.818 Z\" fill=\"#262626\"></path></svg>',svgContentId:4010138098,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by01MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"See all signed agreements.\"})}),className:\"framer-hjhatz\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"GF;Archivo-500\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjsaq7\",\"data-framer-name\":\"Checklist Item\",name:\"Checklist Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bcnbap\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pncbbl\",\"data-framer-name\":\"Vector\",layout:\"position\",name:\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 15.5 C 3.858 15.5 0.5 12.142 0.5 8 C 0.5 3.858 3.858 0.5 8 0.5 C 12.142 0.5 15.5 3.858 15.5 8 C 15.5 12.142 12.142 15.5 8 15.5 Z\" fill=\"#a1f79b\"></path><path d=\"M 7.07 10.818 L 12.07 5.818 L 11.07 4.818 L 7.07 8.818 L 5.07 6.818 L 4.07 7.818 Z\" fill=\"#262626\"></path></svg>',svgContentId:4010138098,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by01MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.75px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Track payment dates.\"})}),className:\"framer-k3m23n\",\"data-framer-name\":\"Add a feature section about the product.\",fonts:[\"GF;Archivo-500\"],name:\"Add a feature section about the product.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-1vg9jd7-container\",children:/*#__PURE__*/_jsx(ButtonRightIcon,{a2UFp2REk:\"https://creators.tatam.digital/\",height:\"100%\",id:\"ERoJZOfFN\",layoutId:\"ERoJZOfFN\",tV30g0sph:\"Login\",variant:\"X08VWrPy7\",width:\"100%\"})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1590,intrinsicWidth:1755,pixelHeight:3180,pixelWidth:3510,sizes:\"max(min(100vw, 1100px) - 48px, 0px)\",src:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=512 512w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png 3510w\"}},H4qSBu5gf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1590,intrinsicWidth:1755,pixelHeight:3180,pixelWidth:3510,sizes:\"476px\",src:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=512 512w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png 3510w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1590,intrinsicWidth:1755,pixelHeight:3180,pixelWidth:3510,sizes:\"617.5px\",src:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=512 512w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/bFBnvAfukc81LWYCskoCL9NC9uM.png 3510w\"},className:\"framer-z9j5j4\",\"data-framer-name\":\"Group_101\",name:\"Group_101\"})})]})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ifAgYQfW7\",webPageId:\"fqQN6pJLC\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-n2lsiy framer-1av824i\",\"data-framer-name\":\"Section\",id:id,name:\"Section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hafx3x\",\"data-framer-name\":\"Embed\",name:\"Embed\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-azzz5c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{html:'<div data-tf-widget=\"w3CbHyAk\" data-tf-opacity=\"100\" data-tf-iframe-props=\"title=Creator Marketplace Form (Agent)\" data-tf-transitive-search-params data-tf-medium=\"snippet\" style=\"width:100%;height:600px;\"></div><script src=\"//embed.typeform.com/next/embed.js\"></script>'},H4qSBu5gf:{html:'<div data-tf-widget=\"w3CbHyAk\" data-tf-opacity=\"100\" data-tf-iframe-props=\"title=Creator Marketplace Form (Agent)\" data-tf-transitive-search-params data-tf-medium=\"snippet\" style=\"width:100%;height:600px;\"></div><script src=\"//embed.typeform.com/next/embed.js\"></script>'},U0AFxIVsb:{html:'<div data-tf-widget=\"w3CbHyAk\" data-tf-opacity=\"100\" data-tf-iframe-props=\"title=Creator Marketplace Form (Agent)\" data-tf-transitive-search-params data-tf-medium=\"snippet\" style=\"width:100%;height:900px;\"></div><script src=\"//embed.typeform.com/next/embed.js\"></script>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div data-tf-widget=\"w3CbHyAk\" data-tf-opacity=\"100\" data-tf-iframe-props=\"title=Creator Marketplace Form (Agent)\" data-tf-transitive-search-params data-tf-medium=\"snippet\" style=\"width:100%;height:800px;\"></div><script src=\"//embed.typeform.com/next/embed.js\"></script>',id:\"E08lzo4Qc\",layoutId:\"E08lzo4Qc\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6pje4\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5qeku\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9l18s\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"FAQS\"})})},H4qSBu5gf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"FAQS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"FAQS\"})}),className:\"framer-1mjrstp\",\"data-framer-name\":\"Contact our professional team\",fonts:[\"GF;Archivo-600\"],name:\"Contact our professional team\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-53f66x\",\"data-framer-name\":\"Faqs list\",name:\"Faqs list\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-19j7nbr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"At TATAM, we prioritize creators and support their growth. Not only do we bring amazing brand deals to the table, but we also ensure repeat brand deals, helping creators have sustained income streams and establish long-term partnerships.\",height:\"100%\",id:\"xVjatb1LE\",KRT9l5CDd:\"What makes TATAM different from other agencies in terms of brand deals?\",layoutId:\"xVjatb1LE\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1i29xar-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"We've proudly distributed millions in creator payouts. Our global payment processes and system ensures you get paid no matter where you're located, and we pride ourselves on our fast execution to make sure you get compensated promptly. More over you'll have access to our payments platform to understand your contract history and payment status.\",height:\"100%\",id:\"u6sKNfHlt\",KRT9l5CDd:\"How do I benefit financially by working with TATAM?\",layoutId:\"u6sKNfHlt\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-4ienqj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"We understand the importance of timely payments. With our transparent contract history and invoice tracking system, you can always be updated on the status of your payments, ensuring clarity and punctuality.\",height:\"100%\",id:\"SvlCNcA0y\",KRT9l5CDd:\"I've had issues with payment delays from other agencies. How does TATAM handle this?\",layoutId:\"SvlCNcA0y\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-hi36c7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"We believe in keeping things simple for creators. Our processes are straightforward, our campaign teams have all the information ready for you and our briefs are designed to be easy to understand, allowing you to focus on what you do best - creating content.\",height:\"100%\",id:\"pwo12Jl_x\",KRT9l5CDd:\"Is the process of working with TATAM complicated?\",layoutId:\"pwo12Jl_x\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1om0u69-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"Our team at TATAM values the unique voice of each creator. We match you with brands that resonate with your content and audience, ensuring that every collaboration feels authentic and beneficial.\",height:\"100%\",id:\"kcPRZWei2\",KRT9l5CDd:\"How do I know which brands are a good fit for my audience?\",layoutId:\"kcPRZWei2\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-16hmgqi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"We're here to support you every step of the way. Our team is always available to address any concerns, ensuring a smooth collaboration experience for both creators and brands.\",height:\"100%\",id:\"rpnzM9I6o\",KRT9l5CDd:\"What if I have issues or concerns during a brand collaboration?\",layoutId:\"rpnzM9I6o\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1si0utz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"Absolutely! We believe in fostering lasting relationships. Many of our creators enjoy repeat brand deals, testament to the trust and quality we bring to every collaboration.\",height:\"100%\",id:\"llP_liUqS\",KRT9l5CDd:\"Can I expect long-term collaborations with brands through TATAM?\",layoutId:\"llP_liUqS\",variant:\"KUymy3Rl7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-wtrf49-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{style:{width:\"100%\"},variant:\"TiLWr_7_l\"},H4qSBu5gf:{style:{width:\"100%\"},variant:\"TDlU3b_5P\"}},children:/*#__PURE__*/_jsx(FAQItem,{bmhrlakRu:\"Our campaigns are performance-driven, emphasizing data to deliver the best results for our partnering brands. As a creator, it's essential to understand that collaborations must be mutually beneficial, ensuring that the content produced aligns with the brand's objectives and resonates effectively with the audience.\",height:\"100%\",id:\"HZiGdC_2u\",KRT9l5CDd:\"How does TATAM ensure the success of brand collaborations?\",layoutId:\"HZiGdC_2u\",variant:\"KUymy3Rl7\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cf3shh-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FpAGYcRfS:{variant:\"RgNO4RrQq\"},H4qSBu5gf:{variant:\"emt3T7QWW\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"d1teg6eIv\",layoutId:\"d1teg6eIv\",style:{width:\"100%\"},variant:\"VaDO3EROR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-Qfa2H[data-border=\"true\"]::after, .framer-Qfa2H [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Qfa2H { background: white; }`,\".framer-Qfa2H.framer-1av824i, .framer-Qfa2H .framer-1av824i { display: block; }\",\".framer-Qfa2H.framer-361j3s { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-Qfa2H .framer-1yebtz8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; z-index: 10; }\",\".framer-Qfa2H .framer-19syo37-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-Qfa2H .framer-pwdwwg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 64px 24px 60px 24px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-qlq61t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: auto; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-Qfa2H .framer-8gbncu, .framer-Qfa2H .framer-u9l18s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 720px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-1hd413g, .framer-Qfa2H .framer-1veayru, .framer-Qfa2H .framer-1mjrstp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qfa2H .framer-1vcomai, .framer-Qfa2H .framer-hafx3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-14qkvii { 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 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Qfa2H .framer-1mhd4d8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-frff5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-2a23bm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-9fx9zs, .framer-Qfa2H .framer-1b0v4ii, .framer-Qfa2H .framer-z6zoov, .framer-Qfa2H .framer-10j76qd, .framer-Qfa2H .framer-14kepzh, .framer-Qfa2H .framer-mxxwct, .framer-Qfa2H .framer-17lh3tr, .framer-Qfa2H .framer-ckp3i2, .framer-Qfa2H .framer-uaqlhb { --border-bottom-width: 1px; --border-color: #4423bf; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #4423bf; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-Qfa2H .framer-1hw5q39, .framer-Qfa2H .framer-jwng10, .framer-Qfa2H .framer-1kc9895, .framer-Qfa2H .framer-1pe6imd, .framer-Qfa2H .framer-18bewyp, .framer-Qfa2H .framer-1870e0v, .framer-Qfa2H .framer-1kkm0q4, .framer-Qfa2H .framer-ft3szm, .framer-Qfa2H .framer-mn8hdi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qfa2H .framer-fqqg5z { align-content: center; align-items: center; background-color: rgba(162, 247, 155, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: auto; justify-content: center; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-1cxra70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-1fgqdao { display: grid; flex: 1 0 0px; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: 574px; justify-content: start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Qfa2H .framer-xgs2iq { align-content: flex-start; align-items: flex-start; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Qfa2H .framer-dh9018 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-1x9agsb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qfa2H .framer-1jcdkjv { 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: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-6zh6bh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-a060zm, .framer-Qfa2H .framer-1e7s5zw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-19dfd3o, .framer-Qfa2H .framer-11wx0dn { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 7px 0px 0px 0px; position: relative; width: 24px; }\",\".framer-Qfa2H .framer-dhfta4, .framer-Qfa2H .framer-1dn1tlx, .framer-Qfa2H .framer-1dhwji0, .framer-Qfa2H .framer-1066qfz, .framer-Qfa2H .framer-1pncbbl { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Qfa2H .framer-1rzx7ey, .framer-Qfa2H .framer-1vwd8xa, .framer-Qfa2H .framer-ohpy9g, .framer-Qfa2H .framer-hjhatz, .framer-Qfa2H .framer-k3m23n { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Qfa2H .framer-1vjn8gq, .framer-Qfa2H .framer-1iwpsvb, .framer-Qfa2H .framer-1tjsaq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-6d183r, .framer-Qfa2H .framer-1qdfksn, .framer-Qfa2H .framer-bcnbap { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 24px; }\",\".framer-Qfa2H .framer-1vg9jd7-container, .framer-Qfa2H .framer-19j7nbr-container, .framer-Qfa2H .framer-1i29xar-container, .framer-Qfa2H .framer-4ienqj-container, .framer-Qfa2H .framer-hi36c7-container, .framer-Qfa2H .framer-1om0u69-container, .framer-Qfa2H .framer-16hmgqi-container, .framer-Qfa2H .framer-1si0utz-container, .framer-Qfa2H .framer-wtrf49-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Qfa2H .framer-z9j5j4 { align-self: center; aspect-ratio: 1.1037735849056605 / 1; flex: none; grid-column: auto / span 2; height: var(--framer-aspect-ratio-supported, 559px); justify-self: end; overflow: visible; position: relative; width: 618px; }\",\".framer-Qfa2H .framer-n2lsiy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Qfa2H .framer-azzz5c-container { flex: none; height: 800px; position: relative; width: 80%; }\",\".framer-Qfa2H .framer-g6pje4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 40px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-1f5qeku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: auto; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qfa2H .framer-53f66x { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1100px; }\",\".framer-Qfa2H .framer-cf3shh-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Qfa2H.framer-361j3s, .framer-Qfa2H .framer-1yebtz8, .framer-Qfa2H .framer-pwdwwg, .framer-Qfa2H .framer-qlq61t, .framer-Qfa2H .framer-8gbncu, .framer-Qfa2H .framer-1vcomai, .framer-Qfa2H .framer-14qkvii, .framer-Qfa2H .framer-1mhd4d8, .framer-Qfa2H .framer-frff5p, .framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-9fx9zs, .framer-Qfa2H .framer-1b0v4ii, .framer-Qfa2H .framer-z6zoov, .framer-Qfa2H .framer-10j76qd, .framer-Qfa2H .framer-14kepzh, .framer-Qfa2H .framer-2a23bm, .framer-Qfa2H .framer-mxxwct, .framer-Qfa2H .framer-17lh3tr, .framer-Qfa2H .framer-ckp3i2, .framer-Qfa2H .framer-uaqlhb, .framer-Qfa2H .framer-fqqg5z, .framer-Qfa2H .framer-1cxra70, .framer-Qfa2H .framer-xgs2iq, .framer-Qfa2H .framer-dh9018, .framer-Qfa2H .framer-1jcdkjv, .framer-Qfa2H .framer-6zh6bh, .framer-Qfa2H .framer-a060zm, .framer-Qfa2H .framer-19dfd3o, .framer-Qfa2H .framer-1e7s5zw, .framer-Qfa2H .framer-11wx0dn, .framer-Qfa2H .framer-1vjn8gq, .framer-Qfa2H .framer-6d183r, .framer-Qfa2H .framer-1iwpsvb, .framer-Qfa2H .framer-1qdfksn, .framer-Qfa2H .framer-1tjsaq7, .framer-Qfa2H .framer-bcnbap, .framer-Qfa2H .framer-n2lsiy, .framer-Qfa2H .framer-hafx3x, .framer-Qfa2H .framer-g6pje4, .framer-Qfa2H .framer-1f5qeku, .framer-Qfa2H .framer-u9l18s, .framer-Qfa2H .framer-53f66x { gap: 0px; } .framer-Qfa2H.framer-361j3s > *, .framer-Qfa2H .framer-1yebtz8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Qfa2H.framer-361j3s > :first-child, .framer-Qfa2H .framer-1yebtz8 > :first-child, .framer-Qfa2H .framer-pwdwwg > :first-child, .framer-Qfa2H .framer-qlq61t > :first-child, .framer-Qfa2H .framer-8gbncu > :first-child, .framer-Qfa2H .framer-1vcomai > :first-child, .framer-Qfa2H .framer-14qkvii > :first-child, .framer-Qfa2H .framer-1mhd4d8 > :first-child, .framer-Qfa2H .framer-frff5p > :first-child, .framer-Qfa2H .framer-xgs2iq > :first-child, .framer-Qfa2H .framer-dh9018 > :first-child, .framer-Qfa2H .framer-1jcdkjv > :first-child, .framer-Qfa2H .framer-6zh6bh > :first-child, .framer-Qfa2H .framer-n2lsiy > :first-child, .framer-Qfa2H .framer-hafx3x > :first-child, .framer-Qfa2H .framer-1f5qeku > :first-child, .framer-Qfa2H .framer-u9l18s > :first-child, .framer-Qfa2H .framer-53f66x > :first-child { margin-top: 0px; } .framer-Qfa2H.framer-361j3s > :last-child, .framer-Qfa2H .framer-1yebtz8 > :last-child, .framer-Qfa2H .framer-pwdwwg > :last-child, .framer-Qfa2H .framer-qlq61t > :last-child, .framer-Qfa2H .framer-8gbncu > :last-child, .framer-Qfa2H .framer-1vcomai > :last-child, .framer-Qfa2H .framer-14qkvii > :last-child, .framer-Qfa2H .framer-1mhd4d8 > :last-child, .framer-Qfa2H .framer-frff5p > :last-child, .framer-Qfa2H .framer-xgs2iq > :last-child, .framer-Qfa2H .framer-dh9018 > :last-child, .framer-Qfa2H .framer-1jcdkjv > :last-child, .framer-Qfa2H .framer-6zh6bh > :last-child, .framer-Qfa2H .framer-n2lsiy > :last-child, .framer-Qfa2H .framer-hafx3x > :last-child, .framer-Qfa2H .framer-1f5qeku > :last-child, .framer-Qfa2H .framer-u9l18s > :last-child, .framer-Qfa2H .framer-53f66x > :last-child { margin-bottom: 0px; } .framer-Qfa2H .framer-pwdwwg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Qfa2H .framer-qlq61t > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-Qfa2H .framer-8gbncu > *, .framer-Qfa2H .framer-xgs2iq > *, .framer-Qfa2H .framer-dh9018 > *, .framer-Qfa2H .framer-u9l18s > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Qfa2H .framer-1vcomai > *, .framer-Qfa2H .framer-hafx3x > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Qfa2H .framer-14qkvii > *, .framer-Qfa2H .framer-53f66x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Qfa2H .framer-1mhd4d8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Qfa2H .framer-frff5p > *, .framer-Qfa2H .framer-6zh6bh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Qfa2H .framer-e34kx6 > *, .framer-Qfa2H .framer-2a23bm > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Qfa2H .framer-e34kx6 > :first-child, .framer-Qfa2H .framer-9fx9zs > :first-child, .framer-Qfa2H .framer-1b0v4ii > :first-child, .framer-Qfa2H .framer-z6zoov > :first-child, .framer-Qfa2H .framer-10j76qd > :first-child, .framer-Qfa2H .framer-14kepzh > :first-child, .framer-Qfa2H .framer-2a23bm > :first-child, .framer-Qfa2H .framer-mxxwct > :first-child, .framer-Qfa2H .framer-17lh3tr > :first-child, .framer-Qfa2H .framer-ckp3i2 > :first-child, .framer-Qfa2H .framer-uaqlhb > :first-child, .framer-Qfa2H .framer-fqqg5z > :first-child, .framer-Qfa2H .framer-1cxra70 > :first-child, .framer-Qfa2H .framer-a060zm > :first-child, .framer-Qfa2H .framer-19dfd3o > :first-child, .framer-Qfa2H .framer-1e7s5zw > :first-child, .framer-Qfa2H .framer-11wx0dn > :first-child, .framer-Qfa2H .framer-1vjn8gq > :first-child, .framer-Qfa2H .framer-6d183r > :first-child, .framer-Qfa2H .framer-1iwpsvb > :first-child, .framer-Qfa2H .framer-1qdfksn > :first-child, .framer-Qfa2H .framer-1tjsaq7 > :first-child, .framer-Qfa2H .framer-bcnbap > :first-child, .framer-Qfa2H .framer-g6pje4 > :first-child { margin-left: 0px; } .framer-Qfa2H .framer-e34kx6 > :last-child, .framer-Qfa2H .framer-9fx9zs > :last-child, .framer-Qfa2H .framer-1b0v4ii > :last-child, .framer-Qfa2H .framer-z6zoov > :last-child, .framer-Qfa2H .framer-10j76qd > :last-child, .framer-Qfa2H .framer-14kepzh > :last-child, .framer-Qfa2H .framer-2a23bm > :last-child, .framer-Qfa2H .framer-mxxwct > :last-child, .framer-Qfa2H .framer-17lh3tr > :last-child, .framer-Qfa2H .framer-ckp3i2 > :last-child, .framer-Qfa2H .framer-uaqlhb > :last-child, .framer-Qfa2H .framer-fqqg5z > :last-child, .framer-Qfa2H .framer-1cxra70 > :last-child, .framer-Qfa2H .framer-a060zm > :last-child, .framer-Qfa2H .framer-19dfd3o > :last-child, .framer-Qfa2H .framer-1e7s5zw > :last-child, .framer-Qfa2H .framer-11wx0dn > :last-child, .framer-Qfa2H .framer-1vjn8gq > :last-child, .framer-Qfa2H .framer-6d183r > :last-child, .framer-Qfa2H .framer-1iwpsvb > :last-child, .framer-Qfa2H .framer-1qdfksn > :last-child, .framer-Qfa2H .framer-1tjsaq7 > :last-child, .framer-Qfa2H .framer-bcnbap > :last-child, .framer-Qfa2H .framer-g6pje4 > :last-child { margin-right: 0px; } .framer-Qfa2H .framer-9fx9zs > *, .framer-Qfa2H .framer-1b0v4ii > *, .framer-Qfa2H .framer-z6zoov > *, .framer-Qfa2H .framer-10j76qd > *, .framer-Qfa2H .framer-14kepzh > *, .framer-Qfa2H .framer-mxxwct > *, .framer-Qfa2H .framer-17lh3tr > *, .framer-Qfa2H .framer-ckp3i2 > *, .framer-Qfa2H .framer-uaqlhb > *, .framer-Qfa2H .framer-1cxra70 > *, .framer-Qfa2H .framer-19dfd3o > *, .framer-Qfa2H .framer-11wx0dn > *, .framer-Qfa2H .framer-6d183r > *, .framer-Qfa2H .framer-1qdfksn > *, .framer-Qfa2H .framer-bcnbap > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Qfa2H .framer-fqqg5z > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-Qfa2H .framer-1jcdkjv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Qfa2H .framer-a060zm > *, .framer-Qfa2H .framer-1e7s5zw > *, .framer-Qfa2H .framer-1vjn8gq > *, .framer-Qfa2H .framer-1iwpsvb > *, .framer-Qfa2H .framer-1tjsaq7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Qfa2H .framer-n2lsiy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qfa2H .framer-g6pje4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qfa2H .framer-1f5qeku > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@media (min-width: 1440px) { .framer-Qfa2H .hidden-361j3s { display: none !important; } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .framer-Qfa2H .hidden-4echki { display: none !important; } .${metadata.bodyClassName}-framer-Qfa2H { background: white; } .framer-Qfa2H.framer-361j3s { width: 1200px; } .framer-Qfa2H .framer-azzz5c-container { height: 900px; }}`,`@media (min-width: 810px) and (max-width: 1199px) { .framer-Qfa2H .hidden-1j9osq7 { display: none !important; } .${metadata.bodyClassName}-framer-Qfa2H { background: white; } .framer-Qfa2H.framer-361j3s { width: 810px; } .framer-Qfa2H .framer-19syo37-container, .framer-Qfa2H .framer-19j7nbr-container, .framer-Qfa2H .framer-1i29xar-container, .framer-Qfa2H .framer-4ienqj-container, .framer-Qfa2H .framer-hi36c7-container, .framer-Qfa2H .framer-1om0u69-container, .framer-Qfa2H .framer-16hmgqi-container, .framer-Qfa2H .framer-1si0utz-container, .framer-Qfa2H .framer-wtrf49-container { width: 100%; } .framer-Qfa2H .framer-frff5p { align-content: flex-start; align-items: flex-start; flex-direction: row; } .framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-2a23bm { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-Qfa2H .framer-9fx9zs, .framer-Qfa2H .framer-1b0v4ii, .framer-Qfa2H .framer-z6zoov, .framer-Qfa2H .framer-10j76qd, .framer-Qfa2H .framer-14kepzh { height: auto; justify-content: center; width: 100%; } .framer-Qfa2H .framer-mxxwct, .framer-Qfa2H .framer-17lh3tr, .framer-Qfa2H .framer-ckp3i2, .framer-Qfa2H .framer-uaqlhb { justify-content: center; width: 100%; } .framer-Qfa2H .framer-1cxra70 { padding: 0px 24px 0px 24px; } .framer-Qfa2H .framer-1fgqdao { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; } .framer-Qfa2H .framer-xgs2iq { align-self: unset; order: 1; width: 60%; } .framer-Qfa2H .framer-z9j5j4 { align-self: unset; height: var(--framer-aspect-ratio-supported, 431px); order: 0; width: 476px; } .framer-Qfa2H .framer-azzz5c-container { height: 600px; } .framer-Qfa2H .framer-1f5qeku { flex: 1 0 0px; width: 1px; } .framer-Qfa2H .framer-u9l18s { order: 0; } .framer-Qfa2H .framer-53f66x { order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Qfa2H .framer-frff5p, .framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-2a23bm, .framer-Qfa2H .framer-1fgqdao { gap: 0px; } .framer-Qfa2H .framer-frff5p > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Qfa2H .framer-frff5p > :first-child { margin-left: 0px; } .framer-Qfa2H .framer-frff5p > :last-child { margin-right: 0px; } .framer-Qfa2H .framer-e34kx6 > *, .framer-Qfa2H .framer-2a23bm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Qfa2H .framer-e34kx6 > :first-child, .framer-Qfa2H .framer-2a23bm > :first-child, .framer-Qfa2H .framer-1fgqdao > :first-child { margin-top: 0px; } .framer-Qfa2H .framer-e34kx6 > :last-child, .framer-Qfa2H .framer-2a23bm > :last-child, .framer-Qfa2H .framer-1fgqdao > :last-child { margin-bottom: 0px; } .framer-Qfa2H .framer-1fgqdao > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 809px) { .framer-Qfa2H .hidden-vejnqo { display: none !important; } .${metadata.bodyClassName}-framer-Qfa2H { background: white; } .framer-Qfa2H.framer-361j3s { width: 390px; } .framer-Qfa2H .framer-1yebtz8, .framer-Qfa2H .framer-cf3shh-container { transform: unset; } .framer-Qfa2H .framer-19syo37-container, .framer-Qfa2H .framer-19j7nbr-container, .framer-Qfa2H .framer-1i29xar-container, .framer-Qfa2H .framer-4ienqj-container, .framer-Qfa2H .framer-hi36c7-container, .framer-Qfa2H .framer-1om0u69-container, .framer-Qfa2H .framer-16hmgqi-container, .framer-Qfa2H .framer-1si0utz-container, .framer-Qfa2H .framer-wtrf49-container { width: 100%; } .framer-Qfa2H .framer-pwdwwg { padding: 40px 24px 60px 24px; } .framer-Qfa2H .framer-frff5p { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 14px; } .framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-2a23bm { flex: 1 0 0px; flex-direction: column; gap: 12px; width: 1px; } .framer-Qfa2H .framer-9fx9zs, .framer-Qfa2H .framer-1b0v4ii, .framer-Qfa2H .framer-z6zoov, .framer-Qfa2H .framer-10j76qd, .framer-Qfa2H .framer-14kepzh { height: auto; justify-content: center; width: 100%; } .framer-Qfa2H .framer-mxxwct, .framer-Qfa2H .framer-17lh3tr, .framer-Qfa2H .framer-ckp3i2, .framer-Qfa2H .framer-uaqlhb { justify-content: center; width: 100%; } .framer-Qfa2H .framer-fqqg5z, .framer-Qfa2H .framer-g6pje4 { flex-direction: column; } .framer-Qfa2H .framer-1cxra70 { padding: 0px 24px 0px 24px; } .framer-Qfa2H .framer-1fgqdao { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; } .framer-Qfa2H .framer-xgs2iq { align-self: unset; order: 1; } .framer-Qfa2H .framer-z9j5j4 { align-self: unset; height: var(--framer-aspect-ratio-supported, 310px); order: 0; width: 100%; } .framer-Qfa2H .framer-n2lsiy { padding: 80px 10px 80px 10px; } .framer-Qfa2H .framer-azzz5c-container { height: 600px; width: 100%; } .framer-Qfa2H .framer-1f5qeku { gap: 52px; } .framer-Qfa2H .framer-u9l18s { order: 0; } .framer-Qfa2H .framer-53f66x { order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Qfa2H .framer-frff5p, .framer-Qfa2H .framer-e34kx6, .framer-Qfa2H .framer-2a23bm, .framer-Qfa2H .framer-fqqg5z, .framer-Qfa2H .framer-1fgqdao, .framer-Qfa2H .framer-g6pje4, .framer-Qfa2H .framer-1f5qeku { gap: 0px; } .framer-Qfa2H .framer-frff5p > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-Qfa2H .framer-frff5p > :first-child { margin-left: 0px; } .framer-Qfa2H .framer-frff5p > :last-child { margin-right: 0px; } .framer-Qfa2H .framer-e34kx6 > *, .framer-Qfa2H .framer-2a23bm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Qfa2H .framer-e34kx6 > :first-child, .framer-Qfa2H .framer-2a23bm > :first-child, .framer-Qfa2H .framer-fqqg5z > :first-child, .framer-Qfa2H .framer-1fgqdao > :first-child, .framer-Qfa2H .framer-g6pje4 > :first-child, .framer-Qfa2H .framer-1f5qeku > :first-child { margin-top: 0px; } .framer-Qfa2H .framer-e34kx6 > :last-child, .framer-Qfa2H .framer-2a23bm > :last-child, .framer-Qfa2H .framer-fqqg5z > :last-child, .framer-Qfa2H .framer-1fgqdao > :last-child, .framer-Qfa2H .framer-g6pje4 > :last-child, .framer-Qfa2H .framer-1f5qeku > :last-child { margin-bottom: 0px; } .framer-Qfa2H .framer-fqqg5z > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Qfa2H .framer-1fgqdao > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Qfa2H .framer-g6pje4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qfa2H .framer-1f5qeku > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3554\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U0AFxIVsb\":{\"layout\":[\"fixed\",\"auto\"]},\"H4qSBu5gf\":{\"layout\":[\"fixed\",\"auto\"]},\"FpAGYcRfS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const FramerfqQN6pJLC=withCSS(Component,css,\"framer-Qfa2H\");export default FramerfqQN6pJLC;FramerfqQN6pJLC.displayName=\"Creators\";FramerfqQN6pJLC.defaultProps={height:3554,width:1440};addFonts(FramerfqQN6pJLC,[{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp9R1oJ0vyVQ.woff2\",weight:\"600\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\",weight:\"400\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp9R1oJ0vyVQ.woff2\",weight:\"500\"},...NavCreatorsFonts,...ButtonRightIconFonts,...EmbedFonts,...FAQItemFonts,...SectionFooterFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfqQN6pJLC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3554\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U0AFxIVsb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H4qSBu5gf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FpAGYcRfS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "ButtonNavMenuFonts", "getFonts", "kuuvQe79a_default", "ButtonNormalFonts", "okJNiZFxZ_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap1tn5tob", "args", "taps810qo", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Link", "Image2", "kuuvQe79a_default", "okJNiZFxZ_default", "resolveLink", "css", "FramerFnq6Xgi2B", "withCSS", "Fnq6Xgi2B_default", "addPropertyControls", "ControlType", "addFonts", "ButtonNavMenuFonts", "ButtonNormalFonts", "NavCreatorsFonts", "getFonts", "Fnq6Xgi2B_default", "MotionDivWithFX", "withFX", "motion", "ButtonRightIconFonts", "rvlP7s5wj_default", "EmbedFonts", "Embed", "FAQItemFonts", "X6hoDUQfH_default", "SectionFooterFonts", "FvikQATYA_default", "ContainerWithFX", "Container", "breakpoints", "serializationHash", "variantClassNames", "transitions", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "animation3", "animation4", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "ref1", "pe", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "Fnq6Xgi2B_default", "MotionDivWithFX", "x", "RichText2", "SVG", "rvlP7s5wj_default", "Image2", "Link", "Embed", "X6hoDUQfH_default", "ContainerWithFX", "FvikQATYA_default", "css", "FramerfqQN6pJLC", "withCSS", "fqQN6pJLC_default", "addFonts", "NavCreatorsFonts", "ButtonRightIconFonts", "EmbedFonts", "FAQItemFonts", "SectionFooterFonts", "__FramerMetadata__"]
}
