{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/integrations-styles.js@0.2.0", "ssg:https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/rvJpQ3AbvDrziHPxd8eA/Instagram.js", "ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js", "ssg:https://ga.jspm.io/npm:@emotion/hash@0.9.0/dist/emotion-hash.esm.js", "ssg:https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js", "ssg:https://framerusercontent.com/modules/gUH5qIQyRs26C7QaBdY4/kGHNHXRpAwct6kRhlNmq/GC7ukbyfY.js", "ssg:https://framerusercontent.com/modules/c9plpV2mjozO3izr3WKS/3cAnaz3zAKGU9BimPB2V/augiA20Il.js"],
  "sourcesContent": ["import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";const instagramRegex=/^https?:\\/\\/www\\.instagram\\.com\\/p\\/([^\\/]+)/;/**\n * INSTAGRAM\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 410\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Instagram({url,style,...props}){const id1=useMemo(()=>{var ref;const[,id]=(ref=url.match(instagramRegex))!==null&&ref!==void 0?ref:[null,null];return id;},[url]);return url&&id1?/*#__PURE__*/ _jsx(motion.iframe,{style:{...containerStyles,...style},src:`https://instagram.com/p/${id1}/embed/`,frameBorder:0,width:\"100%\",height:\"100%\",scrolling:\"no\",...props}):/*#__PURE__*/ _jsxs(motion.div,{style:{...emptyStateStyle,...style},...props,children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Instagram\"}),url?/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"This post URL doesn\u2019t seem correct.\"}):/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Set a post URL in the Properties.\"})]});};addPropertyControls(Instagram,{url:{title:\"URL\",type:ControlType.String,placeholder:\"https://www.instagram.com/p/***\",defaultValue:\"https://www.instagram.com/p/CNH6U6zAx80/\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Instagram\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"410\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Instagram.map", "import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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(()=>{if(srcType===SrcType.Url)return srcUrl;if(srcType===SrcType.Video)return srcFile;},[srcType,srcFile,srcUrl]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=emotion-hash.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import hash from\"@emotion/hash\";import{renderToString}from\"react-dom/server\";/**\n * ARC TEXT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const Arc=withCSS(function Arc(props){// Checks\nconst hasChildren=Children.count(props.slots)>0;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const showCustomPath=hasChildren&&props.type===\"graphic\";// For Ellipse\nconst isCircle=props.type===\"circle\";const isEllipse=props.type===\"ellipse\";const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nlet path=createPath(props.flip,cylinder);let childPath;let viewBox;// If graphic is connected\nif(showCustomPath){const firstChild=getFirstChild(props.slots);const svgChild=getFirstChild(firstChild.props.svg);const svgChildCanvas=getFirstChild(firstChild.props.children);// Show placeholder on canvas if connected layer isn\u2019t a graphic\nif(isCanvas&&!svgChildCanvas.props.frame){return /*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\uD83D\uDC8E\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Please connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"You can only connect the Arc to a Graphic with a single path.\"})]});}// Grab the react element from the canvas and turn it into SVG\nif(isCanvas&&svgChildCanvas){const svgString=renderToString(svgChildCanvas);// Canvas does not give us viewBox within the string\nconst canvasFrame=svgChildCanvas.props.frame;viewBox=`0 0 ${canvasFrame.width} ${canvasFrame.height}`;let attributes=svgString.match(/[\\w-]+=\"[^\"]*\"/g);for(const element of attributes){if(element.includes(\"d=\")){childPath=splitAndReplace(element);}}}// On the preview/deploy we already get the SVG string\nif(!isCanvas&&svgChild){let attributes1=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);viewBox=svgChild.split(\"viewBox=\")[1];viewBox=viewBox.split(\">\")[0];viewBox=viewBox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");for(const element1 of attributes1){if(element1.includes(\"d=\")){childPath=splitAndReplace(element1);}}}}// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(childPath||path)}`;// Alignment icon conversion\nlet alignmentValue;if(props.alignmentBaseline===\"top\")alignmentValue=\"Text Top\";if(props.alignmentBaseline===\"center\")alignmentValue=\"Central\";if(props.alignmentBaseline===\"bottom\")alignmentValue=\"Hanging\";return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",// userSelect: \"none\",\n// pointerEvents: \"none\",\nposition:\"relative\"},draggable:\"false\",children:/*#__PURE__*/ _jsxs(motion.svg,{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",position:\"absolute\",inset:0,transformOrigin:\"center\",willChange:props.rotate&&\"transform\"},viewBox:showCustomPath?viewBox:`0 0 100 100`,overflow:\"visible\",animate:isCircle&&props.rotate&&{rotate:360},transition:isCircle&&props.rotate&&{duration:100/props.rotateSpeed,repeat:Infinity,ease:\"linear\"},children:[/*#__PURE__*/ _jsx(\"path\",{id:id,d:showCustomPath?childPath:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/ _jsx(\"text\",{children:/*#__PURE__*/ _jsxs(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{fontSize:props.font.fontSize,fontFamily:props.font.font,fontWeight:props.font.fontWeight,wordSpacing:props.font.wordSpacing,letterSpacing:props.font.letterSpacing,fill:props.color},children:[props.text,!isCanvas&&props.animate&&/*#__PURE__*/ _jsx(\"animate\",{attributeName:\"startOffset\",from:`${props.animateStart}%`,to:`${props.animateEnd}%`,begin:\"0s\",dur:`${props.animateDuration}s`,repeatCount:\"indefinite\"})]})})]})});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\",]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"\u2726 THANK YOU \u2726 FOR VISITING\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Enum,options:[\"circle\",\"ellipse\",\"graphic\"],optionTitles:[\"Circle\",\"Ellipse\",\"Graphic\"],defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,unit:\"px\",min:0,max:1e3,hidden:({type})=>type!==\"ellipse\"},rotate:{type:ControlType.Boolean,title:\"Rotate\",defaultValue:false,hidden:({type})=>type!==\"circle\"},rotateSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:50,defaultValue:5,displayStepper:true,step:1,hidden:({type,rotate})=>type!==\"circle\"||!rotate},slots:{type:ControlType.ComponentInstance,title:\"Graphic\",hidden:({type})=>type!==\"graphic\"},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\",hidden:({type})=>type===\"graphic\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"},font:{type:ControlType.Object,controls:{font:{type:ControlType.String,placeholder:\"Inter\",defaultValue:\"Inter\"},fontSize:{title:\"Size\",type:ControlType.Number,min:0,max:100,step:.5,defaultValue:12},fontWeight:{type:ControlType.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:600,title:\"Weight\"},wordSpacing:{title:\"Word\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true},letterSpacing:{title:\"Letter\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true}}},animate:{type:ControlType.Boolean,defaultValue:false,title:\"Animate\"},animateStart:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:-50,title:\"From\",unit:\"%\",hidden:props=>!props.animate},animateEnd:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:150,title:\"To\",unit:\"%\",hidden:props=>!props.animate},animateDuration:{type:ControlType.Number,min:0,max:50,defaultValue:5,title:\"Time\",unit:\"s\",displayStepper:true,hidden:props=>!props.animate}});/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Path creation method */ const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:160,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"150\",\"framerIntrinsicWidth\":\"150\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "// Generated by Framer (ad22381)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js\";const ArcFonts=getFonts(Arc);const cycleOrder=[\"UTtgH1ldJ\",\"YPjskxEg9\"];const variantClassNames={UTtgH1ldJ:\"framer-v-164frlv\",YPjskxEg9:\"framer-v-1nkuj8t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Black Text\":\"YPjskxEg9\",\"White Text\":\"UTtgH1ldJ\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"UTtgH1ldJ\",image:izmEZQCi1={src:new URL(\"assets/512/07hrFzPZ69lyM9TOcrg8fafEuno.png\",\"https://framerusercontent.com/modules/gUH5qIQyRs26C7QaBdY4/kGHNHXRpAwct6kRhlNmq/GC7ukbyfY.js\").href,srcSet:`${new URL(\"assets/512/07hrFzPZ69lyM9TOcrg8fafEuno.png\",\"https://framerusercontent.com/modules/gUH5qIQyRs26C7QaBdY4/kGHNHXRpAwct6kRhlNmq/GC7ukbyfY.js\").href} 512w, ${new URL(\"assets/07hrFzPZ69lyM9TOcrg8fafEuno.png\",\"https://framerusercontent.com/modules/gUH5qIQyRs26C7QaBdY4/kGHNHXRpAwct6kRhlNmq/GC7ukbyfY.js\").href} 610w`},link:F3iC84t7K,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"UTtgH1ldJ\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-F1gua\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-164frlv\",className),\"data-framer-name\":\"White Text\",layoutDependency:layoutDependency,layoutId:\"UTtgH1ldJ\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({YPjskxEg9:{\"data-framer-name\":\"Black Text\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Link,{href:F3iC84t7K,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/ _jsx(motion.a,{className:\"framer-1l7vo framer-j95aux\",layoutDependency:layoutDependency,layoutId:\"iJ9QJZpJu\",transition:transition,children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1vt09dt\",layoutDependency:layoutDependency,layoutId:\"b7sl5Tk5W\",transition:transition,children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-12m2889\",layoutDependency:layoutDependency,layoutId:\"Rg07zxEkZ\",transition:transition,children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1qik87v-container\",layoutDependency:layoutDependency,layoutId:\"PEuwF6Z5d-container\",transition:transition,children:/*#__PURE__*/ _jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:10,animateEnd:150,animateStart:-50,color:\"rgb(255, 255, 255)\",cylinderHeight:0,flip:false,font:{font:\"Inter\",fontSize:12,fontWeight:600,letterSpacing:4,wordSpacing:4},height:\"100%\",id:\"PEuwF6Z5d\",layoutId:\"PEuwF6Z5d\",rotate:true,rotateSpeed:4,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"\u2726 THANK YOU \u2726 FOR VISITING\",type:\"circle\",width:\"100%\",...addPropertyOverrides({YPjskxEg9:{color:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,pixelHeight:441,pixelWidth:610,sizes:\"64px\",...toResponsiveImage(izmEZQCi1)},className:\"framer-1ybo5n0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GiYUo6JaC\",transition:transition})]})})});});const css=['.framer-F1gua [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F1gua .framer-j95aux { display: block; }\",\".framer-F1gua .framer-164frlv { height: 143px; overflow: hidden; position: relative; width: 142px; }\",\".framer-F1gua .framer-1l7vo { flex: none; height: 142px; left: 0px; overflow: visible; position: absolute; right: 0px; text-decoration: none; top: calc(49.650349650349675% - 142px / 2); }\",\".framer-F1gua .framer-1vt09dt, .framer-F1gua .framer-12m2889 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-F1gua .framer-1qik87v-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-F1gua .framer-1ybo5n0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: flex-start; left: calc(50.00000000000002% - 64px / 2); overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: calc(49.650349650349675% - 46.5px / 2); width: 64px; z-index: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F1gua .framer-1ybo5n0 { gap: 0px; } .framer-F1gua .framer-1ybo5n0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-F1gua .framer-1ybo5n0 > :first-child { margin-left: 0px; } .framer-F1gua .framer-1ybo5n0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 143\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YPjskxEg9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"izmEZQCi1\":\"image\",\"F3iC84t7K\":\"link\"}\n */ const FramerGC7ukbyfY=withCSS(Component,css,\"framer-F1gua\");export default FramerGC7ukbyfY;FramerGC7ukbyfY.displayName=\"Spinner\";FramerGC7ukbyfY.defaultProps={height:143,width:142};addPropertyControls(FramerGC7ukbyfY,{variant:{options:[\"UTtgH1ldJ\",\"YPjskxEg9\"],optionTitles:[\"White Text\",\"Black Text\"],title:\"Variant\",type:ControlType.Enum},izmEZQCi1:{__defaultAssetReference:\"data:framer/asset-reference,07hrFzPZ69lyM9TOcrg8fafEuno.png?originalFilename=Asset+1%402x.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},F3iC84t7K:{title:\"Link\",type:ControlType.Link}});addFonts(FramerGC7ukbyfY,[...ArcFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGC7ukbyfY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YPjskxEg9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"izmEZQCi1\\\":\\\"image\\\",\\\"F3iC84t7K\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"143\",\"framerIntrinsicWidth\":\"142\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GC7ukbyfY.map", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js\";import Instagram from\"https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/rvJpQ3AbvDrziHPxd8eA/Instagram.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";import NavbarLogoDark from\"#framer/local/canvasComponent/antkdCNVn/antkdCNVn.js\";import Footer from\"#framer/local/canvasComponent/DLc8ExRUW/DLc8ExRUW.js\";import Spinner from\"#framer/local/canvasComponent/GC7ukbyfY/GC7ukbyfY.js\";import Button from\"#framer/local/canvasComponent/mG37vfN0L/mG37vfN0L.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarLogoDarkFonts=getFonts(NavbarLogoDark);const SpinnerFonts=getFonts(Spinner);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const InstagramFonts=getFonts(Instagram);const FooterFonts=getFonts(Footer);const breakpoints={m5nJzcSQ0:\"(min-width: 1200px) and (max-width: 1439px)\",uuFtFqmsl:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",XHYXW_RoK:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RBU0G\";const variantClassNames={m5nJzcSQ0:\"framer-v-15ldoyk\",uuFtFqmsl:\"framer-v-qwkm7f\",WQLkyLRf1:\"framer-v-72rtr7\",XHYXW_RoK:\"framer-v-lntyep\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:101,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={\"Small Desktop\":\"m5nJzcSQ0\",Desktop:\"WQLkyLRf1\",Phone:\"uuFtFqmsl\",Tablet:\"XHYXW_RoK\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-RBU0G`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-RBU0G`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XHYXW_RoK\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"Y5Crfe70y\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tmf1y1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{variant:\"e13GfPgKL\"},uuFtFqmsl:{style:{width:\"100%\"},variant:\"eNyxJ8T4N\"},XHYXW_RoK:{style:{width:\"100%\"},variant:\"s8yHlKnjW\"}},children:/*#__PURE__*/_jsx(NavbarLogoDark,{height:\"100%\",HzBixWpjC:\"OJ5Yk63tX\",id:\"CfbzSRs7s\",layoutId:\"CfbzSRs7s\",style:{height:\"100%\",width:\"100%\"},variant:\"l7HhqQVgx\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqb8fo-container hidden-72rtr7 hidden-qwkm7f hidden-15ldoyk\",layoutScroll:true,children:/*#__PURE__*/_jsx(Spinner,{height:\"100%\",id:\"uPc95GWEV\",layoutId:\"uPc95GWEV\",style:{height:\"100%\",width:\"100%\"},variant:\"UTtgH1ldJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9d127j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{style:{height:\"100%\",width:\"100%\"}},XHYXW_RoK:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"DdKgARtEK\",isMixedBorderRadius:false,layoutId:\"DdKgARtEK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/35e1WjKlfBLA4tTHlzQJaxFR0.mp4\",srcType:\"URL\",srcUrl:\"https://www.dropbox.com/scl/fi/0emm5n20se0o01vfz1mns/PivotSizzleReel.mp4?rlkey=i7ml6sy0ue9f6t1pxwofakob4&raw=1\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1c07wuw\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436,intrinsicWidth:604,loading:getLoadingLazyAtYPosition(1060),pixelHeight:436,pixelWidth:604,sizes:\"64px\",src:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png\",srcSet:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png?scale-down-to=512 512w,https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png 604w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436,intrinsicWidth:604,loading:getLoadingLazyAtYPosition(579.65),pixelHeight:436,pixelWidth:604,sizes:\"64px\",src:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png\",srcSet:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png?scale-down-to=512 512w,https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png 604w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:436,intrinsicWidth:604,loading:getLoadingLazyAtYPosition(179.65),pixelHeight:436,pixelWidth:604,sizes:\"64px\",src:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png\",srcSet:\"https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png?scale-down-to=512 512w,https://framerusercontent.com/images/OX6BMXEle6DH5O0j44emffLOnKo.png 604w\"},className:\"framer-cq3pnj\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XHYXW_RoK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Billboards, Boats, and \",/*#__PURE__*/_jsx(\"br\",{}),\"Bold OOH Media\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Billboards, Boats, and Bold OOH Media\"})}),className:\"framer-splilm\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstcmVndWxhcg==\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:\"Pivot Media Ventures\"}),\" is a leader in the US \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:\"out-of-home\"}),\" media industry.\\xa0 Known for our ambitious and inclusive company culture, we are a team of creative thinkers, problem-solvers, go-getters, and clear communicators who value client/partner relationships above all.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstcmVndWxhcg==\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:\"Pivot Media Ventures\"}),\" is a leader in the US \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:\"out-of-home\"}),\" media industry.\\xa0 Known for our ambitious and inclusive company culture, we are a team of creative thinkers, problem-solvers, go-getters, and clear communicators who value client/partner relationships above all.\"]})}),className:\"framer-itll4b\",fonts:[\"GF;Rubik-regular\",\"GF;Rubik-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gZLYdqPuu\"},implicitPathVariables:undefined},{href:{webPageId:\"gZLYdqPuu\"},implicitPathVariables:undefined},{href:{webPageId:\"gZLYdqPuu\"},implicitPathVariables:undefined},{href:{webPageId:\"gZLYdqPuu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11lzag9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{link:resolvedLinks[3]},uuFtFqmsl:{link:resolvedLinks[2]},XHYXW_RoK:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"wotlYg93g\",layoutId:\"wotlYg93g\",link:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},title:\"LEARN MORE\",variant:\"zBghwbVtY\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rejewg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(1507.7),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(1141.5),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(709.5),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"},className:\"framer-xjiuur\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"WHAT WE DO\"})}),className:\"framer-6tgk5v\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ynlasz-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{padding:2,paddingBottom:2,paddingLeft:2,paddingRight:2,paddingTop:2}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"s_Dxyoa6G\",layoutId:\"s_Dxyoa6G\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pc82yl\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:655,intrinsicWidth:698,pixelHeight:655,pixelWidth:698,sizes:\"315px\",src:\"https://framerusercontent.com/images/zeJsxPM6qgZTO7rgNDAn89cE834.webp\",srcSet:\"https://framerusercontent.com/images/zeJsxPM6qgZTO7rgNDAn89cE834.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zeJsxPM6qgZTO7rgNDAn89cE834.webp 698w\"},className:\"framer-wl03p3\",\"data-framer-name\":\"Screen_Shot_2022_06_02_at_10_31_edited\",name:\"Screen_Shot_2022_06_02_at_10_31_edited\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"TRADITIONAL OOH\"})}),className:\"framer-b5uqje\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gihmp5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:313,intrinsicWidth:315,pixelHeight:626,pixelWidth:630,sizes:\"315px\",src:\"https://framerusercontent.com/images/YzUyI7aMKKBN2vE7AYUI9B0p1pE.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YzUyI7aMKKBN2vE7AYUI9B0p1pE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YzUyI7aMKKBN2vE7AYUI9B0p1pE.webp 630w\"},className:\"framer-9g5qhv\",\"data-framer-name\":\"Screen_Shot_2022_06_02_at_10_31_edited\",name:\"Screen_Shot_2022_06_02_at_10_31_edited\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"NATIONAL TRANSIT\"})}),className:\"framer-8hvfpp\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w89u1v\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:629,intrinsicWidth:629,pixelHeight:629,pixelWidth:629,sizes:\"315px\",src:\"https://framerusercontent.com/images/LmEld6nBdGzqmgb36zlwqsGpoRQ.webp\",srcSet:\"https://framerusercontent.com/images/LmEld6nBdGzqmgb36zlwqsGpoRQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LmEld6nBdGzqmgb36zlwqsGpoRQ.webp 629w\"},className:\"framer-5r93d\",\"data-framer-name\":\"Screen_Shot_2022_06_02_at_10_31_edited\",name:\"Screen_Shot_2022_06_02_at_10_31_edited\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"DIGITAL \",/*#__PURE__*/_jsx(\"br\",{}),\"OOH\"]})}),className:\"framer-18s0p9q\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igttg3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:625,intrinsicWidth:625,pixelHeight:625,pixelWidth:625,sizes:\"315px\",src:\"https://framerusercontent.com/images/pwFSert9Vqnvpaii0OOcM1EvvQ.webp\",srcSet:\"https://framerusercontent.com/images/pwFSert9Vqnvpaii0OOcM1EvvQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pwFSert9Vqnvpaii0OOcM1EvvQ.webp 625w\"},className:\"framer-14v42ov\",\"data-framer-name\":\"Screen_Shot_2022_06_02_at_10_31_edited\",name:\"Screen_Shot_2022_06_02_at_10_31_edited\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"STATION DOMINATIONS\"})}),className:\"framer-1ksp7dh\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18o8xnt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:668,intrinsicWidth:685,pixelHeight:668,pixelWidth:685,sizes:\"315px\",src:\"https://framerusercontent.com/images/YCp2HS9vVBTebroCL6T85BzqlrE.webp\",srcSet:\"https://framerusercontent.com/images/YCp2HS9vVBTebroCL6T85BzqlrE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YCp2HS9vVBTebroCL6T85BzqlrE.webp 685w\"},className:\"framer-dnkwcl\",\"data-framer-name\":\"Screen_Shot_2022_06_02_at_10_31_edited\",name:\"Screen_Shot_2022_06_02_at_10_31_edited\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"EXPERIENTIAL  OOH\"})}),className:\"framer-11e6hnn\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ebqGIXDEM\"},implicitPathVariables:undefined},{href:{webPageId:\"ebqGIXDEM\"},implicitPathVariables:undefined},{href:{webPageId:\"ebqGIXDEM\"},implicitPathVariables:undefined},{href:{webPageId:\"ebqGIXDEM\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yhky4n-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{link:resolvedLinks1[3]},uuFtFqmsl:{link:resolvedLinks1[2]},XHYXW_RoK:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jSp3cARuT\",layoutId:\"jSp3cARuT\",link:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},title:\"LEARN MORE\",variant:\"zBghwbVtY\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-bidm8z\",\"data-framer-name\":\"Header\",id:elementId,name:\"Header\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nku2ej\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(1639.7954545454545),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2271.2),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(1903.5),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(1592.5),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"},className:\"framer-ez69kx\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHERE \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WE \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"ARE\"})]})}),className:\"framer-d3h28k\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ce38aITU6\"},implicitPathVariables:undefined},{href:{webPageId:\"ce38aITU6\"},implicitPathVariables:undefined},{href:{webPageId:\"ce38aITU6\"},implicitPathVariables:undefined},{href:{webPageId:\"ce38aITU6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mynveu-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{link:resolvedLinks2[3]},uuFtFqmsl:{link:resolvedLinks2[2]},XHYXW_RoK:{link:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"OexvUyh_Q\",layoutId:\"OexvUyh_Q\",link:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},title:\"LEARN MORE\",variant:\"zBghwbVtY\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vqy7o7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(1552.2954545454545),pixelHeight:788,pixelWidth:1378,sizes:\"683px\",src:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp\",srcSet:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp 1378w\"}},uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(2544.7),pixelHeight:788,pixelWidth:1378,sizes:\"350px\",src:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp\",srcSet:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp 1378w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(2169.5),pixelHeight:788,pixelWidth:1378,sizes:\"790px\",src:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp\",srcSet:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp 1378w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(1504),pixelHeight:788,pixelWidth:1378,sizes:\"860px\",src:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp\",srcSet:\"https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/B2wj1He75biri9l4SfEhFNgeWk.webp 1378w\"},className:\"framer-cp79o4\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition(1580.7954545454545),pixelHeight:1200,pixelWidth:2100,sizes:\"655px\",src:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png\",srcSet:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png 2100w\"}},uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition(2564.7),pixelHeight:1200,pixelWidth:2100,sizes:\"calc(100vw - 56px)\",src:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png\",srcSet:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png 2100w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition(2221),pixelHeight:1200,pixelWidth:2100,sizes:\"739px\",src:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png\",srcSet:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png 2100w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2100,loading:getLoadingLazyAtYPosition(1533.5),pixelHeight:1200,pixelWidth:2100,sizes:\"790px\",src:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png\",srcSet:\"https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Umulz8I1kJZSO8ennx3Gwxgwwgo.png 2100w\"},className:\"framer-m3eiu\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkxr7u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XHYXW_RoK:{verticalAlignment:\"top\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"OUR\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MARKETS\"})]})}),className:\"framer-1kn37fq\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"NYC\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"LA\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"CHI\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"MIA\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"BOS\",/*#__PURE__*/_jsx(\"br\",{}),\"SEA\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AND MORE!\"})]})},XHYXW_RoK:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"NYC, LA, CHI, MIA, BOS, SEA,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AND MORE!\"})]}),fonts:[\"GF;Rubik-500\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"NYC\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"LA\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"CHI\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"MIA\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UnViaWstNzAw\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"BOS\",/*#__PURE__*/_jsx(\"br\",{}),\"SEA\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AND MORE!\"})]}),className:\"framer-fgf8mb\",fonts:[\"GF;Rubik-500\",\"GF;Rubik-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxjw3u\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2094.590909090909),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(3208.2),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2935),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2091),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"},className:\"framer-16mbcsm\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Our Clients\"})}),className:\"framer-1rmnewd\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16ieq0m-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"G8oM_9qm2\",layoutId:\"G8oM_9qm2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/YbNFpmx0N790uyxMpWHR29Kaq4.png\",srcSet:\"https://framerusercontent.com/images/YbNFpmx0N790uyxMpWHR29Kaq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/YbNFpmx0N790uyxMpWHR29Kaq4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YbNFpmx0N790uyxMpWHR29Kaq4.png 1200w\"},className:\"framer-12oyu8j\",\"data-framer-name\":\"DoorDash_Logo\",name:\"DoorDash_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/0Vdzt1XZDbkvbhTjkz5YdWL19J4.png\",srcSet:\"https://framerusercontent.com/images/0Vdzt1XZDbkvbhTjkz5YdWL19J4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Vdzt1XZDbkvbhTjkz5YdWL19J4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Vdzt1XZDbkvbhTjkz5YdWL19J4.png 1200w\"},className:\"framer-7fl6z4\",\"data-framer-name\":\"H_M\",name:\"H_M\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/VQWJ0CveWyUgGxA5zVjM2qNN3mE.png\",srcSet:\"https://framerusercontent.com/images/VQWJ0CveWyUgGxA5zVjM2qNN3mE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VQWJ0CveWyUgGxA5zVjM2qNN3mE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VQWJ0CveWyUgGxA5zVjM2qNN3mE.png 1200w\"},className:\"framer-27rpmc\",\"data-framer-name\":\"Ally_Bank_Logo\",name:\"Ally_Bank_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/MBunBKEJCy1ws6klEx5F6RKloA.png\",srcSet:\"https://framerusercontent.com/images/MBunBKEJCy1ws6klEx5F6RKloA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MBunBKEJCy1ws6klEx5F6RKloA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MBunBKEJCy1ws6klEx5F6RKloA.png 1200w\"},className:\"framer-1os8zf7\",\"data-framer-name\":\"Disney_Plus_Logo\",name:\"Disney_Plus_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/n6EOZQIWX2zXxPJkZ2tgQFlmNA.png\",srcSet:\"https://framerusercontent.com/images/n6EOZQIWX2zXxPJkZ2tgQFlmNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/n6EOZQIWX2zXxPJkZ2tgQFlmNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n6EOZQIWX2zXxPJkZ2tgQFlmNA.png 1200w\"},className:\"framer-1wo9iu9\",\"data-framer-name\":\"HBO_Max_Logo\",name:\"HBO_Max_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/ExbHw208GQDMBYZlSlXPYEVv1k.png\",srcSet:\"https://framerusercontent.com/images/ExbHw208GQDMBYZlSlXPYEVv1k.png?scale-down-to=512 512w,https://framerusercontent.com/images/ExbHw208GQDMBYZlSlXPYEVv1k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ExbHw208GQDMBYZlSlXPYEVv1k.png 1200w\"},className:\"framer-tod5ls\",\"data-framer-name\":\"Spotify\",name:\"Spotify\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/q1cQOCDSXM9jhgWZ8sAWh0yvPHE.png\",srcSet:\"https://framerusercontent.com/images/q1cQOCDSXM9jhgWZ8sAWh0yvPHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1cQOCDSXM9jhgWZ8sAWh0yvPHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q1cQOCDSXM9jhgWZ8sAWh0yvPHE.png 1200w\"},className:\"framer-ryf4ry\",\"data-framer-name\":\"United_Airlines_Logo\",name:\"United_Airlines_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/bnsjpuOAh987GppnFJDAYcRtbww.png\",srcSet:\"https://framerusercontent.com/images/bnsjpuOAh987GppnFJDAYcRtbww.png?scale-down-to=512 512w,https://framerusercontent.com/images/bnsjpuOAh987GppnFJDAYcRtbww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bnsjpuOAh987GppnFJDAYcRtbww.png 1200w\"},className:\"framer-e08loy\",\"data-framer-name\":\"Tecate_Logo\",name:\"Tecate_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/R8kyiMiUfqIqdnoXQET5lfRGTw.png\",srcSet:\"https://framerusercontent.com/images/R8kyiMiUfqIqdnoXQET5lfRGTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/R8kyiMiUfqIqdnoXQET5lfRGTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R8kyiMiUfqIqdnoXQET5lfRGTw.png 1200w\"},className:\"framer-1auw699\",\"data-framer-name\":\"Hulu_Logo\",name:\"Hulu_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/AIDn1Ry8cEq5OeGgskGf4ZNso.png\",srcSet:\"https://framerusercontent.com/images/AIDn1Ry8cEq5OeGgskGf4ZNso.png?scale-down-to=512 512w,https://framerusercontent.com/images/AIDn1Ry8cEq5OeGgskGf4ZNso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AIDn1Ry8cEq5OeGgskGf4ZNso.png 1200w\"},className:\"framer-kfk5c\",\"data-framer-name\":\"Spotify_Logo\",name:\"Spotify_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/XMxDm5K7lnDK6I5DbWf2VYbgtSg.png\",srcSet:\"https://framerusercontent.com/images/XMxDm5K7lnDK6I5DbWf2VYbgtSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XMxDm5K7lnDK6I5DbWf2VYbgtSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XMxDm5K7lnDK6I5DbWf2VYbgtSg.png 1200w\"},className:\"framer-2iz0f3\",\"data-framer-name\":\"Verizon_Logo\",name:\"Verizon_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/1Wa57w33L4VkLuCyesW2XrfiCk.png\",srcSet:\"https://framerusercontent.com/images/1Wa57w33L4VkLuCyesW2XrfiCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Wa57w33L4VkLuCyesW2XrfiCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Wa57w33L4VkLuCyesW2XrfiCk.png 1200w\"},className:\"framer-8cmmqf\",\"data-framer-name\":\"Universal_Logo\",name:\"Universal_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/QBQIuBTXyi4vk5XJFgJGWnCkklo.png\",srcSet:\"https://framerusercontent.com/images/QBQIuBTXyi4vk5XJFgJGWnCkklo.png?scale-down-to=512 512w,https://framerusercontent.com/images/QBQIuBTXyi4vk5XJFgJGWnCkklo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QBQIuBTXyi4vk5XJFgJGWnCkklo.png 1200w\"},className:\"framer-w3xvwt\",\"data-framer-name\":\"Lululemon\",name:\"Lululemon\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/X2e1sSlLllkb0W5gMgbkCegxpRM.png\",srcSet:\"https://framerusercontent.com/images/X2e1sSlLllkb0W5gMgbkCegxpRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/X2e1sSlLllkb0W5gMgbkCegxpRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X2e1sSlLllkb0W5gMgbkCegxpRM.png 1200w\"},className:\"framer-12cxvze\",\"data-framer-name\":\"Ray_Ban_Logo\",name:\"Ray_Ban_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/u6kdh9kxEiIz3bNlU2oun0ftfw.png\",srcSet:\"https://framerusercontent.com/images/u6kdh9kxEiIz3bNlU2oun0ftfw.png?scale-down-to=512 512w,https://framerusercontent.com/images/u6kdh9kxEiIz3bNlU2oun0ftfw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u6kdh9kxEiIz3bNlU2oun0ftfw.png 1200w\"},className:\"framer-1yl75qk\",\"data-framer-name\":\"Peloton\",name:\"Peloton\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/UaK3GFqwA1oMn3PxHzeF294daA.png\",srcSet:\"https://framerusercontent.com/images/UaK3GFqwA1oMn3PxHzeF294daA.png?scale-down-to=512 512w,https://framerusercontent.com/images/UaK3GFqwA1oMn3PxHzeF294daA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UaK3GFqwA1oMn3PxHzeF294daA.png 1200w\"},className:\"framer-5krgar\",\"data-framer-name\":\"Nike_Logo\",name:\"Nike_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/7yBDFyAQr269OdsGt8qV8HgP10.png\",srcSet:\"https://framerusercontent.com/images/7yBDFyAQr269OdsGt8qV8HgP10.png?scale-down-to=512 512w,https://framerusercontent.com/images/7yBDFyAQr269OdsGt8qV8HgP10.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7yBDFyAQr269OdsGt8qV8HgP10.png 1200w\"},className:\"framer-1v2vmia\",\"data-framer-name\":\"Coach_Logo\",name:\"Coach_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/0HMwVPgtZzbJKcCnAhrH8El47Y.png\",srcSet:\"https://framerusercontent.com/images/0HMwVPgtZzbJKcCnAhrH8El47Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/0HMwVPgtZzbJKcCnAhrH8El47Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0HMwVPgtZzbJKcCnAhrH8El47Y.png 1200w\"},className:\"framer-13x8ptf\",\"data-framer-name\":\"Bumble_Logo\",name:\"Bumble_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/riTHqIPp8x98rXn2VNljUlhgSew.png\",srcSet:\"https://framerusercontent.com/images/riTHqIPp8x98rXn2VNljUlhgSew.png?scale-down-to=512 512w,https://framerusercontent.com/images/riTHqIPp8x98rXn2VNljUlhgSew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/riTHqIPp8x98rXn2VNljUlhgSew.png 1200w\"},className:\"framer-18yvw60\",\"data-framer-name\":\"Bud_Light_Logo\",name:\"Bud_Light_Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:\"200px\",src:\"https://framerusercontent.com/images/jrfSRuyqw5FvHsbIgq726BM9raY.png\",srcSet:\"https://framerusercontent.com/images/jrfSRuyqw5FvHsbIgq726BM9raY.png?scale-down-to=512 512w,https://framerusercontent.com/images/jrfSRuyqw5FvHsbIgq726BM9raY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jrfSRuyqw5FvHsbIgq726BM9raY.png 1200w\"},className:\"framer-hjo3sq\",\"data-framer-name\":\"Amazon_Logo\",name:\"Amazon_Logo\"})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x1hi97\",\"data-framer-name\":\"2 Columns Image Text\",name:\"2 Columns Image Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p4rnwe-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"gus1uIUC5\",layoutId:\"gus1uIUC5\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DDNIhvrvMvr/?img_index=1\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5sccq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m5nJzcSQ0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2562.6409090909087),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},uuFtFqmsl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(3908.6499999999996),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}},XHYXW_RoK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(3367.6),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:441,intrinsicWidth:610,loading:getLoadingLazyAtYPosition(2559.0499999999997),pixelHeight:441,pixelWidth:610,sizes:\"70px\",src:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png\",srcSet:\"https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/07hrFzPZ69lyM9TOcrg8fafEuno.png 610w\"},className:\"framer-se2xz3\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok3085\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FOLLOW ALONG WITH US ON OUR SOCIALS\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(253, 109, 109)\"},children:\"@PIVOTOOH\"})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"FOLLOW ALONG WITH US ON OUR SOCIALS\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(253, 109, 109)\"},children:\"@PIVOTOOH\"})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-qpn3m6\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7lpvri\"})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1jvd8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uuFtFqmsl:{variant:\"LbFWcTzsx\"},XHYXW_RoK:{variant:\"Xy8u8AC0x\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"JQVPJuPs3\",layoutId:\"JQVPJuPs3\",style:{height:\"100%\",width:\"100%\"},variant:\"k1B1Xz46m\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-RBU0G { background: white; }`,\".framer-RBU0G.framer-lux5qc, .framer-RBU0G .framer-lux5qc { display: block; }\",\".framer-RBU0G.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-RBU0G .framer-tmf1y1-container { flex: none; height: 106px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-RBU0G .framer-bqb8fo-container { flex: none; height: 96px; position: fixed; right: 25px; top: 294px; width: 95px; z-index: 1; }\",\".framer-RBU0G .framer-9d127j-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-RBU0G .framer-1c07wuw { align-content: center; align-items: center; background-color: #00a2ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 560px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-cq3pnj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 64px; z-index: 5; }\",\".framer-RBU0G .framer-splilm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-itll4b { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 968px; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-11lzag9-container, .framer-RBU0G .framer-1yhky4n-container, .framer-RBU0G .framer-mynveu-container { flex: none; height: 48px; position: relative; width: 188px; }\",\".framer-RBU0G .framer-1rejewg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 792px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-xjiuur, .framer-RBU0G .framer-ez69kx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 70px; z-index: 5; }\",\".framer-RBU0G .framer-6tgk5v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 63px; overflow: visible; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-ynlasz-container { flex: none; height: 526px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-pc82yl, .framer-RBU0G .framer-gihmp5, .framer-RBU0G .framer-1w89u1v, .framer-RBU0G .framer-1igttg3, .framer-RBU0G .framer-18o8xnt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 486px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 362px; }\",\".framer-RBU0G .framer-wl03p3, .framer-RBU0G .framer-9g5qhv, .framer-RBU0G .framer-5r93d, .framer-RBU0G .framer-14v42ov, .framer-RBU0G .framer-dnkwcl { aspect-ratio: 1.0063897763578276 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 313px); overflow: visible; position: relative; width: 315px; }\",\".framer-RBU0G .framer-b5uqje, .framer-RBU0G .framer-8hvfpp, .framer-RBU0G .framer-18s0p9q, .framer-RBU0G .framer-1ksp7dh, .framer-RBU0G .framer-11e6hnn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-bidm8z { align-content: flex-start; align-items: flex-start; background-color: #00a2ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 577px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-nku2ej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 456px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 286px; }\",\".framer-RBU0G .framer-d3h28k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 161px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-1vqy7o7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 456px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 790px; }\",\".framer-RBU0G .framer-cp79o4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 456px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 860px; z-index: 5; }\",\".framer-RBU0G .framer-m3eiu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 419px; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: -8px; top: calc(52.41228070175441% - 419px / 2); width: 790px; z-index: 5; }\",\".framer-RBU0G .framer-jkxr7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 286px; }\",\".framer-RBU0G .framer-1kn37fq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 95px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-fgf8mb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 396px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-1wxjw3u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-16mbcsm, .framer-RBU0G .framer-se2xz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 70px; z-index: 5; }\",\".framer-RBU0G .framer-1rmnewd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-RBU0G .framer-16ieq0m-container { flex: none; height: 216px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-12oyu8j, .framer-RBU0G .framer-7fl6z4, .framer-RBU0G .framer-27rpmc, .framer-RBU0G .framer-1os8zf7, .framer-RBU0G .framer-1wo9iu9, .framer-RBU0G .framer-tod5ls, .framer-RBU0G .framer-ryf4ry, .framer-RBU0G .framer-e08loy, .framer-RBU0G .framer-1auw699, .framer-RBU0G .framer-kfk5c, .framer-RBU0G .framer-2iz0f3, .framer-RBU0G .framer-8cmmqf, .framer-RBU0G .framer-w3xvwt, .framer-RBU0G .framer-12cxvze, .framer-RBU0G .framer-1yl75qk, .framer-RBU0G .framer-5krgar, .framer-RBU0G .framer-1v2vmia, .framer-RBU0G .framer-13x8ptf, .framer-RBU0G .framer-18yvw60, .framer-RBU0G .framer-hjo3sq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 200px; }\",\".framer-RBU0G .framer-1x1hi97 { align-content: center; align-items: center; background-color: #00a2ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 582px; justify-content: space-around; overflow: visible; padding: 100px 0px 100px 100px; position: relative; width: 100%; }\",\".framer-RBU0G .framer-p4rnwe-container { flex: none; height: 491px; position: relative; width: 630px; }\",\".framer-RBU0G .framer-1b5sccq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RBU0G .framer-ok3085 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-RBU0G .framer-qpn3m6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 0px 4px 2px rgba(255, 189, 46, 0.25), 3px 5px 4px hsla(187, 100%, 58%, 0.25); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RBU0G .framer-7lpvri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 109px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RBU0G .framer-b1jvd8-container { flex: none; height: 388px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RBU0G.framer-72rtr7, .framer-RBU0G .framer-1c07wuw, .framer-RBU0G .framer-cq3pnj, .framer-RBU0G .framer-1rejewg, .framer-RBU0G .framer-xjiuur, .framer-RBU0G .framer-pc82yl, .framer-RBU0G .framer-gihmp5, .framer-RBU0G .framer-1w89u1v, .framer-RBU0G .framer-1igttg3, .framer-RBU0G .framer-18o8xnt, .framer-RBU0G .framer-bidm8z, .framer-RBU0G .framer-nku2ej, .framer-RBU0G .framer-ez69kx, .framer-RBU0G .framer-1vqy7o7, .framer-RBU0G .framer-cp79o4, .framer-RBU0G .framer-m3eiu, .framer-RBU0G .framer-jkxr7u, .framer-RBU0G .framer-1wxjw3u, .framer-RBU0G .framer-16mbcsm, .framer-RBU0G .framer-1b5sccq, .framer-RBU0G .framer-se2xz3, .framer-RBU0G .framer-ok3085, .framer-RBU0G .framer-7lpvri { gap: 0px; } .framer-RBU0G.framer-72rtr7 > *, .framer-RBU0G .framer-ok3085 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RBU0G.framer-72rtr7 > :first-child, .framer-RBU0G .framer-1c07wuw > :first-child, .framer-RBU0G .framer-1rejewg > :first-child, .framer-RBU0G .framer-pc82yl > :first-child, .framer-RBU0G .framer-gihmp5 > :first-child, .framer-RBU0G .framer-1w89u1v > :first-child, .framer-RBU0G .framer-1igttg3 > :first-child, .framer-RBU0G .framer-18o8xnt > :first-child, .framer-RBU0G .framer-nku2ej > :first-child, .framer-RBU0G .framer-1vqy7o7 > :first-child, .framer-RBU0G .framer-jkxr7u > :first-child, .framer-RBU0G .framer-1wxjw3u > :first-child, .framer-RBU0G .framer-16mbcsm > :first-child, .framer-RBU0G .framer-1b5sccq > :first-child, .framer-RBU0G .framer-se2xz3 > :first-child, .framer-RBU0G .framer-ok3085 > :first-child { margin-top: 0px; } .framer-RBU0G.framer-72rtr7 > :last-child, .framer-RBU0G .framer-1c07wuw > :last-child, .framer-RBU0G .framer-1rejewg > :last-child, .framer-RBU0G .framer-pc82yl > :last-child, .framer-RBU0G .framer-gihmp5 > :last-child, .framer-RBU0G .framer-1w89u1v > :last-child, .framer-RBU0G .framer-1igttg3 > :last-child, .framer-RBU0G .framer-18o8xnt > :last-child, .framer-RBU0G .framer-nku2ej > :last-child, .framer-RBU0G .framer-1vqy7o7 > :last-child, .framer-RBU0G .framer-jkxr7u > :last-child, .framer-RBU0G .framer-1wxjw3u > :last-child, .framer-RBU0G .framer-16mbcsm > :last-child, .framer-RBU0G .framer-1b5sccq > :last-child, .framer-RBU0G .framer-se2xz3 > :last-child, .framer-RBU0G .framer-ok3085 > :last-child { margin-bottom: 0px; } .framer-RBU0G .framer-1c07wuw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RBU0G .framer-cq3pnj > *, .framer-RBU0G .framer-xjiuur > *, .framer-RBU0G .framer-ez69kx > *, .framer-RBU0G .framer-cp79o4 > *, .framer-RBU0G .framer-m3eiu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RBU0G .framer-cq3pnj > :first-child, .framer-RBU0G .framer-xjiuur > :first-child, .framer-RBU0G .framer-bidm8z > :first-child, .framer-RBU0G .framer-ez69kx > :first-child, .framer-RBU0G .framer-cp79o4 > :first-child, .framer-RBU0G .framer-m3eiu > :first-child, .framer-RBU0G .framer-7lpvri > :first-child { margin-left: 0px; } .framer-RBU0G .framer-cq3pnj > :last-child, .framer-RBU0G .framer-xjiuur > :last-child, .framer-RBU0G .framer-bidm8z > :last-child, .framer-RBU0G .framer-ez69kx > :last-child, .framer-RBU0G .framer-cp79o4 > :last-child, .framer-RBU0G .framer-m3eiu > :last-child, .framer-RBU0G .framer-7lpvri > :last-child { margin-right: 0px; } .framer-RBU0G .framer-1rejewg > *, .framer-RBU0G .framer-pc82yl > *, .framer-RBU0G .framer-gihmp5 > *, .framer-RBU0G .framer-1w89u1v > *, .framer-RBU0G .framer-1igttg3 > *, .framer-RBU0G .framer-18o8xnt > *, .framer-RBU0G .framer-nku2ej > *, .framer-RBU0G .framer-1vqy7o7 > *, .framer-RBU0G .framer-jkxr7u > *, .framer-RBU0G .framer-16mbcsm > *, .framer-RBU0G .framer-se2xz3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RBU0G .framer-bidm8z > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-RBU0G .framer-1wxjw3u > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-RBU0G .framer-1b5sccq > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-RBU0G .framer-7lpvri > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-RBU0G { background: white; } .framer-RBU0G.framer-72rtr7 { width: 810px; } .framer-RBU0G .framer-tmf1y1-container { height: auto; left: 50%; order: 0; transform: translateX(-50%); } .framer-RBU0G .framer-bqb8fo-container { order: 2; } .framer-RBU0G .framer-9d127j-container { height: 480px; order: 1; } .framer-RBU0G .framer-1c07wuw { height: 624px; order: 4; } .framer-RBU0G .framer-11lzag9-container { width: 177px; } .framer-RBU0G .framer-1rejewg { order: 5; } .framer-RBU0G .framer-bidm8z { align-content: center; align-items: center; flex-direction: column; height: 979px; order: 6; width: 100%; } .framer-RBU0G .framer-nku2ej { height: 262px; order: 0; width: 676px; } .framer-RBU0G .framer-d3h28k { height: 112px; } .framer-RBU0G .framer-1vqy7o7 { order: 1; } .framer-RBU0G .framer-cp79o4 { order: 0; width: 100%; z-index: 0; } .framer-RBU0G .framer-m3eiu { height: 369px; left: calc(50.63291139240509% - 739px / 2); order: 1; right: unset; top: calc(51.75438596491231% - 369px / 2); width: 739px; z-index: 0; } .framer-RBU0G .framer-jkxr7u { height: 238px; order: 2; } .framer-RBU0G .framer-1kn37fq { height: 88px; order: 0; } .framer-RBU0G .framer-fgf8mb { height: 136px; order: 1; } .framer-RBU0G .framer-1wxjw3u { order: 7; padding: 60px 0px 0px 0px; } .framer-RBU0G .framer-1x1hi97 { gap: 64px; height: 428px; justify-content: center; order: 8; padding: 100px 0px 100px 0px; } .framer-RBU0G .framer-p4rnwe-container { height: 341px; width: 426px; } .framer-RBU0G .framer-1b5sccq { gap: unset; height: 268px; justify-content: space-between; overflow: visible; } .framer-RBU0G .framer-se2xz3 { flex-direction: row; order: 0; } .framer-RBU0G .framer-ok3085 { height: 313px; order: 1; padding: 0px 40px 0px 0px; width: 279px; } .framer-RBU0G .framer-b1jvd8-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RBU0G .framer-bidm8z, .framer-RBU0G .framer-1x1hi97, .framer-RBU0G .framer-1b5sccq, .framer-RBU0G .framer-se2xz3 { gap: 0px; } .framer-RBU0G .framer-bidm8z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RBU0G .framer-bidm8z > :first-child { margin-top: 0px; } .framer-RBU0G .framer-bidm8z > :last-child { margin-bottom: 0px; } .framer-RBU0G .framer-1x1hi97 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-RBU0G .framer-1x1hi97 > :first-child, .framer-RBU0G .framer-se2xz3 > :first-child { margin-left: 0px; } .framer-RBU0G .framer-1x1hi97 > :last-child, .framer-RBU0G .framer-se2xz3 > :last-child { margin-right: 0px; } .framer-RBU0G .framer-1b5sccq > *, .framer-RBU0G .framer-1b5sccq > :first-child, .framer-RBU0G .framer-1b5sccq > :last-child { margin: 0px; } .framer-RBU0G .framer-se2xz3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-RBU0G { background: white; } .framer-RBU0G.framer-72rtr7 { width: 390px; } .framer-RBU0G .framer-tmf1y1-container { height: auto; left: 50%; order: 0; transform: translateX(-50%); } .framer-RBU0G .framer-9d127j-container { height: 100vh; order: 3; z-index: 0; } .framer-RBU0G .framer-1c07wuw { height: min-content; order: 4; padding: 60px; } .framer-RBU0G .framer-cq3pnj { height: 48px; } .framer-RBU0G .framer-11lzag9-container { width: 157px; } .framer-RBU0G .framer-1rejewg { order: 5; } .framer-RBU0G .framer-bidm8z { flex-direction: column; height: min-content; order: 6; padding: 0px 60px 0px 60px; } .framer-RBU0G .framer-nku2ej { height: 263px; } .framer-RBU0G .framer-d3h28k { height: 127px; } .framer-RBU0G .framer-1vqy7o7 { height: 208px; width: 100%; } .framer-RBU0G .framer-cp79o4 { height: 209px; order: 0; width: 350px; } .framer-RBU0G .framer-m3eiu { height: 179px; left: -30px; order: 1; right: -34px; top: calc(52.40384615384618% - 179px / 2); width: unset; } .framer-RBU0G .framer-1kn37fq { height: 91px; } .framer-RBU0G .framer-fgf8mb { height: 274px; } .framer-RBU0G .framer-1wxjw3u { height: 370px; order: 7; padding: 60px 0px 0px 0px; } .framer-RBU0G .framer-16mbcsm, .framer-RBU0G .framer-se2xz3 { order: 0; } .framer-RBU0G .framer-1rmnewd { order: 1; } .framer-RBU0G .framer-16ieq0m-container { height: 138px; order: 2; } .framer-RBU0G .framer-1x1hi97 { flex-direction: column; gap: 0px; height: 839px; justify-content: center; order: 8; padding: 100px 0px 100px 0px; } .framer-RBU0G .framer-p4rnwe-container { height: 293px; order: 0; width: 355px; } .framer-RBU0G .framer-1b5sccq { align-content: center; align-items: center; height: min-content; order: 1; } .framer-RBU0G .framer-ok3085 { order: 1; padding: 0px 20px 0px 20px; width: 288px; } .framer-RBU0G .framer-b1jvd8-container { height: 688px; order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RBU0G .framer-bidm8z, .framer-RBU0G .framer-1x1hi97 { gap: 0px; } .framer-RBU0G .framer-bidm8z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RBU0G .framer-bidm8z > :first-child, .framer-RBU0G .framer-1x1hi97 > :first-child { margin-top: 0px; } .framer-RBU0G .framer-bidm8z > :last-child, .framer-RBU0G .framer-1x1hi97 > :last-child { margin-bottom: 0px; } .framer-RBU0G .framer-1x1hi97 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-RBU0G { background: white; } .framer-RBU0G.framer-72rtr7 { width: 1200px; } .framer-RBU0G .framer-tmf1y1-container { order: 0; } .framer-RBU0G .framer-9d127j-container { order: 3; } .framer-RBU0G .framer-1c07wuw { order: 4; } .framer-RBU0G .framer-1rejewg { order: 5; } .framer-RBU0G .framer-bidm8z { align-content: center; align-items: center; height: min-content; order: 6; padding: 40px 0px 40px 0px; } .framer-RBU0G .framer-nku2ej { order: 0; width: 204px; } .framer-RBU0G .framer-d3h28k { height: 111px; width: 182px; } .framer-RBU0G .framer-1vqy7o7 { height: min-content; order: 1; width: min-content; } .framer-RBU0G .framer-cp79o4 { align-content: center; align-items: center; height: 404px; order: 0; width: 683px; } .framer-RBU0G .framer-m3eiu { align-content: center; align-items: center; height: 367px; left: calc(51.68374816983897% - 655px / 2); order: 1; right: unset; top: calc(52.4752475247525% - 367px / 2); width: 655px; } .framer-RBU0G .framer-jkxr7u { order: 2; width: 213px; } .framer-RBU0G .framer-1kn37fq { width: 209px; } .framer-RBU0G .framer-fgf8mb { width: 207px; } .framer-RBU0G .framer-1wxjw3u { order: 7; } .framer-RBU0G .framer-1x1hi97 { order: 8; } .framer-RBU0G .framer-p4rnwe-container { height: 478px; order: 0; } .framer-RBU0G .framer-1b5sccq { order: 1; } .framer-RBU0G .framer-b1jvd8-container { order: 9; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4112\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XHYXW_RoK\":{\"layout\":[\"fixed\",\"auto\"]},\"uuFtFqmsl\":{\"layout\":[\"fixed\",\"auto\"]},\"m5nJzcSQ0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-RBU0G\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4112,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\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\",weight:\"400\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1VU80V4bVkA.woff2\",weight:\"700\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1VU80V4bVkA.woff2\",weight:\"600\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1VU80V4bVkA.woff2\",weight:\"500\"}]},...NavbarLogoDarkFonts,...SpinnerFonts,...VideoFonts,...ButtonFonts,...TickerFonts,...InstagramFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4112\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XHYXW_RoK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uuFtFqmsl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m5nJzcSQ0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "instagramRegex", "Instagram", "url", "style", "props", "id1", "se", "ref", "id", "p", "motion", "containerStyles", "u", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "murmur2", "a", "e", "Arc", "withCSS", "props", "hasChildren", "j", "isCanvas", "RenderTarget", "showCustomPath", "isCircle", "cylinder", "path", "createPath", "childPath", "viewBox", "firstChild", "getFirstChild", "svgChild", "svgChildCanvas", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "svgString", "Gn", "canvasFrame", "attributes", "element", "splitAndReplace", "attributes1", "element1", "id", "murmur2", "alignmentValue", "motion", "Arc_default", "addPropertyControls", "ControlType", "type", "rotate", "slots", "child", "string", "flip", "cylinderTop", "cylinderBottom", "ArcFonts", "getFonts", "Arc_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "izmEZQCi1", "F3iC84t7K", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "Link", "Image2", "css", "FramerGC7ukbyfY", "withCSS", "GC7ukbyfY_default", "addPropertyControls", "ControlType", "addFonts", "NavbarLogoDarkFonts", "getFonts", "antkdCNVn_default", "SpinnerFonts", "GC7ukbyfY_default", "VideoFonts", "Video", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "mG37vfN0L_default", "ContainerWithFX", "Container", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "InstagramFonts", "Instagram", "FooterFonts", "DLc8ExRUW_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
