{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/SWXdDeeBcAZA7f4CtBJv/9BcaZcgULhMWL6rULy2G/UGPnYZMf7.js", "ssg:https://framerusercontent.com/modules/xo4WBi0jUAyqZ62ZWpgg/bTJ7L6XNwSJXu4dWzp9C/mAd6vO_a6.js", "ssg:https://framerusercontent.com/modules/rPCJTkjrGIUfLI5ML9Hn/1YcgmwdcmkvlaqZyrp5L/iusqhPEve.js", "ssg:https://framerusercontent.com/modules/nfFTVCJas0PX9vh1LOcv/16YahBr2UZPLUGRxdEwu/tK1qcZMeM.js", "ssg:https://framerusercontent.com/modules/fCMi14Ti1jfOHXAO49ox/8GiMJKZqHEiVP5CruPcZ/t4CgsVm66.js", "ssg:https://framerusercontent.com/modules/87pmBImNrODt7C68iTvR/XmaWOedhFl1c2q4Oj3gR/vzsQgxpo_.js", "ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framerusercontent.com/modules/m2nL4qHNbqX9QCxsHsGL/aEuoU9xXdHzXrnVcCkrq/cache.js", "ssg:https://framerusercontent.com/modules/jqYhW1QQ4rimeEMofYhX/IZoq3K01A6p1dKOfLj5j/Video.js", "ssg:https://framerusercontent.com/modules/oqDCQRVGOCUY3GFNA9cW/wFMyRbKER8zVnJH0Gpxo/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:0.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:0.3},whileHover:{opacity:0.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})}));},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Outfit-regular\"]);export const fonts=[{family:\"Outfit\",moduleAsset:{localModuleIdentifier:\"local-module:css/UGPnYZMf7:default\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",weight:\"400\"}];export const css=['.framer-qbf7Q .framer-styles-preset-1d7q2cu:not(.rich-text-wrapper), .framer-qbf7Q .framer-styles-preset-1d7q2cu.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-qbf7Q\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2add0ca)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xUCuNdICT7LqG93nhqbM/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dAg232fKyD3H6YW4cKrG/IbaOAO5ajbniSSHevUdE/ahLgTfCIP.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={fi7kThygn:{hover:true},MALla2ZXR:{hover:true}};const cycleOrder=[\"fi7kThygn\",\"MALla2ZXR\"];const variantClassNames={fi7kThygn:\"framer-v-1aztli8\",MALla2ZXR:\"framer-v-1teyc8o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Active:\"fi7kThygn\",Inactive:\"MALla2ZXR\"};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 Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"fi7kThygn\",title:EiSaQ6Xr4=\"Data Integrity\",icon:fMc_sb0AR=\"House\",color:WPnFGEwc6=\"rgb(255, 255, 255)\",background:QfhXopDc4='var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32)) /* {\"name\":\"Red\"} */',tap:ERA9qv1gp,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fi7kThygn\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8owatn=activeVariantCallback(async(...args)=>{if(ERA9qv1gp){const res=await ERA9qv1gp(...args);if(res===false)return false;}});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-HnP2F\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1aztli8\",className),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fi7kThygn\",onTap:onTap8owatn,ref:ref,style:{backgroundColor:QfhXopDc4,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1,...style},variants:{MALla2ZXR:{backgroundColor:\"rgba(255, 255, 255, 0)\",opacity:.6}},...addPropertyOverrides({\"fi7kThygn-hover\":{\"data-framer-name\":undefined},\"MALla2ZXR-hover\":{\"data-framer-name\":undefined},MALla2ZXR:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-4jpkjq\",layoutDependency:layoutDependency,layoutId:\"DI76_O6tB\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1s6c8zn-container\",layoutDependency:layoutDependency,layoutId:\"UhT6fgMPX-container\",style:{opacity:1},variants:{\"fi7kThygn-hover\":{opacity:.7},\"MALla2ZXR-hover\":{opacity:.7}},children:/*#__PURE__*/ _jsx(Phosphor,{color:WPnFGEwc6,height:\"100%\",iconSearch:\"House\",iconSelection:fMc_sb0AR,id:\"UhT6fgMPX\",layoutId:\"UhT6fgMPX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\",...addPropertyOverrides({MALla2ZXR:{color:QfhXopDc4}},baseVariant,gestureVariant)})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1c3fawt\",\"data-styles-preset\":\"ahLgTfCIP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Say what's on your mind\"})}),className:\"framer-1ygmkcq\",layoutDependency:layoutDependency,layoutId:\"ZDZ6cNZ2M\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:EiSaQ6Xr4,variants:{\"fi7kThygn-hover\":{opacity:.7},\"MALla2ZXR-hover\":{opacity:.7},MALla2ZXR:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MALla2ZXR-hover\":{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Say what's on your mind\"})}),fonts:[\"GF;Outfit-regular\"]}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-HnP2F [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-HnP2F .framer-137p26u { display: block; }\",\".framer-HnP2F .framer-1aztli8 { cursor: pointer; display: grid; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 20px; position: relative; width: min-content; }\",\".framer-HnP2F .framer-4jpkjq { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 1; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HnP2F .framer-1s6c8zn-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-HnP2F .framer-1ygmkcq { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-HnP2F .framer-v-1aztli8 .framer-1aztli8, .framer-HnP2F .framer-v-1teyc8o .framer-1aztli8 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HnP2F .framer-4jpkjq { gap: 0px; } .framer-HnP2F .framer-4jpkjq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HnP2F .framer-4jpkjq > :first-child { margin-left: 0px; } .framer-HnP2F .framer-4jpkjq > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"MALla2ZXR\":{\"layout\":[\"auto\",\"auto\"]},\"ufGejpJyW\":{\"layout\":[\"auto\",\"auto\"]},\"Jf2WVItJB\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"EiSaQ6Xr4\":\"title\",\"fMc_sb0AR\":\"icon\",\"WPnFGEwc6\":\"color\",\"QfhXopDc4\":\"background\",\"ERA9qv1gp\":\"tap\"}\n */ const FramermAd6vO_a6=withCSS(Component,css,\"framer-HnP2F\");export default FramermAd6vO_a6;FramermAd6vO_a6.displayName=\"Feature\";FramermAd6vO_a6.defaultProps={height:70,width:260};addPropertyControls(FramermAd6vO_a6,{variant:{options:[\"fi7kThygn\",\"MALla2ZXR\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},EiSaQ6Xr4:{defaultValue:\"Data Integrity\",displayTextArea:false,title:\"Title\",type:ControlType.String},fMc_sb0AR:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",hidden:undefined,title:\"Icon\"},WPnFGEwc6:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},QfhXopDc4:{defaultValue:'var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32)) /* {\"name\":\"Red\"} */',title:\"Background\",type:ControlType.Color},ERA9qv1gp:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramermAd6vO_a6,[{family:\"Outfit\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/mAd6vO_a6:default\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",weight:\"400\"},...PhosphorFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermAd6vO_a6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"70\",\"framerVariables\":\"{\\\"EiSaQ6Xr4\\\":\\\"title\\\",\\\"fMc_sb0AR\\\":\\\"icon\\\",\\\"WPnFGEwc6\\\":\\\"color\\\",\\\"QfhXopDc4\\\":\\\"background\\\",\\\"ERA9qv1gp\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MALla2ZXR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ufGejpJyW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jf2WVItJB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"260\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mAd6vO_a6.map", "// Generated by Framer (2add0ca)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, addPropertyControls, ControlType, cx, getFonts, getPropertyControls, Image, RichText, useActiveVariantCallback, useOnVariantChange, useVariantState, withCSS } from \"framer\";import { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";import * as React from \"react\";import * as sharedStyle from \"https://framerusercontent.com/modules/SWXdDeeBcAZA7f4CtBJv/9BcaZcgULhMWL6rULy2G/UGPnYZMf7.js\";import Feature from \"https://framerusercontent.com/modules/xo4WBi0jUAyqZ62ZWpgg/bTJ7L6XNwSJXu4dWzp9C/mAd6vO_a6.js\";const FeatureFonts = getFonts(Feature);const FeatureControls = getPropertyControls(Feature);const cycleOrder = [\"N2lgwiI2y\", \"Tfi5aYmmZ\", \"FuYaZdi_M\", \"qTu5qoj3W\", \"AydaG5HhL\", \"cXF9XKjr8\"];const variantClassNames = { AydaG5HhL: \"framer-v-1kj4pd8\", cXF9XKjr8: \"framer-v-1h8diw0\", FuYaZdi_M: \"framer-v-1pqjg77\", N2lgwiI2y: \"framer-v-10xa8iz\", qTu5qoj3W: \"framer-v-bmndsu\", Tfi5aYmmZ: \"framer-v-17ui6i6\" };function addPropertyOverrides(overrides, ...variants) {const nextOverrides = {};variants === null || variants === void 0 ? void 0 : variants.forEach((variant) => variant && Object.assign(nextOverrides, overrides[variant]));return nextOverrides;}const humanReadableVariantMap = { \"Horizontal 1\": \"N2lgwiI2y\", \"Horizontal 2\": \"Tfi5aYmmZ\", \"Horizontal 3\": \"FuYaZdi_M\", \"Vertical 1\": \"qTu5qoj3W\", \"Vertical 2\": \"AydaG5HhL\", \"Vertical 3\": \"cXF9XKjr8\" };const transitions = { default: { damping: 60, delay: 0, mass: 1, stiffness: 500, type: \"spring\" } };const toResponsiveImage = (value) => {if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {return value;}return typeof value === \"string\" ? { src: value } : undefined;};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 Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"N2lgwiI2y\", asset1: o9A3lp53i = { src: new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png\").href} 3200w` }, asset2: G9NSeJWDI, asset3: uZbmGPcAl = { src: new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png\").href} 1236w` }, label1: bynriwBNw = \"Data Integrity\", icon1: CLAf33gMz = \"Handshake\", content: HwlUWuVdx = \"Match your media plans to your ad platforms for seamless campaign activations.\", label2: x2x6qnKKm = \"AdTech Integration\", icon2: l6LrrM2MW = \"Lifebuoy\", content2: y2Cd23Nqm = \"Backup all of your campaign data securely to your Google Drive, Google Sheets and/or Google Cloud.\", label3: AT4tOqBmy = \"API First\", icon3: Z0EnY0dvS = \"Megaphone\", content3: Tl94kNPR_ = \"Match your media plans to your ad platforms for seamless campaign activations.\", ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;const { baseVariant, classNames, gestureVariant, setGestureState, setVariant, transition, variants } = useVariantState({ cycleOrder, defaultVariant: \"N2lgwiI2y\", transitions, variant, variantClassNames });const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;const { activeVariantCallback, delay } = useActiveVariantCallback(baseVariant);const onAppearkxaa6p = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"Tfi5aYmmZ\"), 3e3);});const onAppearzixly0 = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"FuYaZdi_M\"), 3e3);});const onAppear1ocnqhy = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"N2lgwiI2y\"), 3e3);});const onAppear1o2i191 = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"AydaG5HhL\"), 3e3);});const onAppearlcs9z7 = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"cXF9XKjr8\"), 3e3);});const onAppear1a04ef6 = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"qTu5qoj3W\"), 3e3);});const tap1q26ekc = activeVariantCallback(async (...args) => {setVariant(\"N2lgwiI2y\");});const tap8a8xtj = activeVariantCallback(async (...args) => {setVariant(\"qTu5qoj3W\");});const tap1lxf82u = activeVariantCallback(async (...args) => {setVariant(\"Tfi5aYmmZ\");});const tap8t1shd = activeVariantCallback(async (...args) => {setVariant(\"AydaG5HhL\");});const tap18hijjv = activeVariantCallback(async (...args) => {setVariant(\"FuYaZdi_M\");});const tap1o929f3 = activeVariantCallback(async (...args) => {setVariant(\"cXF9XKjr8\");});useOnVariantChange(baseVariant, { AydaG5HhL: onAppearlcs9z7, cXF9XKjr8: onAppear1a04ef6, default: onAppearkxaa6p, FuYaZdi_M: onAppear1ocnqhy, qTu5qoj3W: onAppear1o2i191, Tfi5aYmmZ: onAppearzixly0 });const isDisplayed = () => {if ([\"FuYaZdi_M\", \"cXF9XKjr8\"].includes(baseVariant)) return true;return false;};const isDisplayed1 = () => {if ([\"Tfi5aYmmZ\", \"AydaG5HhL\"].includes(baseVariant)) return true;return false;};const isDisplayed2 = () => {if ([\"Tfi5aYmmZ\", \"FuYaZdi_M\", \"AydaG5HhL\", \"cXF9XKjr8\"].includes(baseVariant)) return false;return true;};const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsx(motion.div, { initial: variant, animate: variants, onHoverStart: () => setGestureState({ isHovered: true }), onHoverEnd: () => setGestureState({ isHovered: false }), onTapStart: () => setGestureState({ isPressed: true }), onTap: () => setGestureState({ isPressed: false }), onTapCancel: () => setGestureState({ isPressed: false }), className: cx(\"framer-7xDU1\", sharedStyle.className, classNames), style: { display: \"contents\" }, children: /*#__PURE__*/_jsx(Transition, { value: transition, children: /*#__PURE__*/_jsxs(motion.div, { ...restProps, className: cx(\"framer-10xa8iz\", className), \"data-framer-name\": \"Horizontal 1\", \"data-highlight\": true, layoutDependency: layoutDependency, layoutId: \"N2lgwiI2y\", ref: ref, style: { ...style }, ...addPropertyOverrides({ AydaG5HhL: { \"data-framer-name\": \"Vertical 2\" }, cXF9XKjr8: { \"data-framer-name\": \"Vertical 3\" }, FuYaZdi_M: { \"data-framer-name\": \"Horizontal 3\" }, qTu5qoj3W: { \"data-framer-name\": \"Vertical 1\" }, Tfi5aYmmZ: { \"data-framer-name\": \"Horizontal 2\" } }, baseVariant, gestureVariant), children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-iezv4u\", layoutDependency: layoutDependency, layoutId: \"dsjSfwmbS\", style: { borderBottomLeftRadius: 8, borderBottomRightRadius: 8, borderTopLeftRadius: 8, borderTopRightRadius: 8, boxShadow: \"0px 20px 40px 0px rgba(110, 58, 38, 0.1)\", filter: \"saturate(1)\", WebkitFilter: \"saturate(1)\" }, variants: { AydaG5HhL: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, cXF9XKjr8: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, qTu5qoj3W: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 } }, children: [isDisplayed() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236, ...toResponsiveImage(uZbmGPcAl) }, className: \"framer-4ra094\", \"data-framer-name\": \"Asset 3\", layoutDependency: layoutDependency, layoutId: \"COgdoLWKu\", style: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, variants: { cXF9XKjr8: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, FuYaZdi_M: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 } }, ...addPropertyOverrides({ cXF9XKjr8: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236, sizes: \"min(440px, 100vw)\", ...toResponsiveImage(uZbmGPcAl) } }, FuYaZdi_M: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236, sizes: \"calc(min(960px, 100vw) * 0.6438)\", src: new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/qbHqOg0OGj5UF9RlLFjgJMvF0oU.png\").href} 1236w` } } }, baseVariant, gestureVariant), children: isDisplayed() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", ...toResponsiveImage(uZbmGPcAl) }, className: \"framer-1ouizo7\", layoutDependency: layoutDependency, layoutId: \"qgUeo10Y5\", style: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, variants: { cXF9XKjr8: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, FuYaZdi_M: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 } }, ...addPropertyOverrides({ cXF9XKjr8: { background: { alt: \"\", fit: \"fill\", sizes: \"min(440px, 100vw)\", ...toResponsiveImage(uZbmGPcAl) } }, FuYaZdi_M: { background: { alt: \"\", fit: \"fill\", sizes: \"calc(min(960px, 100vw) * 0.6438)\", ...toResponsiveImage(uZbmGPcAl) } } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1d7q2cu\", \"data-styles-preset\": \"UGPnYZMf7\", style: { \"--framer-text-alignment\": \"center\" }, children: \"match your media plans to your ad platforms for seamless campaign activations.\" }) }), className: \"framer-tpo926\", layoutDependency: layoutDependency, layoutId: \"jVMKu3NNp\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, tabIndex: 5, text: Tl94kNPR_, verticalAlignment: \"center\", withExternalLayout: true }) }) }), isDisplayed1() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236, ...toResponsiveImage(G9NSeJWDI) }, className: \"framer-1rwdv1g\", \"data-framer-name\": \"Asset 2\", layoutDependency: layoutDependency, layoutId: \"iocYlIYIJ\", style: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, variants: { AydaG5HhL: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, Tfi5aYmmZ: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 } }, ...addPropertyOverrides({ AydaG5HhL: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236, sizes: \"min(440px, 100vw)\", ...toResponsiveImage(G9NSeJWDI) } }, Tfi5aYmmZ: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 888, intrinsicWidth: 1236, pixelHeight: 888, pixelWidth: 1236 } } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", ...toResponsiveImage(o9A3lp53i) }, className: \"framer-1keght6\", layoutDependency: layoutDependency, layoutId: \"yUBgRPD90\", style: { borderBottomLeftRadius: 0, borderBottomRightRadius: 0, borderTopLeftRadius: 0, borderTopRightRadius: 0 }, variants: { AydaG5HhL: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, Tfi5aYmmZ: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 } }, ...addPropertyOverrides({ AydaG5HhL: { background: { alt: \"\", fit: \"fill\", sizes: \"min(440px, 100vw)\", ...toResponsiveImage(G9NSeJWDI) } }, Tfi5aYmmZ: { background: { alt: \"\", fit: \"fill\", sizes: \"calc(min(960px, 100vw) * 0.6438)\", ...toResponsiveImage(G9NSeJWDI) } } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1d7q2cu\", \"data-styles-preset\": \"UGPnYZMf7\", style: { \"--framer-text-alignment\": \"center\" }, children: \"match your media plans to your ad platforms for seamless campaign activations.\" }) }), className: \"framer-1mhyhu1\", layoutDependency: layoutDependency, layoutId: \"SvyoYtGcr\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, tabIndex: 5, text: HwlUWuVdx, verticalAlignment: \"center\", withExternalLayout: true, ...addPropertyOverrides({ AydaG5HhL: { text: y2Cd23Nqm }, Tfi5aYmmZ: { text: y2Cd23Nqm } }, baseVariant, gestureVariant) }) }) }), isDisplayed2() && /*#__PURE__*/_jsx(motion.div, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 444, intrinsicWidth: 618, pixelHeight: 888, pixelWidth: 1236, sizes: \"calc(min(960px, 100vw) * 0.6438)\", src: new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png\").href} 3200w` }, className: \"framer-giiifp\", \"data-framer-name\": \"Asset 1\", layoutDependency: layoutDependency, layoutId: \"SsKP5VrLh\", style: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, ...addPropertyOverrides({ qTu5qoj3W: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 444, intrinsicWidth: 618, pixelHeight: 888, pixelWidth: 1236, sizes: \"min(440px, 100vw)\", src: new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/7VXLMildeMDoxGdifGLFxFtQM.png\").href} 3200w` } } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", sizes: \"calc(min(960px, 100vw) * 0.6438)\", ...toResponsiveImage(o9A3lp53i) }, className: \"framer-10kcbsy\", layoutDependency: layoutDependency, layoutId: \"U3T5BFuyz\", style: { borderBottomLeftRadius: 20, borderBottomRightRadius: 20, borderTopLeftRadius: 20, borderTopRightRadius: 20 }, ...addPropertyOverrides({ qTu5qoj3W: { background: { alt: \"\", fit: \"fill\", sizes: \"min(440px, 100vw)\", ...toResponsiveImage(o9A3lp53i) } } }, baseVariant, gestureVariant), children: /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1d7q2cu\", \"data-styles-preset\": \"UGPnYZMf7\", style: { \"--framer-text-alignment\": \"center\" }, children: \"match your media plans to your ad platforms for seamless campaign activations.\" }) }), className: \"framer-clh1aj\", layoutDependency: layoutDependency, layoutId: \"zdHJ4zNKd\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, tabIndex: 5, text: HwlUWuVdx, verticalAlignment: \"center\", withExternalLayout: true }) }) })] }), /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1cfro1r\", layoutDependency: layoutDependency, layoutId: \"WzEgCMoHz\", children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-1x5ug6z-container\", layoutDependency: layoutDependency, layoutId: \"f6MBxr47O-container\", children: /*#__PURE__*/_jsx(Feature, { background: \"rgb(31, 180, 255)\", color: \"rgb(255, 255, 255)\", height: \"100%\", icon: CLAf33gMz, id: \"f6MBxr47O\", layoutId: \"f6MBxr47O\", style: { width: \"100%\" }, tap: tap1q26ekc, title: bynriwBNw, variant: \"fi7kThygn\", width: \"100%\", ...addPropertyOverrides({ AydaG5HhL: { tap: tap8a8xtj, variant: \"MALla2ZXR\" }, cXF9XKjr8: { tap: tap8a8xtj, variant: \"MALla2ZXR\" }, FuYaZdi_M: { variant: \"MALla2ZXR\" }, qTu5qoj3W: { tap: tap8a8xtj }, Tfi5aYmmZ: { variant: \"MALla2ZXR\" } }, baseVariant, gestureVariant) }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-176y61p-container\", layoutDependency: layoutDependency, layoutId: \"c1FYK5WYr-container\", children: /*#__PURE__*/_jsx(Feature, { background: \"rgb(31, 180, 255)\", color: \"rgb(255, 255, 255)\", height: \"100%\", icon: l6LrrM2MW, id: \"c1FYK5WYr\", layoutId: \"c1FYK5WYr\", style: { width: \"100%\" }, tap: tap1lxf82u, title: x2x6qnKKm, variant: \"MALla2ZXR\", width: \"100%\", ...addPropertyOverrides({ AydaG5HhL: { variant: \"fi7kThygn\" }, cXF9XKjr8: { tap: tap8t1shd }, qTu5qoj3W: { tap: tap8t1shd }, Tfi5aYmmZ: { variant: \"fi7kThygn\" } }, baseVariant, gestureVariant) }) }), /*#__PURE__*/_jsx(motion.div, { className: \"framer-hwg5n3-container\", layoutDependency: layoutDependency, layoutId: \"jCMU27alK-container\", children: /*#__PURE__*/_jsx(Feature, { background: \"rgb(31, 180, 255)\", color: \"rgb(255, 255, 255)\", height: \"100%\", icon: Z0EnY0dvS, id: \"jCMU27alK\", layoutId: \"jCMU27alK\", style: { width: \"100%\" }, tap: tap18hijjv, title: AT4tOqBmy, variant: \"MALla2ZXR\", width: \"100%\", ...addPropertyOverrides({ AydaG5HhL: { tap: tap1o929f3 }, cXF9XKjr8: { variant: \"fi7kThygn\" }, FuYaZdi_M: { variant: \"fi7kThygn\" }, qTu5qoj3W: { tap: tap1o929f3 } }, baseVariant, gestureVariant) }) })] })] }) }) }) });});const css = ['.framer-7xDU1 [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-7xDU1 .framer-1foljhj { display: block; }\", \".framer-7xDU1 .framer-10xa8iz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 960px; }\", \".framer-7xDU1 .framer-iezv4u { aspect-ratio: 1.3918918918918919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 444px); overflow: visible; position: relative; width: 64%; }\", \".framer-7xDU1 .framer-4ra094, .framer-7xDU1 .framer-1rwdv1g { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\", \".framer-7xDU1 .framer-1ouizo7, .framer-7xDU1 .framer-1keght6 { flex: none; height: 444px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; }\", \".framer-7xDU1 .framer-tpo926, .framer-7xDU1 .framer-1mhyhu1, .framer-7xDU1 .framer-clh1aj { bottom: -81px; flex: none; height: 80px; left: 0px; position: absolute; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-7xDU1 .framer-giiifp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 0px; width: 100%; }\", \".framer-7xDU1 .framer-10kcbsy { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\", \".framer-7xDU1 .framer-1n9uuf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 442px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 616px; will-change: transform; }\", \".framer-7xDU1 .framer-1cfro1r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-7xDU1 .framer-1x5ug6z-container, .framer-7xDU1 .framer-176y61p-container, .framer-7xDU1 .framer-hwg5n3-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7xDU1 .framer-10xa8iz, .framer-7xDU1 .framer-giiifp, .framer-7xDU1 .framer-1n9uuf9, .framer-7xDU1 .framer-1cfro1r { gap: 0px; } .framer-7xDU1 .framer-10xa8iz > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-7xDU1 .framer-10xa8iz > :first-child, .framer-7xDU1 .framer-giiifp > :first-child { margin-left: 0px; } .framer-7xDU1 .framer-10xa8iz > :last-child, .framer-7xDU1 .framer-giiifp > :last-child { margin-right: 0px; } .framer-7xDU1 .framer-giiifp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7xDU1 .framer-1n9uuf9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7xDU1 .framer-1n9uuf9 > :first-child, .framer-7xDU1 .framer-1cfro1r > :first-child { margin-top: 0px; } .framer-7xDU1 .framer-1n9uuf9 > :last-child, .framer-7xDU1 .framer-1cfro1r > :last-child { margin-bottom: 0px; } .framer-7xDU1 .framer-1cfro1r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \".framer-7xDU1.framer-v-17ui6i6 .framer-1rwdv1g, .framer-7xDU1.framer-v-1pqjg77 .framer-4ra094 { bottom: unset; height: 100%; right: unset; width: 100%; }\", \".framer-7xDU1.framer-v-17ui6i6 .framer-1keght6, .framer-7xDU1.framer-v-1pqjg77 .framer-1ouizo7, .framer-7xDU1.framer-v-1kj4pd8 .framer-1keght6, .framer-7xDU1.framer-v-1h8diw0 .framer-1ouizo7 { height: 100%; }\", \".framer-7xDU1.framer-v-bmndsu .framer-10xa8iz, .framer-7xDU1.framer-v-1kj4pd8 .framer-10xa8iz, .framer-7xDU1.framer-v-1h8diw0 .framer-10xa8iz { flex-direction: column; width: 440px; }\", \".framer-7xDU1.framer-v-bmndsu .framer-iezv4u, .framer-7xDU1.framer-v-1kj4pd8 .framer-iezv4u, .framer-7xDU1.framer-v-1h8diw0 .framer-iezv4u { height: var(--framer-aspect-ratio-supported, 316px); width: 100%; }\", \".framer-7xDU1.framer-v-bmndsu .framer-1cfro1r, .framer-7xDU1.framer-v-1kj4pd8 .framer-1cfro1r, .framer-7xDU1.framer-v-1h8diw0 .framer-1cfro1r { flex: none; padding: 50px 0px 0px 0px; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7xDU1.framer-v-bmndsu .framer-10xa8iz { gap: 0px; } .framer-7xDU1.framer-v-bmndsu .framer-10xa8iz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7xDU1.framer-v-bmndsu .framer-10xa8iz > :first-child { margin-top: 0px; } .framer-7xDU1.framer-v-bmndsu .framer-10xa8iz > :last-child { margin-bottom: 0px; } }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7xDU1.framer-v-1kj4pd8 .framer-10xa8iz { gap: 0px; } .framer-7xDU1.framer-v-1kj4pd8 .framer-10xa8iz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7xDU1.framer-v-1kj4pd8 .framer-10xa8iz > :first-child { margin-top: 0px; } .framer-7xDU1.framer-v-1kj4pd8 .framer-10xa8iz > :last-child { margin-bottom: 0px; } }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7xDU1.framer-v-1h8diw0 .framer-10xa8iz { gap: 0px; } .framer-7xDU1.framer-v-1h8diw0 .framer-10xa8iz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7xDU1.framer-v-1h8diw0 .framer-10xa8iz > :first-child { margin-top: 0px; } .framer-7xDU1.framer-v-1h8diw0 .framer-10xa8iz > :last-child { margin-bottom: 0px; } }\", ...sharedStyle.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 444\n* @framerIntrinsicWidth 960\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]},\"Tfi5aYmmZ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]},\"FuYaZdi_M\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]},\"qTu5qoj3W\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]},\"AydaG5HhL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]},\"cXF9XKjr8\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,1000,null,null]}}}\n* @framerVariables {\"o9A3lp53i\":\"asset1\",\"G9NSeJWDI\":\"asset2\",\"uZbmGPcAl\":\"asset3\",\"bynriwBNw\":\"label1\",\"CLAf33gMz\":\"icon1\",\"HwlUWuVdx\":\"content\",\"x2x6qnKKm\":\"label2\",\"l6LrrM2MW\":\"icon2\",\"y2Cd23Nqm\":\"content2\",\"AT4tOqBmy\":\"label3\",\"Z0EnY0dvS\":\"icon3\",\"Tl94kNPR_\":\"content3\"}\n*/const FrameriusqhPEve = withCSS(Component, css, \"framer-7xDU1\");export default FrameriusqhPEve;FrameriusqhPEve.displayName = \"Carousel\";FrameriusqhPEve.defaultProps = { height: 444, width: 960 };addPropertyControls(FrameriusqhPEve, { variant: { options: [\"N2lgwiI2y\", \"Tfi5aYmmZ\", \"FuYaZdi_M\", \"qTu5qoj3W\", \"AydaG5HhL\", \"cXF9XKjr8\"], optionTitles: [\"Horizontal 1\", \"Horizontal 2\", \"Horizontal 3\", \"Vertical 1\", \"Vertical 2\", \"Vertical 3\"], title: \"Variant\", type: ControlType.Enum }, o9A3lp53i: { __defaultAssetReference: \"data:framer/asset-reference,7VXLMildeMDoxGdifGLFxFtQM.png?originalFilename=reshot-illustration-business-calendar-planning-list-X8QKL59U6F-23139.png&preferredSize=auto\", title: \"Asset 1\", type: ControlType.ResponsiveImage }, G9NSeJWDI: { title: \"Asset 2\", type: ControlType.ResponsiveImage }, uZbmGPcAl: { __defaultAssetReference: \"data:framer/asset-reference,qbHqOg0OGj5UF9RlLFjgJMvF0oU.png?originalFilename=Asset+3%402x.png&preferredSize=auto\", title: \"Asset 3\", type: ControlType.ResponsiveImage }, bynriwBNw: { defaultValue: \"Data Integrity\", displayTextArea: false, placeholder: \"Data Integrity\", title: \"Label 1\", type: ControlType.String }, CLAf33gMz: (FeatureControls === null || FeatureControls === void 0 ? void 0 : FeatureControls[\"fMc_sb0AR\"]) && { ...FeatureControls[\"fMc_sb0AR\"], defaultValue: \"Handshake\", hidden: undefined, title: \"Icon 1\" }, HwlUWuVdx: { defaultValue: \"Match your media plans to your ad platforms for seamless campaign activations.\", displayTextArea: true, title: \"Content\", type: ControlType.String }, x2x6qnKKm: { defaultValue: \"AdTech Integration\", displayTextArea: false, title: \"Label 2\", type: ControlType.String }, l6LrrM2MW: (FeatureControls === null || FeatureControls === void 0 ? void 0 : FeatureControls[\"fMc_sb0AR\"]) && { ...FeatureControls[\"fMc_sb0AR\"], defaultValue: \"Lifebuoy\", hidden: undefined, title: \"Icon 2\" }, y2Cd23Nqm: { defaultValue: \"Backup all of your campaign data securely to your Google Drive, Google Sheets and/or Google Cloud.\", displayTextArea: true, title: \"Content 2\", type: ControlType.String }, AT4tOqBmy: { defaultValue: \"API First\", displayTextArea: false, title: \"Label 3\", type: ControlType.String }, Z0EnY0dvS: (FeatureControls === null || FeatureControls === void 0 ? void 0 : FeatureControls[\"fMc_sb0AR\"]) && { ...FeatureControls[\"fMc_sb0AR\"], defaultValue: \"Megaphone\", hidden: undefined, title: \"Icon 3\" }, Tl94kNPR_: { defaultValue: \"Match your media plans to your ad platforms for seamless campaign activations.\", displayTextArea: true, title: \"Content 3\", type: ControlType.String } });addFonts(FrameriusqhPEve, [...FeatureFonts, ...sharedStyle.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"default\": { \"type\": \"reactComponent\", \"name\": \"FrameriusqhPEve\", \"slots\": [], \"annotations\": { \"framerIntrinsicHeight\": \"444\", \"framerIntrinsicWidth\": \"960\", \"framerVariables\": \"{\\\"o9A3lp53i\\\":\\\"asset1\\\",\\\"G9NSeJWDI\\\":\\\"asset2\\\",\\\"uZbmGPcAl\\\":\\\"asset3\\\",\\\"bynriwBNw\\\":\\\"label1\\\",\\\"CLAf33gMz\\\":\\\"icon1\\\",\\\"HwlUWuVdx\\\":\\\"content\\\",\\\"x2x6qnKKm\\\":\\\"label2\\\",\\\"l6LrrM2MW\\\":\\\"icon2\\\",\\\"y2Cd23Nqm\\\":\\\"content2\\\",\\\"AT4tOqBmy\\\":\\\"label3\\\",\\\"Z0EnY0dvS\\\":\\\"icon3\\\",\\\"Tl94kNPR_\\\":\\\"content3\\\"}\", \"framerContractVersion\": \"1\", \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]},\\\"Tfi5aYmmZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]},\\\"FuYaZdi_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]},\\\"qTu5qoj3W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]},\\\"AydaG5HhL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]},\\\"cXF9XKjr8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,1000,null,null]}}}\" } }, \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };\n//# sourceMappingURL=./iusqhPEve.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Outfit-600\"]);export const fonts=[{family:\"Outfit\",moduleAsset:{localModuleIdentifier:\"local-module:css/tK1qcZMeM:default\",url:\"https://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\",weight:\"600\"}];export const css=['.framer-m3aPI .framer-styles-preset-t0s2o5:not(.rich-text-wrapper), .framer-m3aPI .framer-styles-preset-t0s2o5.rich-text-wrapper p, .framer-m3aPI .framer-styles-preset-t0s2o5.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Outfit\", serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 0px) { .framer-m3aPI .framer-styles-preset-t0s2o5:not(.rich-text-wrapper), .framer-m3aPI .framer-styles-preset-t0s2o5.rich-text-wrapper p, .framer-m3aPI .framer-styles-preset-t0s2o5.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Outfit\", serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-m3aPI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3f003a4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";import { addFonts, addPropertyControls, ControlType, cx, Image, RichText, useActiveVariantCallback, useOnVariantChange, useVariantState, withCSS } from \"framer\";import { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";import * as React from \"react\";import * as sharedStyle1 from \"https://framerusercontent.com/modules/dAg232fKyD3H6YW4cKrG/IbaOAO5ajbniSSHevUdE/ahLgTfCIP.js\";import * as sharedStyle from \"https://framerusercontent.com/modules/k7trQTsmqd3mwF24Bn4r/swSBEznBbIJgqQclxYIu/stylesPresetParagraph.js\";import * as sharedStyle2 from \"https://framerusercontent.com/modules/nfFTVCJas0PX9vh1LOcv/16YahBr2UZPLUGRxdEwu/tK1qcZMeM.js\";const cycleOrder = [\"frXjJiWoV\", \"xZOte8FRk\", \"sefmCohR8\", \"J5pEkKkgC\", \"kRFP5ziIU\", \"LZz2wPaRb\"];const variantClassNames = { frXjJiWoV: \"framer-v-18wd574\", J5pEkKkgC: \"framer-v-1v8ac8n\", kRFP5ziIU: \"framer-v-1v4svf2\", LZz2wPaRb: \"framer-v-104wici\", sefmCohR8: \"framer-v-l62ou5\", xZOte8FRk: \"framer-v-et5boh\" };function addPropertyOverrides(overrides, ...variants) {const nextOverrides = {};variants === null || variants === void 0 ? void 0 : variants.forEach((variant) => variant && Object.assign(nextOverrides, overrides[variant]));return nextOverrides;}const humanReadableVariantMap = { \"Horizontal 1\": \"frXjJiWoV\", \"Horizontal 2\": \"xZOte8FRk\", \"Horizontal 3\": \"sefmCohR8\", \"Verical 3\": \"LZz2wPaRb\", \"Vertical 1\": \"J5pEkKkgC\", \"Vertical 2\": \"kRFP5ziIU\" };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 Component = /*#__PURE__*/React.forwardRef(function ({ id, style, className, width, height, layoutId, variant: outerVariant = \"frXjJiWoV\", ...restProps }, ref) {const outerVariantId = humanReadableVariantMap[outerVariant];const variant = outerVariantId || outerVariant;const { baseVariant, classNames, gestureVariant, setGestureState, setVariant, transition, variants } = useVariantState({ cycleOrder, defaultVariant: \"frXjJiWoV\", transitions, variant, variantClassNames });const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;const { activeVariantCallback, delay } = useActiveVariantCallback(baseVariant);const onAppear1e6cdkc = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"xZOte8FRk\"), 4e3);});const onAppear1hojis1 = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"sefmCohR8\"), 4e3);});const onAppear1h3b7rs = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"frXjJiWoV\"), 4e3);});const onAppear1egdkwp = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"kRFP5ziIU\"), 4e3);});const onAppear1w8dhfv = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"LZz2wPaRb\"), 4e3);});const onAppear1ltbb0p = activeVariantCallback(async (...args) => {await delay(() => setVariant(\"J5pEkKkgC\"), 4e3);});useOnVariantChange(baseVariant, { default: onAppear1e6cdkc, J5pEkKkgC: onAppear1egdkwp, kRFP5ziIU: onAppear1w8dhfv, LZz2wPaRb: onAppear1ltbb0p, sefmCohR8: onAppear1h3b7rs, xZOte8FRk: onAppear1hojis1 });const isDisplayed = () => {if ([\"xZOte8FRk\", \"sefmCohR8\", \"kRFP5ziIU\", \"LZz2wPaRb\"].includes(baseVariant)) return false;return true;};const isDisplayed1 = () => {if ([\"xZOte8FRk\", \"kRFP5ziIU\"].includes(baseVariant)) return true;return false;};const isDisplayed2 = () => {if ([\"sefmCohR8\", \"LZz2wPaRb\"].includes(baseVariant)) return true;return false;};const defaultLayoutId = React.useId();return /*#__PURE__*/_jsx(LayoutGroup, { id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId, children: /*#__PURE__*/_jsx(motion.div, { initial: variant, animate: variants, onHoverStart: () => setGestureState({ isHovered: true }), onHoverEnd: () => setGestureState({ isHovered: false }), onTapStart: () => setGestureState({ isPressed: true }), onTap: () => setGestureState({ isPressed: false }), onTapCancel: () => setGestureState({ isPressed: false }), className: cx(\"framer-TZSlh\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, classNames), style: { display: \"contents\" }, children: /*#__PURE__*/_jsx(Transition, { value: transition, children: /*#__PURE__*/_jsxs(motion.div, { ...restProps, className: cx(\"framer-18wd574\", className), \"data-framer-name\": \"Horizontal 1\", \"data-highlight\": true, layoutDependency: layoutDependency, layoutId: \"frXjJiWoV\", ref: ref, style: { ...style }, ...addPropertyOverrides({ J5pEkKkgC: { \"data-framer-name\": \"Vertical 1\" }, kRFP5ziIU: { \"data-framer-name\": \"Vertical 2\" }, LZz2wPaRb: { \"data-framer-name\": \"Verical 3\" }, sefmCohR8: { \"data-framer-name\": \"Horizontal 3\" }, xZOte8FRk: { \"data-framer-name\": \"Horizontal 2\" } }, baseVariant, gestureVariant), children: [/*#__PURE__*/_jsxs(motion.div, { className: \"framer-eaf1ib\", layoutDependency: layoutDependency, layoutId: \"w7GmmZm7j\", style: { backgroundColor: \"rgba(255, 255, 255, 0)\", borderBottomLeftRadius: 50, borderBottomRightRadius: 50, borderTopLeftRadius: 50, borderTopRightRadius: 50 }, children: [/*#__PURE__*/_jsx(motion.div, { className: \"framer-5bveyw\", layoutDependency: layoutDependency, layoutId: \"Ojb0e2y2y\", style: { backgroundColor: \"rgba(255, 94, 32, 0.2)\", borderTopLeftRadius: 140, borderTopRightRadius: 50 }, children: /*#__PURE__*/_jsx(motion.div, { className: \"framer-f1sw8z\", layoutDependency: layoutDependency, layoutId: \"SdDjgmfG2\", style: { backgroundColor: \"var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, rgb(93, 33, 255))\", borderBottomLeftRadius: \"50%\", borderBottomRightRadius: \"50%\", borderTopLeftRadius: \"50%\", borderTopRightRadius: \"50%\" }, variants: { kRFP5ziIU: { backgroundColor: \"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\" }, LZz2wPaRb: { backgroundColor: \"rgb(31, 158, 255)\" }, sefmCohR8: { backgroundColor: \"rgb(31, 158, 255)\" }, xZOte8FRk: { backgroundColor: \"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\" } }, children: /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 128, intrinsicWidth: 128, pixelHeight: 128, pixelWidth: 128, src: new URL(\"https://framerusercontent.com/images/53amL5qSOZfJcYFITarvHCOads.png\").href }, className: \"framer-1pm1m5w\", layoutDependency: layoutDependency, layoutId: \"TZrhPL679\" }) }) }), isDisplayed() && /*#__PURE__*/_jsx(Image, { background: { alt: \"Woman smiling\", fit: \"fill\", intrinsicHeight: 1034, intrinsicWidth: 1e3, pixelHeight: 2068, pixelWidth: 2e3, sizes: \"508px\", src: new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=2048\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=512\").href} 495w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=1024\").href} 990w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=2048\").href} 1980w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png\").href} 2000w` }, className: \"framer-19yc8qr\", \"data-framer-name\": \"Image 1\", layoutDependency: layoutDependency, layoutId: \"rLt_PCcoU\", ...addPropertyOverrides({ J5pEkKkgC: { background: { alt: \"Woman smiling\", fit: \"fill\", intrinsicHeight: 1034, intrinsicWidth: 1e3, pixelHeight: 2068, pixelWidth: 2e3, sizes: \"429px\", src: new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=2048\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=512\").href} 495w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=1024\").href} 990w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png?scale-down-to=2048\").href} 1980w, ${new URL(\"https://framerusercontent.com/images/ztassJmD2vdI8KPQ5w4obKLHaJM.png\").href} 2000w` } } }, baseVariant, gestureVariant) }), isDisplayed1() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1685, intrinsicWidth: 2e3, pixelHeight: 1685, pixelWidth: 2e3, src: new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href} 2000w` }, className: \"framer-16muxou\", \"data-framer-name\": \"Image 2\", layoutDependency: layoutDependency, layoutId: \"ggOEDI51W\", ...addPropertyOverrides({ kRFP5ziIU: { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 1685, intrinsicWidth: 2e3, pixelHeight: 1685, pixelWidth: 2e3, sizes: \"490px\", src: new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href} 2000w` } }, xZOte8FRk: { background: { alt: \"Man smiling\", fit: \"fill\", intrinsicHeight: 1685, intrinsicWidth: 2e3, pixelHeight: 1685, pixelWidth: 2e3, sizes: \"569px\", src: new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href, srcSet: `${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/P5veoqwJT9nGvbcChJ6L64QHNw.png\").href} 2000w` } } }, baseVariant, gestureVariant) }), isDisplayed2() && /*#__PURE__*/_jsx(Image, { background: { alt: \"\", fit: \"fill\", intrinsicHeight: 2015, intrinsicWidth: 2e3, pixelHeight: 2015, pixelWidth: 2e3, src: new URL(\"https://framerusercontent.com/images/Em2XVYyphjc0OSijpigittfDzTg.png\").href }, className: \"framer-ecsro3\", \"data-framer-name\": \"Image 3\", layoutDependency: layoutDependency, layoutId: \"pryNIsndF\", ...addPropertyOverrides({ sefmCohR8: { background: { alt: \"Woman smiling\", fit: \"fill\", intrinsicHeight: 2015, intrinsicWidth: 2e3, pixelHeight: 2015, pixelWidth: 2e3, src: new URL(\"https://framerusercontent.com/images/Em2XVYyphjc0OSijpigittfDzTg.png\").href } } }, baseVariant, gestureVariant) })] }), isDisplayed2() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1a5g765\", \"data-framer-name\": \"Text 3\", layoutDependency: layoutDependency, layoutId: \"nmQD5rya2\", children: [/*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", serif', \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"600\", \"--framer-text-color\": \"var(--extracted-a0htzi)\" }, children: \"\u201COttr helped us to drastically reduce ticket opening on our most visited support pages\u201D\" }) }), className: \"framer-1xtvffl\", fonts: [\"GF;Outfit-600\"], layoutDependency: layoutDependency, layoutId: \"IPentwTAi\", style: { \"--extracted-a0htzi\": \"#333\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, variants: { sefmCohR8: { \"--extracted-a0htzi\": \"rgb(51, 51, 51)\" } }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ LZz2wPaRb: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", sans-serif', \"--framer-font-size\": \"32px\", \"--framer-font-weight\": \"600\", \"--framer-text-alignment\": \"left\" }, children: \"\u201CAdOpsIO helped us to drastically reduce our errors in campaign setups\u201D\" }) }) }, sefmCohR8: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", sans-serif', \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"600\", \"--framer-text-color\": \"var(--extracted-a0htzi)\" }, children: \"\u201CAdOpsIO helped us to drastically reduce our errors in campaign setups\u201D\" }) }) } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-16bzrdu\", \"data-styles-preset\": \"stylesPresetParagraph\", children: \"Our tickets are better qualified making our team more productive.\" }) }), className: \"framer-1f5gpbf\", layoutDependency: layoutDependency, layoutId: \"Zu4SDNJaU\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ LZz2wPaRb: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LXJlZ3VsYXI=\", \"--framer-font-family\": '\"Outfit\", \"Outfit Placeholder\", sans-serif', \"--framer-font-size\": \"20px\", \"--framer-line-height\": \"1.5em\", \"--framer-text-alignment\": \"left\" }, children: \"Our campaigns are better matched across our ad platforms, making our team more productive.\" }) }), fonts: [\"GF;Outfit-regular\"] }, sefmCohR8: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-16bzrdu\", \"data-styles-preset\": \"stylesPresetParagraph\", children: \"Our campaigns are better matched across our ad platforms, making our team more productive.\" }) }) } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 River Silva, CPO at Dash\" }) }), className: \"framer-1eygdcw\", layoutDependency: layoutDependency, layoutId: \"MHZPcXAQ_\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ LZz2wPaRb: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 River Silva, CMO at Dash\" }) }) }, sefmCohR8: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 River Silva, CMO at Dash\" }) }) } }, baseVariant, gestureVariant) })] }), isDisplayed1() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-17xdhlv\", \"data-framer-name\": \"Text 2\", layoutDependency: layoutDependency, layoutId: \"XnMvb1fVK\", children: [/*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", serif', \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"600\", \"--framer-text-color\": \"var(--extracted-a0htzi)\" }, children: \"\u201CWith Ottr, we\u2019re 30% more efficient at delivering hundreds of campaigns\u201D\" }) }), className: \"framer-1sgc4tt\", fonts: [\"GF;Outfit-600\"], layoutDependency: layoutDependency, layoutId: \"WWdRAsfCP\", style: { \"--extracted-a0htzi\": \"#333\", \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, variants: { xZOte8FRk: { \"--extracted-a0htzi\": \"rgb(51, 51, 51)\" } }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ kRFP5ziIU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", sans-serif', \"--framer-font-size\": \"32px\", \"--framer-font-weight\": \"600\", \"--framer-text-alignment\": \"left\" }, children: \"\u201CWith AdOpsIO, we\u2019re 30% more efficient at delivering hundreds of campaigns\u201D\" }) }) }, xZOte8FRk: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.h3, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LTYwMA==\", \"--framer-font-family\": '\"Outfit\", sans-serif', \"--framer-font-size\": \"36px\", \"--framer-font-weight\": \"600\", \"--framer-text-color\": \"var(--extracted-a0htzi)\" }, children: \"\u201CWith AdOpsIO, we\u2019re 30% more efficient at delivering hundreds of campaigns\u201D\" }) }) } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-16bzrdu\", \"data-styles-preset\": \"stylesPresetParagraph\", children: \"This tool is exactly what our business has been lacking.\" }) }), className: \"framer-1uig1xg\", layoutDependency: layoutDependency, layoutId: \"W5nZjhhhR\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ kRFP5ziIU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { style: { \"--framer-line-height\": \"1.5em\", \"--framer-text-alignment\": \"left\" }, children: /*#__PURE__*/_jsx(motion.span, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LXJlZ3VsYXI=\", \"--framer-font-family\": '\"Outfit\", serif', \"--framer-font-size\": \"20px\" }, children: \"This tool is exactly what our business has been lacking.\" }) }) }), fonts: [\"GF;Outfit-regular\"] } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 Chris Johnson, Senior Director at Acme\" }) }), className: \"framer-1huui74\", layoutDependency: layoutDependency, layoutId: \"JmENKSVOf\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ kRFP5ziIU: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 Chris Johnson, Senior Director at Amazing Media\" }) }) }, xZOte8FRk: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 Chris Johnson, Senior Director at Amazing Media\" }) }) } }, baseVariant, gestureVariant) })] }), isDisplayed() && /*#__PURE__*/_jsxs(motion.div, { className: \"framer-1f75b7q\", \"data-framer-name\": \"Text 1\", layoutDependency: layoutDependency, layoutId: \"dqWiiuuc2\", children: [/*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-t0s2o5\", \"data-styles-preset\": \"tK1qcZMeM\", children: \"\u201CAdOpsIO was the best investment we ever made at G&O\u201D\" }) }), className: \"framer-rtpl6l\", layoutDependency: layoutDependency, layoutId: \"ovP1djupu\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, variants: { J5pEkKkgC: { \"--extracted-r6o4lv\": \"rgb(0, 0, 0)\" } }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ J5pEkKkgC: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-t0s2o5\", \"data-styles-preset\": \"tK1qcZMeM\", style: { \"--framer-text-alignment\": \"left\", \"--framer-text-color\": \"var(--extracted-r6o4lv)\" }, children: \"\u201CAdOpsIO was the best investment we ever made at G&O\u201D\" }) }) } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-16bzrdu\", \"data-styles-preset\": \"stylesPresetParagraph\", style: { \"--framer-text-alignment\": \"left\" }, children: \"AdOpsIO has really helped our business. It really saves us time and effort. \" }) }), className: \"framer-h6z1e\", layoutDependency: layoutDependency, layoutId: \"wWfQgvn6M\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true, ...addPropertyOverrides({ J5pEkKkgC: { children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { style: { \"--font-selector\": \"R0Y7T3V0Zml0LXJlZ3VsYXI=\", \"--framer-font-family\": '\"Outfit\", \"Outfit Placeholder\", sans-serif', \"--framer-font-size\": \"20px\", \"--framer-letter-spacing\": \"0px\", \"--framer-line-height\": \"1.5em\", \"--framer-text-alignment\": \"left\" }, children: \"AdOpsIO has really helped our business. It really saves us time and effort. \" }) }), fonts: [\"GF;Outfit-regular\"] } }, baseVariant, gestureVariant) }), /*#__PURE__*/_jsx(RichText, { __fromCanvasComponent: true, __perspectiveFX: false, __targetOpacity: 1, children: /*#__PURE__*/_jsx(React.Fragment, { children: /*#__PURE__*/_jsx(motion.p, { className: \"framer-styles-preset-1c3fawt\", \"data-styles-preset\": \"ahLgTfCIP\", children: \"\u2014 Sam Christensen, VP Marketing at G&O\" }) }), className: \"framer-1bytmqx\", layoutDependency: layoutDependency, layoutId: \"LJxSCOYiq\", style: { \"--framer-link-text-color\": \"rgb(0, 153, 255)\", \"--framer-link-text-decoration\": \"underline\", \"--framer-paragraph-spacing\": \"0px\" }, verticalAlignment: \"top\", withExternalLayout: true })] })] }) }) }) });});const css = ['.framer-TZSlh [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-TZSlh .framer-9uavrh { display: block; }\", \".framer-TZSlh .framer-18wd574 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 960px; }\", \".framer-TZSlh .framer-eaf1ib { flex: none; height: 492px; overflow: hidden; position: relative; width: 429px; will-change: transform; }\", \".framer-TZSlh .framer-5bveyw { bottom: 0px; flex: none; height: 359px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: transform; }\", \".framer-TZSlh .framer-f1sw8z { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 70px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 26px; top: 26px; width: 70px; will-change: transform; }\", \".framer-TZSlh .framer-1pm1m5w { flex: none; height: 50px; position: relative; width: 50px; }\", \".framer-TZSlh .framer-igra7v { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\", \".framer-TZSlh .framer-19yc8qr { aspect-ratio: 0.9671179883945842 / 1; bottom: -23px; flex: none; height: var(--framer-aspect-ratio-supported, 525px); left: -36px; overflow: visible; position: absolute; right: -43px; }\", \".framer-TZSlh .framer-16muxou { aspect-ratio: 1.1869436201780414 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 479px); left: -107px; overflow: visible; position: absolute; right: -33px; }\", \".framer-TZSlh .framer-ecsro3 { aspect-ratio: 0.9926534140017286 / 1; bottom: -105px; flex: none; height: var(--framer-aspect-ratio-supported, 598px); left: -114px; overflow: visible; position: absolute; right: -51px; }\", \".framer-TZSlh .framer-1a5g765, .framer-TZSlh .framer-17xdhlv, .framer-TZSlh .framer-1f75b7q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 382px; }\", \".framer-TZSlh .framer-1xtvffl, .framer-TZSlh .framer-1sgc4tt, .framer-TZSlh .framer-rtpl6l { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-TZSlh .framer-1f5gpbf, .framer-TZSlh .framer-1eygdcw, .framer-TZSlh .framer-1uig1xg, .framer-TZSlh .framer-1huui74, .framer-TZSlh .framer-h6z1e, .framer-TZSlh .framer-1bytmqx { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZSlh .framer-18wd574, .framer-TZSlh .framer-f1sw8z, .framer-TZSlh .framer-1a5g765, .framer-TZSlh .framer-17xdhlv, .framer-TZSlh .framer-1f75b7q { gap: 0px; } .framer-TZSlh .framer-18wd574 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-TZSlh .framer-18wd574 > :first-child { margin-left: 0px; } .framer-TZSlh .framer-18wd574 > :last-child { margin-right: 0px; } .framer-TZSlh .framer-f1sw8z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TZSlh .framer-f1sw8z > :first-child, .framer-TZSlh .framer-1a5g765 > :first-child, .framer-TZSlh .framer-17xdhlv > :first-child, .framer-TZSlh .framer-1f75b7q > :first-child { margin-top: 0px; } .framer-TZSlh .framer-f1sw8z > :last-child, .framer-TZSlh .framer-1a5g765 > :last-child, .framer-TZSlh .framer-17xdhlv > :last-child, .framer-TZSlh .framer-1f75b7q > :last-child { margin-bottom: 0px; } .framer-TZSlh .framer-1a5g765 > *, .framer-TZSlh .framer-17xdhlv > *, .framer-TZSlh .framer-1f75b7q > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\", \".framer-TZSlh.framer-v-et5boh .framer-16muxou { left: -87px; right: -53px; }\", \".framer-TZSlh.framer-v-et5boh .framer-17xdhlv { gap: 22px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZSlh.framer-v-et5boh .framer-17xdhlv { gap: 0px; } .framer-TZSlh.framer-v-et5boh .framer-17xdhlv > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-TZSlh.framer-v-et5boh .framer-17xdhlv > :first-child { margin-top: 0px; } .framer-TZSlh.framer-v-et5boh .framer-17xdhlv > :last-child { margin-bottom: 0px; } }\", \".framer-TZSlh.framer-v-1v8ac8n .framer-18wd574, .framer-TZSlh.framer-v-1v4svf2 .framer-18wd574, .framer-TZSlh.framer-v-104wici .framer-18wd574 { flex-direction: column; gap: 60px; width: min-content; }\", \".framer-TZSlh.framer-v-1v8ac8n .framer-eaf1ib, .framer-TZSlh.framer-v-1v4svf2 .framer-eaf1ib, .framer-TZSlh.framer-v-104wici .framer-eaf1ib { height: 400px; width: 350px; }\", \".framer-TZSlh.framer-v-1v8ac8n .framer-19yc8qr { height: var(--framer-aspect-ratio-supported, 444px); }\", \".framer-TZSlh.framer-v-1v8ac8n .framer-1f75b7q, .framer-TZSlh.framer-v-104wici .framer-1a5g765 { align-self: stretch; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZSlh.framer-v-1v8ac8n .framer-18wd574 { gap: 0px; } .framer-TZSlh.framer-v-1v8ac8n .framer-18wd574 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TZSlh.framer-v-1v8ac8n .framer-18wd574 > :first-child { margin-top: 0px; } .framer-TZSlh.framer-v-1v8ac8n .framer-18wd574 > :last-child { margin-bottom: 0px; } }\", \".framer-TZSlh.framer-v-1v4svf2 .framer-16muxou { height: var(--framer-aspect-ratio-supported, 413px); left: -87px; right: -53px; }\", \".framer-TZSlh.framer-v-1v4svf2 .framer-17xdhlv { align-self: stretch; gap: 22px; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZSlh.framer-v-1v4svf2 .framer-18wd574, .framer-TZSlh.framer-v-1v4svf2 .framer-17xdhlv { gap: 0px; } .framer-TZSlh.framer-v-1v4svf2 .framer-18wd574 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TZSlh.framer-v-1v4svf2 .framer-18wd574 > :first-child, .framer-TZSlh.framer-v-1v4svf2 .framer-17xdhlv > :first-child { margin-top: 0px; } .framer-TZSlh.framer-v-1v4svf2 .framer-18wd574 > :last-child, .framer-TZSlh.framer-v-1v4svf2 .framer-17xdhlv > :last-child { margin-bottom: 0px; } .framer-TZSlh.framer-v-1v4svf2 .framer-17xdhlv > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\", \".framer-TZSlh.framer-v-104wici .framer-ecsro3 { height: var(--framer-aspect-ratio-supported, 519px); }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZSlh.framer-v-104wici .framer-18wd574 { gap: 0px; } .framer-TZSlh.framer-v-104wici .framer-18wd574 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TZSlh.framer-v-104wici .framer-18wd574 > :first-child { margin-top: 0px; } .framer-TZSlh.framer-v-104wici .framer-18wd574 > :last-child { margin-bottom: 0px; } }\", ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css]; /**\n* This is a generated Framer component.\n* @framerIntrinsicHeight 492\n* @framerIntrinsicWidth 960\n* @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,960,null,null]},\"xZOte8FRk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,960,null,null]},\"sefmCohR8\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,960,null,null]},\"J5pEkKkgC\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,960,null,null]},\"kRFP5ziIU\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,960,null,null]},\"LZz2wPaRb\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,960,null,null]}}}\n*/const Framert4CgsVm66 = withCSS(Component, css, \"framer-TZSlh\");export default Framert4CgsVm66;Framert4CgsVm66.displayName = \"Testimonials\";Framert4CgsVm66.defaultProps = { height: 492, width: 960 };addPropertyControls(Framert4CgsVm66, { variant: { options: [\"frXjJiWoV\", \"xZOte8FRk\", \"sefmCohR8\", \"J5pEkKkgC\", \"kRFP5ziIU\", \"LZz2wPaRb\"], optionTitles: [\"Horizontal 1\", \"Horizontal 2\", \"Horizontal 3\", \"Vertical 1\", \"Vertical 2\", \"Verical 3\"], title: \"Variant\", type: ControlType.Enum } });addFonts(Framert4CgsVm66, [{ family: \"Outfit\", moduleAsset: { localModuleIdentifier: \"local-module:canvasComponent/t4CgsVm66:default\", url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\", weight: \"600\" }, { family: \"Outfit\", moduleAsset: { localModuleIdentifier: \"local-module:canvasComponent/t4CgsVm66:default\", url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\" }, style: \"normal\", url: \"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\", weight: \"400\" }, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = { \"exports\": { \"default\": { \"type\": \"reactComponent\", \"name\": \"Framert4CgsVm66\", \"slots\": [], \"annotations\": { \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]},\\\"xZOte8FRk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]},\\\"sefmCohR8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]},\\\"J5pEkKkgC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]},\\\"kRFP5ziIU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]},\\\"LZz2wPaRb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,960,null,null]}}}\", \"framerIntrinsicHeight\": \"492\", \"framerIntrinsicWidth\": \"960\", \"framerContractVersion\": \"1\" } }, \"Props\": { \"type\": \"tsType\", \"annotations\": { \"framerContractVersion\": \"1\" } }, \"__FramerMetadata__\": { \"type\": \"variable\" } } };\n//# sourceMappingURL=./t4CgsVm66.map", "// Generated by Framer (28b2919)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dAg232fKyD3H6YW4cKrG/IbaOAO5ajbniSSHevUdE/ahLgTfCIP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/k7trQTsmqd3mwF24Bn4r/swSBEznBbIJgqQclxYIu/stylesPresetParagraph.js\";const cycleOrder=[\"SGoXFOiFB\",\"lb_MvVYta\",\"AtyGpkr8k\",\"AS6WCBYIr\"];const variantClassNames={AS6WCBYIr:\"framer-v-jjv05x\",AtyGpkr8k:\"framer-v-o5wscs\",lb_MvVYta:\"framer-v-1v6u5z2\",SGoXFOiFB:\"framer-v-1dkn9pr\"};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={\"Closed Mobile\":\"AS6WCBYIr\",\"Opened Mobile\":\"AtyGpkr8k\",Closed:\"lb_MvVYta\",Opened:\"SGoXFOiFB\"};const getProps=({answer,height,id,question,width,...props})=>{var ref,ref1,_variant,ref2;return{...props,O6B5xBxit:(ref=answer!==null&&answer!==void 0?answer:props.O6B5xBxit)!==null&&ref!==void 0?ref:\"If you manage one brand, then the Standard Plan is the most suitable plan for you. If you have more than one brand and/or currency, then an Enterprise Plan is the more suitable plan.\",QO3kPTpij:(ref1=question!==null&&question!==void 0?question:props.QO3kPTpij)!==null&&ref1!==void 0?ref1:\"Which pricing plan is right for me?\",variant:(ref2=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref2!==void 0?ref2:\"SGoXFOiFB\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,QO3kPTpij,O6B5xBxit,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"SGoXFOiFB\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y4b1tm=activeVariantCallback(async(...args)=>{setVariant(\"lb_MvVYta\");});const onTap1wfr31u=activeVariantCallback(async(...args)=>{setVariant(\"SGoXFOiFB\");});const onTapuhfq36=activeVariantCallback(async(...args)=>{setVariant(\"AS6WCBYIr\");});const onTap1dltp15=activeVariantCallback(async(...args)=>{setVariant(\"AtyGpkr8k\");});const isDisplayed=()=>{if([\"lb_MvVYta\",\"AS6WCBYIr\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-fST2P\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1dkn9pr\",className),\"data-framer-name\":\"Opened\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SGoXFOiFB\",onTap:onTap1y4b1tm,ref:ref,style:{...style},...addPropertyOverrides({AS6WCBYIr:{\"data-framer-name\":\"Closed Mobile\",onTap:onTap1dltp15},AtyGpkr8k:{\"data-framer-name\":\"Opened Mobile\",onTap:onTapuhfq36},lb_MvVYta:{\"data-framer-name\":\"Closed\",onTap:onTap1wfr31u}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-14k8rn3\",layoutDependency:layoutDependency,layoutId:\"T5CrfWy_o\",children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-wf4vzb\",layoutDependency:layoutDependency,layoutId:\"PsdCDkf0b\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/ _jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f)\"},children:\"Which pricing plan is right for me?\"})})}),className:\"framer-10dl5x2\",layoutDependency:layoutDependency,layoutId:\"SMsuS8tAl\",style:{\"--extracted-1w3ko1f\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:QO3kPTpij,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AS6WCBYIr:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/ _jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", serif',\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\"},children:\"Which pricing plan is right for me?\"})})}),fonts:[\"GF;Outfit-regular\"]},AtyGpkr8k:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/ _jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", serif',\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\"},children:\"Which pricing plan is right for me?\"})})}),fonts:[\"GF;Outfit-regular\"]},lb_MvVYta:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/ _jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"400\"},children:\"Which pricing plan is right for me?\"})})}),fonts:[\"GF;Outfit-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-n744wx\",layoutDependency:layoutDependency,layoutId:\"ww7P_jnya\",style:{rotate:0},variants:{AS6WCBYIr:{rotate:45},lb_MvVYta:{rotate:45}},children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-dx3teb\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xvCMaLfvd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17 7 L 7 17 M 7 7 L 12.03 12.03 L 17 17\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32)) /* {&quot;name&quot;:&quot;Red&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:1295019544,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1c3fawt\",\"data-styles-preset\":\"ahLgTfCIP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"The Figma Copy Paste plugin works in both the browser and the app, so you can convert Figma designs to Framer wherever you prefer to work. \"})}),className:\"framer-1wueld1\",layoutDependency:layoutDependency,layoutId:\"Xoa1O0ULo\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:O6B5xBxit,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AtyGpkr8k:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:\"The Figma Copy Paste plugin works in both the browser and the app, so you can convert Figma designs to Framer wherever you prefer to work. \"})}),fonts:[\"GF;Outfit-regular\"]}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-fST2P [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-fST2P .framer-1udiqsb { display: block; }\",\".framer-fST2P .framer-1dkn9pr { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 30px 30px 30px; position: relative; width: 694px; }\",\".framer-fST2P .framer-14k8rn3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-fST2P .framer-wf4vzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 36px; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fST2P .framer-10dl5x2 { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fST2P .framer-n744wx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-fST2P .framer-dx3teb { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-fST2P .framer-1wueld1 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fST2P .framer-1dkn9pr, .framer-fST2P .framer-14k8rn3, .framer-fST2P .framer-n744wx { gap: 0px; } .framer-fST2P .framer-1dkn9pr > *, .framer-fST2P .framer-n744wx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fST2P .framer-1dkn9pr > :first-child, .framer-fST2P .framer-n744wx > :first-child { margin-left: 0px; } .framer-fST2P .framer-1dkn9pr > :last-child, .framer-fST2P .framer-n744wx > :last-child { margin-right: 0px; } .framer-fST2P .framer-14k8rn3 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-fST2P .framer-14k8rn3 > :first-child { margin-top: 0px; } .framer-fST2P .framer-14k8rn3 > :last-child { margin-bottom: 0px; } }\",\".framer-fST2P.framer-v-o5wscs .framer-1dkn9pr, .framer-fST2P.framer-v-jjv05x .framer-1dkn9pr { padding: 30px 0px 30px 0px; }\",\".framer-fST2P.framer-v-o5wscs .framer-10dl5x2, .framer-fST2P.framer-v-jjv05x .framer-10dl5x2 { flex: 0.8 0 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 170\n * @framerIntrinsicWidth 694\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lb_MvVYta\":{\"layout\":[\"fixed\",\"auto\"]},\"AtyGpkr8k\":{\"layout\":[\"fixed\",\"auto\"]},\"AS6WCBYIr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QO3kPTpij\":\"question\",\"O6B5xBxit\":\"answer\"}\n */ const FramervzsQgxpo_=withCSS(Component,css,\"framer-fST2P\");export default FramervzsQgxpo_;FramervzsQgxpo_.displayName=\"FAQ\";FramervzsQgxpo_.defaultProps={height:170,width:694};addPropertyControls(FramervzsQgxpo_,{variant:{options:[\"SGoXFOiFB\",\"lb_MvVYta\",\"AtyGpkr8k\",\"AS6WCBYIr\"],optionTitles:[\"Opened\",\"Closed\",\"Opened Mobile\",\"Closed Mobile\"],title:\"Variant\",type:ControlType.Enum},QO3kPTpij:{defaultValue:\"Which pricing plan is right for me?\",displayTextArea:true,title:\"Question\",type:ControlType.String},O6B5xBxit:{defaultValue:\"If you manage one brand, then the Standard Plan is the most suitable plan for you. If you have more than one brand and/or currency, then an Enterprise Plan is the more suitable plan.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramervzsQgxpo_,[{family:\"Outfit\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/vzsQgxpo_:default\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",weight:\"400\"},...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervzsQgxpo_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"694\",\"framerIntrinsicHeight\":\"170\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lb_MvVYta\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AtyGpkr8k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AS6WCBYIr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"QO3kPTpij\\\":\\\"question\\\",\\\"O6B5xBxit\\\":\\\"answer\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vzsQgxpo_.map", "export function Storage(name) {\n    this.ready = new Promise((resolve, reject)=>{\n        var request = window.indexedDB.open(location.origin);\n        request.onupgradeneeded = (e)=>{\n            this.db = e.target[\"result\"];\n            this.db.createObjectStore(\"store\");\n        };\n        request.onsuccess = (e)=>{\n            this.db = e.target[\"result\"];\n            resolve();\n        };\n        request.onerror = (e)=>{\n            this.db = e.target[\"result\"];\n            reject(e);\n        };\n    });\n}\nStorage.prototype.get = function(key) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().get(key);\n            request.onsuccess = (e)=>resolve(e.target.result)\n            ;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.getStore = function() {\n    return this.db.transaction([\n        \"store\"\n    ], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function(key, value) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().put(value, key);\n            request.onsuccess = resolve;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.delete = function(key, value) {\n    window.indexedDB.deleteDatabase(location.origin);\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"Storage\":{\"type\":\"function\"}}}", "// @ts-ignore\nimport { Storage } from \"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";\nexport const hashCode = (s)=>s.split(\"\").reduce((a, b)=>{\n        a = (a << 5) - a + b.charCodeAt(0);\n        return a & a;\n    }, 0)\n;\nexport function corsProxy(url) {\n    return `https://cors-anywhere.herokuapp.com/${url}`;\n}\nexport async function cachedResponse(url, cache = new Storage(\"cache\")) {\n    const cacheKey = url;\n    const data = await cache.get(cacheKey);\n    if (data) {\n        return data;\n    } else {\n        var req = new XMLHttpRequest();\n        req.open(\"GET\", url, true);\n        req.responseType = \"blob\";\n        return new Promise((resolve, reject)=>{\n            req.onload = async function() {\n                if (this.status === 200) {\n                    await cache.set(url, this.response);\n                    resolve(this.response);\n                } else {\n                    reject(new Error(`Response status ${this.status} ${this.statusText}`));\n                }\n            };\n            req.onerror = function(error) {\n                reject(error);\n            };\n            req.send();\n        });\n    }\n}\nexport async function checkForCachedData(url, cache = new Storage(\"cache\")) {\n    const cacheKey = url;\n    const data = await cache.get(cacheKey);\n    if (data) {\n        return data;\n    } else {\n        return null;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"hashCode\":{\"type\":\"variable\"},\"checkForCachedData\":{\"type\":\"function\"},\"corsProxy\":{\"type\":\"function\"},\"cachedResponse\":{\"type\":\"function\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,RenderTarget,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{cachedResponse,corsProxy,hashCode,checkForCachedData}from\"https://framer.com/m/framer/default-video-utils.js\";import{useOnEnter,useOnExit,defaultEvents,useAutoMotionValue,useIsBrowserSafari}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var LoopType;(function(LoopType){LoopType[\"StartTime\"]=\"startTime\";LoopType[\"Beginning\"]=\"beginning\";LoopType[\"NoLoop\"]=\"noLoop\";})(LoopType||(LoopType={}));var PreloadType;(function(PreloadType){PreloadType[\"None\"]=\"none\";PreloadType[\"MetaData\"]=\"metadata\";PreloadType[\"Auto\"]=\"auto\";PreloadType[\"ForceCache\"]=\"force\";})(PreloadType||(PreloadType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,loopType,muted,playsinline,controls,preload,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();// video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const videoRef=useRef();const isLoaded=useRef(false);const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const loop=loopType!==LoopType.NoLoop;const fullLoop=loopType===LoopType.Beginning;const isCanvas=useMemo(()=>RenderTarget.current()!==RenderTarget.preview,[]);const isForcedCache=preload===PreloadType.ForceCache;const isAutoCache=preload===PreloadType.Auto;const isMuted=useMemo(()=>isCanvas?true:muted,[isCanvas,muted]);const shouldPlay=!isCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const play=useCallback(()=>{var ref;if(isInCurrentNavigationTarget)(ref=videoRef.current)===null||ref===void 0?void 0:ref.play();},[]);const pause=useCallback(()=>{var ref;return(ref=videoRef.current)===null||ref===void 0?void 0:ref.pause();},[]);const restartVideo=useCallback((playAfter=true)=>{if(!fullLoop)setProgress(startTime,playAfter);else play();},[startTime,fullLoop]);const setProgress=(newProgress,playAfter=false)=>{if(videoRef.current){const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress*.01*videoRef.current.duration)<.3;if(videoRef.current.duration>0&&!isAlreadySet)videoRef.current.currentTime=newProgress*.01*videoRef.current.duration;if(autoPlay&&shouldPlay&&playAfter)play();}};// Change progress via prop\nuseEffect(()=>{setProgress(startTime);},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{setProgress(newValue);}});// Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){if(restartOnEnter)restartVideo(!wasPausedOnLeave.current||wasEndedOnLeave.current);else if(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const getUrl=useCallback((cors=false)=>{if(srcType===SrcType.Url){return cors?corsProxy(srcUrl):srcUrl;}if(srcType===SrcType.Video){return srcFile;}},[srcType,srcFile,srcUrl]);// Logic for cache options\nconst setVideoRef=useCallback(async element=>{if(!element)return;videoRef.current=element;if(isSafari){videoRef.current[\"src\"]=getUrl();return;}if(preload===PreloadType.ForceCache){if(isLoaded.current)return;const url=getUrl(true);const response=await cachedResponse(url);if(response&&videoRef.current){videoRef.current[\"src\"]=URL.createObjectURL(response) // IE10+\n;isLoaded.current=true;}}else if(preload===PreloadType.Auto){if(isLoaded.current)return;const url1=getUrl(true);const response1=await checkForCachedData(url1);if(response1&&videoRef.current)videoRef.current[\"src\"]=URL.createObjectURL(response1);else videoRef.current[\"src\"]=getUrl();isLoaded.current=true;}},[preload]);// Trigger rerender & reload when key props change\nuseEffect(()=>{if(isCanvas)isLoaded.current=false;setVideoRef(videoRef.current);},[srcFile,srcUrl,srcType,posterEnabled,canvasPlay,preload,loop,autoPlay]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>{play();},50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);const key=useMemo(()=>hashCode(JSON.stringify({srcType,srcUrl,srcFile,autoPlay,canvasPlay,isForcedCache})),[srcType,srcUrl,srcFile,autoPlay,canvasPlay,isForcedCache]);const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${radius}px`;const src=useMemo(()=>(isForcedCache||isAutoCache)&&!isSafari?null:getUrl(),[isSafari,isAutoCache,isForcedCache]);return /*#__PURE__*/ _jsx(\"video\",{autoPlay:autoPlay&&shouldPlay,ref:setVideoRef,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster:posterEnabled?poster:undefined,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"},onSeeked:e=>{if(onSeeked)onSeeked(e);},onPause:e=>{if(onPause)onPause(e);},onPlay:e=>{if(onPlay)onPlay(e);},onEnded:e=>{if(onEnd)onEnd(e);if(loop&&shouldPlay&&videoRef.current)restartVideo();},onCanPlay:()=>{if(shouldPlay&&videoRef.current&&autoPlay)play();else pause();if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime);},src:src,controls:isCanvas?false:controls,muted:isMuted,playsInline:playsinline},key);});Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:true,poster:\"https://misc.framerstatic.com/components/video-poster.jpg\",controls:false,autoPlay:true,canvasPlay:false,fullLoop:false,muted:true,playsinline:true,restartOnEnter:false,preload:PreloadType.Auto,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",defaultValue:Video.defaultProps.poster,hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},radius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loopType:{type:ControlType.Enum,title:\"Loop\",optionTitles:[\"From Start Time\",\"From Beginning\",\"Don't Loop\"],options:[LoopType.StartTime,LoopType.Beginning,LoopType.NoLoop]},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},restartOnEnter:{type:ControlType.Boolean,title:\"On ReEnter\",enabledTitle:\"Restart\",disabledTitle:\"Resume\"},controls:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},// playsinline: { type: ControlType.Boolean, title: \"Inline\", enabledTitle: \"Yes\", disabledTitle: \"No\" },\npreload:{type:ControlType.Enum,title:\"Cache\",options:[PreloadType.Auto,PreloadType.None,PreloadType.ForceCache]},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,Text,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xUCuNdICT7LqG93nhqbM/Phosphor.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import Carousel from\"#framer/local/canvasComponent/iusqhPEve/iusqhPEve.js\";import Footer from\"#framer/local/canvasComponent/NNpgnq2bN/NNpgnq2bN.js\";import Button from\"#framer/local/canvasComponent/P8dj6_5tK/P8dj6_5tK.js\";import Testimonials from\"#framer/local/canvasComponent/t4CgsVm66/t4CgsVm66.js\";import NavigationBar from\"#framer/local/canvasComponent/uGGJCoIU8/uGGJCoIU8.js\";import FAQ from\"#framer/local/canvasComponent/vzsQgxpo_/vzsQgxpo_.js\";import{Video}from\"#framer/local/codeFile/eDnXigW/Video.js\";import*as sharedStyle3 from\"#framer/local/css/PJ34MGaut/PJ34MGaut.js\";import*as sharedStyle from\"#framer/local/css/stylesPresetHeading1/stylesPresetHeading1.js\";import*as sharedStyle2 from\"#framer/local/css/stylesPresetHeading2/stylesPresetHeading2.js\";import*as sharedStyle1 from\"#framer/local/css/stylesPresetParagraph/stylesPresetParagraph.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonFonts=getFonts(Button);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const NavigationBarFonts=getFonts(NavigationBar);const VideoFonts=getFonts(Video);const PhosphorFonts=getFonts(Phosphor);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const TestimonialsFonts=getFonts(Testimonials);const FAQFonts=getFonts(FAQ);const FormSparkFonts=getFonts(FormSpark);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"xggxiN62k\",\"iTcd5L5X1\"];const breakpoints={iTcd5L5X1:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",xggxiN62k:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dd3uJ\";const variantClassNames={iTcd5L5X1:\"framer-v-1cdb2wt\",WQLkyLRf1:\"framer-v-72rtr7\",xggxiN62k:\"framer-v-15ejraa\"};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:40,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:40,delay:.5,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:40,delay:.6,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:40,delay:.7,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:40,delay:.8,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition7={damping:60,delay:.6,mass:6,stiffness:700,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:60,delay:.5,mass:6,stiffness:700,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:60,delay:.4,mass:6,stiffness:700,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:60,delay:.3,mass:6,stiffness:700,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={damping:60,delay:.2,mass:6,stiffness:700,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation18={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation19={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:100};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition12={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:20,y:0};const transition13={damping:60,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:20,y:0};const transition14={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:20,y:0};const transition15={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:20,y:0};const transition16={damping:60,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:20,y:0};const transition17={damping:60,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:20,y:0};const transition18={damping:60,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition18,x:20,y:0};const transition19={damping:60,delay:.7,mass:1,stiffness:500,type:\"spring\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition19,x:20,y:0};const transition20={damping:60,delay:.8,mass:1,stiffness:500,type:\"spring\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition20,x:20,y:0};const transition21={damping:60,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition21,x:20,y:0};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:40};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition12,x:0,y:40};const transition22={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition22,x:0,y:40};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"iTcd5L5X1\",Tablet:\"xggxiN62k\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}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-dd3uJ`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-dd3uJ`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const id=useRouteElementId(\"Wen4UJho3\");const ref2=React.useRef(null);const id1=useRouteElementId(\"KMSGkzuFg\");const ref3=React.useRef(null);const id2=useRouteElementId(\"X_xCHvtzy\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"iTcd5L5X1\")return false;return true;};const id3=useRouteElementId(\"m9Qd_PMzu\");const ref5=React.useRef(null);const id4=useRouteElementId(\"C3nvKtaou\");const ref6=React.useRef(null);const id5=useRouteElementId(\"LL37qYENZ\");const ref7=React.useRef(null);const id6=useRouteElementId(\"mAEFr9hpk\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1uyqpyx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ckriva\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{\"data-framer-appear-id\":\"13sd4gs\",animate:optimizeAppear(\"animate\",\"13sd4gs\",animation,\"1cdb2wt\"),initial:optimizeAppear(\"initial\",\"13sd4gs\",animation1,\"1cdb2wt\")},xggxiN62k:{\"data-framer-appear-id\":\"wgdknl\",animate:optimizeAppear(\"animate\",\"wgdknl\",animation,\"15ejraa\"),initial:optimizeAppear(\"initial\",\"wgdknl\",animation1,\"15ejraa\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1c9hqh8\",animation,\"72rtr7\"),className:\"framer-1c9hqh8\",\"data-framer-appear-id\":\"1c9hqh8\",initial:optimizeAppear(\"initial\",\"1c9hqh8\",animation1,\"72rtr7\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Say goodbye to messy campaigns\"})})},xggxiN62k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Say goodbye to messy campaigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-o3e5h0\",\"data-styles-preset\":\"stylesPresetHeading1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Say goodbye to messy campaigns\"})}),className:\"framer-1g0cw8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamline your campaign activation processes; from media planning to ad trafficking.\"})})},xggxiN62k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamline your campaign activation processes; from media planning to ad trafficking.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Streamline your campaign activation processes; from media planning to ad trafficking.\"})}),className:\"framer-313soa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xttx2s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks[2]},xggxiN62k:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(0, 0, 0)\",height:\"100%\",id:\"s1vgBzoth\",layoutId:\"s1vgBzoth\",link:resolvedLinks[0],title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10qjjx4\",\"data-framer-name\":\"Visual\",name:\"Visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{\"data-framer-appear-id\":\"f254ac\",animate:optimizeAppear(\"animate\",\"f254ac\",animation2,\"1cdb2wt\"),initial:optimizeAppear(\"initial\",\"f254ac\",animation3,\"1cdb2wt\")},xggxiN62k:{\"data-framer-appear-id\":\"moqc1m\",animate:optimizeAppear(\"animate\",\"moqc1m\",animation2,\"15ejraa\"),initial:optimizeAppear(\"initial\",\"moqc1m\",animation3,\"15ejraa\")}},children:/*#__PURE__*/_jsx(motion.div,{animate:optimizeAppear(\"animate\",\"1oqdvv5\",animation2,\"72rtr7\"),className:\"framer-1oqdvv5\",\"data-framer-appear-id\":\"1oqdvv5\",initial:optimizeAppear(\"initial\",\"1oqdvv5\",animation3,\"72rtr7\"),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{background:{alt:\"Woman with a headset\",fit:\"fill\",intrinsicHeight:1986,intrinsicWidth:2e3,pixelHeight:1986,pixelWidth:2e3,sizes:\"calc(min(100vw, 1200px) - 40px)\",src:\"https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png\",srcSet:\"https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman with a headset\",fit:\"fill\",intrinsicHeight:1986,intrinsicWidth:2e3,pixelHeight:1986,pixelWidth:2e3,sizes:\"518px\",src:\"https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png\",srcSet:\"https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yS92OHd2GJuNGI7CnE42FS7APA.png 2000w\"},className:\"framer-1m49mtc\",\"data-framer-name\":\"Image\",name:\"Image\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qe5v4\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by the best companies in the world\"})}),className:\"framer-1b49fua\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uh6qmf\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bdee8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xggxiN62k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/SEyjUHDJcl7S7ZMNKErpOnibU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/SEyjUHDJcl7S7ZMNKErpOnibU.png\"},className:\"framer-a5gg4m\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xpyeer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xggxiN62k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/7NrWmg1As7QV1CcrXGQXMWzxc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/7NrWmg1As7QV1CcrXGQXMWzxc.png\"},className:\"framer-rii619\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-101xhjq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/04IqNWuHYbYkYPD484vevd7LvE8.png\"}},xggxiN62k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/04IqNWuHYbYkYPD484vevd7LvE8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/04IqNWuHYbYkYPD484vevd7LvE8.png\"},className:\"framer-2ea1ye\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pyf85v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/Bom6FegPZTcCWdlA1fdJvvQiuMw.png\"}},xggxiN62k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/Bom6FegPZTcCWdlA1fdJvvQiuMw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/Bom6FegPZTcCWdlA1fdJvvQiuMw.png\"},className:\"framer-1iry00w\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w7i2wm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/mxw3OafXbQEfH3RJScMUubQ8iKs.png\"}},xggxiN62k:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,loading:\"lazy\",pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/mxw3OafXbQEfH3RJScMUubQ8iKs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42,intrinsicWidth:107,pixelHeight:42,pixelWidth:107,src:\"https://framerusercontent.com/images/mxw3OafXbQEfH3RJScMUubQ8iKs.png\"},className:\"framer-10kjlgq\"})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zq0kxo-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{variant:\"R7qPWHgnI\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"nGUOwJuVx\",layoutId:\"nGUOwJuVx\",style:{width:\"100%\"},variant:\"ezFAeyV2V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-25yeyr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ekqs33\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5nxud3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Campaign Planning and Operations At Scale\"})}),className:\"framer-mn1ufc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:\"Skip the spreadsheets & emails to work more efficiently and launch more campaigns more consistently.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:\"Track all of your marketing activities including digital, social, influencers, podcasts, offline, and more!\"})]}),className:\"framer-1btsn7t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dqslx5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks1[2]},xggxiN62k:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(31, 180, 255)\",height:\"100%\",id:\"pcPo67vqu\",layoutId:\"pcPo67vqu\",link:resolvedLinks1[0],title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvn3j8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5opch\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ccfqj3-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",bottomLeft:20,bottomRight:20,canvasPlay:false,controls:false,height:\"100%\",id:\"Qir1feWGR\",isMixed:false,layoutId:\"Qir1feWGR\",loopType:\"startTime\",muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,preload:\"auto\",radius:20,restartOnEnter:false,srcFile:\"https://framerusercontent.com/assets/CSNdZKOm5OQWiOu18EHNsEEI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeft:20,topRight:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cvvtba\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xhrqiv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"HXue2kp4W\",layoutId:\"HXue2kp4W\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uqpa2s\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j4qrjq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SpotifyLogo\",id:\"w6ZZGzKlR\",layoutId:\"w6ZZGzKlR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13qw5de\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r1kaap-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Television\",id:\"Q_oLPetHJ\",layoutId:\"Q_oLPetHJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17qegty\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jx6aq9-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FacebookLogo\",id:\"uCwjRYKS6\",layoutId:\"uCwjRYKS6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5d8ol\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tqa2ea-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TiktokLogo\",id:\"AIJVjYMC3\",layoutId:\"AIJVjYMC3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kb4u1n\",id:id,ref:ref2,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-acsc3p\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Features\"})}),className:\"framer-1sdovs9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kogs0-container\",id:id1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{style:{width:\"100%\"},variant:\"qTu5qoj3W\"},xggxiN62k:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Carousel,{asset1:addImageAlt({src:\"https://framerusercontent.com/images/iprzUycvoPKSbxwo1LEZHdUYZQ.png\",srcSet:\"https://framerusercontent.com/images/iprzUycvoPKSbxwo1LEZHdUYZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/iprzUycvoPKSbxwo1LEZHdUYZQ.png 615w\"},\"\"),asset2:addImageAlt({src:\"https://framerusercontent.com/images/EbPdEP6h7vPnd8kTFQHKFdPjRU.png\",srcSet:\"https://framerusercontent.com/images/EbPdEP6h7vPnd8kTFQHKFdPjRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/EbPdEP6h7vPnd8kTFQHKFdPjRU.png 615w\"},\"\"),asset3:addImageAlt({src:\"https://framerusercontent.com/images/ImgpUzqpI33uEETbpKwb6ZqI.png\",srcSet:\"https://framerusercontent.com/images/ImgpUzqpI33uEETbpKwb6ZqI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ImgpUzqpI33uEETbpKwb6ZqI.png 615w\"},\"\"),content:\" Enforce your naming conventions to all your ad tech platforms with smart automations from your campaign media plans.\",content2:\"Backup all of your campaign data securely to your Google Drive, Google Sheets and/or Google Cloud.\",content3:\"Match your media plans to your ad platforms with standardised templates for seamless campaign activations and reporting.\",height:\"100%\",icon1:\"Handshake\",icon2:\"Lifebuoy\",icon3:\"Megaphone\",id:\"KMSGkzuFg\",label1:\"ADTECH INTEGRATION\",label2:\"DATA BACKUP\",label3:\" DATA CONSISTENCY\",layoutId:\"KMSGkzuFg\",variant:\"N2lgwiI2y\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbw4b2\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"How it works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\"},children:\"How it works\"})}),className:\"framer-upeeys\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19sneeh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3qlqt\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i18b3w\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:512,intrinsicWidth:512,loading:\"lazy\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eIxvM2F5ZRhYeHe0Ah0IWCRords.png\"},className:\"framer-1agqp24\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ovmn7w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"01 Setup\"})}),className:\"framer-1bvc5xh\",fonts:[\"GF;Inter-600\"],id:id2,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Create your brand's campaign media plan template (or use our default template) and match the data fields to your ad platform and UTM naming conventions.\"})}),className:\"framer-189ztou\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmc81s\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frjqdp\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:\"lazy\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/FB5oxH1zRZEazUv3qRv0qdM2HiA.png\"},className:\"framer-mj74gr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bhm70i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"02 Create\"})}),className:\"framer-1dkypeo\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Publish campaigns instantly by creating your media plans on any advertising channel. Automations between your media plans and ad platforms ensures that campaign metadata is consistent.\"})}),className:\"framer-ssvrto\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-llf33t\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-179w8gv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:\"lazy\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/VHrOsasKOAQBcyvVZt7hYrvwY.png\"},className:\"framer-1qn4bcm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bj6er7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"03 Report\"})}),className:\"framer-cfoiyp\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Gain unmatched insights from all your advertising platforms and analytics thanks to clean and accurate campaign data that enables quicker reporting and quicker actions.\"})}),className:\"framer-1kt6ug1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1br1z09\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pazecz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o2n7pb\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get consistent campaign tracking conventions\"})}),className:\"framer-cfoabq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:\"Say goodbye to the hassle of managing your campaign data taxonomy in spreadsheets that fall out of sync. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:\"Define all campaign tracking codes and UTM tracking links in real time, from one unified platform. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\"},children:\"Standardised naming nomenclature ensures a single source of truth for all your campaigns.\"})]}),className:\"framer-19aqnxr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gmhbiq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks2[2]},xggxiN62k:{link:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(31, 180, 255)\",height:\"100%\",id:\"b2Z2AI5OM\",layoutId:\"b2Z2AI5OM\",link:resolvedLinks2[0],title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbc6gm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wt7e3p\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cirvdi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c7wohi-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GoogleLogo\",id:\"CbjX55VUC\",layoutId:\"CbjX55VUC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ia9n71\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0553h-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SpotifyLogo\",id:\"Rwke4G94z\",layoutId:\"Rwke4G94z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e64tgz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1szrcuz-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TwitterLogo\",id:\"Ivnq0ZJk6\",layoutId:\"Ivnq0ZJk6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmgicj\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c78951 hidden-1cdb2wt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rfcp2m-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FacebookLogo\",id:\"vjBdYEJTd\",layoutId:\"vjBdYEJTd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-111c96i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cqgi6q-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TiktokLogo\",id:\"pB6J9oQQn\",layoutId:\"pB6J9oQQn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w3swf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mmbve-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"vzhFRvLoM\",layoutId:\"vzhFRvLoM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4fn76v hidden-1cdb2wt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ppqrqo-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LinkedinLogo\",id:\"m1Tp4qlwE\",layoutId:\"m1Tp4qlwE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7unbkd\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15prk9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1or3h4y-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"SnapchatLogo\",id:\"ibAoTewXT\",layoutId:\"ibAoTewXT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pf550f\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rhnq8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TelevisionSimple\",id:\"KcffRbNRa\",layoutId:\"KcffRbNRa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mm0672\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2kkyki-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ApplePodcastsLogo\",id:\"TD5qbLExO\",layoutId:\"TD5qbLExO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1sm8nlj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Trusted by the best companies in the world\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by the best companies in the world\"})}),className:\"framer-tmxyu9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8tztdu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{style:{width:\"100%\"},variant:\"J5pEkKkgC\"},xggxiN62k:{variant:\"J5pEkKkgC\"}},children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"kDf8ICiHe\",layoutId:\"kDf8ICiHe\",variant:\"xZOte8FRk\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1uiqc27\",id:id3,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Pricing & Plans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing & Plans\"})}),className:\"framer-k3eaua\",fonts:[\"Inter\"],id:id4,ref:ref6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5z4jvc\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation33,__framer__exit:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-196kiyu\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9xla3o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jkzk3b\",\"data-styles-preset\":\"PJ34MGaut\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Standard\"})}),className:\"framer-10l7c3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Single Brand\"})}),className:\"framer-10nm9b6\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-swjr19\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$500\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$500\"})}),className:\"framer-1ywh864\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,className:\"framer-dpsr2v\",fonts:[\"GF;Outfit-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>per month</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1y1yd\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bjoylw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qz33zk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vrpp0k-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"SOQR_nAPT\",layoutId:\"SOQR_nAPT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x3cey3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Unlimited Campaigns\"})}),className:\"framer-uvqmm7\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tggu8f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwtz6s-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"TlKTQRKXu\",layoutId:\"TlKTQRKXu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12we9xm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Up to 50 Users\"})}),className:\"framer-1a3z26x\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11fua6z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpq9il-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"w_t9U3CI_\",layoutId:\"w_t9U3CI_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14jm7e0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Media Plan Templates\"})}),className:\"framer-jkz933\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rybvc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-120rhje-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"JGrPKm2tT\",layoutId:\"JGrPKm2tT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1niqdtr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ad Platform Naming Conventions\"})}),className:\"framer-nwh6nw\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjrcxk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18hdgkx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"e63kqSMvw\",layoutId:\"e63kqSMvw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1da0too\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multi-Channel Campaigns\"})}),className:\"framer-1t84oy8\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-up2tyx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks3[2]},xggxiN62k:{link:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(0, 0, 0)\",height:\"100%\",id:\"pRgdA8sqd\",layoutId:\"pRgdA8sqd\",link:resolvedLinks3[0],style:{width:\"100%\"},title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation33,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lmz4co\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ne1egn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1jkzk3b\",\"data-styles-preset\":\"PJ34MGaut\",children:\"Enterprise\"})}),className:\"framer-cdktea\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-text-color\":'var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114)) /* {\"name\":\"Text Light\"'},children:\"Multiple Brands and Sub-Brands\"})}),className:\"framer-6q69dd\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c8de0v\",children:[/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-1lscqrl\",fonts:[\"GF;Outfit-600\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>$5000</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-text-color\":'var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114)) /* {\"name\":\"Text Light\"'},children:\"starting price per month\"})}),className:\"framer-13h3amh\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m63r1n\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izmxra\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yt8rp0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ikj6tu-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(31, 180, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"Y0j4wJVWK\",layoutId:\"Y0j4wJVWK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jk72n6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\"},children:\"Everything in Standard\"})}),className:\"framer-17jo1k4\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o2keid\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11g0tpy-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"fElJ4fNtZ\",layoutId:\"fElJ4fNtZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bxml1q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\"},children:\"From 500 Users\"})}),className:\"framer-fx9n3j\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hnzpl5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qkzg8v-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"KUtkzj5yo\",layoutId:\"KUtkzj5yo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e81cmv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\"},children:\"Data Backup To Your Cloud\"})}),className:\"framer-1yfroui\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88d7fl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2zkp47-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"I5dGoFsFv\",layoutId:\"I5dGoFsFv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1joaghk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\"},children:\"Advanced Role Management\"})}),className:\"framer-1qvw6o9\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8oy22f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vk7we7-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, rgb(255, 94, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"R6Kq1yKts\",layoutId:\"R6Kq1yKts\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rsxc8m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\"},children:\"API Access\"})}),className:\"framer-1ymrqfq\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1na5jq3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks4[2]},xggxiN62k:{link:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(31, 180, 255)\",height:\"100%\",id:\"t_jK4MTG2\",layoutId:\"t_jK4MTG2\",link:resolvedLinks4[0],style:{width:\"100%\"},title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1nc02uc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})}),className:\"framer-139l2da\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zs09t6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pqqtdw-container\",\"data-framer-name\":\"FAQ\",id:id5,name:\"FAQ\",ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{variant:\"AS6WCBYIr\"}},children:/*#__PURE__*/_jsx(FAQ,{answer:\"Yes, through choosing a yearly plan, you will receive a 10% discount.\\n\",height:\"100%\",id:\"LL37qYENZ\",layoutId:\"LL37qYENZ\",name:\"FAQ\",question:\"Do you offer any discounted plans?\",style:{width:\"100%\"},variant:\"lb_MvVYta\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5if23v\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9oslr6-container\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{variant:\"AS6WCBYIr\"}},children:/*#__PURE__*/_jsx(FAQ,{answer:\"If you manage one brand, then the Standard Plan is the most suitable plan for you. If you have more than one brand and/or currency, then an Enterprise Plan is the more suitable plan.\",height:\"100%\",id:\"Vb7LShya3\",layoutId:\"Vb7LShya3\",name:\"FAQ\",question:\"Which pricing plan is right for me?\",style:{width:\"100%\"},variant:\"lb_MvVYta\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1to1a7h\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfv7bm-container\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{variant:\"AS6WCBYIr\"}},children:/*#__PURE__*/_jsx(FAQ,{answer:\"We take security seriously. Our servers are hosted in world-class data centres that are protected by biometric locks and 24-hour surveillance. In addition, we offer the option for you to keep a copy of all of your data on your own Google Drive.\\n\",height:\"100%\",id:\"Bv6zR6LkE\",layoutId:\"Bv6zR6LkE\",name:\"FAQ\",question:\"How secure is my data?\\n\",style:{width:\"100%\"},variant:\"lb_MvVYta\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7k5u2l\"})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ibhbo6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zoj6v\",\"data-framer-name\":\"Banner\",name:\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ro9iau\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start a free trial now\"})})},xggxiN62k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start a free trial now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m9bzi2\",\"data-styles-preset\":\"stylesPresetHeading2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start a free trial now\"})}),className:\"framer-1eg76ab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deliver exceptional campaigns.\"})})},xggxiN62k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deliver exceptional campaigns.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Deliver exceptional campaigns.\"})}),className:\"framer-1igjaq3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined},{href:{webPageId:\"UHJ1jAbTe\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qf4naq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{link:resolvedLinks5[2]},xggxiN62k:{link:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{background:\"rgb(0, 0, 0)\",height:\"100%\",id:\"cHRqhscxJ\",layoutId:\"cHRqhscxJ\",link:resolvedLinks5[0],title:\"Get started\",variant:\"WDDGcxJxU\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzv5tq\",\"data-framer-name\":\"Contact\",id:id6,name:\"Contact\",ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Contact Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Contact Us\"})}),className:\"framer-ca4mko\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16s6osw-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(31, 180, 255)\",fontWeight:600,label:\"Send Message\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"HLyAclxb\",gap:15,height:\"100%\",id:\"s7_JTcjGS\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"s7_JTcjGS\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uaevh8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iTcd5L5X1:{variant:\"vUrCHDcI1\"},xggxiN62k:{variant:\"F4H1KvR23\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"DNflF6M8_\",layoutId:\"DNflF6M8_\",style:{width:\"100%\"},variant:\"H1mpamEnS\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-dd3uJ { background: white; }`,\".framer-dd3uJ.framer-lux5qc, .framer-dd3uJ .framer-lux5qc { display: block; }\",\".framer-dd3uJ.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 8132px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-dd3uJ .framer-1uyqpyx { align-content: center; align-items: center; background-color: #1fb4ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1ckriva { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dd3uJ .framer-1c9hqh8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 420px; }\",\".framer-dd3uJ .framer-1g0cw8g, .framer-dd3uJ .framer-mn1ufc, .framer-dd3uJ .framer-cfoabq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-313soa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.9; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-1xttx2s-container, .framer-dd3uJ .framer-dqslx5-container, .framer-dd3uJ .framer-5kogs0-container, .framer-dd3uJ .framer-1gmhbiq-container, .framer-dd3uJ .framer-8tztdu-container, .framer-dd3uJ .framer-1qf4naq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dd3uJ .framer-10qjjx4 { flex: none; height: 490px; overflow: hidden; position: relative; width: 471px; }\",\".framer-dd3uJ .framer-1oqdvv5 { background-color: rgba(0, 0, 0, 0.2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 454px; left: calc(50.00000000000002% - 358px / 2); overflow: hidden; position: absolute; top: 0px; width: 358px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dd3uJ .framer-1m49mtc { aspect-ratio: 1.0070493454179255 / 1; bottom: -68px; flex: none; height: var(--framer-aspect-ratio-supported, 514px); left: -52px; overflow: visible; position: absolute; right: -108px; }\",\".framer-dd3uJ .framer-15qe5v4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1b49fua { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-dd3uJ .framer-1uh6qmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 90px; height: min-content; justify-content: center; max-width: 900px; opacity: 0.8; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-bdee8, .framer-dd3uJ .framer-xpyeer, .framer-dd3uJ .framer-1pyf85v, .framer-dd3uJ .framer-w7i2wm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dd3uJ .framer-a5gg4m, .framer-dd3uJ .framer-rii619, .framer-dd3uJ .framer-2ea1ye, .framer-dd3uJ .framer-1iry00w, .framer-dd3uJ .framer-10kjlgq { flex: none; height: 42px; position: relative; width: 107px; }\",\".framer-dd3uJ .framer-101xhjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dd3uJ .framer-zq0kxo-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-dd3uJ .framer-25yeyr { 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: 120px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-ekqs33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-dd3uJ .framer-5nxud3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-1btsn7t, .framer-dd3uJ .framer-upeeys, .framer-dd3uJ .framer-19aqnxr, .framer-dd3uJ .framer-k3eaua, .framer-dd3uJ .framer-10nm9b6, .framer-dd3uJ .framer-uvqmm7, .framer-dd3uJ .framer-1a3z26x, .framer-dd3uJ .framer-jkz933, .framer-dd3uJ .framer-nwh6nw, .framer-dd3uJ .framer-1t84oy8, .framer-dd3uJ .framer-6q69dd, .framer-dd3uJ .framer-17jo1k4, .framer-dd3uJ .framer-fx9n3j, .framer-dd3uJ .framer-1yfroui, .framer-dd3uJ .framer-1qvw6o9, .framer-dd3uJ .framer-1ymrqfq, .framer-dd3uJ .framer-139l2da { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-xvn3j8 { flex: none; height: 305px; overflow: visible; position: relative; width: 532px; }\",\".framer-dd3uJ .framer-1t5opch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-dd3uJ .framer-ccfqj3-container { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 304px); position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1cvvtba { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ff0000; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: 426px; overflow: visible; padding: 0px; position: absolute; width: 76px; }\",\".framer-dd3uJ .framer-1xhrqiv-container, .framer-dd3uJ .framer-1j4qrjq-container, .framer-dd3uJ .framer-r1kaap-container, .framer-dd3uJ .framer-1jx6aq9-container, .framer-dd3uJ .framer-tqa2ea-container, .framer-dd3uJ .framer-c7wohi-container, .framer-dd3uJ .framer-1a0553h-container, .framer-dd3uJ .framer-1szrcuz-container, .framer-dd3uJ .framer-1rfcp2m-container, .framer-dd3uJ .framer-cqgi6q-container, .framer-dd3uJ .framer-17mmbve-container, .framer-dd3uJ .framer-ppqrqo-container, .framer-dd3uJ .framer-1or3h4y-container, .framer-dd3uJ .framer-9rhnq8-container, .framer-dd3uJ .framer-2kkyki-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-dd3uJ .framer-1uqpa2s { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #1ed760; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 99px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: 27px; overflow: visible; padding: 0px; position: absolute; width: 76px; }\",\".framer-dd3uJ .framer-13qw5de { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-a3319007-080d-465f-9d26-f005f9c2cb83, #ff5e20); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -40px; top: 142px; width: 76px; }\",\".framer-dd3uJ .framer-17qegty { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #3b5998; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: -34px; overflow: visible; padding: 0px; position: absolute; top: -20px; width: 76px; }\",\".framer-dd3uJ .framer-5d8ol { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #010101; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 106px; top: 28px; width: 76px; }\",\".framer-dd3uJ .framer-kb4u1n, .framer-dd3uJ .framer-1sm8nlj, .framer-dd3uJ .framer-1nc02uc { align-content: center; align-items: center; background-color: var(--token-df5dc2da-feb1-4720-acf7-4df2f92e8ea6, #fff4f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-acsc3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1sdovs9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 699px; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-pbw4b2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-19sneeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-dd3uJ .framer-r3qlqt { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-dd3uJ .framer-i18b3w, .framer-dd3uJ .framer-frjqdp, .framer-dd3uJ .framer-179w8gv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1agqp24, .framer-dd3uJ .framer-mj74gr, .framer-dd3uJ .framer-1qn4bcm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; }\",\".framer-dd3uJ .framer-ovmn7w, .framer-dd3uJ .framer-bhm70i, .framer-dd3uJ .framer-bj6er7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-dd3uJ .framer-1bvc5xh, .framer-dd3uJ .framer-1dkypeo, .framer-dd3uJ .framer-cfoiyp, .framer-dd3uJ .framer-10l7c3, .framer-dd3uJ .framer-cdktea, .framer-dd3uJ .framer-ca4mko { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-dd3uJ .framer-189ztou, .framer-dd3uJ .framer-ssvrto, .framer-dd3uJ .framer-1kt6ug1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-cmc81s, .framer-dd3uJ .framer-llf33t { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-dd3uJ .framer-1br1z09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-pazecz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-o2n7pb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-zbc6gm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dd3uJ .framer-1wt7e3p, .framer-dd3uJ .framer-tmgicj, .framer-dd3uJ .framer-7unbkd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dd3uJ .framer-cirvdi { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #db4437; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-1ia9n71 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #1ed760; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-1e64tgz { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #1da1f2; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-c78951 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #3b5998; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-111c96i { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #010101; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-w3swf { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ff0000; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-4fn76v { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #0a66c2; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-15prk9 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #fffc00; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-1pf550f { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #ff5e20; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-1mm0672 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #872ec4; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90px; }\",\".framer-dd3uJ .framer-tmxyu9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-1uiqc27 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 894px; justify-content: center; overflow: visible; padding: 78px 120px 78px 120px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-5z4jvc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 960px; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-196kiyu { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: saturate(1.2); align-content: flex-start; align-items: flex-start; background-color: var(--token-3621d307-55e4-470c-9fe1-be4f7ac7b0c3, #5d21ff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; filter: saturate(1.2); flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-9xla3o, .framer-dd3uJ .framer-1ne1egn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-swjr19, .framer-dd3uJ .framer-1c8de0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1ywh864 { --framer-link-text-color: #ffffff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",'.framer-dd3uJ .framer-dpsr2v { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.2px; --framer-line-height: 1.6em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; opacity: 0.8; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }',\".framer-dd3uJ .framer-i1y1yd { background-color: #ffffff; flex: none; height: 1px; opacity: 0.5; overflow: visible; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-bjoylw, .framer-dd3uJ .framer-1izmxra { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1qz33zk, .framer-dd3uJ .framer-1tggu8f, .framer-dd3uJ .framer-11fua6z, .framer-dd3uJ .framer-19rybvc, .framer-dd3uJ .framer-1qjrcxk, .framer-dd3uJ .framer-1hnzpl5, .framer-dd3uJ .framer-88d7fl, .framer-dd3uJ .framer-8oy22f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-vrpp0k-container, .framer-dd3uJ .framer-1gwtz6s-container, .framer-dd3uJ .framer-1mpq9il-container, .framer-dd3uJ .framer-120rhje-container, .framer-dd3uJ .framer-18hdgkx-container, .framer-dd3uJ .framer-1ikj6tu-container, .framer-dd3uJ .framer-11g0tpy-container, .framer-dd3uJ .framer-1qkzg8v-container, .framer-dd3uJ .framer-2zkp47-container, .framer-dd3uJ .framer-1vk7we7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 20px; }\",\".framer-dd3uJ .framer-1x3cey3, .framer-dd3uJ .framer-12we9xm, .framer-dd3uJ .framer-14jm7e0, .framer-dd3uJ .framer-1niqdtr, .framer-dd3uJ .framer-1da0too, .framer-dd3uJ .framer-1jk72n6, .framer-dd3uJ .framer-bxml1q, .framer-dd3uJ .framer-1e81cmv, .framer-dd3uJ .framer-1joaghk, .framer-dd3uJ .framer-rsxc8m, .framer-dd3uJ .framer-1ro9iau { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-up2tyx-container, .framer-dd3uJ .framer-1na5jq3-container, .framer-dd3uJ .framer-1pqqtdw-container, .framer-dd3uJ .framer-9oslr6-container, .framer-dd3uJ .framer-1nfv7bm-container, .framer-dd3uJ .framer-uaevh8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-lmz4co { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: saturate(1.2); align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.25); display: flex; filter: saturate(1.2); flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 59px 50px 59px 50px; position: relative; width: 1px; }\",'.framer-dd3uJ .framer-1lscqrl { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #1fb4ff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }',\".framer-dd3uJ .framer-13h3amh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-m63r1n { background-color: var(--token-7434257b-0490-4e05-8646-71d8417a414b, #101012); flex: none; height: 1px; opacity: 0.1; overflow: visible; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-yt8rp0, .framer-dd3uJ .framer-1o2keid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 213px; }\",\".framer-dd3uJ .framer-zs09t6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 960px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-5if23v, .framer-dd3uJ .framer-1to1a7h, .framer-dd3uJ .framer-7k5u2l { background-color: rgba(0, 0, 0, 0.1); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-1ibhbo6 { 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: 47px 120px 47px 120px; position: relative; width: 100%; }\",\".framer-dd3uJ .framer-8zoj6v { align-content: center; align-items: center; background-color: #5e20ff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 80px; position: relative; width: 1px; }\",\".framer-dd3uJ .framer-1eg76ab { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-1igjaq3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; opacity: 0.9; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dd3uJ .framer-1pzv5tq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 9%; justify-content: center; overflow: visible; padding: 60px 40px 26px 40px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-dd3uJ .framer-16s6osw-container { flex: none; height: 80%; position: relative; width: 43%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dd3uJ.framer-72rtr7, .framer-dd3uJ .framer-1uyqpyx, .framer-dd3uJ .framer-1ckriva, .framer-dd3uJ .framer-1c9hqh8, .framer-dd3uJ .framer-15qe5v4, .framer-dd3uJ .framer-1uh6qmf, .framer-dd3uJ .framer-bdee8, .framer-dd3uJ .framer-xpyeer, .framer-dd3uJ .framer-101xhjq, .framer-dd3uJ .framer-1pyf85v, .framer-dd3uJ .framer-w7i2wm, .framer-dd3uJ .framer-25yeyr, .framer-dd3uJ .framer-ekqs33, .framer-dd3uJ .framer-5nxud3, .framer-dd3uJ .framer-1t5opch, .framer-dd3uJ .framer-1cvvtba, .framer-dd3uJ .framer-1uqpa2s, .framer-dd3uJ .framer-13qw5de, .framer-dd3uJ .framer-17qegty, .framer-dd3uJ .framer-5d8ol, .framer-dd3uJ .framer-kb4u1n, .framer-dd3uJ .framer-acsc3p, .framer-dd3uJ .framer-pbw4b2, .framer-dd3uJ .framer-19sneeh, .framer-dd3uJ .framer-r3qlqt, .framer-dd3uJ .framer-i18b3w, .framer-dd3uJ .framer-ovmn7w, .framer-dd3uJ .framer-cmc81s, .framer-dd3uJ .framer-frjqdp, .framer-dd3uJ .framer-bhm70i, .framer-dd3uJ .framer-llf33t, .framer-dd3uJ .framer-179w8gv, .framer-dd3uJ .framer-bj6er7, .framer-dd3uJ .framer-1br1z09, .framer-dd3uJ .framer-pazecz, .framer-dd3uJ .framer-o2n7pb, .framer-dd3uJ .framer-zbc6gm, .framer-dd3uJ .framer-1wt7e3p, .framer-dd3uJ .framer-cirvdi, .framer-dd3uJ .framer-1ia9n71, .framer-dd3uJ .framer-1e64tgz, .framer-dd3uJ .framer-tmgicj, .framer-dd3uJ .framer-c78951, .framer-dd3uJ .framer-111c96i, .framer-dd3uJ .framer-w3swf, .framer-dd3uJ .framer-4fn76v, .framer-dd3uJ .framer-7unbkd, .framer-dd3uJ .framer-15prk9, .framer-dd3uJ .framer-1pf550f, .framer-dd3uJ .framer-1mm0672, .framer-dd3uJ .framer-1sm8nlj, .framer-dd3uJ .framer-1uiqc27, .framer-dd3uJ .framer-5z4jvc, .framer-dd3uJ .framer-196kiyu, .framer-dd3uJ .framer-9xla3o, .framer-dd3uJ .framer-swjr19, .framer-dd3uJ .framer-bjoylw, .framer-dd3uJ .framer-1qz33zk, .framer-dd3uJ .framer-1x3cey3, .framer-dd3uJ .framer-1tggu8f, .framer-dd3uJ .framer-12we9xm, .framer-dd3uJ .framer-11fua6z, .framer-dd3uJ .framer-14jm7e0, .framer-dd3uJ .framer-19rybvc, .framer-dd3uJ .framer-1niqdtr, .framer-dd3uJ .framer-1qjrcxk, .framer-dd3uJ .framer-1da0too, .framer-dd3uJ .framer-lmz4co, .framer-dd3uJ .framer-1ne1egn, .framer-dd3uJ .framer-1c8de0v, .framer-dd3uJ .framer-1izmxra, .framer-dd3uJ .framer-yt8rp0, .framer-dd3uJ .framer-1jk72n6, .framer-dd3uJ .framer-1o2keid, .framer-dd3uJ .framer-bxml1q, .framer-dd3uJ .framer-1hnzpl5, .framer-dd3uJ .framer-1e81cmv, .framer-dd3uJ .framer-88d7fl, .framer-dd3uJ .framer-1joaghk, .framer-dd3uJ .framer-8oy22f, .framer-dd3uJ .framer-rsxc8m, .framer-dd3uJ .framer-1nc02uc, .framer-dd3uJ .framer-zs09t6, .framer-dd3uJ .framer-1ibhbo6, .framer-dd3uJ .framer-8zoj6v, .framer-dd3uJ .framer-1ro9iau, .framer-dd3uJ .framer-1pzv5tq { gap: 0px; } .framer-dd3uJ.framer-72rtr7 > *, .framer-dd3uJ .framer-ovmn7w > *, .framer-dd3uJ .framer-bhm70i > *, .framer-dd3uJ .framer-bj6er7 > *, .framer-dd3uJ .framer-1uiqc27 > *, .framer-dd3uJ .framer-zs09t6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dd3uJ.framer-72rtr7 > :first-child, .framer-dd3uJ .framer-1uyqpyx > :first-child, .framer-dd3uJ .framer-1c9hqh8 > :first-child, .framer-dd3uJ .framer-15qe5v4 > :first-child, .framer-dd3uJ .framer-5nxud3 > :first-child, .framer-dd3uJ .framer-kb4u1n > :first-child, .framer-dd3uJ .framer-acsc3p > :first-child, .framer-dd3uJ .framer-pbw4b2 > :first-child, .framer-dd3uJ .framer-r3qlqt > :first-child, .framer-dd3uJ .framer-ovmn7w > :first-child, .framer-dd3uJ .framer-cmc81s > :first-child, .framer-dd3uJ .framer-bhm70i > :first-child, .framer-dd3uJ .framer-llf33t > :first-child, .framer-dd3uJ .framer-bj6er7 > :first-child, .framer-dd3uJ .framer-o2n7pb > :first-child, .framer-dd3uJ .framer-zbc6gm > :first-child, .framer-dd3uJ .framer-1sm8nlj > :first-child, .framer-dd3uJ .framer-1uiqc27 > :first-child, .framer-dd3uJ .framer-196kiyu > :first-child, .framer-dd3uJ .framer-9xla3o > :first-child, .framer-dd3uJ .framer-swjr19 > :first-child, .framer-dd3uJ .framer-bjoylw > :first-child, .framer-dd3uJ .framer-1x3cey3 > :first-child, .framer-dd3uJ .framer-12we9xm > :first-child, .framer-dd3uJ .framer-14jm7e0 > :first-child, .framer-dd3uJ .framer-1niqdtr > :first-child, .framer-dd3uJ .framer-1da0too > :first-child, .framer-dd3uJ .framer-lmz4co > :first-child, .framer-dd3uJ .framer-1ne1egn > :first-child, .framer-dd3uJ .framer-1c8de0v > :first-child, .framer-dd3uJ .framer-1izmxra > :first-child, .framer-dd3uJ .framer-1jk72n6 > :first-child, .framer-dd3uJ .framer-bxml1q > :first-child, .framer-dd3uJ .framer-1e81cmv > :first-child, .framer-dd3uJ .framer-1joaghk > :first-child, .framer-dd3uJ .framer-rsxc8m > :first-child, .framer-dd3uJ .framer-1nc02uc > :first-child, .framer-dd3uJ .framer-zs09t6 > :first-child, .framer-dd3uJ .framer-1ro9iau > :first-child, .framer-dd3uJ .framer-1pzv5tq > :first-child { margin-top: 0px; } .framer-dd3uJ.framer-72rtr7 > :last-child, .framer-dd3uJ .framer-1uyqpyx > :last-child, .framer-dd3uJ .framer-1c9hqh8 > :last-child, .framer-dd3uJ .framer-15qe5v4 > :last-child, .framer-dd3uJ .framer-5nxud3 > :last-child, .framer-dd3uJ .framer-kb4u1n > :last-child, .framer-dd3uJ .framer-acsc3p > :last-child, .framer-dd3uJ .framer-pbw4b2 > :last-child, .framer-dd3uJ .framer-r3qlqt > :last-child, .framer-dd3uJ .framer-ovmn7w > :last-child, .framer-dd3uJ .framer-cmc81s > :last-child, .framer-dd3uJ .framer-bhm70i > :last-child, .framer-dd3uJ .framer-llf33t > :last-child, .framer-dd3uJ .framer-bj6er7 > :last-child, .framer-dd3uJ .framer-o2n7pb > :last-child, .framer-dd3uJ .framer-zbc6gm > :last-child, .framer-dd3uJ .framer-1sm8nlj > :last-child, .framer-dd3uJ .framer-1uiqc27 > :last-child, .framer-dd3uJ .framer-196kiyu > :last-child, .framer-dd3uJ .framer-9xla3o > :last-child, .framer-dd3uJ .framer-swjr19 > :last-child, .framer-dd3uJ .framer-bjoylw > :last-child, .framer-dd3uJ .framer-1x3cey3 > :last-child, .framer-dd3uJ .framer-12we9xm > :last-child, .framer-dd3uJ .framer-14jm7e0 > :last-child, .framer-dd3uJ .framer-1niqdtr > :last-child, .framer-dd3uJ .framer-1da0too > :last-child, .framer-dd3uJ .framer-lmz4co > :last-child, .framer-dd3uJ .framer-1ne1egn > :last-child, .framer-dd3uJ .framer-1c8de0v > :last-child, .framer-dd3uJ .framer-1izmxra > :last-child, .framer-dd3uJ .framer-1jk72n6 > :last-child, .framer-dd3uJ .framer-bxml1q > :last-child, .framer-dd3uJ .framer-1e81cmv > :last-child, .framer-dd3uJ .framer-1joaghk > :last-child, .framer-dd3uJ .framer-rsxc8m > :last-child, .framer-dd3uJ .framer-1nc02uc > :last-child, .framer-dd3uJ .framer-zs09t6 > :last-child, .framer-dd3uJ .framer-1ro9iau > :last-child, .framer-dd3uJ .framer-1pzv5tq > :last-child { margin-bottom: 0px; } .framer-dd3uJ .framer-1uyqpyx > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-dd3uJ .framer-1ckriva > *, .framer-dd3uJ .framer-5z4jvc > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-dd3uJ .framer-1ckriva > :first-child, .framer-dd3uJ .framer-1uh6qmf > :first-child, .framer-dd3uJ .framer-bdee8 > :first-child, .framer-dd3uJ .framer-xpyeer > :first-child, .framer-dd3uJ .framer-101xhjq > :first-child, .framer-dd3uJ .framer-1pyf85v > :first-child, .framer-dd3uJ .framer-w7i2wm > :first-child, .framer-dd3uJ .framer-25yeyr > :first-child, .framer-dd3uJ .framer-ekqs33 > :first-child, .framer-dd3uJ .framer-1t5opch > :first-child, .framer-dd3uJ .framer-1cvvtba > :first-child, .framer-dd3uJ .framer-1uqpa2s > :first-child, .framer-dd3uJ .framer-13qw5de > :first-child, .framer-dd3uJ .framer-17qegty > :first-child, .framer-dd3uJ .framer-5d8ol > :first-child, .framer-dd3uJ .framer-19sneeh > :first-child, .framer-dd3uJ .framer-i18b3w > :first-child, .framer-dd3uJ .framer-frjqdp > :first-child, .framer-dd3uJ .framer-179w8gv > :first-child, .framer-dd3uJ .framer-1br1z09 > :first-child, .framer-dd3uJ .framer-pazecz > :first-child, .framer-dd3uJ .framer-1wt7e3p > :first-child, .framer-dd3uJ .framer-cirvdi > :first-child, .framer-dd3uJ .framer-1ia9n71 > :first-child, .framer-dd3uJ .framer-1e64tgz > :first-child, .framer-dd3uJ .framer-tmgicj > :first-child, .framer-dd3uJ .framer-c78951 > :first-child, .framer-dd3uJ .framer-111c96i > :first-child, .framer-dd3uJ .framer-w3swf > :first-child, .framer-dd3uJ .framer-4fn76v > :first-child, .framer-dd3uJ .framer-7unbkd > :first-child, .framer-dd3uJ .framer-15prk9 > :first-child, .framer-dd3uJ .framer-1pf550f > :first-child, .framer-dd3uJ .framer-1mm0672 > :first-child, .framer-dd3uJ .framer-5z4jvc > :first-child, .framer-dd3uJ .framer-1qz33zk > :first-child, .framer-dd3uJ .framer-1tggu8f > :first-child, .framer-dd3uJ .framer-11fua6z > :first-child, .framer-dd3uJ .framer-19rybvc > :first-child, .framer-dd3uJ .framer-1qjrcxk > :first-child, .framer-dd3uJ .framer-yt8rp0 > :first-child, .framer-dd3uJ .framer-1o2keid > :first-child, .framer-dd3uJ .framer-1hnzpl5 > :first-child, .framer-dd3uJ .framer-88d7fl > :first-child, .framer-dd3uJ .framer-8oy22f > :first-child, .framer-dd3uJ .framer-1ibhbo6 > :first-child, .framer-dd3uJ .framer-8zoj6v > :first-child { margin-left: 0px; } .framer-dd3uJ .framer-1ckriva > :last-child, .framer-dd3uJ .framer-1uh6qmf > :last-child, .framer-dd3uJ .framer-bdee8 > :last-child, .framer-dd3uJ .framer-xpyeer > :last-child, .framer-dd3uJ .framer-101xhjq > :last-child, .framer-dd3uJ .framer-1pyf85v > :last-child, .framer-dd3uJ .framer-w7i2wm > :last-child, .framer-dd3uJ .framer-25yeyr > :last-child, .framer-dd3uJ .framer-ekqs33 > :last-child, .framer-dd3uJ .framer-1t5opch > :last-child, .framer-dd3uJ .framer-1cvvtba > :last-child, .framer-dd3uJ .framer-1uqpa2s > :last-child, .framer-dd3uJ .framer-13qw5de > :last-child, .framer-dd3uJ .framer-17qegty > :last-child, .framer-dd3uJ .framer-5d8ol > :last-child, .framer-dd3uJ .framer-19sneeh > :last-child, .framer-dd3uJ .framer-i18b3w > :last-child, .framer-dd3uJ .framer-frjqdp > :last-child, .framer-dd3uJ .framer-179w8gv > :last-child, .framer-dd3uJ .framer-1br1z09 > :last-child, .framer-dd3uJ .framer-pazecz > :last-child, .framer-dd3uJ .framer-1wt7e3p > :last-child, .framer-dd3uJ .framer-cirvdi > :last-child, .framer-dd3uJ .framer-1ia9n71 > :last-child, .framer-dd3uJ .framer-1e64tgz > :last-child, .framer-dd3uJ .framer-tmgicj > :last-child, .framer-dd3uJ .framer-c78951 > :last-child, .framer-dd3uJ .framer-111c96i > :last-child, .framer-dd3uJ .framer-w3swf > :last-child, .framer-dd3uJ .framer-4fn76v > :last-child, .framer-dd3uJ .framer-7unbkd > :last-child, .framer-dd3uJ .framer-15prk9 > :last-child, .framer-dd3uJ .framer-1pf550f > :last-child, .framer-dd3uJ .framer-1mm0672 > :last-child, .framer-dd3uJ .framer-5z4jvc > :last-child, .framer-dd3uJ .framer-1qz33zk > :last-child, .framer-dd3uJ .framer-1tggu8f > :last-child, .framer-dd3uJ .framer-11fua6z > :last-child, .framer-dd3uJ .framer-19rybvc > :last-child, .framer-dd3uJ .framer-1qjrcxk > :last-child, .framer-dd3uJ .framer-yt8rp0 > :last-child, .framer-dd3uJ .framer-1o2keid > :last-child, .framer-dd3uJ .framer-1hnzpl5 > :last-child, .framer-dd3uJ .framer-88d7fl > :last-child, .framer-dd3uJ .framer-8oy22f > :last-child, .framer-dd3uJ .framer-1ibhbo6 > :last-child, .framer-dd3uJ .framer-8zoj6v > :last-child { margin-right: 0px; } .framer-dd3uJ .framer-1c9hqh8 > *, .framer-dd3uJ .framer-5nxud3 > *, .framer-dd3uJ .framer-cmc81s > *, .framer-dd3uJ .framer-llf33t > *, .framer-dd3uJ .framer-o2n7pb > *, .framer-dd3uJ .framer-zbc6gm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-dd3uJ .framer-15qe5v4 > *, .framer-dd3uJ .framer-r3qlqt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-dd3uJ .framer-1uh6qmf > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-dd3uJ .framer-bdee8 > *, .framer-dd3uJ .framer-xpyeer > *, .framer-dd3uJ .framer-101xhjq > *, .framer-dd3uJ .framer-1pyf85v > *, .framer-dd3uJ .framer-w7i2wm > *, .framer-dd3uJ .framer-25yeyr > *, .framer-dd3uJ .framer-1t5opch > *, .framer-dd3uJ .framer-1cvvtba > *, .framer-dd3uJ .framer-1uqpa2s > *, .framer-dd3uJ .framer-13qw5de > *, .framer-dd3uJ .framer-17qegty > *, .framer-dd3uJ .framer-5d8ol > *, .framer-dd3uJ .framer-cirvdi > *, .framer-dd3uJ .framer-1ia9n71 > *, .framer-dd3uJ .framer-1e64tgz > *, .framer-dd3uJ .framer-c78951 > *, .framer-dd3uJ .framer-111c96i > *, .framer-dd3uJ .framer-w3swf > *, .framer-dd3uJ .framer-4fn76v > *, .framer-dd3uJ .framer-15prk9 > *, .framer-dd3uJ .framer-1pf550f > *, .framer-dd3uJ .framer-1mm0672 > *, .framer-dd3uJ .framer-1qz33zk > *, .framer-dd3uJ .framer-1tggu8f > *, .framer-dd3uJ .framer-11fua6z > *, .framer-dd3uJ .framer-19rybvc > *, .framer-dd3uJ .framer-1qjrcxk > *, .framer-dd3uJ .framer-yt8rp0 > *, .framer-dd3uJ .framer-1o2keid > *, .framer-dd3uJ .framer-1hnzpl5 > *, .framer-dd3uJ .framer-88d7fl > *, .framer-dd3uJ .framer-8oy22f > *, .framer-dd3uJ .framer-1ibhbo6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dd3uJ .framer-ekqs33 > *, .framer-dd3uJ .framer-1br1z09 > *, .framer-dd3uJ .framer-pazecz > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-dd3uJ .framer-kb4u1n > *, .framer-dd3uJ .framer-pbw4b2 > *, .framer-dd3uJ .framer-1sm8nlj > *, .framer-dd3uJ .framer-1nc02uc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-dd3uJ .framer-acsc3p > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-dd3uJ .framer-19sneeh > *, .framer-dd3uJ .framer-1wt7e3p > *, .framer-dd3uJ .framer-tmgicj > *, .framer-dd3uJ .framer-7unbkd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-dd3uJ .framer-i18b3w > *, .framer-dd3uJ .framer-frjqdp > *, .framer-dd3uJ .framer-179w8gv > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-dd3uJ .framer-196kiyu > *, .framer-dd3uJ .framer-lmz4co > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dd3uJ .framer-9xla3o > *, .framer-dd3uJ .framer-1ne1egn > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-dd3uJ .framer-swjr19 > *, .framer-dd3uJ .framer-1x3cey3 > *, .framer-dd3uJ .framer-12we9xm > *, .framer-dd3uJ .framer-14jm7e0 > *, .framer-dd3uJ .framer-1niqdtr > *, .framer-dd3uJ .framer-1da0too > *, .framer-dd3uJ .framer-1c8de0v > *, .framer-dd3uJ .framer-1jk72n6 > *, .framer-dd3uJ .framer-bxml1q > *, .framer-dd3uJ .framer-1e81cmv > *, .framer-dd3uJ .framer-1joaghk > *, .framer-dd3uJ .framer-rsxc8m > *, .framer-dd3uJ .framer-1ro9iau > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dd3uJ .framer-bjoylw > *, .framer-dd3uJ .framer-1izmxra > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-dd3uJ .framer-8zoj6v > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-dd3uJ .framer-1pzv5tq > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } }\",\"@media (min-width: 1200px) { .framer-dd3uJ .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-dd3uJ .hidden-15ejraa { display: none !important; } .${metadata.bodyClassName}-framer-dd3uJ { background: white; } .framer-dd3uJ.framer-72rtr7 { width: 810px; } .framer-dd3uJ .framer-1uyqpyx { gap: 100px; } .framer-dd3uJ .framer-1ckriva { flex-direction: column; padding: 0px 40px 0px 40px; width: 100%; } .framer-dd3uJ .framer-1c9hqh8 { align-content: center; align-items: center; max-width: 460px; width: 100%; } .framer-dd3uJ .framer-1uh6qmf { gap: 50px; } .framer-dd3uJ .framer-25yeyr, .framer-dd3uJ .framer-kb4u1n, .framer-dd3uJ .framer-1br1z09, .framer-dd3uJ .framer-1sm8nlj, .framer-dd3uJ .framer-1nc02uc, .framer-dd3uJ .framer-1ibhbo6 { padding: 100px 40px 100px 40px; } .framer-dd3uJ .framer-ekqs33 { flex: 1 0 0px; flex-direction: column; gap: 30px; width: 1px; } .framer-dd3uJ .framer-5nxud3, .framer-dd3uJ .framer-o2n7pb, .framer-dd3uJ .framer-196kiyu, .framer-dd3uJ .framer-lmz4co { flex: none; width: 100%; } .framer-dd3uJ .framer-xvn3j8 { height: 549px; width: 100%; } .framer-dd3uJ .framer-ccfqj3-container { height: var(--framer-aspect-ratio-supported, 417px); } .framer-dd3uJ .framer-acsc3p { align-content: flex-start; align-items: flex-start; } .framer-dd3uJ .framer-5kogs0-container { width: 100%; } .framer-dd3uJ .framer-pbw4b2 { padding: 80px 40px 80px 40px; } .framer-dd3uJ .framer-r3qlqt, .framer-dd3uJ .framer-cmc81s, .framer-dd3uJ .framer-llf33t { flex: 1 0 0px; height: 400px; width: 1px; } .framer-dd3uJ .framer-pazecz, .framer-dd3uJ .framer-8zoj6v { flex-direction: column; } .framer-dd3uJ .framer-19aqnxr { max-width: 500px; } .framer-dd3uJ .framer-1uiqc27 { height: min-content; } .framer-dd3uJ .framer-5z4jvc { flex-direction: column; max-width: 500px; padding: 20px 0px 0px 0px; } .framer-dd3uJ .framer-1ro9iau { align-content: center; align-items: center; flex: none; width: 100%; } .framer-dd3uJ .framer-1pzv5tq { height: 632px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dd3uJ .framer-1uyqpyx, .framer-dd3uJ .framer-1ckriva, .framer-dd3uJ .framer-1uh6qmf, .framer-dd3uJ .framer-ekqs33, .framer-dd3uJ .framer-pazecz, .framer-dd3uJ .framer-5z4jvc, .framer-dd3uJ .framer-8zoj6v { gap: 0px; } .framer-dd3uJ .framer-1uyqpyx > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-dd3uJ .framer-1uyqpyx > :first-child, .framer-dd3uJ .framer-1ckriva > :first-child, .framer-dd3uJ .framer-ekqs33 > :first-child, .framer-dd3uJ .framer-pazecz > :first-child, .framer-dd3uJ .framer-5z4jvc > :first-child, .framer-dd3uJ .framer-8zoj6v > :first-child { margin-top: 0px; } .framer-dd3uJ .framer-1uyqpyx > :last-child, .framer-dd3uJ .framer-1ckriva > :last-child, .framer-dd3uJ .framer-ekqs33 > :last-child, .framer-dd3uJ .framer-pazecz > :last-child, .framer-dd3uJ .framer-5z4jvc > :last-child, .framer-dd3uJ .framer-8zoj6v > :last-child { margin-bottom: 0px; } .framer-dd3uJ .framer-1ckriva > *, .framer-dd3uJ .framer-5z4jvc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-dd3uJ .framer-1uh6qmf > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-dd3uJ .framer-1uh6qmf > :first-child { margin-left: 0px; } .framer-dd3uJ .framer-1uh6qmf > :last-child { margin-right: 0px; } .framer-dd3uJ .framer-ekqs33 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-dd3uJ .framer-pazecz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-dd3uJ .framer-8zoj6v > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (max-width: 809px) { .framer-dd3uJ .hidden-1cdb2wt { display: none !important; } .${metadata.bodyClassName}-framer-dd3uJ { background: white; } .framer-dd3uJ.framer-72rtr7 { height: 8354px; width: 390px; } .framer-dd3uJ .framer-1uyqpyx { gap: 80px; overflow: hidden; padding: 100px 0px 80px 0px; } .framer-dd3uJ .framer-1ckriva { flex-direction: column; padding: 0px 20px 0px 20px; width: 100%; } .framer-dd3uJ .framer-1c9hqh8 { align-content: center; align-items: center; width: 100%; } .framer-dd3uJ .framer-10qjjx4 { height: 454px; width: 100%; } .framer-dd3uJ .framer-1oqdvv5 { left: 0px; right: 0px; width: unset; } .framer-dd3uJ .framer-1m49mtc { bottom: 0px; height: var(--framer-aspect-ratio-supported, 348px); left: 0px; right: 0px; } .framer-dd3uJ .framer-1b49fua { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-dd3uJ .framer-1uh6qmf { gap: 40px; } .framer-dd3uJ .framer-25yeyr { padding: 40px 20px 80px 20px; } .framer-dd3uJ .framer-ekqs33 { flex: 1 0 0px; flex-direction: column; gap: 40px; width: 1px; } .framer-dd3uJ .framer-5nxud3, .framer-dd3uJ .framer-o2n7pb, .framer-dd3uJ .framer-196kiyu, .framer-dd3uJ .framer-lmz4co { flex: none; width: 100%; } .framer-dd3uJ .framer-xvn3j8 { height: 205px; width: 100%; } .framer-dd3uJ .framer-ccfqj3-container { aspect-ratio: unset; height: 200px; } .framer-dd3uJ .framer-1cvvtba { bottom: -20px; left: 204px; } .framer-dd3uJ .framer-1uqpa2s { bottom: unset; left: -18px; top: 20px; } .framer-dd3uJ .framer-13qw5de { right: -10px; top: 52px; } .framer-dd3uJ .framer-17qegty { bottom: -41px; left: 26px; top: unset; } .framer-dd3uJ .framer-5d8ol { left: 218px; right: unset; top: -30px; } .framer-dd3uJ .framer-kb4u1n, .framer-dd3uJ .framer-1ibhbo6 { padding: 50px 20px 50px 20px; } .framer-dd3uJ .framer-acsc3p { align-content: flex-start; align-items: flex-start; } .framer-dd3uJ .framer-1sdovs9, .framer-dd3uJ .framer-5kogs0-container, .framer-dd3uJ .framer-zbc6gm, .framer-dd3uJ .framer-8tztdu-container { width: 100%; } .framer-dd3uJ .framer-pbw4b2, .framer-dd3uJ .framer-1sm8nlj { gap: 40px; padding: 50px 20px 50px 20px; } .framer-dd3uJ .framer-19sneeh { flex-direction: column; } .framer-dd3uJ .framer-r3qlqt, .framer-dd3uJ .framer-cmc81s, .framer-dd3uJ .framer-llf33t { height: min-content; width: 100%; } .framer-dd3uJ .framer-ovmn7w, .framer-dd3uJ .framer-bhm70i, .framer-dd3uJ .framer-bj6er7 { width: min-content; } .framer-dd3uJ .framer-1br1z09 { padding: 50px 20px 60px 20px; } .framer-dd3uJ .framer-pazecz { flex-direction: column; gap: 60px; } .framer-dd3uJ .framer-1uiqc27 { gap: 20px; height: min-content; padding: 50px 20px 50px 20px; } .framer-dd3uJ .framer-5z4jvc { flex-direction: column; gap: 40px; padding: 0px; } .framer-dd3uJ .framer-1lscqrl { --framer-font-size: 52px; } .framer-dd3uJ .framer-1nc02uc { gap: 10px; padding: 50px 20px 60px 20px; } .framer-dd3uJ .framer-8zoj6v { flex-direction: column; gap: 20px; padding: 40px; } .framer-dd3uJ .framer-1ro9iau { align-content: center; align-items: center; flex: none; width: 100%; } .framer-dd3uJ .framer-1pzv5tq { height: 721px; padding: 50px 40px 50px 40px; } .framer-dd3uJ .framer-16s6osw-container { width: 99%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dd3uJ .framer-1uyqpyx, .framer-dd3uJ .framer-1ckriva, .framer-dd3uJ .framer-1uh6qmf, .framer-dd3uJ .framer-ekqs33, .framer-dd3uJ .framer-pbw4b2, .framer-dd3uJ .framer-19sneeh, .framer-dd3uJ .framer-pazecz, .framer-dd3uJ .framer-1sm8nlj, .framer-dd3uJ .framer-1uiqc27, .framer-dd3uJ .framer-5z4jvc, .framer-dd3uJ .framer-1nc02uc, .framer-dd3uJ .framer-8zoj6v { gap: 0px; } .framer-dd3uJ .framer-1uyqpyx > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-dd3uJ .framer-1uyqpyx > :first-child, .framer-dd3uJ .framer-1ckriva > :first-child, .framer-dd3uJ .framer-ekqs33 > :first-child, .framer-dd3uJ .framer-pbw4b2 > :first-child, .framer-dd3uJ .framer-19sneeh > :first-child, .framer-dd3uJ .framer-pazecz > :first-child, .framer-dd3uJ .framer-1sm8nlj > :first-child, .framer-dd3uJ .framer-1uiqc27 > :first-child, .framer-dd3uJ .framer-5z4jvc > :first-child, .framer-dd3uJ .framer-1nc02uc > :first-child, .framer-dd3uJ .framer-8zoj6v > :first-child { margin-top: 0px; } .framer-dd3uJ .framer-1uyqpyx > :last-child, .framer-dd3uJ .framer-1ckriva > :last-child, .framer-dd3uJ .framer-ekqs33 > :last-child, .framer-dd3uJ .framer-pbw4b2 > :last-child, .framer-dd3uJ .framer-19sneeh > :last-child, .framer-dd3uJ .framer-pazecz > :last-child, .framer-dd3uJ .framer-1sm8nlj > :last-child, .framer-dd3uJ .framer-1uiqc27 > :last-child, .framer-dd3uJ .framer-5z4jvc > :last-child, .framer-dd3uJ .framer-1nc02uc > :last-child, .framer-dd3uJ .framer-8zoj6v > :last-child { margin-bottom: 0px; } .framer-dd3uJ .framer-1ckriva > *, .framer-dd3uJ .framer-pazecz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-dd3uJ .framer-1uh6qmf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-dd3uJ .framer-1uh6qmf > :first-child { margin-left: 0px; } .framer-dd3uJ .framer-1uh6qmf > :last-child { margin-right: 0px; } .framer-dd3uJ .framer-ekqs33 > *, .framer-dd3uJ .framer-pbw4b2 > *, .framer-dd3uJ .framer-1sm8nlj > *, .framer-dd3uJ .framer-5z4jvc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dd3uJ .framer-19sneeh > *, .framer-dd3uJ .framer-1uiqc27 > *, .framer-dd3uJ .framer-8zoj6v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-dd3uJ .framer-1nc02uc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-dd3uJ[data-border=\"true\"]::after, .framer-dd3uJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8132\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xggxiN62k\":{\"layout\":[\"fixed\",\"fixed\"]},\"iTcd5L5X1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-dd3uJ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8132,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"}]},...ButtonFonts,...NavigationBarFonts,...VideoFonts,...PhosphorFonts,...CarouselFonts,...TestimonialsFonts,...FAQFonts,...FormSparkFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xggxiN62k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iTcd5L5X1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"8132\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "EiSaQ6Xr4", "fMc_sb0AR", "WPnFGEwc6", "QfhXopDc4", "ERA9qv1gp", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8owatn", "args", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramermAd6vO_a6", "withCSS", "mAd6vO_a6_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "FeatureFonts", "getFonts", "mAd6vO_a6_default", "FeatureControls", "getPropertyControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "o9A3lp53i", "G9NSeJWDI", "uZbmGPcAl", "bynriwBNw", "CLAf33gMz", "HwlUWuVdx", "x2x6qnKKm", "l6LrrM2MW", "y2Cd23Nqm", "AT4tOqBmy", "Z0EnY0dvS", "Tl94kNPR_", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearkxaa6p", "args", "onAppearzixly0", "onAppear1ocnqhy", "onAppear1o2i191", "onAppearlcs9z7", "onAppear1a04ef6", "tap1q26ekc", "tap8a8xtj", "tap1lxf82u", "tap8t1shd", "tap18hijjv", "tap1o929f3", "useOnVariantChange", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText", "x", "css", "FrameriusqhPEve", "withCSS", "iusqhPEve_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1e6cdkc", "args", "onAppear1hojis1", "onAppear1h3b7rs", "onAppear1egdkwp", "onAppear1w8dhfv", "onAppear1ltbb0p", "useOnVariantChange", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText", "x", "css", "Framert4CgsVm66", "withCSS", "t4CgsVm66_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "ref", "ref1", "_variant", "ref2", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "QO3kPTpij", "O6B5xBxit", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y4b1tm", "args", "onTap1wfr31u", "onTapuhfq36", "onTap1dltp15", "isDisplayed", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "SVG", "css", "FramervzsQgxpo_", "withCSS", "vzsQgxpo_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "hashCode", "s", "a", "b", "corsProxy", "url", "cachedResponse", "cache", "Storage", "cacheKey", "data", "req", "resolve", "reject", "error", "checkForCachedData", "ObjectFitType", "LoopType", "PreloadType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "loopType", "muted", "playsinline", "controls", "preload", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "startTime", "videoRef", "pe", "isLoaded", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "loop", "fullLoop", "isCanvas", "se", "RenderTarget", "isForcedCache", "isAutoCache", "isMuted", "shouldPlay", "autoPlay", "play", "te", "ref", "pause", "restartVideo", "playAfter", "setProgress", "newProgress", "isAlreadySet", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useOnEnter", "useOnExit", "getUrl", "cors", "corsProxy", "setVideoRef", "element", "url", "response", "cachedResponse", "url1", "response1", "checkForCachedData", "key", "hashCode", "borderRadius", "src", "e", "addPropertyControls", "ControlType", "defaultEvents", "ButtonFonts", "getFonts", "P8dj6_5tK_default", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "NavigationBarFonts", "uGGJCoIU8_default", "VideoFonts", "Video", "PhosphorFonts", "Icon", "CarouselFonts", "iusqhPEve_default", "ContainerWithFX", "Container", "TestimonialsFonts", "t4CgsVm66_default", "FAQFonts", "vzsQgxpo_default", "FormSparkFonts", "FormSpark_default", "FooterFonts", "NNpgnq2bN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "transition2", "animation5", "transition3", "animation6", "transition4", "animation7", "transition5", "animation8", "transition6", "animation9", "animation10", "animation11", "animation12", "transition7", "animation13", "transition8", "animation14", "transition9", "animation15", "transition10", "animation16", "transition11", "animation17", "animation18", "animation19", "animation20", "transition12", "animation21", "addImageAlt", "image", "alt", "animation22", "animation23", "transition13", "animation24", "transition14", "animation25", "transition15", "animation26", "transition16", "animation27", "transition17", "animation28", "transition18", "animation29", "transition19", "animation30", "transition20", "animation31", "transition21", "animation32", "animation33", "animation34", "transition22", "animation35", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "isDisplayed", "id3", "ref5", "id4", "ref6", "id5", "ref7", "id6", "ref8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides", "optimizeAppear", "x", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "P8dj6_5tK_default", "Image2", "RichTextWithFX", "MotionDivWithFX", "uGGJCoIU8_default", "resolvedLinks1", "Video", "Icon", "ContainerWithFX", "iusqhPEve_default", "resolvedLinks2", "t4CgsVm66_default", "Text2", "resolvedLinks3", "resolvedLinks4", "vzsQgxpo_default", "resolvedLinks5", "FormSpark_default", "NNpgnq2bN_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ButtonFonts", "NavigationBarFonts", "VideoFonts", "PhosphorFonts", "CarouselFonts", "TestimonialsFonts", "FAQFonts", "FormSparkFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
