{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/3UuXgGlyXUMbde5uDDJ6/diLwbedqSZ3WtI3ebwFi/nX9zand53.js", "ssg:https://framerusercontent.com/modules/14RHRySB1qyE0EjawyfN/aTdS70gZRBvmwunjQVsm/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},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\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/XdkPUpljJsw7UDXBNrwS/PLT5BK5wg5phbjwXP39e/xXhTOmNRa.js\";import Button from\"https://framerusercontent.com/modules/O9CkHAZ8xteycF9e0fUc/iVdsMn8dT2qnpHSZ3vas/nZcS5zIJR.js\";import UtilitiesTag from\"https://framerusercontent.com/modules/ahunMKRW79VQCmEwJFMv/UtvFlDBScCOV3T9ziNXq/zmfQ68tOu.js\";const UtilitiesTagFonts=getFonts(UtilitiesTag);const ButtonFonts=getFonts(Button);const enabledGestures={mtNO3GJbZ:{hover:true}};const cycleOrder=[\"EtESL7G5a\",\"mtNO3GJbZ\",\"amOQqI4If\",\"GLFFJG4oN\",\"lZchGslVl\"];const serializationHash=\"framer-eTjR0\";const variantClassNames={amOQqI4If:\"framer-v-1u9a8yl\",EtESL7G5a:\"framer-v-j7zcqz\",GLFFJG4oN:\"framer-v-l5dvfu\",lZchGslVl:\"framer-v-1u46nh7\",mtNO3GJbZ:\"framer-v-1s6ym0h\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop Bottom Right Content\":\"amOQqI4If\",\"DT Default\":\"EtESL7G5a\",\"MB Bottom Right Content\":\"GLFFJG4oN\",\"Variant 5\":\"lZchGslVl\",MB:\"mtNO3GJbZ\"};const getProps=({buttonTitle,displayTags,hasButton,height,id,image,serviceName,serviveTagColor,text,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,CkBFVy5s8:(_ref=text!==null&&text!==void 0?text:props.CkBFVy5s8)!==null&&_ref!==void 0?_ref:\"We create experiences that bring people together\",d83E8aZGh:(_ref1=hasButton!==null&&hasButton!==void 0?hasButton:props.d83E8aZGh)!==null&&_ref1!==void 0?_ref1:true,GHsEm05js:(_ref2=image!==null&&image!==void 0?image:props.GHsEm05js)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg 5233w\"},jGnOdlWev:(_ref3=serviveTagColor!==null&&serviveTagColor!==void 0?serviveTagColor:props.jGnOdlWev)!==null&&_ref3!==void 0?_ref3:\"var(--token-83f14fde-1ad0-41c4-9137-47db48c84070, rgb(39, 103, 135))\",nqSTD_0cJ:(_ref4=serviceName!==null&&serviceName!==void 0?serviceName:props.nqSTD_0cJ)!==null&&_ref4!==void 0?_ref4:\"Microphone\",po4wq58DT:(_ref5=displayTags!==null&&displayTags!==void 0?displayTags:props.po4wq58DT)!==null&&_ref5!==void 0?_ref5:true,variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"EtESL7G5a\",X8p3huhgp:(_ref7=buttonTitle!==null&&buttonTitle!==void 0?buttonTitle:props.X8p3huhgp)!==null&&_ref7!==void 0?_ref7:\"Request a Quote\"};};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,CkBFVy5s8,GHsEm05js,jGnOdlWev,nqSTD_0cJ,X8p3huhgp,d83E8aZGh,po4wq58DT,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EtESL7G5a\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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(Image,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3489,intrinsicWidth:5233,pixelHeight:3489,pixelWidth:5233,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(GHsEm05js)},className:cx(serializationHash,...sharedStyleClassNames,\"framer-j7zcqz\",className,classNames),\"data-framer-name\":\"DT Default\",layoutDependency:layoutDependency,layoutId:\"EtESL7G5a\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"mtNO3GJbZ-hover\":{\"data-framer-name\":undefined},amOQqI4If:{\"data-framer-name\":\"Desktop Bottom Right Content\"},GLFFJG4oN:{\"data-framer-name\":\"MB Bottom Right Content\"},lZchGslVl:{\"data-framer-name\":\"Variant 5\"},mtNO3GJbZ:{\"data-framer-name\":\"MB\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kdibvp\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"R2BINK3jL\",style:{background:\"linear-gradient(180deg, rgba(0, 93, 200, 0.6) 0%, rgba(0, 0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yqqoo\",layoutDependency:layoutDependency,layoutId:\"UCBDlj7WC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6sgjxo\",\"data-styles-preset\":\"xXhTOmNRa\",style:{\"--framer-text-alignment\":\"center\"},children:\"We create experiences that bring people together\"})}),className:\"framer-1vif7g1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KmENENRlE\",text:CkBFVy5s8,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({amOQqI4If:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6sgjxo\",\"data-styles-preset\":\"xXhTOmNRa\",style:{\"--framer-text-alignment\":\"left\"},children:\"We create experiences that bring people together\"})})},GLFFJG4oN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6sgjxo\",\"data-styles-preset\":\"xXhTOmNRa\",style:{\"--framer-text-alignment\":\"left\"},children:\"We create experiences that bring people together\"})})},lZchGslVl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-6sgjxo\",\"data-styles-preset\":\"xXhTOmNRa\",style:{\"--framer-text-alignment\":\"left\"},children:\"We create experiences that bring people together\"})})}},baseVariant,gestureVariant)}),po4wq58DT&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ttgty\",layoutDependency:layoutDependency,layoutId:\"k2YW8rQ6X\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18dqfj2-container\",layoutDependency:layoutDependency,layoutId:\"kpSX3tIm9-container\",children:/*#__PURE__*/_jsx(UtilitiesTag,{hd8faMicm:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",height:\"100%\",id:\"kpSX3tIm9\",layoutId:\"kpSX3tIm9\",rYwb29FRN:jGnOdlWev,sqjbQPm31:nqSTD_0cJ,variant:\"mYClUl3dY\",width:\"100%\"})})})})]}),d83E8aZGh&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined},{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined},{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined},{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined},{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined},{href:{webPageId:\"ggbiwzhW2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5br85y-container\",layoutDependency:layoutDependency,layoutId:\"Y6DrC8JBY-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Y6DrC8JBY\",IeCeAFNGQ:\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\",layoutId:\"Y6DrC8JBY\",variant:\"ljLjxQwfo\",width:\"100%\",y1ouiJEzY:X8p3huhgp,YXwWvOtG8:resolvedLinks[0],...addPropertyOverrides({\"mtNO3GJbZ-hover\":{YXwWvOtG8:resolvedLinks[5]},amOQqI4If:{YXwWvOtG8:resolvedLinks[2]},GLFFJG4oN:{YXwWvOtG8:resolvedLinks[3]},lZchGslVl:{YXwWvOtG8:resolvedLinks[4]},mtNO3GJbZ:{YXwWvOtG8:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eTjR0.framer-1jcmkgt, .framer-eTjR0 .framer-1jcmkgt { display: block; }\",\".framer-eTjR0.framer-j7zcqz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eTjR0 .framer-1kdibvp { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.06858710562416% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-eTjR0 .framer-6yqqoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eTjR0 .framer-1vif7g1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-eTjR0 .framer-12ttgty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eTjR0 .framer-18dqfj2-container, .framer-eTjR0 .framer-5br85y-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eTjR0.framer-j7zcqz, .framer-eTjR0 .framer-6yqqoo, .framer-eTjR0 .framer-12ttgty { gap: 0px; } .framer-eTjR0.framer-j7zcqz > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-eTjR0.framer-j7zcqz > :first-child, .framer-eTjR0 .framer-6yqqoo > :first-child { margin-top: 0px; } .framer-eTjR0.framer-j7zcqz > :last-child, .framer-eTjR0 .framer-6yqqoo > :last-child { margin-bottom: 0px; } .framer-eTjR0 .framer-6yqqoo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eTjR0 .framer-12ttgty > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eTjR0 .framer-12ttgty > :first-child { margin-left: 0px; } .framer-eTjR0 .framer-12ttgty > :last-child { margin-right: 0px; } }\",\".framer-eTjR0.framer-v-1s6ym0h.framer-j7zcqz { cursor: pointer; gap: 40px; padding: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eTjR0.framer-v-1s6ym0h.framer-j7zcqz { gap: 0px; } .framer-eTjR0.framer-v-1s6ym0h.framer-j7zcqz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eTjR0.framer-v-1s6ym0h.framer-j7zcqz > :first-child { margin-top: 0px; } .framer-eTjR0.framer-v-1s6ym0h.framer-j7zcqz > :last-child { margin-bottom: 0px; } }\",\".framer-eTjR0.framer-v-1u9a8yl.framer-j7zcqz, .framer-eTjR0.framer-v-1u46nh7.framer-j7zcqz { align-content: flex-start; align-items: flex-start; gap: 10px; justify-content: flex-end; }\",\".framer-eTjR0.framer-v-1u9a8yl .framer-1kdibvp, .framer-eTjR0.framer-v-l5dvfu .framer-1kdibvp, .framer-eTjR0.framer-v-1u46nh7 .framer-1kdibvp { order: 0; }\",\".framer-eTjR0.framer-v-1u9a8yl .framer-6yqqoo, .framer-eTjR0.framer-v-l5dvfu .framer-6yqqoo, .framer-eTjR0.framer-v-1u46nh7 .framer-6yqqoo { justify-content: flex-end; order: 1; }\",\".framer-eTjR0.framer-v-1u9a8yl .framer-12ttgty, .framer-eTjR0.framer-v-l5dvfu .framer-12ttgty, .framer-eTjR0.framer-v-1u46nh7 .framer-12ttgty { justify-content: flex-start; width: 100%; }\",\".framer-eTjR0.framer-v-1u9a8yl .framer-5br85y-container, .framer-eTjR0.framer-v-l5dvfu .framer-5br85y-container, .framer-eTjR0.framer-v-1u46nh7 .framer-5br85y-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eTjR0.framer-v-1u9a8yl.framer-j7zcqz { gap: 0px; } .framer-eTjR0.framer-v-1u9a8yl.framer-j7zcqz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eTjR0.framer-v-1u9a8yl.framer-j7zcqz > :first-child { margin-top: 0px; } .framer-eTjR0.framer-v-1u9a8yl.framer-j7zcqz > :last-child { margin-bottom: 0px; } }\",\".framer-eTjR0.framer-v-l5dvfu.framer-j7zcqz { align-content: flex-start; align-items: flex-start; gap: 10px; justify-content: flex-end; padding: 40px; width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eTjR0.framer-v-l5dvfu.framer-j7zcqz { gap: 0px; } .framer-eTjR0.framer-v-l5dvfu.framer-j7zcqz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eTjR0.framer-v-l5dvfu.framer-j7zcqz > :first-child { margin-top: 0px; } .framer-eTjR0.framer-v-l5dvfu.framer-j7zcqz > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eTjR0.framer-v-1u46nh7.framer-j7zcqz { gap: 0px; } .framer-eTjR0.framer-v-1u46nh7.framer-j7zcqz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eTjR0.framer-v-1u46nh7.framer-j7zcqz > :first-child { margin-top: 0px; } .framer-eTjR0.framer-v-1u46nh7.framer-j7zcqz > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 524\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mtNO3GJbZ\":{\"layout\":[\"fixed\",\"auto\"]},\"amOQqI4If\":{\"layout\":[\"fixed\",\"auto\"]},\"GLFFJG4oN\":{\"layout\":[\"fixed\",\"auto\"]},\"lZchGslVl\":{\"layout\":[\"fixed\",\"auto\"]},\"IQfBBpSZR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CkBFVy5s8\":\"text\",\"GHsEm05js\":\"image\",\"jGnOdlWev\":\"serviveTagColor\",\"nqSTD_0cJ\":\"serviceName\",\"X8p3huhgp\":\"buttonTitle\",\"d83E8aZGh\":\"hasButton\",\"po4wq58DT\":\"displayTags\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernX9zand53=withCSS(Component,css,\"framer-eTjR0\");export default FramernX9zand53;FramernX9zand53.displayName=\"Section / Quote\";FramernX9zand53.defaultProps={height:524,width:1440};addPropertyControls(FramernX9zand53,{variant:{options:[\"EtESL7G5a\",\"mtNO3GJbZ\",\"amOQqI4If\",\"GLFFJG4oN\",\"lZchGslVl\"],optionTitles:[\"DT Default\",\"MB\",\"Desktop Bottom Right Content\",\"MB Bottom Right Content\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},CkBFVy5s8:{defaultValue:\"We create experiences that bring people together\",displayTextArea:false,title:\"Text\",type:ControlType.String},GHsEm05js:{__defaultAssetReference:\"data:framer/asset-reference,0nAIdi6h0zR5Qb3bXwoDb829n3A.jpg?originalFilename=photo-1493225457124-a3eb161ffa5f%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzfHxzaW5nZXJ8ZW58MHx8fHwxNjkwMzczNzIyfDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},jGnOdlWev:{defaultValue:'var(--token-83f14fde-1ad0-41c4-9137-47db48c84070, rgb(39, 103, 135)) /* {\"name\":\"Accent 2\"} */',title:\"Servive Tag Color\",type:ControlType.Color},nqSTD_0cJ:{defaultValue:\"Microphone\",title:\"Service Name\",type:ControlType.String},X8p3huhgp:{defaultValue:\"Request a Quote\",displayTextArea:false,title:\"Button Title\",type:ControlType.String},d83E8aZGh:{defaultValue:true,title:\"Has Button\",type:ControlType.Boolean},po4wq58DT:{defaultValue:true,title:\"Display Tags\",type:ControlType.Boolean}});addFonts(FramernX9zand53,[{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\"}]},...UtilitiesTagFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernX9zand53\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"524\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"CkBFVy5s8\\\":\\\"text\\\",\\\"GHsEm05js\\\":\\\"image\\\",\\\"jGnOdlWev\\\":\\\"serviveTagColor\\\",\\\"nqSTD_0cJ\\\":\\\"serviceName\\\",\\\"X8p3huhgp\\\":\\\"buttonTitle\\\",\\\"d83E8aZGh\\\":\\\"hasButton\\\",\\\"po4wq58DT\\\":\\\"displayTags\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mtNO3GJbZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"amOQqI4If\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GLFFJG4oN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lZchGslVl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IQfBBpSZR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nX9zand53.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js\";import HeaderHeaderMobile from\"#framer/local/canvasComponent/dc2Sgb5xR/dc2Sgb5xR.js\";import HeaderAnnouncementBar from\"#framer/local/canvasComponent/IOrSRjv8y/IOrSRjv8y.js\";import NewsCard from\"#framer/local/canvasComponent/mZmbamQ9S/mZmbamQ9S.js\";import SectionQuote from\"#framer/local/canvasComponent/nX9zand53/nX9zand53.js\";import SectionTitle from\"#framer/local/canvasComponent/ToyFM85xj/ToyFM85xj.js\";import HeaderHeaderDesktop,*as HeaderHeaderDesktopInfo from\"#framer/local/canvasComponent/tyLoQvYg3/tyLoQvYg3.js\";import HeroItem from\"#framer/local/canvasComponent/vfcrq3Fh3/vfcrq3Fh3.js\";import NewFooter from\"#framer/local/canvasComponent/yScbtwzCo/yScbtwzCo.js\";import{MegaMenu}from\"#framer/local/codeFile/gqwmJZa/MegaMenu.js\";import BlogPosts from\"#framer/local/collection/RHMnHmv97/RHMnHmv97.js\";import*as sharedStyle from\"#framer/local/css/GJWRXVKtg/GJWRXVKtg.js\";import*as sharedStyle1 from\"#framer/local/css/NmKesphMY/NmKesphMY.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderAnnouncementBarFonts=getFonts(HeaderAnnouncementBar);const HeaderHeaderDesktopFonts=getFonts(HeaderHeaderDesktop);const HeaderHeaderDesktopMegaMenu1ucrb7iWithMappedReactProps1iedf04=withMappedReactProps(withCodeBoundaryForOverrides(HeaderHeaderDesktop,{nodeId:\"YfEqCkmKT\",override:MegaMenu,scopeId:\"augiA20Il\"}),HeaderHeaderDesktopInfo);const VideoFonts=getFonts(Video);const HeaderHeaderMobileFonts=getFonts(HeaderHeaderMobile);const HeroItemFonts=getFonts(HeroItem);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionTitleFonts=getFonts(SectionTitle);const NewsCardFonts=getFonts(NewsCard);const SectionQuoteFonts=getFonts(SectionQuote);const SlideshowFonts=getFonts(Slideshow);const NewFooterFonts=getFonts(NewFooter);const breakpoints={HUsC4Qoec:\"(max-width: 809px)\",NUeIh93le:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-334vj\";const variantClassNames={HUsC4Qoec:\"framer-v-rk1rs7\",NUeIh93le:\"framer-v-tayqga\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"HUsC4Qoec\",Tablet:\"NUeIh93le\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,hd8faMicmzmfQ68tOu,GA7wy9N_FVktnMIPb5,FAWlEVrRpVktnMIPb5,hf22Yyg94VktnMIPb5,sUrXUJUEuVktnMIPb5,Ib7YmMMLeVktnMIPb5,fYbY6Nrn9VktnMIPb5,bIMgT1yCkVktnMIPb5,idVktnMIPb5,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"NUeIh93le\",\"HUsC4Qoec\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"NUeIh93le\",\"HUsC4Qoec\"].includes(baseVariant))return true;return false;};useCustomCursors({});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-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, rgb(245, 245, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fb3csn-container\",nodeId:\"DxEBBPHoo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{variant:\"Rtpl5UkG7\"}},children:/*#__PURE__*/_jsx(HeaderAnnouncementBar,{e5aPvsfMI:\"tel:7029480459\",eS07kcP93:\"Las Vegas, NV 89103\",height:\"100%\",id:\"DxEBBPHoo\",layoutId:\"DxEBBPHoo\",OVbnZzRq0:\"Call: (702) 948-0459\",OWF7I1gIV:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",style:{width:\"100%\"},variant:\"vuowkOfXP\",w8n3sT2Rn:\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\",width:\"100%\",xvHahklOr:\"Professional Production with Personalized Service\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ucrb7i-container hidden-tayqga hidden-rk1rs7\",id:\"1ucrb7i\",nodeId:\"YfEqCkmKT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderHeaderDesktopMegaMenu1ucrb7iWithMappedReactProps1iedf04,{AWIWjTCFw:resolvedLinks[0],height:\"100%\",id:\"YfEqCkmKT\",layoutId:\"YfEqCkmKT\",style:{width:\"100%\"},variant:\"ndnXYOJh9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-sh6jh6\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143rzbx-container\",isModuleExternal:true,nodeId:\"ykxZATiNJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ykxZATiNJ\",isMixedBorderRadius:false,layoutId:\"ykxZATiNJ\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/FSkTAj0SIQanibPOVqL47SuT0y8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+40},NUeIh93le:{height:50,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1icc9rs-container hidden-72rtr7\",nodeId:\"xqefUCxHR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderHeaderMobile,{height:\"100%\",id:\"xqefUCxHR\",layoutId:\"xqefUCxHR\",style:{width:\"100%\"},variant:\"m5ALkwQbV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbh5lh\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1e3lacb\",\"data-framer-appear-id\":\"1e3lacb\",\"data-framer-name\":\"Section Hero\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0uglc\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gNZQnOhUl\"},implicitPathVariables:undefined},{href:{webPageId:\"gNZQnOhUl\"},implicitPathVariables:undefined},{href:{webPageId:\"gNZQnOhUl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},NUeIh93le:{height:120,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:`max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d8nemh-container\",nodeId:\"fhCuOJ8pD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{Ji8gsOUEW:resolvedLinks1[2],style:{maxHeight:\"100%\",width:\"100%\"}},NUeIh93le:{Ji8gsOUEW:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(HeroItem,{height:\"100%\",hgCTNDHjK:\"Live productions\",id:\"fhCuOJ8pD\",Ji8gsOUEW:resolvedLinks1[0],layoutId:\"fhCuOJ8pD\",pFZDxe94E:addImageAlt({pixelHeight:920,pixelWidth:1378,src:\"https://framerusercontent.com/images/Ry2FporIy7HFaDTiM7hOIVLjKqk.jpg\",srcSet:\"https://framerusercontent.com/images/Ry2FporIy7HFaDTiM7hOIVLjKqk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ry2FporIy7HFaDTiM7hOIVLjKqk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ry2FporIy7HFaDTiM7hOIVLjKqk.jpg 1378w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"csJjiKdHu\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sCdAtqIr1\"},implicitPathVariables:undefined},{href:{webPageId:\"sCdAtqIr1\"},implicitPathVariables:undefined},{href:{webPageId:\"sCdAtqIr1\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},NUeIh93le:{height:120,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:`max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8g2ya-container\",nodeId:\"LSn7evy9E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{Ji8gsOUEW:resolvedLinks2[2]},NUeIh93le:{Ji8gsOUEW:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(HeroItem,{height:\"100%\",hgCTNDHjK:\"Sales & Integration\",id:\"LSn7evy9E\",Ji8gsOUEW:resolvedLinks2[0],layoutId:\"LSn7evy9E\",pFZDxe94E:addImageAlt({pixelHeight:911,pixelWidth:1611,src:\"https://framerusercontent.com/images/i0B59eQdXNwCdHIA7UyzWgt9ypM.jpeg\",srcSet:\"https://framerusercontent.com/images/i0B59eQdXNwCdHIA7UyzWgt9ypM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/i0B59eQdXNwCdHIA7UyzWgt9ypM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i0B59eQdXNwCdHIA7UyzWgt9ypM.jpeg 1611w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CrmYIJztw\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gUJzTr1yK\"},implicitPathVariables:undefined},{href:{webPageId:\"gUJzTr1yK\"},implicitPathVariables:undefined},{href:{webPageId:\"gUJzTr1yK\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{height:80,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},NUeIh93le:{height:120,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:`max((${componentViewport?.width||\"100vw\"} - 40px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10kkik-container\",nodeId:\"YRz5HNSZc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{Ji8gsOUEW:resolvedLinks3[2]},NUeIh93le:{Ji8gsOUEW:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(HeroItem,{height:\"100%\",hgCTNDHjK:\"Rental Equipment\",id:\"YRz5HNSZc\",Ji8gsOUEW:resolvedLinks3[0],layoutId:\"YRz5HNSZc\",pFZDxe94E:addImageAlt({pixelHeight:627,pixelWidth:940,src:\"https://framerusercontent.com/images/nQ1jXXicFyC8sVAHvcVkdGXL0.jpg\",srcSet:\"https://framerusercontent.com/images/nQ1jXXicFyC8sVAHvcVkdGXL0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nQ1jXXicFyC8sVAHvcVkdGXL0.jpg 940w\"},\"Rental Equipment\"),style:{height:\"100%\",width:\"100%\"},variant:\"yVoi5x2Ix\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1anndda\",\"data-framer-name\":\"Section Intro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k407a6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16bu0v2\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lc478w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmpyb9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cmsvad\",\"data-styles-preset\":\"GJWRXVKtg\",style:{\"--framer-text-color\":\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\"},children:\"What We Do\"})}),className:\"framer-iydnrk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"From major touring productions to world-renowned festivals, 3G Productions is a powerhouse in the entertainment industry. We are the premier full-service live event production, high-end A/V equipment rental, and integration company. Our best-in-class audio, lighting, rigging, and video equipment provide breathtaking experiences for your guests.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"With an in-house design and engineering team of industry-leading experts and certified low-voltage electricians, 3G Productions can handle all aspects of the production process including design, installation, execution, and load-out. No matter the size of the venue or budget, 3G Productions will help you create the ultimate entertainment experience.\"})]}),className:\"framer-is079d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ijko9g\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gNZQnOhUl\"},motionChild:true,nodeId:\"jfogaEBeQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17royhn framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--variable-reference-hd8faMicm-zmfQ68tOu)\"},children:\"Live Productions\"})}),className:\"framer-1akxlqz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{\"--variable-reference-hd8faMicm-zmfQ68tOu\":hd8faMicmzmfQ68tOu},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sCdAtqIr1\"},motionChild:true,nodeId:\"gIHlSgFnK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jjoy85 framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--variable-reference-hd8faMicm-zmfQ68tOu)\"},children:\"Sales + Integrations\"})}),className:\"framer-vs4uc4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{\"--variable-reference-hd8faMicm-zmfQ68tOu\":hd8faMicmzmfQ68tOu},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gUJzTr1yK\"},motionChild:true,nodeId:\"IWEv6nDFK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15qots2 framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--variable-reference-hd8faMicm-zmfQ68tOu)\"},children:\"Rental Equipment\"})}),className:\"framer-1vxvvzn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{\"--variable-reference-hd8faMicm-zmfQ68tOu\":hd8faMicmzmfQ68tOu},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10svanm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxn0u3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cmsvad\",\"data-styles-preset\":\"GJWRXVKtg\",style:{\"--framer-text-color\":\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\"},children:\"Who We Serve\"})}),className:\"framer-1x91d7g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Music festivals, major global tours, sporting events, and corporate gatherings are just a few of the live event productions 3G has mastered. Our broad-client base includes award-winning bands, nationally recognized hotels/casinos, promoters, professional sports organizations, Fortune 500 companies, and more.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Our worldwide experience has led us to be the premier specialist in the integration of industry-leading production equipment into live music venues, including theatres, arenas, and world-class stadiums. Our dedication to high-quality products and service can be found in some of the most famous venues in the world.\"})]}),className:\"framer-1ug33bs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mkmwmz\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gNZQnOhUl\"},motionChild:true,nodeId:\"n_kxzZHRP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-eakt0o framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\"},children:\"Special Events\"})}),className:\"framer-1vpyvi2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gNZQnOhUl\"},motionChild:true,nodeId:\"xErfClhwT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-j6kf7b framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\"},children:\"Festivals\"})}),className:\"framer-1s61ltj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gNZQnOhUl\"},motionChild:true,nodeId:\"qIQ6xY1M6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i7q8h7 framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\"},children:\"National Tours\"})}),className:\"framer-18pas2a\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gNZQnOhUl\"},motionChild:true,nodeId:\"cD6zM2359\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-98g9v0 framer-lux5qc\",\"data-framer-name\":\"Utilities /Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\"},children:\"Corporate Events\"})}),className:\"framer-z2o87r\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5osye\",\"data-framer-name\":\"Section News\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1po550x\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M9UEVH1fS\"},implicitPathVariables:undefined},{href:{webPageId:\"M9UEVH1fS\"},implicitPathVariables:undefined},{href:{webPageId:\"M9UEVH1fS\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`},NUeIh93le:{width:\"730px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15i6j3r-container\",nodeId:\"aqY1H0ix9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{TxvPNI0d6:resolvedLinks4[2],variant:\"YUwxjdaCp\"},NUeIh93le:{TxvPNI0d6:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(SectionTitle,{axE3tOgkg:\"View More\",height:\"100%\",id:\"aqY1H0ix9\",L0SGG2aMX:true,layoutId:\"aqY1H0ix9\",style:{width:\"100%\"},TxvPNI0d6:resolvedLinks4[0],uG_9pRWyN:\"News & Stories\",variant:\"MXAexnI2h\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bdv8v7\",\"data-framer-name\":\"Team Wapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4ei4m\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VktnMIPb5\",data:BlogPosts,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"VktnMIPb5\",name:\"GA7wy9N_F\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"FAWlEVrRp\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"hf22Yyg94\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"sUrXUJUEu\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"Ib7YmMMLe\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"fYbY6Nrn9\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"bIMgT1yCk\",type:\"Identifier\"},{collection:\"VktnMIPb5\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"VktnMIPb5\",name:\"FAWlEVrRp\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bIMgT1yCk:bIMgT1yCkVktnMIPb5,FAWlEVrRp:FAWlEVrRpVktnMIPb5,fYbY6Nrn9:fYbY6Nrn9VktnMIPb5,GA7wy9N_F:GA7wy9N_FVktnMIPb5,hf22Yyg94:hf22Yyg94VktnMIPb5,Ib7YmMMLe:Ib7YmMMLeVktnMIPb5,id:idVktnMIPb5,sUrXUJUEu:sUrXUJUEuVktnMIPb5},index)=>{hf22Yyg94VktnMIPb5??=\"\";sUrXUJUEuVktnMIPb5??=\"\";Ib7YmMMLeVktnMIPb5??=\"\";fYbY6Nrn9VktnMIPb5??=\"\";bIMgT1yCkVktnMIPb5??=\"#09F\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VktnMIPb5-${idVktnMIPb5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Ib7YmMMLe:Ib7YmMMLeVktnMIPb5},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Ib7YmMMLe:Ib7YmMMLeVktnMIPb5},webPageId:\"FpMVSl0ra\"},implicitPathVariables:undefined},{href:{pathVariables:{Ib7YmMMLe:Ib7YmMMLeVktnMIPb5},webPageId:\"FpMVSl0ra\"},implicitPathVariables:undefined},{href:{pathVariables:{Ib7YmMMLe:Ib7YmMMLeVktnMIPb5},webPageId:\"FpMVSl0ra\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1acplw0-container\",nodeId:\"yvgHJYNni\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{cFkqHdUHt:resolvedLinks5[2]},NUeIh93le:{cFkqHdUHt:resolvedLinks5[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(NewsCard,{bP8Rh0GwI:sUrXUJUEuVktnMIPb5,cFkqHdUHt:resolvedLinks5[0],FYM8CS2I_:FAWlEVrRpVktnMIPb5,height:\"100%\",id:\"yvgHJYNni\",L_KXS3nWF:hf22Yyg94VktnMIPb5,layoutId:\"yvgHJYNni\",nvnFUnnsb:toResponsiveImage(GA7wy9N_FVktnMIPb5),oXHRoQX1X:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",style:{width:\"100%\"},width:\"100%\",YNsLK8Up4:bIMgT1yCkVktnMIPb5,zvsB2wy2w:fYbY6Nrn9VktnMIPb5})})})})})})},idVktnMIPb5);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixyj6k\",\"data-framer-name\":\"Slideshow\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-so1pfz-container\",id:\"so1pfz\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cSjpDolVL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{arrowOptions:{arrowFill:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:8,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true}},NUeIh93le:{arrowOptions:{arrowFill:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",arrowGap:10,arrowPadding:40,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:8,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:41,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.2)\",arrowGap:10,arrowPadding:60,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:8,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:8,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"cSjpDolVL\",intervalControl:3,itemAmount:1,layoutId:\"cSjpDolVL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e2eqgz-container\",\"data-framer-name\":\"EDC\",inComponentSlot:true,name:\"EDC\",nodeId:\"MqIlykuc1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"EDC Las Vegas 2024\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:2782,pixelWidth:6316,src:\"https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg\",srcSet:\"https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/aKbRwFDEmKIKbJJpOGGmT71S3AY.jpg 6316w\"},\"EDC Las Vegas 2024\"),height:\"100%\",id:\"MqIlykuc1\",jGnOdlWev:\"var(--token-9a881bc3-875a-4340-87de-bed0b645258f, rgb(134, 250, 180))\",layoutId:\"MqIlykuc1\",name:\"EDC\",nqSTD_0cJ:\"Live Production\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5kka-container\",\"data-framer-name\":\"Pearl Theater\",inComponentSlot:true,name:\"Pearl Theater\",nodeId:\"ZvJqrwHBn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"PEARL THEATER INSTALLATION\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:3837,pixelWidth:6579,src:\"https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg\",srcSet:\"https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/u99zhbDqHOa4rjk3DHSkBQFVemM.jpg 6579w\"},\"Pearl Theater at The Palms Installation\"),height:\"100%\",id:\"ZvJqrwHBn\",jGnOdlWev:\"var(--token-ac40779c-3a3e-49bd-bf35-bd552af967c4, rgb(249, 112, 35))\",layoutId:\"ZvJqrwHBn\",name:\"Pearl Theater\",nqSTD_0cJ:\"Sales & Integration\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cs4mey-container\",\"data-framer-name\":\"Crypto\",inComponentSlot:true,name:\"Crypto\",nodeId:\"Avqsqbq_r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"crypto arena audio installation\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:1760,pixelWidth:3120,src:\"https://framerusercontent.com/images/49qdusAKuVYFT4Jr9eXyemB6Q.jpg\",srcSet:\"https://framerusercontent.com/images/49qdusAKuVYFT4Jr9eXyemB6Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/49qdusAKuVYFT4Jr9eXyemB6Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/49qdusAKuVYFT4Jr9eXyemB6Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/49qdusAKuVYFT4Jr9eXyemB6Q.jpg 3120w\"},\"Crypo Arena\"),height:\"100%\",id:\"Avqsqbq_r\",jGnOdlWev:\"var(--token-ac40779c-3a3e-49bd-bf35-bd552af967c4, rgb(249, 112, 35))\",layoutId:\"Avqsqbq_r\",name:\"Crypto\",nqSTD_0cJ:\"Sales & Integration\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xdq996-container\",\"data-framer-name\":\"Black Pink\",inComponentSlot:true,name:\"Black Pink\",nodeId:\"BUfvdBwsw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"black pink coachella\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:756,pixelWidth:1440,src:\"https://framerusercontent.com/images/YFStHh6865MaorXXkiOgdvm0Q.jpg\",srcSet:\"https://framerusercontent.com/images/YFStHh6865MaorXXkiOgdvm0Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YFStHh6865MaorXXkiOgdvm0Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YFStHh6865MaorXXkiOgdvm0Q.jpg 1440w\"},\"Black Pink World Tour\"),height:\"100%\",id:\"BUfvdBwsw\",jGnOdlWev:\"var(--token-9a881bc3-875a-4340-87de-bed0b645258f, rgb(134, 250, 180))\",layoutId:\"BUfvdBwsw\",name:\"Black Pink\",nqSTD_0cJ:\"Live Production\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3uiy1-container\",\"data-framer-name\":\"Joy Coy\",inComponentSlot:true,name:\"Joy Coy\",nodeId:\"lVfBrbuN3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"jo koy world tour\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:1512,pixelWidth:2009,src:\"https://framerusercontent.com/images/iPxMZeiHCuiXeRqULf2tOV8cCY.jpeg\",srcSet:\"https://framerusercontent.com/images/iPxMZeiHCuiXeRqULf2tOV8cCY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iPxMZeiHCuiXeRqULf2tOV8cCY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iPxMZeiHCuiXeRqULf2tOV8cCY.jpeg 2009w\"},\"Jo Koy World Tour\"),height:\"100%\",id:\"lVfBrbuN3\",jGnOdlWev:\"var(--token-9a881bc3-875a-4340-87de-bed0b645258f, rgb(134, 250, 180))\",layoutId:\"lVfBrbuN3\",name:\"Joy Coy\",nqSTD_0cJ:\"Live Production\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:\"1440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qv0dej-container\",\"data-framer-name\":\"Peso Pluma\",inComponentSlot:true,name:\"Peso Pluma\",nodeId:\"dbjVrtF6a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionQuote,{CkBFVy5s8:\"Peso Pluma Doble P Tour\",d83E8aZGh:false,GHsEm05js:addImageAlt({pixelHeight:3050,pixelWidth:5174,src:\"https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg\",srcSet:\"https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/o4ui3IcUyjcR7kJK60xrfRj62Ko.jpg 5174w\"},\"Peso Pluma MGM 2023\"),height:\"100%\",id:\"dbjVrtF6a\",jGnOdlWev:\"var(--token-9a881bc3-875a-4340-87de-bed0b645258f, rgb(134, 250, 180))\",layoutId:\"dbjVrtF6a\",name:\"Peso Pluma\",nqSTD_0cJ:\"Live Production\",po4wq58DT:true,style:{height:\"100%\",width:\"100%\"},variant:\"amOQqI4If\",width:\"100%\",X8p3huhgp:\"Request a Quote\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{y:(componentViewport?.y||0)+0+4453},NUeIh93le:{height:581}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qdwp8i-container\",nodeId:\"nrDyA3KCa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HUsC4Qoec:{style:{width:\"100%\"},variant:\"G4cPs1VkP\"},NUeIh93le:{variant:\"gZBD03NGF\"}},children:/*#__PURE__*/_jsx(NewFooter,{height:\"100%\",id:\"nrDyA3KCa\",layoutId:\"nrDyA3KCa\",style:{height:\"100%\",width:\"100%\"},variant:\"EhxXsuida\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-334vj.framer-lux5qc, .framer-334vj .framer-lux5qc { display: block; }\",\".framer-334vj.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-334vj .framer-fb3csn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-334vj .framer-1ucrb7i-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-334vj .framer-sh6jh6 { 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: 100%; }\",\".framer-334vj .framer-143rzbx-container, .framer-334vj .framer-15i6j3r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-334vj .framer-1icc9rs-container { flex: none; height: auto; position: sticky; top: 0px; width: 810px; z-index: 1; }\",\".framer-334vj .framer-1bbh5lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-1e3lacb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-334vj .framer-x0uglc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20vh; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-334vj .framer-1d8nemh-container, .framer-334vj .framer-j8g2ya-container, .framer-334vj .framer-10kkik-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-334vj .framer-1anndda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-334vj .framer-1k407a6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-16bu0v2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 420px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-lc478w, .framer-334vj .framer-10svanm { align-content: flex-start; align-items: flex-start; background-color: var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; min-height: 400px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-334vj .framer-cmpyb9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-iydnrk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 504px; word-break: break-word; word-wrap: break-word; }\",\".framer-334vj .framer-is079d, .framer-334vj .framer-1x91d7g, .framer-334vj .framer-1ug33bs { --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-334vj .framer-1ijko9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-17royhn { align-content: center; align-items: center; background-color: var(--token-9a881bc3-875a-4340-87de-bed0b645258f, #86fab4); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-334vj .framer-1akxlqz, .framer-334vj .framer-vs4uc4, .framer-334vj .framer-1vxvvzn { --variable-reference-hd8faMicm-zmfQ68tOu: var(--yigg5y); flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-334vj .framer-1jjoy85 { align-content: center; align-items: center; background-color: var(--token-ac40779c-3a3e-49bd-bf35-bd552af967c4, #f97023); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-334vj .framer-15qots2 { align-content: center; align-items: center; background-color: var(--token-83f14fde-1ad0-41c4-9137-47db48c84070, #d5cbff); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-334vj .framer-1rxn0u3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-1mkmwmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-eakt0o, .framer-334vj .framer-j6kf7b, .framer-334vj .framer-1i7q8h7, .framer-334vj .framer-98g9v0 { align-content: center; align-items: center; background-color: var(--token-1d60e60e-2b05-4757-a56b-764517912759, #005dc8); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-334vj .framer-1vpyvi2, .framer-334vj .framer-1s61ltj, .framer-334vj .framer-18pas2a, .framer-334vj .framer-z2o87r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-334vj .framer-1q5osye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 60px 25px 60px; position: relative; width: 100%; }\",\".framer-334vj .framer-1po550x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-bdv8v7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-u4ei4m { display: grid; flex: 1 0 0px; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-334vj .framer-1acplw0-container { align-self: start; flex: none; height: auto; justify-self: center; position: relative; width: 100%; }\",\".framer-334vj .framer-ixyj6k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-334vj .framer-so1pfz-container { flex: none; height: 653px; position: relative; width: 100%; }\",\".framer-334vj .framer-1e2eqgz-container, .framer-334vj .framer-5kka-container, .framer-334vj .framer-cs4mey-container, .framer-334vj .framer-xdq996-container, .framer-334vj .framer-1f3uiy1-container, .framer-334vj .framer-1qv0dej-container { height: 640px; position: relative; width: 1440px; }\",\".framer-334vj .framer-1qdwp8i-container { flex: none; height: 454px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-334vj.framer-72rtr7 { width: 810px; } .framer-334vj .framer-fb3csn-container, .framer-334vj .framer-1e3lacb { order: 0; } .framer-334vj .framer-sh6jh6 { order: 3; } .framer-334vj .framer-1icc9rs-container { order: 2; width: 100%; } .framer-334vj .framer-1bbh5lh { order: 4; } .framer-334vj .framer-x0uglc { flex-direction: column; height: min-content; } .framer-334vj .framer-1d8nemh-container, .framer-334vj .framer-j8g2ya-container, .framer-334vj .framer-10kkik-container { flex: none; height: 120px; width: 100%; } .framer-334vj .framer-1anndda { order: 1; padding: 30px 40px 20px 40px; } .framer-334vj .framer-16bu0v2 { height: min-content; } .framer-334vj .framer-lc478w { gap: 24px; height: min-content; justify-content: flex-start; min-height: 450px; } .framer-334vj .framer-10svanm { align-self: stretch; height: auto; min-height: 450px; } .framer-334vj .framer-1q5osye { flex-wrap: wrap; gap: 0px; order: 2; padding: 50px 40px 60px 40px; } .framer-334vj .framer-1po550x { height: 1065px; width: 730px; } .framer-334vj .framer-bdv8v7 { flex: 1 0 0px; height: 1px; } .framer-334vj .framer-u4ei4m { height: 988px; } .framer-334vj .framer-1acplw0-container { height: 490px; } .framer-334vj .framer-ixyj6k { gap: 10px; height: 0px; order: 3; padding: 0px; } .framer-334vj .framer-so1pfz-container { height: 91%; width: 50%; } .framer-334vj .framer-1qdwp8i-container { height: 581px; order: 5; }}\",\"@media (max-width: 809px) { .framer-334vj.framer-72rtr7 { width: 390px; } .framer-334vj .framer-fb3csn-container { order: 0; } .framer-334vj .framer-sh6jh6 { order: 3; } .framer-334vj .framer-1icc9rs-container { order: 1; width: 100%; } .framer-334vj .framer-1bbh5lh { height: 4251px; order: 4; } .framer-334vj .framer-1e3lacb { gap: 4px; order: 0; padding: 4px 20px 4px 20px; } .framer-334vj .framer-x0uglc { flex-direction: column; gap: 4px; height: min-content; padding: 0px; } .framer-334vj .framer-1d8nemh-container { flex: none; height: auto; max-height: 80px; width: 100%; } .framer-334vj .framer-j8g2ya-container, .framer-334vj .framer-10kkik-container { flex: none; height: 80px; width: 100%; } .framer-334vj .framer-1anndda { order: 1; padding: 20px; } .framer-334vj .framer-16bu0v2 { flex-direction: column; height: min-content; } .framer-334vj .framer-lc478w { flex: none; gap: 16px; height: min-content; justify-content: flex-start; padding: 16px; width: 100%; } .framer-334vj .framer-iydnrk { width: 100%; } .framer-334vj .framer-10svanm { flex: none; gap: 16px; height: min-content; justify-content: flex-start; min-height: unset; padding: 16px; width: 100%; } .framer-334vj .framer-1q5osye { order: 2; padding: 0px; } .framer-334vj .framer-ixyj6k { flex: 1 0 0px; gap: 10px; height: 1px; order: 3; padding: 10px; } .framer-334vj .framer-so1pfz-container { flex: 1 0 0px; height: 1px; } .framer-334vj .framer-1qdwp8i-container { height: auto; order: 5; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3331\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NUeIh93le\":{\"layout\":[\"fixed\",\"auto\"]},\"HUsC4Qoec\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-334vj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3331,width:1440};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\"}]},...HeaderAnnouncementBarFonts,...HeaderHeaderDesktopFonts,...VideoFonts,...HeaderHeaderMobileFonts,...HeroItemFonts,...SectionTitleFonts,...NewsCardFonts,...SectionQuoteFonts,...SlideshowFonts,...NewFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3331\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NUeIh93le\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HUsC4Qoec\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "UtilitiesTagFonts", "getFonts", "zmfQ68tOu_default", "ButtonFonts", "nZcS5zIJR_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonTitle", "displayTags", "hasButton", "height", "id", "image", "serviceName", "serviveTagColor", "text", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CkBFVy5s8", "GHsEm05js", "jGnOdlWev", "nqSTD_0cJ", "X8p3huhgp", "d83E8aZGh", "po4wq58DT", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "css", "FramernX9zand53", "withCSS", "nX9zand53_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderAnnouncementBarFonts", "getFonts", "IOrSRjv8y_default", "HeaderHeaderDesktopFonts", "tyLoQvYg3_default", "HeaderHeaderDesktopMegaMenu1ucrb7iWithMappedReactProps1iedf04", "withMappedReactProps", "withCodeBoundaryForOverrides", "MegaMenu", "tyLoQvYg3_exports", "VideoFonts", "Video", "HeaderHeaderMobileFonts", "dc2Sgb5xR_default", "HeroItemFonts", "vfcrq3Fh3_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SectionTitleFonts", "ToyFM85xj_default", "NewsCardFonts", "mZmbamQ9S_default", "SectionQuoteFonts", "nX9zand53_default", "SlideshowFonts", "Slideshow", "NewFooterFonts", "yScbtwzCo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "hd8faMicmzmfQ68tOu", "GA7wy9N_FVktnMIPb5", "FAWlEVrRpVktnMIPb5", "hf22Yyg94VktnMIPb5", "sUrXUJUEuVktnMIPb5", "Ib7YmMMLeVktnMIPb5", "fYbY6Nrn9VktnMIPb5", "bIMgT1yCkVktnMIPb5", "idVktnMIPb5", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "RichText2", "x", "Link", "resolvedLinks4", "ChildrenCanSuspend", "RHMnHmv97_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
