{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js", "ssg:https://framerusercontent.com/modules/nCTmB1NHONv1433iRijk/Tqxmd4vXpQ9uD0gbw0G0/AB9sSG6B4.js", "ssg:https://framerusercontent.com/modules/x4qhPPJcqKylSb4NGza8/yykqQMdxOkjeEMkgpHm0/IVozL5jyY.js", "ssg:https://framerusercontent.com/modules/wriGkg9qraHlGfbdRokQ/eSkCOsNOnS1PBkPWFBV6/PsUfvsKBR.js", "ssg:https://framerusercontent.com/modules/hrDG2HtiR70fhiGnEkWJ/2TilhM3JbQWIV3g58Gvt/VEfvI0fNd.js", "ssg:https://framerusercontent.com/modules/988lA2c6hS8eAhSc5XE1/T2wHcXka1r5k2jec5BTH/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (8a81902)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useLocaleInfo,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/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={fNFyT6fqd:{hover:true},wdO2JzPep:{hover:true}};const cycleOrder=[\"fNFyT6fqd\",\"wdO2JzPep\"];const variantClassNames={fNFyT6fqd:\"framer-v-1q8wcan\",wdO2JzPep:\"framer-v-ai7f00\"};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={\"Variant 1\":\"fNFyT6fqd\",\"Variant 2\":\"wdO2JzPep\"};const getProps=({height,id,link,newTab,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,mWyYPPeu7:tap!==null&&tap!==void 0?tap:props.mWyYPPeu7,Qv3m015X1:(_ref=title!==null&&title!==void 0?title:props.Qv3m015X1)!==null&&_ref!==void 0?_ref:\"PLAY SHOWREEL\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"fNFyT6fqd\",vKuZZtuTY:(_ref2=newTab!==null&&newTab!==void 0?newTab:props.vKuZZtuTY)!==null&&_ref2!==void 0?_ref2:true,xNjg5hAFz:link!==null&&link!==void 0?link:props.xNjg5hAFz};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,mWyYPPeu7,Qv3m015X1,xNjg5hAFz,vKuZZtuTY,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fNFyT6fqd\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ymeqr0=activeVariantCallback(async(...args)=>{if(mWyYPPeu7){const res=await mWyYPPeu7(...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-LZgaW\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({wdO2JzPep:{href:xNjg5hAFz,openInNewTab:vKuZZtuTY,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(\"framer-1q8wcan\",className)} framer-27jdse`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fNFyT6fqd\",onTap:onTap1ymeqr0,ref:ref,style:{...style},...addPropertyOverrides({\"fNFyT6fqd-hover\":{\"data-framer-name\":undefined},\"wdO2JzPep-hover\":{\"data-framer-name\":undefined},wdO2JzPep:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gsopr2\",layoutDependency:layoutDependency,layoutId:\"iiybcUZAg\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.16)\",borderBottomLeftRadius:104,borderBottomRightRadius:104,borderTopLeftRadius:104,borderTopRightRadius:104,WebkitBackdropFilter:\"blur(5px)\"},variants:{\"wdO2JzPep-hover\":{backgroundColor:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(9, 93, 93))\"},wdO2JzPep:{backdropFilter:\"blur(11px)\",backgroundColor:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",WebkitBackdropFilter:\"blur(11px)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpl1jj-container\",layoutDependency:layoutDependency,layoutId:\"ubglt6Kj5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) /* {\"name\":\"White 100%\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"ubglt6Kj5\",layoutId:\"ubglt6Kj5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({\"fNFyT6fqd-hover\":{color:'var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(223, 72, 144)) /* {\"name\":\"Orange\"} */'},\"wdO2JzPep-hover\":{color:'var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) /* {\"name\":\"White 100%\"} */'},wdO2JzPep:{color:'var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 122, 59)) /* {\"name\":\"Orange\"} */',iconSelection:\"ArrowUpRight\",weight:\"light\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"PLAY SHOWREEL\"})}),className:\"framer-1doshtd\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"panvE_kSE\",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\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:Qv3m015X1,variants:{\"fNFyT6fqd-hover\":{opacity:1},\"wdO2JzPep-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"wdO2JzPep-hover\":{text:undefined},wdO2JzPep:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"EXPLORE\"})}),text:undefined}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-LZgaW [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-LZgaW .framer-27jdse { display: block; }\",\".framer-LZgaW .framer-1q8wcan { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-LZgaW .framer-gsopr2 { flex: none; height: 117px; overflow: hidden; position: relative; width: 117px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LZgaW .framer-gpl1jj-container { flex: none; height: 62px; left: calc(50.42735042735045% - 62px / 2); position: absolute; top: calc(50.42735042735045% - 62px / 2); width: 62px; }\",\".framer-LZgaW .framer-1doshtd { flex: none; height: auto; mix-blend-mode: difference; position: relative; white-space: pre; width: auto; }\",\".framer-LZgaW .framer-v-1q8wcan .framer-1q8wcan, .framer-LZgaW .framer-v-ai7f00 .framer-1q8wcan { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LZgaW .framer-1q8wcan { gap: 0px; } .framer-LZgaW .framer-1q8wcan > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LZgaW .framer-1q8wcan > :first-child { margin-top: 0px; } .framer-LZgaW .framer-1q8wcan > :last-child { margin-bottom: 0px; } }\",\".framer-LZgaW.framer-v-ai7f00 .framer-1q8wcan { text-decoration: none; }\",\".framer-LZgaW.framer-v-ai7f00 .framer-gsopr2 { height: 84px; width: 84px; }\",\".framer-LZgaW.framer-v-ai7f00 .framer-gpl1jj-container { height: 48px; left: calc(50.00000000000002% - 48px / 2); top: calc(50.00000000000002% - 48px / 2); width: 48px; }\",\".framer-LZgaW.framer-v-1q8wcan.hover .framer-1q8wcan { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LZgaW.framer-v-1q8wcan.hover .framer-1q8wcan { gap: 0px; } .framer-LZgaW.framer-v-1q8wcan.hover .framer-1q8wcan > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-LZgaW.framer-v-1q8wcan.hover .framer-1q8wcan > :first-child { margin-top: 0px; } .framer-LZgaW.framer-v-1q8wcan.hover .framer-1q8wcan > :last-child { margin-bottom: 0px; } }\",\".framer-LZgaW.framer-v-ai7f00.hover .framer-1q8wcan { gap: 9px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LZgaW.framer-v-ai7f00.hover .framer-1q8wcan { gap: 0px; } .framer-LZgaW.framer-v-ai7f00.hover .framer-1q8wcan > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-LZgaW.framer-v-ai7f00.hover .framer-1q8wcan > :first-child { margin-top: 0px; } .framer-LZgaW.framer-v-ai7f00.hover .framer-1q8wcan > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 136\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wdO2JzPep\":{\"layout\":[\"auto\",\"auto\"]},\"L9tr2PPTE\":{\"layout\":[\"auto\",\"auto\"]},\"WZXu5p5YU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"mWyYPPeu7\":\"tap\",\"Qv3m015X1\":\"title\",\"xNjg5hAFz\":\"link\",\"vKuZZtuTY\":\"newTab\"}\n * @framerImmutableVariables false\n */const FramerAB9sSG6B4=withCSS(Component,css,\"framer-LZgaW\");export default FramerAB9sSG6B4;FramerAB9sSG6B4.displayName=\"Button - Round\";FramerAB9sSG6B4.defaultProps={height:136,width:160};addPropertyControls(FramerAB9sSG6B4,{variant:{options:[\"fNFyT6fqd\",\"wdO2JzPep\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},mWyYPPeu7:{title:\"Tap\",type:ControlType.EventHandler},Qv3m015X1:{defaultValue:\"PLAY SHOWREEL\",displayTextArea:false,title:\"Title\",type:ControlType.String},xNjg5hAFz:{title:\"Link\",type:ControlType.Link},vKuZZtuTY:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerAB9sSG6B4,[{family:\"Syne\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/AB9sSG6B4:default\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",weight:\"700\"},...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAB9sSG6B4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"mWyYPPeu7\\\":\\\"tap\\\",\\\"Qv3m015X1\\\":\\\"title\\\",\\\"xNjg5hAFz\\\":\\\"link\\\",\\\"vKuZZtuTY\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"160\",\"framerImmutableVariables\":\"false\",\"framerIntrinsicHeight\":\"136\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wdO2JzPep\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"L9tr2PPTE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WZXu5p5YU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AB9sSG6B4.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,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/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ogEjcvwsFRZaHjlTMtfk/HGRjhqrUUDN83VxjhB4v/DuMLJ2VUN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/113yw8ZWnwzNDoYkNE2Y/yyPnVgoGbnKn8VS3Wfnf/MjM7LH64L.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/gWtePhYtVpD99Wu6dgzY/Sjbeyi3XeQFc5EygjgcQ/urlDCZwpF.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={M4x0ZduiV:{hover:true},NvSY0AjTO:{hover:true}};const cycleOrder=[\"NvSY0AjTO\",\"M4x0ZduiV\",\"i3OUhIoZi\",\"YR7CuyKoH\"];const serializationHash=\"framer-4ucY6\";const variantClassNames={i3OUhIoZi:\"framer-v-lpc4rc\",M4x0ZduiV:\"framer-v-1s6d1df\",NvSY0AjTO:\"framer-v-pxhdii\",YR7CuyKoH:\"framer-v-1urtpzu\"};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:270,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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Phone Collapsed\":\"i3OUhIoZi\",\"Phone Expanded\":\"YR7CuyKoH\",Collapsed:\"M4x0ZduiV\",Expanded:\"NvSY0AjTO\"};const getProps=({description,height,id,image,row1,row2,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,DFIDx_49F:(_ref=image!==null&&image!==void 0?image:props.DFIDx_49F)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg 2334w\"},I43n4JqNq:(_ref1=row2!==null&&row2!==void 0?row2:props.I43n4JqNq)!==null&&_ref1!==void 0?_ref1:\"Storyboarding\\nLocation Scouting\\nCasting\",i5O03YodR:(_ref2=description!==null&&description!==void 0?description:props.i5O03YodR)!==null&&_ref2!==void 0?_ref2:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"NvSY0AjTO\",wfGtFKOCx:(_ref4=title!==null&&title!==void 0?title:props.wfGtFKOCx)!==null&&_ref4!==void 0?_ref4:\"Video Editing\",YEq393da6:(_ref5=row1!==null&&row1!==void 0?row1:props.YEq393da6)!==null&&_ref5!==void 0?_ref5:\"Concept Development\\nScriptwriting\\nStoryboarding\\n\"};};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,wfGtFKOCx,i5O03YodR,DFIDx_49F,YEq393da6,I43n4JqNq,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NvSY0AjTO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1nm0m5i=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"M4x0ZduiV\");});const onTap1d1jhgp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"NvSY0AjTO\");});const onTaptvijn1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YR7CuyKoH\");});const onTap1j3lih6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"i3OUhIoZi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"i3OUhIoZi\",\"YR7CuyKoH\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"M4x0ZduiV-hover\")return false;if([\"M4x0ZduiV\",\"i3OUhIoZi\"].includes(baseVariant))return false;return true;};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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-pxhdii\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Expanded\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NvSY0AjTO\",onTap:onTap1nm0m5i,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:'radial-gradient(50% 50% at 0% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)',borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"M4x0ZduiV-hover\":{\"--border-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--border-left-width\":\"1px\",background:'radial-gradient(50% 50% at 50% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)'},\"NvSY0AjTO-hover\":{\"--border-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--border-left-width\":\"1px\",background:'radial-gradient(50% 50% at 50% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)'}},...addPropertyOverrides({\"M4x0ZduiV-hover\":{\"data-framer-name\":undefined},\"NvSY0AjTO-hover\":{\"data-framer-name\":undefined},i3OUhIoZi:{\"data-framer-name\":\"Phone Collapsed\",onTap:onTaptvijn1},M4x0ZduiV:{\"data-framer-name\":\"Collapsed\",onTap:onTap1d1jhgp},YR7CuyKoH:{\"data-framer-name\":\"Phone Expanded\",onTap:onTap1j3lih6}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16szu7u\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"gLkubF5Dt\",style:{rotate:0},variants:{\"M4x0ZduiV-hover\":{rotate:-5},M4x0ZduiV:{rotate:4}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3500,intrinsicWidth:2334,pixelHeight:3500,pixelWidth:2334,sizes:\"254px\",...toResponsiveImage(DFIDx_49F)},className:\"framer-d64ho6\",layoutDependency:layoutDependency,layoutId:\"eQMOKUzrn\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,filter:\"none\",opacity:1,WebkitFilter:\"none\"},variants:{\"M4x0ZduiV-hover\":{opacity:1},M4x0ZduiV:{filter:\"grayscale(1)\",opacity:0,WebkitFilter:\"grayscale(1)\"}}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(98deg, rgb(255, 255, 255) -2.22753e-15%, rgba(255, 255, 255, 0.77) 100%)\"},children:\"Video Editing\"})})}),className:\"framer-624c68\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"favR92Sax\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wfGtFKOCx,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"M4x0ZduiV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(216deg, rgb(255, 255, 255) -2.22753e-15%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Video Editing\"})})})},\"NvSY0AjTO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(256deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.58) 100%)\"},children:\"Video Editing\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mzim4c\",\"data-framer-name\":\"Text Wrapperr\",layoutDependency:layoutDependency,layoutId:\"S0gaq_Nec\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\"})}),className:\"framer-ez4gff\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mSvbEgZSa\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:i5O03YodR,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmuphu\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"qScPo0TMV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:[\"Concept Development\",/*#__PURE__*/_jsx(motion.br,{}),\"Scriptwriting\",/*#__PURE__*/_jsx(motion.br,{}),\"Storyboarding\",/*#__PURE__*/_jsx(motion.br,{})]})})}),className:\"framer-whod3y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GkRNnTxQA\",style:{\"--extracted-1w3ko1f\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YEq393da6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:[\"Storyboarding\",/*#__PURE__*/_jsx(motion.br,{}),\"Location Scouting\",/*#__PURE__*/_jsx(motion.br,{}),\"Casting\"]})}),className:\"framer-1g4e4u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qLEc_yo46\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I43n4JqNq,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fbz94t\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"PnVVD8JYe\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Hide details\"})}),className:\"framer-q9a98g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ojKptD9Sg\",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,...addPropertyOverrides({i3OUhIoZi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Learn More\"})})},M4x0ZduiV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Learn More\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4xy95o-container\",layoutDependency:layoutDependency,layoutId:\"qz1COLjl_-container\",style:{rotate:270},variants:{\"M4x0ZduiV-hover\":{rotate:0},\"NvSY0AjTO-hover\":{rotate:180},i3OUhIoZi:{rotate:0},M4x0ZduiV:{rotate:-90},YR7CuyKoH:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleDown\",id:\"qz1COLjl_\",layoutId:\"qz1COLjl_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\",...addPropertyOverrides({\"M4x0ZduiV-hover\":{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(9, 93, 93))\",weight:\"duotone\"},\"NvSY0AjTO-hover\":{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111))\",weight:\"duotone\"},i3OUhIoZi:{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(9, 93, 93))\",weight:\"duotone\"},YR7CuyKoH:{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111))\",weight:\"duotone\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4ucY6.framer-xxlfh1, .framer-4ucY6 .framer-xxlfh1 { display: block; }\",\".framer-4ucY6.framer-pxhdii { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 750px; }\",\".framer-4ucY6 .framer-16szu7u { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: -290px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; width: 254px; z-index: 1; }\",\".framer-4ucY6 .framer-d64ho6 { flex: none; height: 100%; left: calc(50.14164305949011% - 100% / 2); mix-blend-mode: difference; overflow: visible; position: absolute; top: calc(50.12987012987015% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-4ucY6 .framer-624c68 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4ucY6 .framer-mzim4c, .framer-4ucY6 .framer-1fmuphu { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ucY6 .framer-ez4gff, .framer-4ucY6 .framer-whod3y, .framer-4ucY6 .framer-1g4e4u { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4ucY6 .framer-fbz94t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 5px 3px 5px 20px; pointer-events: none; position: relative; width: min-content; }\",\".framer-4ucY6 .framer-q9a98g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4ucY6 .framer-4xy95o-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ucY6.framer-pxhdii, .framer-4ucY6 .framer-16szu7u, .framer-4ucY6 .framer-mzim4c, .framer-4ucY6 .framer-1fmuphu, .framer-4ucY6 .framer-fbz94t { gap: 0px; } .framer-4ucY6.framer-pxhdii > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-4ucY6.framer-pxhdii > :first-child, .framer-4ucY6 .framer-16szu7u > :first-child { margin-top: 0px; } .framer-4ucY6.framer-pxhdii > :last-child, .framer-4ucY6 .framer-16szu7u > :last-child { margin-bottom: 0px; } .framer-4ucY6 .framer-16szu7u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4ucY6 .framer-mzim4c > *, .framer-4ucY6 .framer-1fmuphu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4ucY6 .framer-mzim4c > :first-child, .framer-4ucY6 .framer-1fmuphu > :first-child, .framer-4ucY6 .framer-fbz94t > :first-child { margin-left: 0px; } .framer-4ucY6 .framer-mzim4c > :last-child, .framer-4ucY6 .framer-1fmuphu > :last-child, .framer-4ucY6 .framer-fbz94t > :last-child { margin-right: 0px; } .framer-4ucY6 .framer-fbz94t > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-4ucY6.framer-v-1s6d1df .framer-16szu7u { bottom: unset; left: unset; right: 30px; top: -180px; }\",\".framer-4ucY6.framer-v-lpc4rc.framer-pxhdii, .framer-4ucY6.framer-v-1urtpzu.framer-pxhdii { padding: 30px 20px 30px 20px; }\",\".framer-4ucY6.framer-v-1urtpzu .framer-1fmuphu { flex-direction: column; gap: 0px; }\",\".framer-4ucY6.framer-v-1urtpzu .framer-whod3y, .framer-4ucY6.framer-v-1urtpzu .framer-1g4e4u { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ucY6.framer-v-1urtpzu .framer-1fmuphu { gap: 0px; } .framer-4ucY6.framer-v-1urtpzu .framer-1fmuphu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4ucY6.framer-v-1urtpzu .framer-1fmuphu > :first-child { margin-top: 0px; } .framer-4ucY6.framer-v-1urtpzu .framer-1fmuphu > :last-child { margin-bottom: 0px; } }\",\".framer-4ucY6.framer-v-1s6d1df.hover .framer-16szu7u { bottom: unset; left: calc(52.26666666666668% - 254px / 2); right: unset; top: -203px; }\",\".framer-4ucY6.framer-v-1s6d1df.hover .framer-fbz94t { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ucY6.framer-v-1s6d1df.hover .framer-fbz94t { gap: 0px; } .framer-4ucY6.framer-v-1s6d1df.hover .framer-fbz94t > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-4ucY6.framer-v-1s6d1df.hover .framer-fbz94t > :first-child { margin-left: 0px; } .framer-4ucY6.framer-v-1s6d1df.hover .framer-fbz94t > :last-child { margin-right: 0px; } }\",\".framer-4ucY6.framer-v-pxhdii.hover .framer-fbz94t { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4ucY6.framer-v-pxhdii.hover .framer-fbz94t { gap: 0px; } .framer-4ucY6.framer-v-pxhdii.hover .framer-fbz94t > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-4ucY6.framer-v-pxhdii.hover .framer-fbz94t > :first-child { margin-left: 0px; } .framer-4ucY6.framer-v-pxhdii.hover .framer-fbz94t > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-4ucY6[data-border=\"true\"]::after, .framer-4ucY6 [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 348\n * @framerIntrinsicWidth 750\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M4x0ZduiV\":{\"layout\":[\"fixed\",\"auto\"]},\"i3OUhIoZi\":{\"layout\":[\"fixed\",\"auto\"]},\"YR7CuyKoH\":{\"layout\":[\"fixed\",\"auto\"]},\"ScX4091aO\":{\"layout\":[\"fixed\",\"auto\"]},\"QPJ0aP30t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wfGtFKOCx\":\"title\",\"i5O03YodR\":\"description\",\"DFIDx_49F\":\"image\",\"YEq393da6\":\"row1\",\"I43n4JqNq\":\"row2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIVozL5jyY=withCSS(Component,css,\"framer-4ucY6\");export default FramerIVozL5jyY;FramerIVozL5jyY.displayName=\"Homepage - Service\";FramerIVozL5jyY.defaultProps={height:348,width:750};addPropertyControls(FramerIVozL5jyY,{variant:{options:[\"NvSY0AjTO\",\"M4x0ZduiV\",\"i3OUhIoZi\",\"YR7CuyKoH\"],optionTitles:[\"Expanded\",\"Collapsed\",\"Phone Collapsed\",\"Phone Expanded\"],title:\"Variant\",type:ControlType.Enum},wfGtFKOCx:{defaultValue:\"Video Editing\",displayTextArea:true,title:\"Title\",type:ControlType.String},i5O03YodR:{defaultValue:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\",displayTextArea:true,title:\"Description\",type:ControlType.String},DFIDx_49F:{__defaultAssetReference:\"data:framer/asset-reference,cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?originalFilename=photo-1695209387889-dd34362dc1cc%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHwyfHx8fHx8Mnx8MTY5NTQwMDIxMHw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},YEq393da6:{defaultValue:\"Concept Development\\nScriptwriting\\nStoryboarding\\n\",displayTextArea:true,title:\"Row 1\",type:ControlType.String},I43n4JqNq:{defaultValue:\"Storyboarding\\nLocation Scouting\\nCasting\",displayTextArea:true,title:\"Row 2\",type:ControlType.String}});addFonts(FramerIVozL5jyY,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIVozL5jyY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M4x0ZduiV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i3OUhIoZi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YR7CuyKoH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScX4091aO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPJ0aP30t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"348\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"wfGtFKOCx\\\":\\\"title\\\",\\\"i5O03YodR\\\":\\\"description\\\",\\\"DFIDx_49F\\\":\\\"image\\\",\\\"YEq393da6\\\":\\\"row1\\\",\\\"I43n4JqNq\\\":\\\"row2\\\"}\",\"framerIntrinsicWidth\":\"750\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IVozL5jyY.map", "// Generated by Framer (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,RichText,useActiveVariantCallback,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/TO50RZfUZkMws8Mz1efr/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"RxdcTC8ZX\",\"aJ_SkuXLs\"];const serializationHash=\"framer-HIUDS\";const variantClassNames={aJ_SkuXLs:\"framer-v-1xurqt0\",RxdcTC8ZX:\"framer-v-3w977e\"};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={\"Variant 1\":\"RxdcTC8ZX\",\"Variant 2\":\"aJ_SkuXLs\"};const getProps=({client,cursor,file,height,id,tap,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,adALtMGad:cursor!==null&&cursor!==void 0?cursor:props.adALtMGad,j3YDxvFwK:tap!==null&&tap!==void 0?tap:props.j3YDxvFwK,PH62DGcwC:(_ref=file!==null&&file!==void 0?file:props.PH62DGcwC)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/kdKvBb6UyIpSR2GIP2Bq6hhmuA.mp4\",TshoKf3A0:(_ref1=client!==null&&client!==void 0?client:props.TshoKf3A0)!==null&&_ref1!==void 0?_ref1:\"Client\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"RxdcTC8ZX\",Zk6V4eTO2:(_ref3=title!==null&&title!==void 0?title:props.Zk6V4eTO2)!==null&&_ref3!==void 0?_ref3:\"Title of the video\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PH62DGcwC,j3YDxvFwK,Zk6V4eTO2,TshoKf3A0,adALtMGad,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"RxdcTC8ZX\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap70spew=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(j3YDxvFwK){const res=await j3YDxvFwK(...args);if(res===false)return false;}});const onMouseEnterv7afj0=activeVariantCallback(async(...args)=>{setVariant(\"aJ_SkuXLs\");});const onMouseLeave1jkw86j=activeVariantCallback(async(...args)=>{setVariant(\"RxdcTC8ZX\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3w977e\",className,classNames),\"data-framer-cursor\":adALtMGad,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"RxdcTC8ZX\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterv7afj0,onTap:onTap70spew,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:51,borderBottomRightRadius:51,borderTopLeftRadius:51,borderTopRightRadius:51,...style},...addPropertyOverrides({aJ_SkuXLs:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1jkw86j}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z5z0w4\",layoutDependency:layoutDependency,layoutId:\"VSLSMbvo7\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ckonu-container\",layoutDependency:layoutDependency,layoutId:\"KVxLoV5wF-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KVxLoV5wF\",isMixedBorderRadius:false,layoutId:\"KVxLoV5wF\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:PH62DGcwC,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({aJ_SkuXLs:{playing:true}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10l3fb5\",layoutDependency:layoutDependency,layoutId:\"tcUoN2clB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS02MDA=\",\"--framer-font-family\":'\"Syne\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Title of the video\"})}),className:\"framer-tgrrpw\",fonts:[\"GF;Syne-600\"],layoutDependency:layoutDependency,layoutId:\"YDB_PCxRv\",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\"},text:Zk6V4eTO2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Client\"})}),className:\"framer-102kxjx\",fonts:[\"GF;Syne-regular\"],layoutDependency:layoutDependency,layoutId:\"yHdGxckjH\",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\"},text:TshoKf3A0,verticalAlignment:\"top\",withExternalLayout:true})]})]})})});});const css=['.framer-HIUDS[data-border=\"true\"]::after, .framer-HIUDS [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-HIUDS.framer-32z9fl, .framer-HIUDS .framer-32z9fl { display: block; }\",\".framer-HIUDS.framer-3w977e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 580px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 580px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HIUDS .framer-z5z0w4 { cursor: none; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-HIUDS .framer-6ckonu-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-HIUDS .framer-10l3fb5 { align-content: flex-start; align-items: flex-start; bottom: 39px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 34px; mix-blend-mode: difference; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-HIUDS .framer-tgrrpw, .framer-HIUDS .framer-102kxjx { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HIUDS.framer-3w977e, .framer-HIUDS .framer-10l3fb5 { gap: 0px; } .framer-HIUDS.framer-3w977e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HIUDS.framer-3w977e > :first-child, .framer-HIUDS .framer-10l3fb5 > :first-child { margin-top: 0px; } .framer-HIUDS.framer-3w977e > :last-child, .framer-HIUDS .framer-10l3fb5 > :last-child { margin-bottom: 0px; } .framer-HIUDS .framer-10l3fb5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-HIUDS.framer-v-1xurqt0.framer-3w977e { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 580px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 580\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aJ_SkuXLs\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"PH62DGcwC\":\"file\",\"j3YDxvFwK\":\"tap\",\"Zk6V4eTO2\":\"title\",\"TshoKf3A0\":\"client\",\"adALtMGad\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerPsUfvsKBR=withCSS(Component,css,\"framer-HIUDS\");export default FramerPsUfvsKBR;FramerPsUfvsKBR.displayName=\"Featured Video Card\";FramerPsUfvsKBR.defaultProps={height:580,width:580};addPropertyControls(FramerPsUfvsKBR,{variant:{options:[\"RxdcTC8ZX\",\"aJ_SkuXLs\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},PH62DGcwC:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,kdKvBb6UyIpSR2GIP2Bq6hhmuA.mp4?originalFilename=production_id_4488737+%28360p%29.mp4\",hidden:undefined,title:\"File\"},j3YDxvFwK:{title:\"Tap\",type:ControlType.EventHandler},Zk6V4eTO2:{defaultValue:\"Title of the video\",displayTextArea:false,title:\"Title\",type:ControlType.String},TshoKf3A0:{defaultValue:\"Client\",displayTextArea:false,title:\"Client\",type:ControlType.String},adALtMGad:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerPsUfvsKBR,[{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6hR47NCV5Z.woff2\",weight:\"600\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6hR47NCV5Z.woff2\",weight:\"400\"},...VideoFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPsUfvsKBR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aJ_SkuXLs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"580\",\"framerIntrinsicHeight\":\"580\",\"framerVariables\":\"{\\\"PH62DGcwC\\\":\\\"file\\\",\\\"j3YDxvFwK\\\":\\\"tap\\\",\\\"Zk6V4eTO2\\\":\\\"title\\\",\\\"TshoKf3A0\\\":\\\"client\\\",\\\"adALtMGad\\\":\\\"cursor\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PsUfvsKBR.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,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/pe1ycJFage0SeMzdt3zY/rBqBxGozgwlbKqF1t30m/iLvBdfOs8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/113yw8ZWnwzNDoYkNE2Y/yyPnVgoGbnKn8VS3Wfnf/MjM7LH64L.js\";const cycleOrder=[\"LBRwyfX_K\",\"yDIwo_BnK\",\"INeONs42a\",\"mWJeR4pdx\"];const serializationHash=\"framer-bRO8H\";const variantClassNames={INeONs42a:\"framer-v-13lakpz\",LBRwyfX_K:\"framer-v-3hldu9\",mWJeR4pdx:\"framer-v-q98by5\",yDIwo_BnK:\"framer-v-8bw0bx\"};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:270,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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop Default\":\"yDIwo_BnK\",\"Desktop Hover\":\"LBRwyfX_K\",\"Phone Default\":\"INeONs42a\",\"Phone Tapped\":\"mWJeR4pdx\"};const getProps=({description,height,id,image,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,GEReXC71q:(_ref=description!==null&&description!==void 0?description:props.GEReXC71q)!==null&&_ref!==void 0?_ref:\"feature films, documentaries, and other long-form video content\",HSYB8KLpc:(_ref1=title!==null&&title!==void 0?title:props.HSYB8KLpc)!==null&&_ref1!==void 0?_ref1:\"Film and Video Editing\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"LBRwyfX_K\",y1DNXPRRS:(_ref3=image!==null&&image!==void 0?image:props.y1DNXPRRS)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KU8reFP90nuP1WlMgSloOnrcY.jpg 5398w\"}};};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,HSYB8KLpc,GEReXC71q,y1DNXPRRS,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LBRwyfX_K\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterox9tu3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"yDIwo_BnK\");});const onMouseLeavexo30c6=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"yDIwo_BnK\");});const onMouseEnter1sst1is=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"LBRwyfX_K\");});const onTap1erisbi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mWJeR4pdx\");});const onTapowtm1y=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"INeONs42a\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"INeONs42a\",\"mWJeR4pdx\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3hldu9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop Hover\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LBRwyfX_K\",onMouseEnter:onMouseEnterox9tu3,onMouseLeave:onMouseLeavexo30c6,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",background:\"radial-gradient(71% 86.4% at -0.8% 0%, rgba(255, 255, 255, 0.1) 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,WebkitBackdropFilter:\"blur(10px)\",...style},variants:{INeONs42a:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},mWJeR4pdx:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},yDIwo_BnK:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({INeONs42a:{\"data-framer-name\":\"Phone Default\",onMouseEnter:undefined,onMouseLeave:undefined,onTap:onTap1erisbi},mWJeR4pdx:{\"data-framer-name\":\"Phone Tapped\",onMouseEnter:undefined,onMouseLeave:undefined,onTap:onTapowtm1y},yDIwo_BnK:{\"data-framer-name\":\"Desktop Default\",onMouseEnter:onMouseEnter1sst1is,onMouseLeave:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3wg8q\",\"data-framer-name\":\"Glass Effect\",layoutDependency:layoutDependency,layoutId:\"AbhtgUNKl\",style:{backdropFilter:\"blur(5px)\",rotate:9,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1otlxpk\",layoutDependency:layoutDependency,layoutId:\"NXGUxYxW_\",style:{backdropFilter:\"blur(0px)\",background:\"linear-gradient(114deg, white 0%, white 100%)\",backgroundColor:\"rgb(255, 255, 255)\",opacity:.12,WebkitBackdropFilter:\"blur(0px)\"},variants:{yDIwo_BnK:{background:\"linear-gradient(114deg, hsl(0, 0%, 100%) 47.74774774774775%, rgba(255, 255, 255, 0.08) 50.819488890785856%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:.17}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxg8jc\",\"data-framer-name\":\"Title Wrapper\",layoutDependency:layoutDependency,layoutId:\"BpfPg_Wg3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, rgb(179, 199, 199) 42.494226327944574%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111)) 100%)\"},children:\"Film and Video Editing\"})})}),className:\"framer-1j8q41p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x5sg78ucy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"none\"},text:HSYB8KLpc,variants:{INeONs42a:{\"--extracted-a0htzi\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",textShadow:\"0px 1px 10px rgba(0, 0, 0, 0.4)\"},mWJeR4pdx:{\"--extracted-a0htzi\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INeONs42a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 42.494226327944574%, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 100%)\"},children:\"Film and Video Editing\"})})})},mWJeR4pdx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, rgb(179, 199, 199) 42.494226327944574%, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111)) 100%)\"},children:\"Film and Video Editing\"})})})},yDIwo_BnK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 42.494226327944574%, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 100%)\"},children:\"Film and Video Editing\"})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:\"feature films, documentaries, and other long-form video content\"})}),className:\"framer-8t99tq\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JMWaHwcr9\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1,textShadow:\"none\"},text:GEReXC71q,variants:{INeONs42a:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",textShadow:\"0px 2px 23px rgba(0, 0, 0, 0.55)\"},yDIwo_BnK:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INeONs42a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Learn More \u2192\"})}),fonts:[\"GF;Inter-regular\"],text:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bah87\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"kkp5xwfvA\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:1},variants:{INeONs42a:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},mWJeR4pdx:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:.06}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5398,pixelHeight:3648,pixelWidth:5398,sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.9983)`,...toResponsiveImage(y1DNXPRRS)},className:\"framer-k2mjaj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pmifxSeKR\",style:{filter:\"none\",opacity:0,WebkitFilter:\"none\"},variants:{INeONs42a:{filter:\"brightness(1)\",opacity:1,WebkitFilter:\"brightness(1)\"},mWJeR4pdx:{filter:\"brightness(1)\",opacity:1,WebkitFilter:\"brightness(1)\"},yDIwo_BnK:{opacity:1}},...addPropertyOverrides({INeONs42a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5398,pixelHeight:3648,pixelWidth:5398,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,...toResponsiveImage(y1DNXPRRS)}},mWJeR4pdx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5398,pixelHeight:3648,pixelWidth:5398,sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) * 1.5)`,...toResponsiveImage(y1DNXPRRS)}},yDIwo_BnK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5398,pixelHeight:3648,pixelWidth:5398,sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) * 1)`,...toResponsiveImage(y1DNXPRRS)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-157v28x\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"EMqLi8ZoQ\",style:{background:\"linear-gradient(165deg, hsl(0, 0%, 0%) 0%, rgba(0, 0, 0, 0) 100%)\",opacity:.79}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jtk6to\",\"data-framer-name\":\"Background Lines\",layoutDependency:layoutDependency,layoutId:\"XB3QkmjmA\",style:{opacity:1},variants:{INeONs42a:{opacity:.12},yDIwo_BnK:{opacity:0}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1j7g1cl\",layoutDependency:layoutDependency,layoutId:\"fpFBDINgM\",...addPropertyOverrides({yDIwo_BnK:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-d8tbhe\",layoutDependency:layoutDependency,layoutId:\"NTo2F4N0C\",...addPropertyOverrides({yDIwo_BnK:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-rmm1f0\",layoutDependency:layoutDependency,layoutId:\"uebsF6brU\",...addPropertyOverrides({INeONs42a:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},mWJeR4pdx:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},yDIwo_BnK:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`calc((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) * 0.9981)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bRO8H.framer-t99fpj, .framer-bRO8H .framer-t99fpj { display: block; }\",\".framer-bRO8H.framer-3hldu9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 376px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 513px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bRO8H .framer-1c3wg8q { align-content: center; align-items: center; bottom: -59px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -276px; top: -199px; width: 169px; }\",\".framer-bRO8H .framer-1otlxpk { flex: none; height: 100%; left: calc(50.11389521640094% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-bRO8H .framer-vxg8jc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bRO8H .framer-1j8q41p { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bRO8H .framer-8t99tq { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bRO8H .framer-1bah87 { flex: none; height: 100%; left: calc(50.097465886939595% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-bRO8H .framer-k2mjaj { flex: none; height: 100%; left: calc(50.00000000000002% - 99.83277591973244% / 2); overflow: visible; position: absolute; top: calc(49.88610478359911% - 99.77220956719817% / 2); width: 100%; z-index: -1; }\",\".framer-bRO8H .framer-157v28x { flex: none; height: 100%; left: calc(50.097465886939595% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-bRO8H .framer-jtk6to { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-bRO8H .framer-1j7g1cl, .framer-bRO8H .framer-d8tbhe, .framer-bRO8H .framer-rmm1f0 { flex: none; height: 100%; left: calc(50.00000000000002% - 99.80544747081711% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bRO8H .framer-1c3wg8q, .framer-bRO8H .framer-vxg8jc { gap: 0px; } .framer-bRO8H .framer-1c3wg8q > *, .framer-bRO8H .framer-vxg8jc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bRO8H .framer-1c3wg8q > :first-child, .framer-bRO8H .framer-vxg8jc > :first-child { margin-left: 0px; } .framer-bRO8H .framer-1c3wg8q > :last-child, .framer-bRO8H .framer-vxg8jc > :last-child { margin-right: 0px; } }\",\".framer-bRO8H.framer-v-8bw0bx.framer-3hldu9 { padding: 12px 40px 40px 20px; }\",\".framer-bRO8H.framer-v-8bw0bx .framer-1c3wg8q { bottom: -57px; left: -218px; right: unset; top: -201px; }\",\".framer-bRO8H.framer-v-8bw0bx .framer-1bah87 { height: 100%; left: calc(50.097465886939595% - 100.19493177387915% / 2); top: calc(50.00000000000002% - 100.2659574468085% / 2); width: 100%; }\",\".framer-bRO8H.framer-v-8bw0bx .framer-k2mjaj { height: 100%; left: calc(50.00000000000002% - 99.80544747081711% / 2); top: calc(49.86737400530506% - 99.73474801061008% / 2); width: 100%; }\",\".framer-bRO8H.framer-v-13lakpz.framer-3hldu9, .framer-bRO8H.framer-v-q98by5.framer-3hldu9 { cursor: pointer; gap: 70px; height: min-content; justify-content: flex-start; padding: 20px; }\",\".framer-bRO8H.framer-v-13lakpz .framer-vxg8jc { mix-blend-mode: unset; }\",\".framer-bRO8H.framer-v-13lakpz .framer-1bah87 { left: calc(49.90253411306045% - 100% / 2); overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-bRO8H.framer-v-13lakpz .framer-k2mjaj { height: 100%; left: calc(49.90253411306045% - 100% / 2); top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bRO8H.framer-v-13lakpz.framer-3hldu9 { gap: 0px; } .framer-bRO8H.framer-v-13lakpz.framer-3hldu9 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-bRO8H.framer-v-13lakpz.framer-3hldu9 > :first-child { margin-top: 0px; } .framer-bRO8H.framer-v-13lakpz.framer-3hldu9 > :last-child { margin-bottom: 0px; } }\",\".framer-bRO8H.framer-v-q98by5 .framer-vxg8jc { order: 1; }\",\".framer-bRO8H.framer-v-q98by5 .framer-8t99tq { order: 2; }\",\".framer-bRO8H.framer-v-q98by5 .framer-1bah87 { left: calc(49.90253411306045% - 100% / 2); order: 3; overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-bRO8H.framer-v-q98by5 .framer-k2mjaj { height: 150%; left: calc(49.90253411306045% - 150% / 2); top: calc(49.390243902439046% - 150% / 2); width: 150%; }\",\".framer-bRO8H.framer-v-q98by5 .framer-jtk6to { order: 4; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bRO8H.framer-v-q98by5.framer-3hldu9 { gap: 0px; } .framer-bRO8H.framer-v-q98by5.framer-3hldu9 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-bRO8H.framer-v-q98by5.framer-3hldu9 > :first-child { margin-top: 0px; } .framer-bRO8H.framer-v-q98by5.framer-3hldu9 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-bRO8H[data-border=\"true\"]::after, .framer-bRO8H [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 376\n * @framerIntrinsicWidth 513\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yDIwo_BnK\":{\"layout\":[\"fixed\",\"fixed\"]},\"INeONs42a\":{\"layout\":[\"fixed\",\"auto\"]},\"mWJeR4pdx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"HSYB8KLpc\":\"title\",\"GEReXC71q\":\"description\",\"y1DNXPRRS\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVEfvI0fNd=withCSS(Component,css,\"framer-bRO8H\");export default FramerVEfvI0fNd;FramerVEfvI0fNd.displayName=\"Homepage - Category\";FramerVEfvI0fNd.defaultProps={height:376,width:513};addPropertyControls(FramerVEfvI0fNd,{variant:{options:[\"LBRwyfX_K\",\"yDIwo_BnK\",\"INeONs42a\",\"mWJeR4pdx\"],optionTitles:[\"Desktop Hover\",\"Desktop Default\",\"Phone Default\",\"Phone Tapped\"],title:\"Variant\",type:ControlType.Enum},HSYB8KLpc:{defaultValue:\"Film and Video Editing\",displayTextArea:true,title:\"Title\",type:ControlType.String},GEReXC71q:{defaultValue:\"feature films, documentaries, and other long-form video content\",displayTextArea:true,title:\"Description\",type:ControlType.String},y1DNXPRRS:{__defaultAssetReference:\"data:framer/asset-reference,KU8reFP90nuP1WlMgSloOnrcY.jpg?originalFilename=photo-1485846234645-a62644f84728%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxmaWxtfGVufDB8fHx8MTY5NTQ3NjA1OXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerVEfvI0fNd,[{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVEfvI0fNd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"376\",\"framerIntrinsicWidth\":\"513\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yDIwo_BnK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"INeONs42a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mWJeR4pdx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"HSYB8KLpc\\\":\\\"title\\\",\\\"GEReXC71q\\\":\\\"description\\\",\\\"y1DNXPRRS\\\":\\\"image\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VEfvI0fNd.map", "// Generated by Framer (e942a9a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import ButtonRound from\"#framer/local/canvasComponent/AB9sSG6B4/AB9sSG6B4.js\";import Stats from\"#framer/local/canvasComponent/d7DnOAptI/d7DnOAptI.js\";import HomepageService from\"#framer/local/canvasComponent/IVozL5jyY/IVozL5jyY.js\";import Cursor from\"#framer/local/canvasComponent/NEEbmEyTX/NEEbmEyTX.js\";import FeaturedVideoCard from\"#framer/local/canvasComponent/PsUfvsKBR/PsUfvsKBR.js\";import ButtonGradient from\"#framer/local/canvasComponent/Ri7mo6WgZ/Ri7mo6WgZ.js\";import Footer from\"#framer/local/canvasComponent/Swq40RzUA/Swq40RzUA.js\";import BrandLogos from\"#framer/local/canvasComponent/TJRW1qsJY/TJRW1qsJY.js\";import HomepageCategory from\"#framer/local/canvasComponent/VEfvI0fNd/VEfvI0fNd.js\";import NavBar from\"#framer/local/canvasComponent/WvxfThqf1/WvxfThqf1.js\";import*as sharedStyle from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle1 from\"#framer/local/css/LdRSkkClr/LdRSkkClr.js\";import*as sharedStyle2 from\"#framer/local/css/rZemCCbaP/rZemCCbaP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonGradientFonts=getFonts(ButtonGradient);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionSectionWithFX=withFX(motion.section);const RichTextWithFX=withFX(RichText);const ButtonRoundFonts=getFonts(ButtonRound);const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const BrandLogosFonts=getFonts(BrandLogos);const TickerFonts=getFonts(Ticker);const FeaturedVideoCardFonts=getFonts(FeaturedVideoCard);const HomepageServiceFonts=getFonts(HomepageService);const HomepageCategoryFonts=getFonts(HomepageCategory);const StatsFonts=getFonts(Stats);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const breakpoints={jvCw4IpzG:\"(max-width: 809px)\",n84tt9Kzy:\"(min-width: 1000px) and (max-width: 1599px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 999px)\",WQLkyLRf1:\"(min-width: 1600px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9ex9k\";const variantClassNames={jvCw4IpzG:\"framer-v-nj0mn7\",n84tt9Kzy:\"framer-v-9ioxae\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:.1,mass:1,stiffness:116,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:0};const transition2={damping:30,delay:.2,mass:1,stiffness:116,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.3,mass:1,stiffness:116,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-Small\":\"n84tt9Kzy\",\"Desktop-Wide\":\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"KrLUuK1LO\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const mWyYPPeu73bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const j3YDxvFwK3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"iOopVsPls\");const elementId1=useRouteElementId(\"EngqWxQIb\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Tr5celSqg\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\"].includes(baseVariant))return true;return false;};useCustomCursors({\"85utyp\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(90vw, 900px)\",y:20},Ulru_24ch:{width:\"min(100vw, 697px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"min(100vw, 900px)\",y:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2q3rns-container\",layoutScroll:true,nodeId:\"SEB3J04cq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"kcR3MtLMz\"},Ulru_24ch:{variant:\"kcR3MtLMz\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"SEB3J04cq\",jqb75Nvff:\"e3cU_T_wy\",layoutId:\"SEB3J04cq\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tuIzq1kD0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-67qgex\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k90wli\",\"data-framer-name\":\"Hero\",id:\"1k90wli\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:1920,pixelWidth:1080,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mLGlvGBSexazgecN5DDYD8vPvK0.jpg\",srcSet:\"https://framerusercontent.com/images/mLGlvGBSexazgecN5DDYD8vPvK0.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/mLGlvGBSexazgecN5DDYD8vPvK0.jpg 1080w\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:-70,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-190}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Hero Image\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/oZiFY03CG6TSadZ2hUBUvM02Pc.jpg\",srcSet:\"https://framerusercontent.com/images/oZiFY03CG6TSadZ2hUBUvM02Pc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oZiFY03CG6TSadZ2hUBUvM02Pc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oZiFY03CG6TSadZ2hUBUvM02Pc.jpg 1920w\"},className:\"framer-19i89s5\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdk418\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(160deg, var(--token-5e392320-6dc2-4ced-ada4-6b8aba2f2b33, rgb(255, 255, 255)) 66.90644266773134%, rgba(0, 0, 0, 0) 94.2195452108111%)\"},children:\"From Paper to Production, we breathe life to your vision.\"})})}),className:\"framer-zpq2ca\",\"data-framer-appear-id\":\"zpq2ca\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"No drama, just quality production (unless of course you want cinematic drama)\"})}),className:\"framer-z7wfzx\",\"data-framer-appear-id\":\"z7wfzx\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rOFlUPujZ\"},implicitPathVariables:undefined},{href:{webPageId:\"rOFlUPujZ\"},implicitPathVariables:undefined},{href:{webPageId:\"rOFlUPujZ\"},implicitPathVariables:undefined},{href:{webPageId:\"rOFlUPujZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+0+0+0+0+613}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+0+0+553,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-o5qlel-container\",\"data-framer-appear-id\":\"o5qlel\",initial:animation1,nodeId:\"NsJgXj9Tu\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{ZnDHBgfGk:resolvedLinks[2]},n84tt9Kzy:{ZnDHBgfGk:resolvedLinks[3]},Ulru_24ch:{ZnDHBgfGk:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"NsJgXj9Tu\",layoutId:\"NsJgXj9Tu\",style:{height:\"100%\"},TOooqBdJz:\"Contact Us \",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks[0]})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-pmyxpx\",\"data-framer-name\":\"Section - Showreel\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194lqnz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:308,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(132deg, var(--token-5e392320-6dc2-4ced-ada4-6b8aba2f2b33, rgb(255, 255, 255)) 11.682368062196925%, rgba(0, 0, 0, 0) 100%)\"},children:\"SHOWREEL\"})})}),className:\"framer-9bvh77\",fonts:[\"GF;Syne-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",viewBox:\"0 0 518 80\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d4d49\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:39,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:114,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tpvi5m\",\"data-framer-name\":\"Video Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1lhvbc1-container\",id:\"1lhvbc1\",nodeId:\"bk1vWSWS_\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(ButtonRound,{height:\"100%\",id:\"bk1vWSWS_\",layoutId:\"bk1vWSWS_\",mWyYPPeu7:mWyYPPeu73bnx0g({overlay}),Qv3m015X1:\"PLAY SHOWREEL\",variant:\"fNFyT6fqd\",vKuZZtuTY:true,width:\"100%\",xNjg5hAFz:\"https://www.youtube.com/watch?v=hWC2KfRS_Bk\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-4zqtgk\"),\"data-framer-portal-id\":\"1lhvbc1\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"f06sQHuCj\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1e3q9el-container\"),\"data-framer-portal-id\":\"1lhvbc1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y3JWKLmu4\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Y3JWKLmu4\",isMixedBorderRadius:false,isRed:true,layoutId:\"Y3JWKLmu4\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=hWC2KfRS_Bk\",width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19exss5-container\",id:\"19exss5\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XxPKdbCMx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"XxPKdbCMx\",isMixedBorderRadius:false,layoutId:\"XxPKdbCMx\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XdwfkB61dcR2N2MUcHwYj9y1PU.mp4\",srcType:\"Upload\",srcUrl:\"https://www.youtube.com/watch?v=hWC2KfRS_Bk\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1by654a\",\"data-framer-name\":\"Section - Brands\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r0ct2r\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Presenting our Brand Visionaries\"})}),className:\"framer-3ogubq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lizw5\",\"data-border\":true,\"data-framer-name\":\"Brand Logos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wbqiut-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e611jfuvH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:.5,id:\"e611jfuvH\",layoutId:\"e611jfuvH\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j1s6if-container\",inComponentSlot:true,nodeId:\"ChGhP9OTB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"ChGhP9OTB\",layoutId:\"ChGhP9OTB\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/pzg3UtaZ1aix0irDpTn230TBQ.png\",srcSet:\"https://framerusercontent.com/images/pzg3UtaZ1aix0irDpTn230TBQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/pzg3UtaZ1aix0irDpTn230TBQ.png 1000w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6brr4-container\",inComponentSlot:true,nodeId:\"hC4D9XvuV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"hC4D9XvuV\",layoutId:\"hC4D9XvuV\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:803,pixelWidth:1200,src:\"https://framerusercontent.com/images/OqJ1OQ4uX4LLc2SNm96GiOHMnI.png\",srcSet:\"https://framerusercontent.com/images/OqJ1OQ4uX4LLc2SNm96GiOHMnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OqJ1OQ4uX4LLc2SNm96GiOHMnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OqJ1OQ4uX4LLc2SNm96GiOHMnI.png 1200w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-daoe2g-container\",inComponentSlot:true,nodeId:\"bDO8dFRtC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"bDO8dFRtC\",layoutId:\"bDO8dFRtC\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/d6LXnuYGBZO9g3xirLRj7FcCII.png\",srcSet:\"https://framerusercontent.com/images/d6LXnuYGBZO9g3xirLRj7FcCII.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6LXnuYGBZO9g3xirLRj7FcCII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6LXnuYGBZO9g3xirLRj7FcCII.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/d6LXnuYGBZO9g3xirLRj7FcCII.png 3840w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f9rgpm-container\",inComponentSlot:true,nodeId:\"bbKPiFNMH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"bbKPiFNMH\",layoutId:\"bbKPiFNMH\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/R82LMQBc4qp7Rwv8TcusWxxKYl8.png\",srcSet:\"https://framerusercontent.com/images/R82LMQBc4qp7Rwv8TcusWxxKYl8.png?scale-down-to=512 512w,https://framerusercontent.com/images/R82LMQBc4qp7Rwv8TcusWxxKYl8.png 1000w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxpe7i-container\",inComponentSlot:true,nodeId:\"CVDjkCnVx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"CVDjkCnVx\",layoutId:\"CVDjkCnVx\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/U3BFdGiOQQgJ4HtsGLWTqRoczdc.png\",srcSet:\"https://framerusercontent.com/images/U3BFdGiOQQgJ4HtsGLWTqRoczdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/U3BFdGiOQQgJ4HtsGLWTqRoczdc.png 1000w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gw5f58-container\",inComponentSlot:true,nodeId:\"huhoDxvk3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"huhoDxvk3\",layoutId:\"huhoDxvk3\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:642,pixelWidth:2142,src:\"https://framerusercontent.com/images/hBWVG3PUzn31Tg0rlMy8TNdcqg.png\",srcSet:\"https://framerusercontent.com/images/hBWVG3PUzn31Tg0rlMy8TNdcqg.png?scale-down-to=512 512w,https://framerusercontent.com/images/hBWVG3PUzn31Tg0rlMy8TNdcqg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hBWVG3PUzn31Tg0rlMy8TNdcqg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hBWVG3PUzn31Tg0rlMy8TNdcqg.png 2142w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10dfgcx-container\",inComponentSlot:true,nodeId:\"lNt6iLrO9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"lNt6iLrO9\",layoutId:\"lNt6iLrO9\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:563,pixelWidth:1e3,src:\"https://framerusercontent.com/images/mlm9nyuDdwXWUdalZegypmYFKw.png\",srcSet:\"https://framerusercontent.com/images/mlm9nyuDdwXWUdalZegypmYFKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mlm9nyuDdwXWUdalZegypmYFKw.png 1000w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1avd1en-container\",inComponentSlot:true,nodeId:\"E7k1WpuK1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"E7k1WpuK1\",layoutId:\"E7k1WpuK1\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:903,pixelWidth:2481,src:\"https://framerusercontent.com/images/zO6YE5NrnU8d7CVRIsb7fpWgC4.png\",srcSet:\"https://framerusercontent.com/images/zO6YE5NrnU8d7CVRIsb7fpWgC4.png?scale-down-to=512 512w,https://framerusercontent.com/images/zO6YE5NrnU8d7CVRIsb7fpWgC4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zO6YE5NrnU8d7CVRIsb7fpWgC4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zO6YE5NrnU8d7CVRIsb7fpWgC4.png 2481w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b28mzr-container\",inComponentSlot:true,nodeId:\"TtuupbyJv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"TtuupbyJv\",layoutId:\"TtuupbyJv\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({pixelHeight:208,pixelWidth:406,src:\"https://framerusercontent.com/images/aTVVHxIL26u9SGlBQF08ocYWM.png\"},\"\")})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-11nwzl0\",\"data-framer-name\":\"Section - Featured Works\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jd05u\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sn6wje\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Handpicked Featured Portfolio\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our Handpicked Featured Portfolio\"})}),className:\"framer-16kc5b5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined},{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined},{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+238+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+188+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+215.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hce33m-container hidden-nj0mn7\",nodeId:\"YRRuiXiXU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks1[2]},Ulru_24ch:{ZnDHBgfGk:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"YRRuiXiXU\",layoutId:\"YRRuiXiXU\",style:{height:\"100%\"},TOooqBdJz:\"See All Projects\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks1[0]})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+238+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+188+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+3380.2+0+0+215.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvwydh-container hidden-nj0mn7\",nodeId:\"ijNW_slkS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"ijNW_slkS\",layoutId:\"ijNW_slkS\",style:{height:\"100%\"},TOooqBdJz:\"Download Our Portfolio\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:\"https://drive.google.com/file/d/19Vk84k_gW_03_ZxhjHX-aY4jvJfdIBTb/view?usp=sharing\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:114,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1239,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1211,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dcbp7o\",\"data-framer-name\":\"Video Cards Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1kef8ll-container\",\"data-framer-cursor\":\"85utyp\",id:\"1kef8ll\",nodeId:\"NuNs1zzjD\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:overlay1.visible?\"RxdcTC8ZX\":\"aJ_SkuXLs\"},Ulru_24ch:{variant:\"aJ_SkuXLs\"}},children:/*#__PURE__*/_jsx(FeaturedVideoCard,{height:\"100%\",id:\"NuNs1zzjD\",j3YDxvFwK:j3YDxvFwK3bnx0g({overlay:overlay1}),layoutId:\"NuNs1zzjD\",PH62DGcwC:\"https://framerusercontent.com/assets/LWZ6B9XTyj7gGqAOWO4HvklbbM.mp4\",style:{height:\"100%\",width:\"100%\"},TshoKf3A0:\"Jetwing \",variant:\"RxdcTC8ZX\",width:\"100%\",Zk6V4eTO2:\"Luxury Reimagined \"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-18hsrz8\"),\"data-framer-portal-id\":\"1kef8ll\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"wvJWP4X06\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1wed5dz-container\"),\"data-framer-portal-id\":\"1kef8ll\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EVWCnJada\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,topLeftRadius:6,topRightRadius:6},n84tt9Kzy:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},Ulru_24ch:{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,topLeftRadius:11,topRightRadius:11}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"EVWCnJada\",isMixedBorderRadius:false,isRed:true,layoutId:\"EVWCnJada\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=-fuMWMKLNN8\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1uy3cto-container\",\"data-framer-cursor\":\"85utyp\",id:\"1uy3cto\",nodeId:\"YaPaW6x0c\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:overlay2.visible?\"RxdcTC8ZX\":\"aJ_SkuXLs\"},Ulru_24ch:{variant:\"aJ_SkuXLs\"}},children:/*#__PURE__*/_jsx(FeaturedVideoCard,{height:\"100%\",id:\"YaPaW6x0c\",j3YDxvFwK:j3YDxvFwK3bnx0g({overlay:overlay2}),layoutId:\"YaPaW6x0c\",PH62DGcwC:\"https://framerusercontent.com/assets/1GjF2kEyyC9aa1pzgiDUxPFpdA8.mp4\",style:{height:\"100%\",width:\"100%\"},TshoKf3A0:\"Nestle \",variant:\"RxdcTC8ZX\",width:\"100%\",Zk6V4eTO2:\"Recharged All Day, Everyday\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-yrosp0\"),\"data-framer-portal-id\":\"1uy3cto\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"Y50M4yOv6\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-xxbxn0-container\"),\"data-framer-portal-id\":\"1uy3cto\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"miC9t7YDI\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,topLeftRadius:6,topRightRadius:6},n84tt9Kzy:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},Ulru_24ch:{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,topLeftRadius:11,topRightRadius:11}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"miC9t7YDI\",isMixedBorderRadius:false,isRed:true,layoutId:\"miC9t7YDI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=1eyVfu5Savk\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-yrr6ed-container\",\"data-framer-cursor\":\"85utyp\",id:\"yrr6ed\",nodeId:\"fxXO2k7a3\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:overlay3.visible?\"RxdcTC8ZX\":\"aJ_SkuXLs\"},Ulru_24ch:{variant:\"aJ_SkuXLs\"}},children:/*#__PURE__*/_jsx(FeaturedVideoCard,{height:\"100%\",id:\"fxXO2k7a3\",j3YDxvFwK:j3YDxvFwK3bnx0g({overlay:overlay3}),layoutId:\"fxXO2k7a3\",PH62DGcwC:\"https://framerusercontent.com/assets/F2XnfmCQwkE3UffqdqiZciJN66o.mp4\",style:{height:\"100%\",width:\"100%\"},TshoKf3A0:\"KeyJeans \",variant:\"RxdcTC8ZX\",width:\"100%\",Zk6V4eTO2:\"Jeans That Fit Every You\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1pimg80\"),\"data-framer-portal-id\":\"yrr6ed\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"Kk8MH6_7O\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-v9vo31-container\"),\"data-framer-portal-id\":\"yrr6ed\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GAKMeOq4u\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,topLeftRadius:6,topRightRadius:6},n84tt9Kzy:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},Ulru_24ch:{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,topLeftRadius:11,topRightRadius:11}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"GAKMeOq4u\",isMixedBorderRadius:false,isRed:true,layoutId:\"GAKMeOq4u\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=Bw9XLwAdBYs\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ptq81q-container\",\"data-framer-cursor\":\"85utyp\",id:\"1ptq81q\",nodeId:\"zTR72Ze6A\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:overlay4.visible?\"RxdcTC8ZX\":\"aJ_SkuXLs\"},Ulru_24ch:{variant:\"aJ_SkuXLs\"}},children:/*#__PURE__*/_jsx(FeaturedVideoCard,{height:\"100%\",id:\"zTR72Ze6A\",j3YDxvFwK:j3YDxvFwK3bnx0g({overlay:overlay4}),layoutId:\"zTR72Ze6A\",PH62DGcwC:\"https://framerusercontent.com/assets/4eLEWdoiXXyMLKSCutQSWZMrl8.mp4\",style:{height:\"100%\",width:\"100%\"},TshoKf3A0:\"Fontera \",variant:\"RxdcTC8ZX\",width:\"100%\",Zk6V4eTO2:\"Warmer Moments\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-5puils\"),\"data-framer-portal-id\":\"1ptq81q\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"VDpSWG0aT\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-wijl7-container\"),\"data-framer-portal-id\":\"1ptq81q\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PYvK5gft3\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,topLeftRadius:6,topRightRadius:6},n84tt9Kzy:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},Ulru_24ch:{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,topLeftRadius:11,topRightRadius:11}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"PYvK5gft3\",isMixedBorderRadius:false,isRed:true,layoutId:\"PYvK5gft3\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=hYuSUQpODo0\",width:\"100%\"})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1i05vg-container\",\"data-framer-cursor\":\"85utyp\",id:\"1i05vg\",nodeId:\"H5U9hD6Bi\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:overlay5.visible?\"RxdcTC8ZX\":\"aJ_SkuXLs\"},Ulru_24ch:{variant:\"aJ_SkuXLs\"}},children:/*#__PURE__*/_jsx(FeaturedVideoCard,{height:\"100%\",id:\"H5U9hD6Bi\",j3YDxvFwK:j3YDxvFwK3bnx0g({overlay:overlay5}),layoutId:\"H5U9hD6Bi\",PH62DGcwC:\"https://framerusercontent.com/assets/tQolncjFPRACVLYrEL6aa9vCklI.mp4\",style:{height:\"100%\",width:\"100%\"},TshoKf3A0:\"Celcius\",variant:\"RxdcTC8ZX\",width:\"100%\",Zk6V4eTO2:\"Sleep Sutra \"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-icrh8h\"),\"data-framer-portal-id\":\"1i05vg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"tdz26RGSA\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-10nxeom-container\"),\"data-framer-portal-id\":\"1i05vg\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qa4tSV7ZS\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,topLeftRadius:6,topRightRadius:6},n84tt9Kzy:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},Ulru_24ch:{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,topLeftRadius:11,topRightRadius:11}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"qa4tSV7ZS\",isMixedBorderRadius:false,isRed:true,layoutId:\"qa4tSV7ZS\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:\"https://www.youtube.com/watch?v=w-NkVis1KQM\",width:\"100%\"})})})})]}),getContainer())})})]})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined},{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:60,y:(componentViewport?.y||0)+0+0+0+2480.2+50+0+1961.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8azsgs-container hidden-72rtr7 hidden-1feqjcj hidden-9ioxae\",nodeId:\"QpJT6hCm6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{ZnDHBgfGk:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"QpJT6hCm6\",layoutId:\"QpJT6hCm6\",style:{height:\"100%\"},TOooqBdJz:\"Contact Us\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks2[0]})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1njt9bz\",\"data-framer-name\":\"Section - Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aifs48\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlg232\",\"data-framer-name\":\"Heading & Button Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sidsiw\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:[\"From Concept To Completion:\",/*#__PURE__*/_jsx(\"br\",{}),\"We've Got You Covered!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:[\"From Concept To Completion:\",/*#__PURE__*/_jsx(\"br\",{}),\"We've Got You Covered!\"]})}),className:\"framer-1frktne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+0+1036,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1sxumgu-container hidden-1feqjcj hidden-nj0mn7\",\"data-framer-appear-id\":\"1sxumgu\",initial:animation1,nodeId:\"iFmBGzugw\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"iFmBGzugw\",layoutId:\"iFmBGzugw\",style:{height:\"100%\"},TOooqBdJz:\"Explore Services\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks3[0]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34f65t\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+4601.4+0+50+73.2+0+0},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 133px) / 1.5, 1px)`},Ulru_24ch:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 100px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+93.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fon78w-container\",nodeId:\"fy_R6euVx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\"},Ulru_24ch:{variant:\"i3OUhIoZi\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/fAT3Iy7qzrgnL6yiECAeBjq4.jpeg\",srcSet:\"https://framerusercontent.com/images/fAT3Iy7qzrgnL6yiECAeBjq4.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/fAT3Iy7qzrgnL6yiECAeBjq4.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/fAT3Iy7qzrgnL6yiECAeBjq4.jpeg 3024w\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Budgeting and Scheduling\\n\u2022 Equipment Rental\\n\u2022 Storyboarding and Shot List\",i5O03YodR:\"Pre-production serves as the pivotal phase in any creative endeavor, encompassing planning, idea refinement, budgeting, schedule creation, and the meticulous organization of logistical details.\",id:\"fy_R6euVx\",layoutId:\"fy_R6euVx\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Pre-Production\",width:\"100%\",YEq393da6:\"\u2022 Concept Development\\n\u2022 Location Scouting\\n\u2022 Casting and Talent Selection\\n\u2022 Wardrobe and Styling\\n\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+4601.4+0+50+73.2+0+363},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 133px) / 1.5, 1px)`},Ulru_24ch:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 100px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+93.2+0+379}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+0+379,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16wtvv2-container\",nodeId:\"lxdI7oWuy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\"},Ulru_24ch:{variant:\"i3OUhIoZi\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/kwNKdq9YDAc2bP3cYsPujkBgzA.jpeg\",srcSet:\"https://framerusercontent.com/images/kwNKdq9YDAc2bP3cYsPujkBgzA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/kwNKdq9YDAc2bP3cYsPujkBgzA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kwNKdq9YDAc2bP3cYsPujkBgzA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kwNKdq9YDAc2bP3cYsPujkBgzA.jpeg 4032w\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Multi-Camera Setup\\n\u2022 Time-Lapse and Slow Motion\\n\u2022 Green Screen and Chroma Key\\n\u2022 Dynamic Webinars\\n\",i5O03YodR:\"Production represents the dynamic phase of a creative project, where the plans from pre-production spring to life, with cameras rolling, actors delivering their performances, and the realization of the creative vision.\",id:\"lxdI7oWuy\",layoutId:\"lxdI7oWuy\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Production\",width:\"100%\",YEq393da6:\"\u2022 Cinematography\\n\u2022 Drone Videography\\n\u2022 Live Streaming\\n\u2022 Steadicam and Gimbal Work\\n\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+4601.4+0+50+73.2+0+726},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 133px) / 1.5, 1px)`},Ulru_24ch:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 100px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+93.2+0+758}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+0+758,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12tfq2x-container\",nodeId:\"udDLWzpXN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\",YEq393da6:\"\u2022 Color Grading\\n\u2022 Audio Enhancement\\n\u2022 3D Animation and CGI\\n\u2022 Subtitles and Closed Captions\"},Ulru_24ch:{variant:\"i3OUhIoZi\",YEq393da6:\"\u2022 Color Grading\\n\u2022 Audio Enhancement\\n\u2022 3D Animation and CGI\\n\u2022 Subtitles and Closed Captions\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/wooo6FJh2eMXDM4eiu04P3yXk.jpeg\",srcSet:\"https://framerusercontent.com/images/wooo6FJh2eMXDM4eiu04P3yXk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/wooo6FJh2eMXDM4eiu04P3yXk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wooo6FJh2eMXDM4eiu04P3yXk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wooo6FJh2eMXDM4eiu04P3yXk.jpeg 4032w\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Whiteboard Animation\\n\u2022 DVD and Blu-ray Authoring\\n\u2022 Distribution Services\\n\u2022 Archiving and Backup\",i5O03YodR:\"Post-production emerges as the pivotal phase in creative projects, wherein raw content undergoes a transformation into its refined, polished state where editing, sound design, visual effects, and essential adjustments to breathe life into the project.\",id:\"udDLWzpXN\",layoutId:\"udDLWzpXN\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Post-Production\",width:\"100%\",YEq393da6:\"\u2022 Color Grading\\n\u2022 Audio Enhancement\\n\u2022 3D Animation and CGI\\n\u2022 Subtitles and Closed Captions\\n\\n\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4601.4+0+83.6),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7380.2+0+212.6),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7380.2+0+0),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1q3jyqo\",\"data-framer-name\":\"Lines\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v94nxb hidden-72rtr7 hidden-9ioxae\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+0+0+4601.4+0+50+1167.2+0},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+7380.2+0+100+1239.2+30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lfc2jh-container\",nodeId:\"buYf3lxci\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{ZnDHBgfGk:resolvedLinks4[2]},Ulru_24ch:{ZnDHBgfGk:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"buYf3lxci\",layoutId:\"buYf3lxci\",style:{height:\"100%\"},TOooqBdJz:\"Explore Services\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks4[0]})})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1e19j2z\",\"data-framer-name\":\"Section - Category\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-927wu3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dffs2u\",\"data-framer-name\":\"Heading Wapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Eggs in our Basket\"})}),className:\"framer-3qbxdc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17po3f4\",\"data-framer-name\":\"Categories\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uj0qfs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wsx268\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8kxc5f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px) * 3)`,y:(componentViewport?.y||0)+0+0+0+5928.6+0+50+63.2+0+0+0+0+0+0+0+0},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+0+0},Ulru_24ch:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) * 0.75, 1px)`,y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+93.2+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.3, 1px) - 10px) * 0.6, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-su1pi8-container\",nodeId:\"PEBzhWXV2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"INeONs42a\"}},children:/*#__PURE__*/_jsx(HomepageCategory,{GEReXC71q:\"We bring real-life stories to life. Our documentaries inform, entertain, and educate on diverse subjects, ensuring your message is captivatingly conveyed.\",height:\"100%\",HSYB8KLpc:\"Events\",id:\"PEBzhWXV2\",layoutId:\"PEBzhWXV2\",style:{width:\"100%\"},variant:\"yDIwo_BnK\",width:\"100%\",y1DNXPRRS:addImageAlt({pixelHeight:1500,pixelWidth:1e3,src:\"https://framerusercontent.com/images/MSFC3rD3yvZSl6ZhriZA2W272Yw.jpg\",srcSet:\"https://framerusercontent.com/images/MSFC3rD3yvZSl6ZhriZA2W272Yw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/MSFC3rD3yvZSl6ZhriZA2W272Yw.jpg 1000w\"},\"Service\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+5928.6+0+50+63.2+0+0+0+0+0+0+0+391},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) * 0.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+0+0},Ulru_24ch:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+93.2+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.3, 1px) - 10px) * 0.4, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ge6i9q-container\",nodeId:\"pwNdo8vRL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"INeONs42a\",y1DNXPRRS:addImageAlt({pixelHeight:2195,pixelWidth:2469,src:\"https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg\",srcSet:\"https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg 2469w\"},\"\")}},children:/*#__PURE__*/_jsx(HomepageCategory,{GEReXC71q:\"Enhance your brand's impact with our corporate video expertise. We create engaging content for businesses, from promotions to training materials.\",height:\"100%\",HSYB8KLpc:\"Animation\",id:\"pwNdo8vRL\",layoutId:\"pwNdo8vRL\",style:{width:\"100%\"},variant:\"yDIwo_BnK\",width:\"100%\",y1DNXPRRS:addImageAlt({pixelHeight:1832,pixelWidth:3358,src:\"https://framerusercontent.com/images/GgwAjipSqwjuzUGcSozU4lRgxWk.png\",srcSet:\"https://framerusercontent.com/images/GgwAjipSqwjuzUGcSozU4lRgxWk.png?scale-down-to=512 512w,https://framerusercontent.com/images/GgwAjipSqwjuzUGcSozU4lRgxWk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GgwAjipSqwjuzUGcSozU4lRgxWk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GgwAjipSqwjuzUGcSozU4lRgxWk.png 3358w\"},\"Service\")})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i9ymgu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px) * 2)`,y:(componentViewport?.y||0)+0+0+0+5928.6+0+50+63.2+0+0+0+0+0+782+0+0},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+386+0},Ulru_24ch:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+93.2+0+0+0+0+0+386+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.3, 1px) - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+386+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qi3g75-container\",nodeId:\"bkiXXw9Cz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"INeONs42a\"}},children:/*#__PURE__*/_jsx(HomepageCategory,{GEReXC71q:\"We bring real-life stories to life. Our documentaries inform, entertain, and educate on diverse subjects, ensuring your message is captivatingly conveyed.\",height:\"100%\",HSYB8KLpc:\"Fashion and Lifestyle\",id:\"bkiXXw9Cz\",layoutId:\"bkiXXw9Cz\",style:{width:\"100%\"},variant:\"yDIwo_BnK\",width:\"100%\",y1DNXPRRS:addImageAlt({pixelHeight:1500,pixelWidth:1e3,positionX:\"57.9%\",positionY:\"28.7%\",src:\"https://framerusercontent.com/images/8Lw1q0DACXQZNzyHHxnv21Nvq2c.jpg\",srcSet:\"https://framerusercontent.com/images/8Lw1q0DACXQZNzyHHxnv21Nvq2c.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/8Lw1q0DACXQZNzyHHxnv21Nvq2c.jpg 1000w\"},\"Service\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+5928.6+0+50+63.2+0+0+0+0+0+782+0+391},n84tt9Kzy:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+0+386+0},Ulru_24ch:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+93.2+0+0+0+0+0+386+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:`max((max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) / 1.3, 1px) - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0+386+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2rzgy-container\",nodeId:\"NwVtjXasR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"INeONs42a\",y1DNXPRRS:addImageAlt({pixelHeight:2195,pixelWidth:2469,src:\"https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg\",srcSet:\"https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vm03zjJrHRXrd31ff3TU9VlHFJk.jpg 2469w\"},\"\")}},children:/*#__PURE__*/_jsx(HomepageCategory,{GEReXC71q:\"Enhance your brand's impact with our corporate video expertise. We create engaging content for businesses, from promotions to training materials.\",height:\"100%\",HSYB8KLpc:\"Commercial\",id:\"NwVtjXasR\",layoutId:\"NwVtjXasR\",style:{width:\"100%\"},variant:\"yDIwo_BnK\",width:\"100%\",y1DNXPRRS:addImageAlt({pixelHeight:789,pixelWidth:1920,src:\"https://framerusercontent.com/images/zuZIfEQ9W8gRYPIq17SbHx4WqI.jpg\",srcSet:\"https://framerusercontent.com/images/zuZIfEQ9W8gRYPIq17SbHx4WqI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zuZIfEQ9W8gRYPIq17SbHx4WqI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zuZIfEQ9W8gRYPIq17SbHx4WqI.jpg 1920w\"},\"Service\")})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-41tbmk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{height:376,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+0+0+5928.6+0+50+63.2+0+0+0+1564+0},n84tt9Kzy:{height:376,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 100px, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+772+0},Ulru_24ch:{height:376,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 100px, 1px)`,y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+93.2+0+0+0+772+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:762,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1900px) - 110px) * 0.2308, 1px)`,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+116.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19g8lae-container\",nodeId:\"VReqLYH1K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{style:{width:\"100%\"},variant:\"INeONs42a\"},n84tt9Kzy:{style:{width:\"100%\"}},Ulru_24ch:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(HomepageCategory,{GEReXC71q:\"Stay on-trend and engage your audience with our dynamic social media content. Our shorts and reels are designed for maximum impact and shareability on popular platforms.\",height:\"100%\",HSYB8KLpc:\"Shorts & Reels\",id:\"VReqLYH1K\",layoutId:\"VReqLYH1K\",style:{height:\"100%\",width:\"100%\"},variant:\"yDIwo_BnK\",width:\"100%\",y1DNXPRRS:addImageAlt({pixelHeight:1500,pixelWidth:1e3,src:\"https://framerusercontent.com/images/Q5cTR4mhQb80sz1nHyhSpV78Mc.jpg\",srcSet:\"https://framerusercontent.com/images/Q5cTR4mhQb80sz1nHyhSpV78Mc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Q5cTR4mhQb80sz1nHyhSpV78Mc.jpg 1000w\"},\"Service\")})})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined},{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined},{href:{webPageId:\"kC1lKRiRL\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+1337.2},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+8949.4+0+100+1291.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+8686.2+0+100+951.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z0meay-container hidden-nj0mn7\",nodeId:\"grA3JtzOi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks5[2]},Ulru_24ch:{ZnDHBgfGk:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"grA3JtzOi\",layoutId:\"grA3JtzOi\",style:{height:\"100%\"},TOooqBdJz:\"Explore All Catagories\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks5[0]})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-vp0t6\",\"data-framer-name\":\"Section - About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tvmwk8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ew78uf\",\"data-framer-name\":\"Heading & Button Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfxfdo\",\"data-framer-name\":\"Heading Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Our Production House\"})}),className:\"framer-1mcr5tu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:(componentViewport?.y||0)+0+0+0+10303.4+100+0+0+374}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+9917.4+100+0+0+375,children:/*#__PURE__*/_jsx(Container,{className:\"framer-phqa0q-container hidden-1feqjcj hidden-nj0mn7\",nodeId:\"rXAxb2zy_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"rXAxb2zy_\",layoutId:\"rXAxb2zy_\",style:{height:\"100%\"},TOooqBdJz:\"Know More About Us\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks6[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elop9c\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ka3fvj\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\"},children:\"We turn ideas into visuals that stick. Every project is a chance to create something bold and unforgettable. Whether it's a corporate film, a commercial, and even or animation, we bring the same energy every time. Creative, committed, and always pushing for more than expected\"})}),className:\"framer-9tgoif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lluglm\",\"data-framer-name\":\"Stats\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16766wg hidden-nj0mn7\",\"data-framer-name\":\"Divider\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtfm2z\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-109ifhl\",style:{rotate:90}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4um65g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1900px)`,y:(componentViewport?.y||0)+0+0+0+8031.8+50+0+0+63.2+0+185+0+0+0+0},n84tt9Kzy:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10303.4+100+0+0+228+0+0+0},Ulru_24ch:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1900px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10520.6+100+0+0+60+0+103+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+9917.4+100+0+0+229+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-atkhar-container\",nodeId:\"IZhAZFMeJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"IZhAZFMeJ\",layoutId:\"IZhAZFMeJ\",MhNn3yIfK:\"Years of experience\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"2\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1900px)`,y:(componentViewport?.y||0)+0+0+0+8031.8+50+0+0+63.2+0+185+0+0+0+108},n84tt9Kzy:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10303.4+100+0+0+228+0+0+0},Ulru_24ch:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1900px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10520.6+100+0+0+60+0+103+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+9917.4+100+0+0+229+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fdhp9o-container\",nodeId:\"jIW3Ckqt2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"jIW3Ckqt2\",layoutId:\"jIW3Ckqt2\",MhNn3yIfK:\"Repeated Clients\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"70+\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6hjo89\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1900px)`,y:(componentViewport?.y||0)+0+0+0+8031.8+50+0+0+63.2+0+185+0+216+0+0},n84tt9Kzy:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10303.4+100+0+0+228+0+108+0},Ulru_24ch:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1900px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10520.6+100+0+0+60+0+103+0+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+9917.4+100+0+0+229+0+108+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9g9ehv-container\",nodeId:\"LW42U_KmR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"LW42U_KmR\",layoutId:\"LW42U_KmR\",MhNn3yIfK:\"Completed Projects\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"100+\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1900px)`,y:(componentViewport?.y||0)+0+0+0+8031.8+50+0+0+63.2+0+185+0+216+0+108},n84tt9Kzy:{width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10303.4+100+0+0+228+0+108+0},Ulru_24ch:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1900px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+10520.6+100+0+0+60+0+103+0+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:`max(max((min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px) - 10px) / 1.5, 1px) / 2.5, 1px)`,y:(componentViewport?.y||0)+0+0+0+9917.4+100+0+0+229+0+108+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1ee6d-container\",nodeId:\"JvksWKHDX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"JvksWKHDX\",layoutId:\"JvksWKHDX\",MhNn3yIfK:\"Happy Clients\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"100+\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8031.8+50+0+-109.4975),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},n84tt9Kzy:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10303.4+100+.9155),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10520.6+100+0+-188.7186),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 100px, 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9917.4+100+.9175),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 1900px)`,src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1escmz5\",\"data-framer-name\":\"Lines\"})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-on2t17 hidden-72rtr7 hidden-9ioxae\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+0+0+8031.8+50+690.2+28.5},Ulru_24ch:{y:(componentViewport?.y||0)+0+0+0+10520.6+100+389+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wiptbm-container\",nodeId:\"fASyBBscD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{ZnDHBgfGk:resolvedLinks7[2]},Ulru_24ch:{ZnDHBgfGk:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"fASyBBscD\",layoutId:\"fASyBBscD\",style:{height:\"100%\"},TOooqBdJz:\"Know More About Us\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks7[0]})})})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:(componentViewport?.y||0)+0+8939},n84tt9Kzy:{y:(componentViewport?.y||0)+0+10947.4},Ulru_24ch:{y:(componentViewport?.y||0)+0+11249.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1044,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10562.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hdftsa-container\",nodeId:\"kpiTZXpmv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{tMfukRFdC:resolvedLinks8[2],variant:\"uxlAHBS0R\"},n84tt9Kzy:{tMfukRFdC:resolvedLinks8[3],variant:\"s9UjOoml4\"},Ulru_24ch:{tMfukRFdC:resolvedLinks8[1],variant:\"s9UjOoml4\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kpiTZXpmv\",layoutId:\"kpiTZXpmv\",style:{width:\"100%\"},tMfukRFdC:resolvedLinks8[0],variant:\"ySSbzNqEC\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7k2242-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ygo08C7iU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ygo08C7iU\",intensity:15,layoutId:\"ygo08C7iU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9ex9k.framer-lux5qc, .framer-9ex9k .framer-lux5qc { display: block; }\",\".framer-9ex9k.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1600px; }\",\".framer-9ex9k .framer-2q3rns-container { flex: none; height: auto; left: 50%; max-width: 900px; position: fixed; top: 30px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-9ex9k .framer-67qgex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-1k90wli { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-9ex9k .framer-19i89s5 { -webkit-filter: brightness(0.63) contrast(1.23); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; filter: brightness(0.63) contrast(1.23); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-9ex9k .framer-1tdk418 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-zpq2ca { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1140px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-z7wfzx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-o5qlel-container { flex: none; height: 60px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ex9k .framer-pmyxpx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-194lqnz { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 20px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-9ex9k .framer-9bvh77 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre; z-index: 2; }\",\".framer-9ex9k .framer-8d4d49 { background: linear-gradient(180deg, rgba(13, 13, 13, 0) 26.775956284153008%, rgb(13, 13, 13) 100%); flex: none; height: 134px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; pointer-events: none; position: absolute; top: -133px; width: 100%; z-index: 1; }\",\".framer-9ex9k .framer-tpvi5m { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-9ex9k .framer-1lhvbc1-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-9ex9k.framer-4zqtgk { background-color: rgba(0, 0, 0, 0.61); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-9ex9k.framer-1e3q9el-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 70%; z-index: 1; }\",\".framer-9ex9k .framer-19exss5-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-9ex9k .framer-1by654a { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-r0ct2r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9ex9k .framer-3ogubq, .framer-9ex9k .framer-1frktne, .framer-9ex9k .framer-3qbxdc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-17lizw5 { --border-bottom-width: 1px; --border-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(19px); align-content: center; align-items: center; backdrop-filter: blur(19px); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ex9k .framer-1wbqiut-container { flex: none; height: 88px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-1j1s6if-container, .framer-9ex9k .framer-1l6brr4-container, .framer-9ex9k .framer-daoe2g-container, .framer-9ex9k .framer-f9rgpm-container, .framer-9ex9k .framer-rxpe7i-container, .framer-9ex9k .framer-gw5f58-container, .framer-9ex9k .framer-10dfgcx-container, .framer-9ex9k .framer-1avd1en-container, .framer-9ex9k .framer-b28mzr-container { height: 88px; position: relative; width: 172px; }\",\".framer-9ex9k .framer-11nwzl0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-jd05u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-9ex9k .framer-1sn6wje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ex9k .framer-16kc5b5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-hce33m-container, .framer-9ex9k .framer-1qvwydh-container, .framer-9ex9k .framer-8azsgs-container, .framer-9ex9k .framer-1lfc2jh-container, .framer-9ex9k .framer-1z0meay-container, .framer-9ex9k .framer-phqa0q-container, .framer-9ex9k .framer-wiptbm-container { flex: none; height: 60px; position: relative; width: auto; }\",\".framer-9ex9k .framer-dcbp7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300%; z-index: 1; }\",\".framer-9ex9k .framer-1kef8ll-container, .framer-9ex9k .framer-1uy3cto-container, .framer-9ex9k .framer-yrr6ed-container, .framer-9ex9k .framer-1ptq81q-container, .framer-9ex9k .framer-1i05vg-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 445px); position: relative; width: 445px; }\",\".framer-9ex9k.framer-18hsrz8, .framer-9ex9k.framer-yrosp0, .framer-9ex9k.framer-1pimg80, .framer-9ex9k.framer-5puils, .framer-9ex9k.framer-icrh8h { background-color: rgba(0, 0, 0, 0.54); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-9ex9k.framer-1wed5dz-container, .framer-9ex9k.framer-xxbxn0-container, .framer-9ex9k.framer-v9vo31-container, .framer-9ex9k.framer-wijl7-container, .framer-9ex9k.framer-10nxeom-container { aspect-ratio: 1.7780748663101604 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 65%; z-index: 2; }\",\".framer-9ex9k .framer-1njt9bz { 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: 100%; }\",\".framer-9ex9k .framer-aifs48 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1px; z-index: 1; }\",\".framer-9ex9k .framer-1hlg232 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; mix-blend-mode: difference; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 1px; z-index: 4; }\",\".framer-9ex9k .framer-sidsiw { 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; mix-blend-mode: difference; overflow: visible; padding: 0px 0px 110px 0px; position: sticky; top: 100px; width: 100%; z-index: 6; }\",\".framer-9ex9k .framer-1sxumgu-container { flex: none; height: 60px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-9ex9k .framer-34f65t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-9ex9k .framer-1fon78w-container, .framer-9ex9k .framer-16wtvv2-container, .framer-9ex9k .framer-12tfq2x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9ex9k .framer-1q3jyqo { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-9ex9k .framer-1v94nxb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 40px 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-9ex9k .framer-1e19j2z, .framer-9ex9k .framer-1uj0qfs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-927wu3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 73px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 100px 50px 120px 50px; position: relative; width: 1px; z-index: 1; }\",\".framer-9ex9k .framer-dffs2u { 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; max-width: 1900px; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: relative; width: 50%; z-index: 6; }\",\".framer-9ex9k .framer-17po3f4 { align-content: center; align-items: center; 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-9ex9k .framer-1wsx268 { 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-9ex9k .framer-8kxc5f, .framer-9ex9k .framer-i9ymgu { 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: 100%; z-index: 1; }\",\".framer-9ex9k .framer-su1pi8-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9ex9k .framer-1ge6i9q-container, .framer-9ex9k .framer-1qi3g75-container, .framer-9ex9k .framer-t2rzgy-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9ex9k .framer-41tbmk { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 0.3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9ex9k .framer-19g8lae-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-9ex9k .framer-vp0t6 { 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: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-1tvmwk8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-9ex9k .framer-1ew78uf { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-9ex9k .framer-kfxfdo { 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: center; overflow: hidden; padding: 0px 0px 110px 0px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-9ex9k .framer-1mcr5tu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-1elop9c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9ex9k .framer-ka3fvj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-9tgoif { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9ex9k .framer-1lluglm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-9ex9k .framer-16766wg { flex: none; height: 109px; left: calc(50.00000000000002% - 109px / 2); opacity: 0.12; overflow: hidden; position: absolute; top: calc(50.18450184501847% - 109px / 2); width: 109px; z-index: 1; }\",\".framer-9ex9k .framer-1rtfm2z, .framer-9ex9k .framer-109ifhl { background: linear-gradient(180deg, #000000 0%, rgb(255, 255, 255) 49.549549549549546%, rgba(255, 255, 255, 0) 100%); bottom: 0px; flex: none; left: calc(50.45871559633029% - 2px / 2); overflow: hidden; position: absolute; top: 0px; width: 2px; }\",\".framer-9ex9k .framer-4um65g, .framer-9ex9k .framer-6hjo89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ex9k .framer-atkhar-container, .framer-9ex9k .framer-1fdhp9o-container, .framer-9ex9k .framer-9g9ehv-container, .framer-9ex9k .framer-l1ee6d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9ex9k .framer-1escmz5 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.20618556701033% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-9ex9k .framer-on2t17 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 117px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-9ex9k .framer-hdftsa-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-9ex9k .framer-7k2242-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-9ex9k[data-border=\"true\"]::after, .framer-9ex9k [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; }',\"@media (min-width: 810px) and (max-width: 999px) { .framer-9ex9k.framer-72rtr7 { width: 810px; } .framer-9ex9k .framer-2q3rns-container { max-width: 697px; } .framer-9ex9k .framer-zpq2ca, .framer-9ex9k .framer-3ogubq, .framer-9ex9k .framer-3qbxdc, .framer-9ex9k .framer-9tgoif { max-width: 612px; width: auto; } .framer-9ex9k .framer-z7wfzx { max-width: 480px; } .framer-9ex9k.framer-1e3q9el-container, .framer-9ex9k.framer-1wed5dz-container, .framer-9ex9k.framer-xxbxn0-container, .framer-9ex9k.framer-v9vo31-container, .framer-9ex9k.framer-wijl7-container, .framer-9ex9k.framer-10nxeom-container { width: 90%; } .framer-9ex9k .framer-1sn6wje, .framer-9ex9k .framer-dffs2u { justify-content: flex-start; } .framer-9ex9k .framer-dcbp7o { overflow: visible; } .framer-9ex9k .framer-1kef8ll-container, .framer-9ex9k .framer-1uy3cto-container, .framer-9ex9k .framer-yrr6ed-container, .framer-9ex9k .framer-1ptq81q-container, .framer-9ex9k .framer-1i05vg-container { height: var(--framer-aspect-ratio-supported, 500px); width: 500px; } .framer-9ex9k .framer-aifs48 { flex-direction: column; gap: 40px; } .framer-9ex9k .framer-1hlg232 { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-9ex9k .framer-sidsiw { justify-content: flex-start; padding: 0px 0px 10px 0px; position: relative; top: unset; } .framer-9ex9k .framer-1frktne { max-width: unset; white-space: pre; width: auto; } .framer-9ex9k .framer-34f65t, .framer-9ex9k .framer-1v94nxb, .framer-9ex9k .framer-1wsx268 { flex: none; width: 100%; } .framer-9ex9k .framer-1q3jyqo { height: 1144px; top: calc(50.00000000000002% - 1144px / 2); } .framer-9ex9k .framer-927wu3 { gap: 50px; } .framer-9ex9k .framer-1uj0qfs, .framer-9ex9k .framer-vp0t6 { flex-direction: column; } .framer-9ex9k .framer-1ge6i9q-container, .framer-9ex9k .framer-t2rzgy-container { flex: 1 0 0px; } .framer-9ex9k .framer-41tbmk { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-9ex9k .framer-19g8lae-container { height: auto; } .framer-9ex9k .framer-1tvmwk8 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-9ex9k .framer-1ew78uf { align-self: unset; flex: none; height: 10px; width: 50%; } .framer-9ex9k .framer-kfxfdo { justify-content: flex-start; padding: 0px; position: relative; top: unset; } .framer-9ex9k .framer-1mcr5tu { flex: none; max-width: 612px; width: auto; } .framer-9ex9k .framer-1elop9c { flex: none; gap: 73px; width: 100%; } .framer-9ex9k .framer-ka3fvj { align-content: flex-start; align-items: flex-start; } .framer-9ex9k .framer-1lluglm { width: 100%; } .framer-9ex9k .framer-1escmz5 { height: 758px; top: calc(50.20618556701033% - 758px / 2); } .framer-9ex9k .framer-on2t17 { flex: none; height: min-content; padding: 40px 0px 40px 0px; width: 100%; }}\",\"@media (max-width: 809px) { .framer-9ex9k.framer-72rtr7 { width: 390px; } .framer-9ex9k .framer-2q3rns-container { top: 20px; width: 90%; } .framer-9ex9k .framer-1k90wli { padding: 0px 20px 0px 20px; position: relative; top: unset; } .framer-9ex9k .framer-z7wfzx { max-width: 300px; width: 100%; } .framer-9ex9k .framer-pmyxpx { height: 120vh; } .framer-9ex9k .framer-194lqnz { top: 20px; } .framer-9ex9k .framer-tpvi5m { height: 60vh; } .framer-9ex9k.framer-1e3q9el-container, .framer-9ex9k.framer-1wed5dz-container, .framer-9ex9k.framer-xxbxn0-container, .framer-9ex9k.framer-v9vo31-container, .framer-9ex9k.framer-wijl7-container, .framer-9ex9k.framer-10nxeom-container { width: 90%; } .framer-9ex9k .framer-1by654a { padding: 50px 20px 50px 20px; } .framer-9ex9k .framer-11nwzl0 { height: min-content; padding: 50px 20px 50px 20px; } .framer-9ex9k .framer-jd05u { height: min-content; position: relative; top: unset; } .framer-9ex9k .framer-1sn6wje { flex-direction: column; padding: 0px; } .framer-9ex9k .framer-16kc5b5, .framer-9ex9k .framer-1ge6i9q-container, .framer-9ex9k .framer-t2rzgy-container, .framer-9ex9k .framer-atkhar-container, .framer-9ex9k .framer-1fdhp9o-container, .framer-9ex9k .framer-9g9ehv-container, .framer-9ex9k .framer-l1ee6d-container, .framer-9ex9k .framer-on2t17 { flex: none; width: 100%; } .framer-9ex9k .framer-dcbp7o { flex-direction: column; width: 100%; } .framer-9ex9k .framer-1kef8ll-container, .framer-9ex9k .framer-1uy3cto-container, .framer-9ex9k .framer-yrr6ed-container, .framer-9ex9k .framer-1ptq81q-container, .framer-9ex9k .framer-1i05vg-container { height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-9ex9k .framer-aifs48 { flex-direction: column; gap: 20px; padding: 50px 20px 50px 20px; } .framer-9ex9k .framer-1hlg232 { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-9ex9k .framer-sidsiw { align-content: center; align-items: center; padding: 0px; position: relative; top: unset; } .framer-9ex9k .framer-34f65t, .framer-9ex9k .framer-1wsx268 { flex: none; gap: 15px; width: 100%; } .framer-9ex9k .framer-1q3jyqo { height: 1160px; opacity: 0.4; top: calc(50.00000000000002% - 1160px / 2); } .framer-9ex9k .framer-1v94nxb { flex: none; padding: 0px; width: 100%; } .framer-9ex9k .framer-927wu3 { gap: 20px; padding: 50px 20px 50px 20px; } .framer-9ex9k .framer-dffs2u { align-content: center; align-items: center; width: 100%; } .framer-9ex9k .framer-1uj0qfs, .framer-9ex9k .framer-8kxc5f, .framer-9ex9k .framer-i9ymgu { flex-direction: column; gap: 15px; } .framer-9ex9k .framer-su1pi8-container { flex: none; width: 300%; } .framer-9ex9k .framer-1qi3g75-container { flex: none; width: 200%; } .framer-9ex9k .framer-41tbmk { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-9ex9k .framer-19g8lae-container { height: auto; } .framer-9ex9k .framer-vp0t6 { flex-direction: column; padding: 50px 20px 50px 20px; } .framer-9ex9k .framer-1tvmwk8 { flex: none; flex-direction: column; gap: 20px; width: 100%; } .framer-9ex9k .framer-1ew78uf { align-self: unset; flex: none; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; width: 100%; } .framer-9ex9k .framer-kfxfdo { padding: 0px; position: relative; top: unset; } .framer-9ex9k .framer-1elop9c { flex: none; gap: 35px; width: 100%; } .framer-9ex9k .framer-1lluglm { width: 100%; } .framer-9ex9k .framer-4um65g, .framer-9ex9k .framer-6hjo89 { flex-direction: column; } .framer-9ex9k .framer-1escmz5 { height: 902px; opacity: 0.46; top: calc(50.20618556701033% - 902px / 2); }}\",\"@media (min-width: 1000px) and (max-width: 1599px) { .framer-9ex9k.framer-72rtr7 { width: 1000px; } .framer-9ex9k .framer-zpq2ca { max-width: 800px; } .framer-9ex9k .framer-z7wfzx { max-width: 530px; } .framer-9ex9k.framer-1e3q9el-container, .framer-9ex9k.framer-1wed5dz-container, .framer-9ex9k.framer-xxbxn0-container, .framer-9ex9k.framer-v9vo31-container, .framer-9ex9k.framer-wijl7-container, .framer-9ex9k.framer-10nxeom-container { width: 90%; } .framer-9ex9k .framer-3ogubq { max-width: 800px; width: 70%; } .framer-9ex9k .framer-1kef8ll-container, .framer-9ex9k .framer-1uy3cto-container, .framer-9ex9k .framer-yrr6ed-container, .framer-9ex9k .framer-1ptq81q-container, .framer-9ex9k .framer-1i05vg-container { height: var(--framer-aspect-ratio-supported, 400px); width: 400px; } .framer-9ex9k .framer-aifs48 { gap: 33px; } .framer-9ex9k .framer-1uj0qfs { flex-direction: column; } .framer-9ex9k .framer-1wsx268 { flex: none; width: 100%; } .framer-9ex9k .framer-41tbmk { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-9ex9k .framer-19g8lae-container { height: auto; } .framer-9ex9k .framer-1elop9c { gap: 78px; } .framer-9ex9k .framer-1lluglm { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9894.5\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"auto\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]},\"n84tt9Kzy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"iOopVsPls\":{\"pattern\":\":iOopVsPls\",\"name\":\"showreel\"},\"EngqWxQIb\":{\"pattern\":\":EngqWxQIb\",\"name\":\"\"},\"Tr5celSqg\":{\"pattern\":\":Tr5celSqg\",\"name\":\"works\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-9ex9k\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9894.5,width:1600};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://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\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6hR47NCV5Z.woff2\",weight:\"700\"}]},...NavBarFonts,...ButtonGradientFonts,...ButtonRoundFonts,...YouTubeFonts,...VideoFonts,...BrandLogosFonts,...TickerFonts,...FeaturedVideoCardFonts,...HomepageServiceFonts,...HomepageCategoryFonts,...StatsFonts,...FooterFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"iOopVsPls\\\":{\\\"pattern\\\":\\\":iOopVsPls\\\",\\\"name\\\":\\\"showreel\\\"},\\\"EngqWxQIb\\\":{\\\"pattern\\\":\\\":EngqWxQIb\\\",\\\"name\\\":\\\"\\\"},\\\"Tr5celSqg\\\":{\\\"pattern\\\":\\\":Tr5celSqg\\\",\\\"name\\\":\\\"works\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9894.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1600\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n84tt9Kzy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "mWyYPPeu7", "Qv3m015X1", "xNjg5hAFz", "vKuZZtuTY", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ymeqr0", "args", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FramerAB9sSG6B4", "withCSS", "AB9sSG6B4_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "row1", "row2", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wfGtFKOCx", "i5O03YodR", "DFIDx_49F", "YEq393da6", "I43n4JqNq", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1nm0m5i", "args", "onTap1d1jhgp", "onTaptvijn1", "onTap1j3lih6", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerIVozL5jyY", "withCSS", "IVozL5jyY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "client", "cursor", "file", "height", "id", "tap", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PH62DGcwC", "j3YDxvFwK", "Zk6V4eTO2", "TshoKf3A0", "adALtMGad", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap70spew", "args", "onMouseEnterv7afj0", "onMouseLeave1jkw86j", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "RichText2", "x", "css", "FramerPsUfvsKBR", "withCSS", "PsUfvsKBR_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "HSYB8KLpc", "GEReXC71q", "y1DNXPRRS", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterox9tu3", "args", "onMouseLeavexo30c6", "onMouseEnter1sst1is", "onTap1erisbi", "onTapowtm1y", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerVEfvI0fNd", "withCSS", "VEfvI0fNd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavBarFonts", "getFonts", "WvxfThqf1_default", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonGradientFonts", "Ri7mo6WgZ_default", "ContainerWithOptimizedAppearEffect", "Container", "MotionSectionWithFX", "motion", "RichTextWithFX", "ButtonRoundFonts", "AB9sSG6B4_default", "YouTubeFonts", "Youtube", "VideoFonts", "Video", "MotionDivWithFX", "BrandLogosFonts", "TJRW1qsJY_default", "TickerFonts", "Ticker", "FeaturedVideoCardFonts", "PsUfvsKBR_default", "HomepageServiceFonts", "IVozL5jyY_default", "HomepageCategoryFonts", "VEfvI0fNd_default", "StatsFonts", "d7DnOAptI_default", "FooterFonts", "Swq40RzUA_default", "SmoothScrollFonts", "SmoothScroll", "CursorFonts", "NEEbmEyTX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "mWyYPPeu73bnx0g", "overlay", "loadMore", "args", "j3YDxvFwK3bnx0g", "scopingClassNames", "cx", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "l", "AnimatePresence", "Ga", "resolvedLinks1", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
