{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Ogtv37R2ZsnLQBjHvEKv/ZsXpw34lKekNjKwaDUi1/HoverReveal.js", "ssg:https://framerusercontent.com/modules/3MzOJe0ybvY7RFXQYaKs/xKgp7cur5lKOVpw7cyEa/dGFV6I5h5.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useSpring,useTransform}from\"framer-motion\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function HoverReveal(props){const[isHovering,setIsHovering]=useState(false);const containerRef=useRef(null);const springConfig={stiffness:300,damping:30};const mouseX=useSpring(0,springConfig);const mouseY=useSpring(0,springConfig);const radius=useSpring(0,springConfig);useEffect(()=>{radius.set(isHovering?props.revealRadius:0);},[isHovering,props.revealRadius]);const handleMouseMove=event=>{const{left,top}=containerRef.current.getBoundingClientRect();mouseX.set(event.clientX-left);mouseY.set(event.clientY-top);};const handleMouseEnter=()=>setIsHovering(true);const handleMouseLeave=()=>setIsHovering(false);const maskImage=useTransform([mouseX,mouseY,radius],([x,y,r])=>`radial-gradient(circle ${r}px at ${x}px ${y}px, transparent ${100-props.blurAmount}%, black 100%)`);return /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,style:{position:\"relative\",width:\"100%\",height:\"100%\",overflow:\"hidden\"},onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,children:[/*#__PURE__*/_jsx(\"img\",{src:props.image1,alt:\"Base\",style:{position:\"absolute\",width:\"100%\",height:\"100%\",objectFit:\"cover\"}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",width:\"100%\",height:\"100%\",maskImage,WebkitMaskImage:maskImage},children:/*#__PURE__*/_jsx(\"img\",{src:props.image2,alt:\"Overlay\",style:{width:\"100%\",height:\"100%\",objectFit:\"cover\"}})})]});}HoverReveal.defaultProps={image1:\"https://example.com/image1.jpg\",image2:\"https://example.com/image2.jpg\",revealRadius:100,blurAmount:20};addPropertyControls(HoverReveal,{image1:{type:ControlType.Image,title:\"Image 1\"},image2:{type:ControlType.Image,title:\"Image 2\"},revealRadius:{type:ControlType.Number,title:\"Reveal Radius\",min:10,max:500,step:1},blurAmount:{type:ControlType.Number,title:\"Blur Amount\",min:0,max:100,step:1,description:\"via [SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"HoverReveal\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HoverReveal.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import HoverReveal from\"https://framerusercontent.com/modules/Ogtv37R2ZsnLQBjHvEKv/ZsXpw34lKekNjKwaDUi1/HoverReveal.js\";import{withGentleShake}from\"https://framerusercontent.com/modules/FY9Zr17c3siRJr9eRQU1/DeMtWkcA0AXZbE4DZ31i/Shake.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mHuGHyJ6iAHFIv8sDYtm/HEpePVjMKmAIAuHIynRX/NtLShZYQo.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/AHmvv2QgEO00baGJIVha/jx43rphRGHcPcwbNePCc/qvBIK5gnM.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/FrE40idPOnAbg2XCOSOf/q822shkYK6gO9mKeONgb/DgxqgKGnx.js\";const HoverRevealFonts=getFonts(HoverReveal);const ButtonFonts=getFonts(Button);const ButtonWithGentleShakeWithMappedReactProps1v1ipky=withMappedReactProps(withGentleShake(Button),ButtonInfo);const cycleOrder=[\"IRNaaCrW6\",\"K0HU3sMbv\",\"Vu2oiVjCB\",\"q5qyQaxwN\"];const serializationHash=\"framer-f3Ri3\";const variantClassNames={IRNaaCrW6:\"framer-v-kuck0g\",K0HU3sMbv:\"framer-v-17gsrwv\",q5qyQaxwN:\"framer-v-c5w8t3\",Vu2oiVjCB:\"framer-v-1u0tbds\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Left aligned\":\"q5qyQaxwN\",Desktop:\"IRNaaCrW6\",Mobile:\"Vu2oiVjCB\",Tablet:\"K0HU3sMbv\"};const getProps=({height,id,visible,width,...props})=>{return{...props,f5TYHsxe8:visible??props.f5TYHsxe8??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"IRNaaCrW6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,f5TYHsxe8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IRNaaCrW6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if([\"Vu2oiVjCB\",\"q5qyQaxwN\"].includes(baseVariant))return false;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kuck0g\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IRNaaCrW6\",ref:ref??ref1,style:{...style},...addPropertyOverrides({K0HU3sMbv:{\"data-framer-name\":\"Tablet\"},q5qyQaxwN:{\"data-framer-name\":\"Left aligned\"},Vu2oiVjCB:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8bwgs\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"us1PEIqCY\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-20fjvc\",\"data-framer-name\":\"2-COL-IMAGE-RIGHT\",layoutDependency:layoutDependency,layoutId:\"lx3763Mjg\",children:[isDisplayed(f5TYHsxe8)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjr0z5\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Ran4osg08\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwdw6t-container\",layoutDependency:layoutDependency,layoutId:\"EqCuE3bba-container\",children:/*#__PURE__*/_jsx(HoverReveal,{blurAmount:0,height:\"100%\",id:\"EqCuE3bba\",image1:\"https://framerusercontent.com/images/hXWun4cMnf0vLjFgucFdETmELc4.png\",image2:\"https://framerusercontent.com/images/yFYsvHW5ShNLz6YVJczQH3kHYtE.jpeg\",layoutId:\"EqCuE3bba\",revealRadius:150,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-177krct\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"ENaOWwhzQ\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fwo4ey\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"gcWQQ2yva\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ooneb\",layoutDependency:layoutDependency,layoutId:\"e93VpDbF1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wvypv6\",layoutDependency:layoutDependency,layoutId:\"n_kp58viY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Look 10X Bigger.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Raise a Round.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simplify Your Product.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Impress Customers.\"})]}),className:\"framer-anhecy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AUZgU1TRT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({q5qyQaxwN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Look 10X Bigger.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Raise a Round.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Simplify Your Product.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Impress Customers.\"})]})},Vu2oiVjCB:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Look 10X Bigger.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Raise a Round.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Simplify Your Product.\"}),/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"left\"},children:\"Impress Customers.\"})]})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ym842s\",layoutDependency:layoutDependency,layoutId:\"ty4oqyLCj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-67d5jr\",\"data-styles-preset\":\"qvBIK5gnM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41)))\"},children:\"A bad UX can break even the most thoroughly built brand identity, and an confusing UI has the power to instantly turn people off.\"})}),className:\"framer-77gyks\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KV2dpwKxO\",style:{\"--extracted-r6o4lv\":\"var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({q5qyQaxwN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-67d5jr\",\"data-styles-preset\":\"qvBIK5gnM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41)))\"},children:\"A bad UX can break even the most thoroughly built brand identity, and an confusing UI has the power to instantly turn people off.\"})})},Vu2oiVjCB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-67d5jr\",\"data-styles-preset\":\"qvBIK5gnM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41)))\"},children:\"A bad UX can break even the most thoroughly built brand identity, and an confusing UI has the power to instantly turn people off.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10unlx9\",layoutDependency:layoutDependency,layoutId:\"Aag_cwKaY\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1scxvs2\",layoutDependency:layoutDependency,layoutId:\"t1BMk1Ext\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+95.99999999999994+0+535+64+211.60000000000002+0+172+0+0+0+0,...addPropertyOverrides({K0HU3sMbv:{y:(componentViewport?.y||0)+0+63.99999999999994+0+535+64+211.60000000000002+0+172+0+0+0+0},q5qyQaxwN:{y:(componentViewport?.y||0)+0+96+0+0+64+211.60000000000002+0+172+0+0+0+0},Vu2oiVjCB:{y:(componentViewport?.y||0)+0+48+0+0+0+211.60000000000002+0+164+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vzw273-container\",layoutDependency:layoutDependency,layoutId:\"jYgHYI8zb-container\",children:/*#__PURE__*/_jsx(ButtonWithGentleShakeWithMappedReactProps1v1ipky,{height:\"100%\",id:\"jYgHYI8zb\",KDBxe2XZg:\"mailto:alex@30kstrategy.com\",layoutId:\"jYgHYI8zb\",REaQT0y4C:\"Get in touch\",variant:\"LLd_XX5qb\",width:\"100%\"})})})})})]})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f3Ri3.framer-1h58xzs, .framer-f3Ri3 .framer-1h58xzs { display: block; }\",\".framer-f3Ri3.framer-kuck0g { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-f3Ri3 .framer-1c8bwgs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px; position: relative; width: 100%; z-index: 1; }\",\".framer-f3Ri3 .framer-20fjvc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-f3Ri3 .framer-1xjr0z5 { aspect-ratio: 1.8097087378640777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 446px); overflow: hidden; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); }\",\".framer-f3Ri3 .framer-fwdw6t-container { bottom: -132px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-f3Ri3 .framer-177krct, .framer-f3Ri3 .framer-1fwo4ey { bottom: 0px; flex: none; height: 121px; left: calc(50.00000000000002% - 100.1240694789082% / 2); overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-f3Ri3 .framer-16ooneb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-f3Ri3 .framer-1wvypv6, .framer-f3Ri3 .framer-ym842s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3Ri3 .framer-anhecy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f3Ri3 .framer-77gyks { flex: none; height: auto; max-width: 640px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f3Ri3 .framer-10unlx9, .framer-f3Ri3 .framer-1scxvs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-f3Ri3 .framer-vzw273-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f3Ri3.framer-kuck0g, .framer-f3Ri3 .framer-1c8bwgs, .framer-f3Ri3 .framer-20fjvc, .framer-f3Ri3 .framer-16ooneb, .framer-f3Ri3 .framer-1wvypv6, .framer-f3Ri3 .framer-ym842s, .framer-f3Ri3 .framer-10unlx9, .framer-f3Ri3 .framer-1scxvs2 { gap: 0px; } .framer-f3Ri3.framer-kuck0g > *, .framer-f3Ri3 .framer-1c8bwgs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-f3Ri3.framer-kuck0g > :first-child, .framer-f3Ri3 .framer-1c8bwgs > :first-child { margin-left: 0px; } .framer-f3Ri3.framer-kuck0g > :last-child, .framer-f3Ri3 .framer-1c8bwgs > :last-child { margin-right: 0px; } .framer-f3Ri3 .framer-20fjvc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f3Ri3 .framer-20fjvc > :first-child, .framer-f3Ri3 .framer-16ooneb > :first-child, .framer-f3Ri3 .framer-1wvypv6 > :first-child, .framer-f3Ri3 .framer-ym842s > :first-child, .framer-f3Ri3 .framer-10unlx9 > :first-child, .framer-f3Ri3 .framer-1scxvs2 > :first-child { margin-top: 0px; } .framer-f3Ri3 .framer-20fjvc > :last-child, .framer-f3Ri3 .framer-16ooneb > :last-child, .framer-f3Ri3 .framer-1wvypv6 > :last-child, .framer-f3Ri3 .framer-ym842s > :last-child, .framer-f3Ri3 .framer-10unlx9 > :last-child, .framer-f3Ri3 .framer-1scxvs2 > :last-child { margin-bottom: 0px; } .framer-f3Ri3 .framer-16ooneb > *, .framer-f3Ri3 .framer-1wvypv6 > *, .framer-f3Ri3 .framer-ym842s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-f3Ri3 .framer-10unlx9 > *, .framer-f3Ri3 .framer-1scxvs2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-f3Ri3.framer-v-17gsrwv.framer-kuck0g { width: 810px; }\",\".framer-f3Ri3.framer-v-17gsrwv .framer-1c8bwgs { padding: 64px; }\",\".framer-f3Ri3.framer-v-17gsrwv .framer-1xjr0z5 { height: var(--framer-aspect-ratio-supported, 302px); }\",\".framer-f3Ri3.framer-v-17gsrwv .framer-fwdw6t-container { bottom: -85px; }\",\".framer-f3Ri3.framer-v-17gsrwv .framer-77gyks { max-width: 80%; }\",\".framer-f3Ri3.framer-v-1u0tbds.framer-kuck0g { width: 390px; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-1c8bwgs { padding: 48px 24px 48px 24px; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-20fjvc { gap: 24px; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-16ooneb { padding: 0px; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-ym842s { align-content: flex-start; align-items: flex-start; gap: 24px; justify-content: flex-start; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-77gyks { max-width: 100%; }\",\".framer-f3Ri3.framer-v-1u0tbds .framer-10unlx9, .framer-f3Ri3.framer-v-1u0tbds .framer-1scxvs2 { width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f3Ri3.framer-v-1u0tbds .framer-20fjvc, .framer-f3Ri3.framer-v-1u0tbds .framer-ym842s { gap: 0px; } .framer-f3Ri3.framer-v-1u0tbds .framer-20fjvc > *, .framer-f3Ri3.framer-v-1u0tbds .framer-ym842s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-f3Ri3.framer-v-1u0tbds .framer-20fjvc > :first-child, .framer-f3Ri3.framer-v-1u0tbds .framer-ym842s > :first-child { margin-top: 0px; } .framer-f3Ri3.framer-v-1u0tbds .framer-20fjvc > :last-child, .framer-f3Ri3.framer-v-1u0tbds .framer-ym842s > :last-child { margin-bottom: 0px; } }\",\".framer-f3Ri3.framer-v-c5w8t3 .framer-20fjvc { align-content: flex-start; align-items: flex-start; }\",\".framer-f3Ri3.framer-v-c5w8t3 .framer-16ooneb, .framer-f3Ri3.framer-v-c5w8t3 .framer-ym842s, .framer-f3Ri3.framer-v-c5w8t3 .framer-10unlx9, .framer-f3Ri3.framer-v-c5w8t3 .framer-1scxvs2 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-f3Ri3[data-border=\"true\"]::after, .framer-f3Ri3 [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 1037.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"K0HU3sMbv\":{\"layout\":[\"fixed\",\"auto\"]},\"Vu2oiVjCB\":{\"layout\":[\"fixed\",\"auto\"]},\"q5qyQaxwN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"f5TYHsxe8\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdGFV6I5h5=withCSS(Component,css,\"framer-f3Ri3\");export default FramerdGFV6I5h5;FramerdGFV6I5h5.displayName=\"CTA\";FramerdGFV6I5h5.defaultProps={height:1037.5,width:1200};addPropertyControls(FramerdGFV6I5h5,{variant:{options:[\"IRNaaCrW6\",\"K0HU3sMbv\",\"Vu2oiVjCB\",\"q5qyQaxwN\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Left aligned\"],title:\"Variant\",type:ControlType.Enum},f5TYHsxe8:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerdGFV6I5h5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HoverRevealFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdGFV6I5h5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K0HU3sMbv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vu2oiVjCB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q5qyQaxwN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1037.5\",\"framerVariables\":\"{\\\"f5TYHsxe8\\\":\\\"visible\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["HoverReveal", "props", "isHovering", "setIsHovering", "ye", "containerRef", "pe", "springConfig", "mouseX", "useSpring", "mouseY", "radius", "ue", "handleMouseMove", "event", "left", "top", "handleMouseEnter", "handleMouseLeave", "maskImage", "useTransform", "x", "y", "r", "u", "p", "motion", "addPropertyControls", "ControlType", "HoverRevealFonts", "getFonts", "HoverReveal", "ButtonFonts", "DgxqgKGnx_default", "ButtonWithGentleShakeWithMappedReactProps1v1ipky", "withMappedReactProps", "withGentleShake", "DgxqgKGnx_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "f5TYHsxe8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerdGFV6I5h5", "withCSS", "dGFV6I5h5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
