{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/thypZbyu1WQGltfirzkq/BFVAfOa5EGRB0ofXynw0/B4CrjLIFA.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (018ad06)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xUrIdWruYNMRtFcL7aC8/02KIRnQpeUPcsLDdecJE/Bzf9tU22M.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dt3u0l3zV455mzClX46w/zYcyduLGR8KhyQuBDH4N/iLvBdfOs8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oG0Y5fSL0sL4rJv2aeH4/PW5YRGbiCGyJsQC0KJEv/MjM7LH64L.js\";import Tag from\"https://framerusercontent.com/modules/bl6WCiRqVvLnInYrqJBu/15cEavyYoZQUVSz17tvt/VLQCZcVpG.js\";const VideoFonts=getFonts(Video);const TagFonts=getFonts(Tag);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={drFKFoufT:{hover:true},tUOa221_M:{hover:true},U9QyqU4vh:{hover:true}};const cycleOrder=[\"tUOa221_M\",\"U9QyqU4vh\",\"JfRnu8SSW\",\"drFKFoufT\"];const serializationHash=\"framer-3DCMx\";const variantClassNames={drFKFoufT:\"framer-v-g9e7k1\",JfRnu8SSW:\"framer-v-g9q08q\",tUOa221_M:\"framer-v-1xbnhv\",U9QyqU4vh:\"framer-v-16xw9qb\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:275,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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tUOa221_M\",\"Variant 2\":\"U9QyqU4vh\",\"Variant 3\":\"JfRnu8SSW\",\"Variant 4\":\"drFKFoufT\"};const getProps=({click,height,id,image,imageVisible,learnMoreButton,link,significant1,significant2,significantDetails1,significantDetails2,statistics,tag,text,title,videoVisible,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9,_ref10,_ref11;return{...props,A_AH_yUYd:(_ref=imageVisible!==null&&imageVisible!==void 0?imageVisible:props.A_AH_yUYd)!==null&&_ref!==void 0?_ref:true,L0OqlKkNd:click!==null&&click!==void 0?click:props.L0OqlKkNd,M_pfzYt58:image!==null&&image!==void 0?image:props.M_pfzYt58,NYeeHdoQZ:(_ref1=significant1!==null&&significant1!==void 0?significant1:props.NYeeHdoQZ)!==null&&_ref1!==void 0?_ref1:\"SEO\",oqirxxS_G:(_ref2=text!==null&&text!==void 0?text:props.oqirxxS_G)!==null&&_ref2!==void 0?_ref2:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\",PclFj9Q07:(_ref3=tag!==null&&tag!==void 0?tag:props.PclFj9Q07)!==null&&_ref3!==void 0?_ref3:true,pvyu50sb9:(_ref4=significant2!==null&&significant2!==void 0?significant2:props.pvyu50sb9)!==null&&_ref4!==void 0?_ref4:\"%\",RhNFJqKE_:(_ref5=learnMoreButton!==null&&learnMoreButton!==void 0?learnMoreButton:props.RhNFJqKE_)!==null&&_ref5!==void 0?_ref5:true,TwKllrVdd:(_ref6=statistics!==null&&statistics!==void 0?statistics:props.TwKllrVdd)!==null&&_ref6!==void 0?_ref6:true,uB3Li49Uz:link!==null&&link!==void 0?link:props.uB3Li49Uz,variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"tUOa221_M\",VEWzDuoDf:(_ref8=videoVisible!==null&&videoVisible!==void 0?videoVisible:props.VEWzDuoDf)!==null&&_ref8!==void 0?_ref8:true,vjce4Tqa7:(_ref9=title!==null&&title!==void 0?title:props.vjce4Tqa7)!==null&&_ref9!==void 0?_ref9:\"SEO\",xxslYkG4G:(_ref10=significantDetails1!==null&&significantDetails1!==void 0?significantDetails1:props.xxslYkG4G)!==null&&_ref10!==void 0?_ref10:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\",ZZxw1qd09:(_ref11=significantDetails2!==null&&significantDetails2!==void 0?significantDetails2:props.ZZxw1qd09)!==null&&_ref11!==void 0?_ref11:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\"};};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,A_AH_yUYd,M_pfzYt58,VEWzDuoDf,vjce4Tqa7,oqirxxS_G,NYeeHdoQZ,xxslYkG4G,pvyu50sb9,ZZxw1qd09,uB3Li49Uz,RhNFJqKE_,PclFj9Q07,TwKllrVdd,L0OqlKkNd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tUOa221_M\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapy91hq1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(L0OqlKkNd){const res=await L0OqlKkNd(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=value=>{if(gestureVariant===\"U9QyqU4vh-hover\")return value;if(baseVariant===\"U9QyqU4vh\")return value;return false;};const isDisplayed1=value=>{if(gestureVariant===\"U9QyqU4vh-hover\")return value;if(baseVariant===\"U9QyqU4vh\")return value;return true;};const visible=isSet(NYeeHdoQZ);const visible1=isSet(pvyu50sb9);const isDisplayed2=()=>{if(baseVariant===\"JfRnu8SSW\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({U9QyqU4vh:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:uB3Li49Uz,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1xbnhv\",className,classNames)} framer-1c3lndv`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tUOa221_M\",onTap:onTapy91hq1,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"drFKFoufT-hover\":{\"data-framer-name\":undefined},\"tUOa221_M-hover\":{\"data-framer-name\":undefined},\"U9QyqU4vh-hover\":{\"data-framer-name\":undefined},drFKFoufT:{\"data-framer-name\":\"Variant 4\"},JfRnu8SSW:{\"data-framer-name\":\"Variant 3\"},U9QyqU4vh:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10pm9ss\",layoutDependency:layoutDependency,layoutId:\"Nr0eQ8T2_\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{U9QyqU4vh:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30}},children:[isDisplayed(VEWzDuoDf)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tof7iz-container\",layoutDependency:layoutDependency,layoutId:\"cHLgtYUuG-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,controls:false,height:\"100%\",id:\"cHLgtYUuG\",isMixedBorderRadius:false,layoutId:\"cHLgtYUuG\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})}),isDisplayed1(A_AH_yUYd)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"404px\",...toResponsiveImage(M_pfzYt58),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1d7w5td\",layoutDependency:layoutDependency,layoutId:\"gksAGRwZb\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},...addPropertyOverrides({\"U9QyqU4vh-hover\":{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.042)`,...toResponsiveImage(M_pfzYt58),...{positionX:\"center\",positionY:\"top\"}}},JfRnu8SSW:{background:{alt:\"\",fit:\"fill\",sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,...toResponsiveImage(M_pfzYt58),...{positionX:\"center\",positionY:\"top\"}}},U9QyqU4vh:{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(M_pfzYt58),...{positionX:\"center\",positionY:\"top\"}},transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h7qng7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"pFDc3AxPR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{\"drFKFoufT-hover\":{\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\"},\"tUOa221_M-hover\":{\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\"},\"U9QyqU4vh-hover\":{\"--border-color\":\"rgba(255, 255, 255, 0.59)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j9fofm\",layoutDependency:layoutDependency,layoutId:\"l7J165DgR\",children:[PclFj9Q07&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpa4ci-container\",layoutDependency:layoutDependency,layoutId:\"AulqO5HTP-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"AulqO5HTP\",layoutId:\"AulqO5HTP\",NNWJ0Hne9:\"Case Study\",variant:\"QdaMq0Dkc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",children:\"SEO\"})}),className:\"framer-1yilhfg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xjVibcuBS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vjce4Tqa7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\"})}),className:\"framer-1t4a9jd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EFSdIuqES\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:oqirxxS_G,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1(TwKllrVdd)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q60fm4\",layoutDependency:layoutDependency,layoutId:\"hzWQB0euR\",children:[visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1anfsdw\",layoutDependency:layoutDependency,layoutId:\"ACth6bsIC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10j6tsv\",\"data-styles-preset\":\"Bzf9tU22M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66)))\"},children:\"SEO\"})}),className:\"framer-1yf1hnl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zIT2gfVBh\",style:{\"--extracted-r6o4lv\":\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NYeeHdoQZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\"})}),className:\"framer-1lpuxcd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Twy6Fs8Wk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:xxslYkG4G,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cbe80z\",layoutDependency:layoutDependency,layoutId:\"oUh5TbwGm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10j6tsv\",\"data-styles-preset\":\"Bzf9tU22M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66)))\"},children:\"%\"})}),className:\"framer-c14e2b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RRMVV_1xq\",style:{\"--extracted-r6o4lv\":\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pvyu50sb9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",children:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\"})}),className:\"framer-d73hbj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dTLRTTSN8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:ZZxw1qd09,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed(RhNFJqKE_)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-murclb\",layoutDependency:layoutDependency,layoutId:\"CkY81fWRb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Learn More\"})}),className:\"framer-nmezth\",fonts:[\"GF;Rubik-600\"],layoutDependency:layoutDependency,layoutId:\"taIYgQQiz\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3sogeo\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"cmVUYBxH8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3retx-container\",layoutDependency:layoutDependency,layoutId:\"uOLkGEyPx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"uOLkGEyPx\",layoutId:\"uOLkGEyPx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9xo7nn\",layoutDependency:layoutDependency,layoutId:\"CXmxMe9km\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Learn More\"})}),className:\"framer-1srqg5j\",fonts:[\"GF;Rubik-600\"],layoutDependency:layoutDependency,layoutId:\"WpJiB_4HS\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lpkzmh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"A9f2vvamP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:70,borderBottomRightRadius:70,borderTopLeftRadius:70,borderTopRightRadius:70},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tom6b6-container\",layoutDependency:layoutDependency,layoutId:\"K69A_4Jtt-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"K69A_4Jtt\",layoutId:\"K69A_4Jtt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3DCMx.framer-1c3lndv, .framer-3DCMx .framer-1c3lndv { display: block; }\",\".framer-3DCMx.framer-1xbnhv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 404px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1000px; }\",\".framer-3DCMx .framer-10pm9ss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 404px; }\",\".framer-3DCMx .framer-tof7iz-container { flex: none; height: 810px; position: relative; width: 100%; }\",\".framer-3DCMx .framer-1d7w5td { aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 404px); will-change: var(--framer-will-change-override, transform); }\",\".framer-3DCMx .framer-1h7qng7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3DCMx .framer-j9fofm { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3DCMx .framer-1rpa4ci-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3DCMx .framer-1yilhfg, .framer-3DCMx .framer-1t4a9jd, .framer-3DCMx .framer-1yf1hnl, .framer-3DCMx .framer-1lpuxcd, .framer-3DCMx .framer-c14e2b, .framer-3DCMx .framer-d73hbj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3DCMx .framer-1q60fm4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3DCMx .framer-1anfsdw, .framer-3DCMx .framer-1cbe80z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3DCMx .framer-murclb, .framer-3DCMx .framer-9xo7nn { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3DCMx .framer-nmezth, .framer-3DCMx .framer-1srqg5j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3DCMx .framer-3sogeo, .framer-3DCMx .framer-1lpkzmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 7px; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3DCMx .framer-l3retx-container, .framer-3DCMx .framer-tom6b6-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3DCMx.framer-1xbnhv, .framer-3DCMx .framer-10pm9ss, .framer-3DCMx .framer-j9fofm, .framer-3DCMx .framer-1q60fm4, .framer-3DCMx .framer-1anfsdw, .framer-3DCMx .framer-1cbe80z, .framer-3DCMx .framer-murclb, .framer-3DCMx .framer-3sogeo, .framer-3DCMx .framer-9xo7nn, .framer-3DCMx .framer-1lpkzmh { gap: 0px; } .framer-3DCMx.framer-1xbnhv > *, .framer-3DCMx .framer-10pm9ss > *, .framer-3DCMx .framer-murclb > *, .framer-3DCMx .framer-3sogeo > *, .framer-3DCMx .framer-9xo7nn > *, .framer-3DCMx .framer-1lpkzmh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3DCMx.framer-1xbnhv > :first-child, .framer-3DCMx .framer-10pm9ss > :first-child, .framer-3DCMx .framer-1q60fm4 > :first-child, .framer-3DCMx .framer-murclb > :first-child, .framer-3DCMx .framer-3sogeo > :first-child, .framer-3DCMx .framer-9xo7nn > :first-child, .framer-3DCMx .framer-1lpkzmh > :first-child { margin-left: 0px; } .framer-3DCMx.framer-1xbnhv > :last-child, .framer-3DCMx .framer-10pm9ss > :last-child, .framer-3DCMx .framer-1q60fm4 > :last-child, .framer-3DCMx .framer-murclb > :last-child, .framer-3DCMx .framer-3sogeo > :last-child, .framer-3DCMx .framer-9xo7nn > :last-child, .framer-3DCMx .framer-1lpkzmh > :last-child { margin-right: 0px; } .framer-3DCMx .framer-j9fofm > *, .framer-3DCMx .framer-1anfsdw > *, .framer-3DCMx .framer-1cbe80z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3DCMx .framer-j9fofm > :first-child, .framer-3DCMx .framer-1anfsdw > :first-child, .framer-3DCMx .framer-1cbe80z > :first-child { margin-top: 0px; } .framer-3DCMx .framer-j9fofm > :last-child, .framer-3DCMx .framer-1anfsdw > :last-child, .framer-3DCMx .framer-1cbe80z > :last-child { margin-bottom: 0px; } .framer-3DCMx .framer-1q60fm4 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } }\",\".framer-3DCMx.framer-v-16xw9qb.framer-1xbnhv { flex-direction: column; height: min-content; width: 810px; }\",\".framer-3DCMx.framer-v-16xw9qb .framer-10pm9ss { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 810px); overflow: hidden; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3DCMx.framer-v-16xw9qb .framer-1d7w5td { bottom: 0px; height: var(--framer-aspect-ratio-supported, 810px); left: 50%; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-3DCMx.framer-v-16xw9qb .framer-1h7qng7, .framer-3DCMx.framer-v-g9q08q .framer-1h7qng7 { flex: none; gap: 53px; height: min-content; justify-content: center; width: 100%; }\",\".framer-3DCMx.framer-v-16xw9qb .framer-1anfsdw { align-content: flex-start; align-items: flex-start; }\",\".framer-3DCMx.framer-v-16xw9qb .framer-1cbe80z { align-content: flex-end; align-items: flex-end; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3DCMx.framer-v-16xw9qb.framer-1xbnhv, .framer-3DCMx.framer-v-16xw9qb .framer-1h7qng7 { gap: 0px; } .framer-3DCMx.framer-v-16xw9qb.framer-1xbnhv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3DCMx.framer-v-16xw9qb.framer-1xbnhv > :first-child, .framer-3DCMx.framer-v-16xw9qb .framer-1h7qng7 > :first-child { margin-top: 0px; } .framer-3DCMx.framer-v-16xw9qb.framer-1xbnhv > :last-child, .framer-3DCMx.framer-v-16xw9qb .framer-1h7qng7 > :last-child { margin-bottom: 0px; } .framer-3DCMx.framer-v-16xw9qb .framer-1h7qng7 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } }\",\".framer-3DCMx.framer-v-g9q08q.framer-1xbnhv { flex-direction: column; height: min-content; width: 390px; }\",\".framer-3DCMx.framer-v-g9q08q .framer-10pm9ss { height: min-content; width: 100%; }\",\".framer-3DCMx.framer-v-g9q08q .framer-1d7w5td { aspect-ratio: unset; flex: 1 0 0px; height: 370px; width: 1px; }\",\".framer-3DCMx.framer-v-g9q08q .framer-1q60fm4 { flex-direction: column; }\",\".framer-3DCMx.framer-v-g9q08q .framer-1anfsdw, .framer-3DCMx.framer-v-g9q08q .framer-1cbe80z { align-content: flex-start; align-items: flex-start; flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3DCMx.framer-v-g9q08q.framer-1xbnhv, .framer-3DCMx.framer-v-g9q08q .framer-1h7qng7, .framer-3DCMx.framer-v-g9q08q .framer-1q60fm4 { gap: 0px; } .framer-3DCMx.framer-v-g9q08q.framer-1xbnhv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3DCMx.framer-v-g9q08q.framer-1xbnhv > :first-child, .framer-3DCMx.framer-v-g9q08q .framer-1h7qng7 > :first-child, .framer-3DCMx.framer-v-g9q08q .framer-1q60fm4 > :first-child { margin-top: 0px; } .framer-3DCMx.framer-v-g9q08q.framer-1xbnhv > :last-child, .framer-3DCMx.framer-v-g9q08q .framer-1h7qng7 > :last-child, .framer-3DCMx.framer-v-g9q08q .framer-1q60fm4 > :last-child { margin-bottom: 0px; } .framer-3DCMx.framer-v-g9q08q .framer-1h7qng7 > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-3DCMx.framer-v-g9q08q .framer-1q60fm4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }\",\".framer-3DCMx.framer-v-g9e7k1 .framer-10pm9ss { order: 1; }\",\".framer-3DCMx.framer-v-g9e7k1 .framer-1h7qng7 { order: 0; }\",\".framer-3DCMx.framer-v-16xw9qb.hover .framer-1d7w5td { bottom: -17px; height: var(--framer-aspect-ratio-supported, 844px); top: -17px; width: 104%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-3DCMx[data-border=\"true\"]::after, .framer-3DCMx [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 404\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"U9QyqU4vh\":{\"layout\":[\"fixed\",\"auto\"]},\"JfRnu8SSW\":{\"layout\":[\"fixed\",\"auto\"]},\"drFKFoufT\":{\"layout\":[\"fixed\",\"fixed\"]},\"OZVZARDyn\":{\"layout\":[\"fixed\",\"fixed\"]},\"wezwODzZT\":{\"layout\":[\"fixed\",\"fixed\"]},\"kL2wwYhOq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"A_AH_yUYd\":\"imageVisible\",\"M_pfzYt58\":\"image\",\"VEWzDuoDf\":\"videoVisible\",\"vjce4Tqa7\":\"title\",\"oqirxxS_G\":\"text\",\"NYeeHdoQZ\":\"significant1\",\"xxslYkG4G\":\"significantDetails1\",\"pvyu50sb9\":\"significant2\",\"ZZxw1qd09\":\"significantDetails2\",\"uB3Li49Uz\":\"link\",\"RhNFJqKE_\":\"learnMoreButton\",\"PclFj9Q07\":\"tag\",\"TwKllrVdd\":\"statistics\",\"L0OqlKkNd\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB4CrjLIFA=withCSS(Component,css,\"framer-3DCMx\");export default FramerB4CrjLIFA;FramerB4CrjLIFA.displayName=\"Project\";FramerB4CrjLIFA.defaultProps={height:404,width:1e3};addPropertyControls(FramerB4CrjLIFA,{variant:{options:[\"tUOa221_M\",\"U9QyqU4vh\",\"JfRnu8SSW\",\"drFKFoufT\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},A_AH_yUYd:{defaultValue:true,title:\"Image Visible\",type:ControlType.Boolean},M_pfzYt58:{title:\"Image\",type:ControlType.ResponsiveImage},VEWzDuoDf:{defaultValue:true,title:\"Video Visible\",type:ControlType.Boolean},vjce4Tqa7:{defaultValue:\"SEO\",displayTextArea:false,title:\"Title\",type:ControlType.String},oqirxxS_G:{defaultValue:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\",displayTextArea:false,title:\"Text\",type:ControlType.String},NYeeHdoQZ:{defaultValue:\"SEO\",displayTextArea:false,title:\"Significant 1\",type:ControlType.String},xxslYkG4G:{defaultValue:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\",displayTextArea:false,title:\"Significant Details 1\",type:ControlType.String},pvyu50sb9:{defaultValue:\"%\",displayTextArea:false,title:\"Significant 2\",type:ControlType.String},ZZxw1qd09:{defaultValue:\"Discover how Tech Haven skyrocketed its online sales by 40% with Digital Impact's tailored SEO strategy!\",displayTextArea:false,title:\"Significant Details 2\",type:ControlType.String},uB3Li49Uz:{title:\"Link\",type:ControlType.Link},RhNFJqKE_:{defaultValue:true,title:\"Learn More Button\",type:ControlType.Boolean},PclFj9Q07:{defaultValue:true,title:\"Tag\",type:ControlType.Boolean},TwKllrVdd:{defaultValue:true,title:\"Statistics\",type:ControlType.Boolean},L0OqlKkNd:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerB4CrjLIFA,[{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/5vvr9Vy74if2I6bQ bJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1VU80V4bVkA.woff2\",weight:\"600\"}]},...VideoFonts,...TagFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB4CrjLIFA\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"A_AH_yUYd\\\":\\\"imageVisible\\\",\\\"M_pfzYt58\\\":\\\"image\\\",\\\"VEWzDuoDf\\\":\\\"videoVisible\\\",\\\"vjce4Tqa7\\\":\\\"title\\\",\\\"oqirxxS_G\\\":\\\"text\\\",\\\"NYeeHdoQZ\\\":\\\"significant1\\\",\\\"xxslYkG4G\\\":\\\"significantDetails1\\\",\\\"pvyu50sb9\\\":\\\"significant2\\\",\\\"ZZxw1qd09\\\":\\\"significantDetails2\\\",\\\"uB3Li49Uz\\\":\\\"link\\\",\\\"RhNFJqKE_\\\":\\\"learnMoreButton\\\",\\\"PclFj9Q07\\\":\\\"tag\\\",\\\"TwKllrVdd\\\":\\\"statistics\\\",\\\"L0OqlKkNd\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U9QyqU4vh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JfRnu8SSW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"drFKFoufT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OZVZARDyn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wezwODzZT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kL2wwYhOq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"404\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B4CrjLIFA.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "TagFonts", "VLQCZcVpG_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "imageVisible", "learnMoreButton", "link", "significant1", "significant2", "significantDetails1", "significantDetails2", "statistics", "tag", "text", "title", "videoVisible", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "A_AH_yUYd", "M_pfzYt58", "VEWzDuoDf", "vjce4Tqa7", "oqirxxS_G", "NYeeHdoQZ", "xxslYkG4G", "pvyu50sb9", "ZZxw1qd09", "uB3Li49Uz", "RhNFJqKE_", "PclFj9Q07", "TwKllrVdd", "L0OqlKkNd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapy91hq1", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "visible", "visible1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "Image2", "RichText", "css", "FramerB4CrjLIFA", "withCSS", "B4CrjLIFA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
