{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/7a0vgWW2gFOrXpGXbmPG/NK70Sq1i0xrQ9RFc5FtJ/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import NavigationFinal from\"#framer/local/canvasComponent/B6_ezt9Lu/B6_ezt9Lu.js\";import ButtonDark from\"#framer/local/canvasComponent/HCCb1l0mR/HCCb1l0mR.js\";import Footer from\"#framer/local/canvasComponent/MITwRqKNg/MITwRqKNg.js\";import GetQuote from\"#framer/local/canvasComponent/spAAiyhsl/spAAiyhsl.js\";import ButtonLight from\"#framer/local/canvasComponent/x5Hf5yug_/x5Hf5yug_.js\";import*as sharedStyle from\"#framer/local/css/ikXvq7E51/ikXvq7E51.js\";import*as sharedStyle2 from\"#framer/local/css/nSA2kt8uQ/nSA2kt8uQ.js\";import*as sharedStyle1 from\"#framer/local/css/yChqLQPZm/yChqLQPZm.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const GetQuoteFonts=getFonts(GetQuote);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const ButtonDarkFonts=getFonts(ButtonDark);const YouTubeFonts=getFonts(YouTube);const ButtonLightFonts=getFonts(ButtonLight);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const NavigationFinalFonts=getFonts(NavigationFinal);const NavigationFinalWithVariantAppearEffect=withVariantAppearEffect(NavigationFinal);const breakpoints={WQLkyLRf1:\"(min-width: 1200px)\",XiKsBdaaX:\"(max-width: 809px)\",y6p7zTXUU:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-uj3Xt\";const variantClassNames={WQLkyLRf1:\"framer-v-72rtr7\",XiKsBdaaX:\"framer-v-1ofk9u9\",y6p7zTXUU:\"framer-v-1pmm2b6\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:50,delay:.4,mass:.1,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={delay:0,duration:2,ease:[.37,.39,.34,.98],type:\"tween\"};const transition4={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.2,duration:2,ease:[.37,.39,.34,.98],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition6={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:10};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition7={damping:60,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:150,y:0};const transition8={damping:60,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:150,y:0};const transition9={damping:75,delay:0,mass:1,stiffness:380,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-108};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"XiKsBdaaX\",Tablet:\"y6p7zTXUU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"gwcj86WRm\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"gl4abBrAT\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XiKsBdaaX\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XiKsBdaaX\")return true;return false;};const elementId2=useRouteElementId(\"JJI5wQWSd\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"RHBGJQJfI\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a6607921-185b-47da-bcb0-436038c43458, rgb(234, 227, 220)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"H8xMnSQkq\"},implicitPathVariables:undefined},{href:{webPageId:\"H8xMnSQkq\"},implicitPathVariables:undefined},{href:{webPageId:\"H8xMnSQkq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{y:929.9218009478675},y6p7zTXUU:{y:931.2777777777779}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:927.2500000000002,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2z6l7s-container\",layoutScroll:true,nodeId:\"lK7OJI8YD\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{apJ6VmmqT:resolvedLinks[1],variant:\"wYgq15Ci2\"},y6p7zTXUU:{apJ6VmmqT:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(GetQuote,{apJ6VmmqT:resolvedLinks[0],height:\"100%\",id:\"lK7OJI8YD\",layoutId:\"lK7OJI8YD\",variant:\"YVZo6xMZ1\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1397,pixelWidth:2497,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg\",srcSet:\"https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg 2497w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1397,pixelWidth:2497,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg\",srcSet:\"https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ArgeTYdWHAU20FBJvYhGWUQRCA.jpg 2497w\"},className:\"framer-dusbf\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7xj2ba-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zfczQZyBb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zfczQZyBb\",isMixedBorderRadius:false,layoutId:\"zfczQZyBb\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dfspf6bha/video/upload/f_auto:video,q_auto/vlqjbfmxto7zyhsqbdry\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-14br8lv\",\"data-framer-appear-id\":\"14br8lv\",\"data-framer-name\":\"Frame 4\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8ppup\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-321bo1\",\"data-framer-name\":\"Main\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:195,intrinsicWidth:301,svg:'<svg width=\"301\" height=\"195\" viewBox=\"0 0 301 195\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_10_87)\">\\n<path d=\"M141.891 119.812L142.126 119.979C139.773 122.111 137.539 123.803 135.431 125.059C135.253 125.148 134.984 125.183 134.625 125.159C134.266 125.138 134.043 125.094 133.951 125.027C133.256 124.488 132.876 123.558 132.808 122.235C132.719 121.068 133.369 119.297 134.76 116.917C135.992 114.788 137.417 112.443 139.032 109.886H136.711C136.463 109.82 136.474 109.718 136.744 109.584C139.794 107.902 142.395 106.231 144.549 104.571C144.683 104.46 144.786 104.449 144.853 104.538C144.875 104.584 144.864 104.64 144.818 104.705C144.616 105.042 144.268 105.592 143.775 106.355C143.282 107.117 142.902 107.711 142.632 108.136C143.438 108.136 144.24 108.121 145.038 108.086C145.833 108.054 146.426 108.026 146.819 108.002C147.213 107.98 147.443 107.98 147.51 108.002C147.621 108.026 147.56 108.199 147.324 108.525C147.089 108.849 146.791 109.175 146.433 109.501C146.074 109.825 145.794 109.988 145.592 109.988C145.546 109.988 145.368 109.984 145.053 109.97C144.74 109.96 144.251 109.949 143.59 109.938C142.928 109.927 142.239 109.92 141.522 109.92C139.525 113.084 138.023 115.607 137.013 117.491C135.913 119.464 135.398 120.968 135.466 121.998C135.509 122.873 135.835 123.401 136.441 123.58C136.889 123.423 137.726 122.923 138.949 122.082C140.17 121.242 141.153 120.485 141.891 119.812Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M149.125 123.612C150.133 123.906 151.413 123.736 152.96 123.108C153.923 122.615 154.955 121.079 156.055 118.499C157.154 115.92 157.658 113.758 157.569 112.006C157.435 110.438 156.839 109.473 155.785 109.112C154.731 108.821 153.845 108.767 153.128 108.945C151.826 109.753 150.466 111.468 149.041 114.092C147.617 116.717 146.994 119.151 147.174 121.391C147.532 122.628 148.182 123.367 149.125 123.612ZM158.208 118.399C157.041 120.507 154.99 122.369 152.052 123.984C150.438 124.881 149.225 125.329 148.419 125.329C147.611 125.329 146.844 125.072 146.113 124.555C145.386 124.04 144.897 123.41 144.651 122.671C144.492 122.065 144.397 121.494 144.364 120.955C144.332 120.418 144.464 119.61 144.768 118.534C145.07 117.456 145.592 116.291 146.333 115.035C146.961 113.912 147.869 112.78 149.058 111.637C150.246 110.494 151.424 109.597 152.589 108.945C154.093 108.138 155.416 107.734 156.559 107.734H156.594C157.335 107.734 158.034 107.997 158.695 108.525C159.358 109.051 159.812 109.686 160.057 110.427C160.149 110.918 160.209 111.496 160.244 112.158C160.277 112.819 160.12 113.727 159.773 114.883C159.425 116.039 158.903 117.211 158.208 118.399Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M205.802 119.812L206.037 119.979C203.684 122.111 201.45 123.803 199.342 125.059C199.164 125.148 198.895 125.183 198.536 125.159C198.178 125.138 197.954 125.094 197.862 125.027C197.167 124.488 196.787 123.558 196.719 122.235C196.63 121.068 197.28 119.297 198.671 116.917C199.903 114.788 201.328 112.443 202.943 109.886H200.622C200.374 109.82 200.385 109.718 200.655 109.584C203.705 107.902 206.306 106.231 208.46 104.571C208.595 104.46 208.697 104.449 208.764 104.538C208.786 104.584 208.773 104.64 208.729 104.705C208.527 105.042 208.179 105.592 207.686 106.355C207.193 107.117 206.813 107.711 206.543 108.136C207.349 108.136 208.151 108.121 208.949 108.086C209.744 108.054 210.337 108.026 210.731 108.002C211.124 107.98 211.354 107.98 211.422 108.002C211.532 108.026 211.472 108.199 211.235 108.525C211 108.849 210.702 109.175 210.344 109.501C209.985 109.825 209.705 109.988 209.503 109.988C209.457 109.988 209.279 109.984 208.964 109.97C208.651 109.96 208.162 109.949 207.502 109.938C206.839 109.927 206.15 109.92 205.433 109.92C203.436 113.084 201.934 115.607 200.924 117.491C199.824 119.464 199.309 120.968 199.377 121.998C199.42 122.873 199.746 123.401 200.353 123.58C200.8 123.423 201.637 122.923 202.86 122.082C204.081 121.242 205.064 120.485 205.802 119.812Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M224.777 107.868C225.316 107.981 225.696 108.227 225.92 108.607C226.144 108.989 226.218 109.522 226.14 110.206C226.061 110.891 225.785 111.771 225.316 112.846C224.845 113.924 224.171 115.191 223.297 116.647C223.139 116.918 222.898 117.331 222.574 117.892C222.248 118.455 222.007 118.881 221.85 119.172C221.694 119.463 221.513 119.817 221.311 120.232C221.109 120.647 220.964 120.999 220.875 121.29C220.785 121.582 220.751 121.851 220.775 122.099C220.818 122.816 221.144 123.266 221.748 123.444C222.309 123.242 222.993 122.872 223.801 122.333C224.61 121.795 225.316 121.212 225.92 120.584L226.122 120.821C224.327 122.57 222.556 123.97 220.807 125.026C220.627 125.115 220.353 125.148 219.984 125.126C219.612 125.104 219.384 125.058 219.293 124.991C218.912 124.7 218.608 124.285 218.384 123.746C218.16 123.209 218.037 122.738 218.015 122.334C217.993 122.064 218.043 121.745 218.167 121.375C218.289 121.006 218.473 120.584 218.721 120.113C218.967 119.641 219.203 119.215 219.427 118.835C219.651 118.455 219.938 117.977 220.286 117.405C220.633 116.834 220.885 116.412 221.042 116.143C221.939 114.596 222.574 113.346 222.943 112.392C223.312 111.441 223.482 110.763 223.447 110.356C223.415 109.954 223.252 109.617 222.96 109.348C221.794 109.617 220.027 110.791 217.661 112.864C215.294 114.939 213.226 117.277 211.455 119.878C211.005 120.552 210.429 121.516 209.723 122.77C209.017 124.028 208.63 124.722 208.562 124.856C208.495 124.856 208.371 124.867 208.191 124.891C208.01 124.913 207.861 124.924 207.737 124.924H207.3C207.133 124.924 206.998 124.891 206.896 124.824C206.796 124.756 206.7 124.672 206.611 124.572C206.52 124.469 206.481 124.33 206.492 124.15C206.505 123.97 206.565 123.746 206.678 123.479C207.239 122.581 208.993 119.491 211.944 114.209C214.892 108.926 216.635 105.86 217.174 105.008C217.824 103.931 218.704 102.844 219.814 101.745C220.924 100.645 222.226 99.587 223.717 98.5657C225.209 97.5444 226.935 96.7143 228.897 96.0755C230.859 95.4367 232.852 95.1172 234.868 95.1172C236.798 95.1172 238.099 95.1737 238.773 95.2845C239.264 95.354 239.321 95.7452 238.94 96.4644C238.582 97.1358 238.188 97.5183 237.763 97.6074C237.717 97.6291 237.673 97.64 237.628 97.64C237 97.64 235.727 97.5444 233.81 97.3553C231.891 97.1641 230.34 97.0685 229.151 97.0685C228.23 97.0685 227.467 97.1424 226.863 97.288C226.257 97.4336 225.572 97.7704 224.81 98.2963C224.047 98.8243 223.258 99.6305 222.439 100.719C221.62 101.808 220.683 103.259 219.629 105.076C219.136 105.884 216.737 110.167 212.43 117.927C214.382 115.528 216.646 113.296 219.225 111.232C221.804 109.17 223.656 108.046 224.777 107.868Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M240.992 112.24C241.373 111.232 241.081 110.356 240.117 109.618C239.152 108.877 238.154 108.675 237.122 109.011C236.001 109.774 234.791 111.204 233.489 113.301C232.19 115.398 231.405 117.466 231.136 119.509C234.723 117.377 237.196 115.83 238.552 114.865C239.91 113.9 240.723 113.027 240.992 112.24ZM243.65 109.416C243.83 110.515 242.972 111.849 241.077 113.418C239.18 114.989 235.855 117.13 231.101 119.844C231.079 120.383 231.079 120.898 231.101 121.391C231.459 122.625 232.111 123.366 233.052 123.612C234.106 123.905 235.451 123.679 237.09 122.94C237.583 122.716 238.272 122.249 239.158 121.543C240.045 120.837 240.734 120.17 241.227 119.542L241.531 119.711C240.184 121.323 238.446 122.716 236.316 123.881C234.589 124.846 233.141 125.328 231.977 125.328C231.303 125.328 230.632 125.072 229.958 124.555C229.284 124.04 228.826 123.41 228.578 122.671C228.422 122.064 228.326 121.493 228.291 120.954C228.259 120.415 228.393 119.609 228.696 118.531C229 117.456 229.521 116.291 230.26 115.033C230.866 113.936 231.757 112.829 232.935 111.719C234.113 110.609 235.295 109.718 236.483 109.046C237.987 108.238 239.378 107.834 240.655 107.834C241.464 107.834 242.142 107.969 242.691 108.238C243.241 108.508 243.561 108.901 243.65 109.416Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M0.8645 93.1555C7.5522 93.1555 8.5905 92.3488 9.5117 77.8206C10.0894 69.8656 9.9723 54.5281 9.9723 43.9214C9.9723 15.5546 8.934 15.094 3.2846 15.094H1.2106C0.2868 15.094 0.2868 14.0557 1.2106 14.0557C4.4399 14.0557 12.2779 14.4044 14.0084 14.4044C15.6243 14.4044 50.4447 14.0557 54.5953 14.0557C56.6719 14.0557 59.3235 14.1728 60.0157 14.5189C60.5908 14.8624 61.6291 23.2806 63.3596 35.7348L63.8202 39.8853C64.0518 40.692 62.899 40.5775 62.6674 39.8853L62.0923 35.7348C59.9012 22.82 50.9054 15.5546 37.7615 15.4401H23.1188C17.8129 15.4401 18.7367 15.5546 18.7367 43.9214V51.8764H28.3077C42.7189 51.8764 45.8337 46.5731 45.8337 38.6155V36.1954C45.8337 35.2716 46.9865 35.2716 46.9865 36.1954C46.9865 39.5393 46.4088 50.8407 46.4088 52.5686C46.4088 54.1845 46.9865 66.6362 46.9865 68.3641C46.9865 69.2879 45.8337 69.2879 45.8337 68.3641V66.6362C45.8337 58.6812 42.7189 53.2608 28.3077 53.2608H18.7367V75.4005C18.7367 84.2767 18.2761 90.3893 17.8129 92.3488C21.1568 92.3488 36.0311 92.6949 39.6065 92.6949C52.9819 92.6949 62.4384 81.1644 63.9347 69.405L64.6269 63.2924C64.744 62.6002 66.0113 62.6002 65.8968 63.4069L65.2046 69.634C63.128 88.4298 62.4384 92.8094 61.6292 93.5016C61.1686 93.9648 54.2493 93.9648 46.2943 93.9648C38.2222 93.9648 17.1233 93.6162 17.1233 93.6162L0.8646 93.9648C-0.2882 93.9648 -0.2883 93.1555 0.8645 93.1555Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M75.4845 92.9254C80.4418 92.9254 80.6733 91.5436 80.6733 80.2421V15.4415C80.6733 5.52438 79.0599 5.40989 73.2934 6.44819C72.3722 6.56269 72.3722 5.52439 73.2934 5.40989C79.0599 4.37159 83.325 2.41209 87.2465 0.221085C87.5926 -0.0105147 89.3205 0.452685 89.3205 1.02779V80.2421C89.3205 92.2332 89.7811 92.9254 96.1253 92.9254C97.0465 92.9254 97.0465 93.9637 96.1253 93.9637C92.7814 93.9637 88.2848 93.7347 86.5543 93.7347C84.8238 93.7347 78.8283 93.9637 75.4845 93.9637C74.5607 93.9637 74.5607 92.9254 75.4845 92.9254Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M151.241 66.1741C151.241 51.7604 143.515 36.311 130.831 36.311C117.341 36.311 111.346 47.4954 111.346 64.3292C111.346 78.5139 118.955 93.8488 132.33 93.8488C144.553 93.8488 151.241 83.2395 151.241 66.1741ZM101.775 66.2912C101.775 49.6864 114.458 35.1582 132.216 35.1582C148.472 35.1582 160.58 46.5741 160.58 64.3292C160.58 79.2061 147.782 95.1161 130.371 95.1161C114.112 95.1161 101.775 83.7027 101.775 66.2912Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M181.221 48.6486V81.9701C185.372 86.3548 192.177 92.5793 200.249 92.5793C212.701 92.5793 219.849 83.3544 219.849 66.4061C219.849 52.9136 212.701 38.9631 198.404 38.9631C192.06 38.9631 185.143 42.653 181.221 48.6486ZM181.107 90.7344V124.287H189.294C190.217 124.287 190.217 125.328 189.294 125.328C188.37 125.328 179.262 125.097 177.417 125.097C175.689 125.097 167.5 125.328 164.159 125.328C163.235 125.328 163.235 124.287 164.159 124.287C171.999 124.287 172.691 123.366 172.691 110.797V49.9184C172.691 40.0013 170.383 41.0371 164.619 42.0753C163.695 42.1898 163.695 41.1541 164.619 41.037C170.498 40.3474 175.226 36.8865 179.147 34.6979C179.494 34.4663 181.221 34.9269 181.221 35.5021V47.2667C186.756 39.7697 195.289 35.1586 204.053 35.1586C217.197 35.1586 228.382 46.343 228.382 62.2556C228.382 81.2779 212.008 95.1165 195.406 95.1165C189.525 95.1165 184.682 93.0399 181.107 90.7344Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M244.282 53.3758C257.312 53.3758 265.038 52.9152 272.532 52.9152C274.145 52.9152 276.797 52.223 277.143 51.8769C277.835 51.0727 278.182 49.6884 278.182 48.1869C278.182 43.8073 273.799 37.6947 264.921 37.6947C255.006 37.6947 247.166 42.8836 244.282 53.3758ZM236.096 67.4434C236.096 50.149 252.24 35.1602 268.15 35.1602C284.755 35.1602 288.905 45.4208 288.213 50.7241C287.984 52.6836 286.946 54.2995 283.37 54.2995H244.051C243.359 56.9512 243.015 59.9489 243.015 63.1757C243.015 77.3604 255.352 88.4302 270.916 88.4302C284.986 88.4302 293.517 79.7804 299.861 66.0615C300.436 64.6771 301.243 65.0232 300.667 66.2931C296.86 75.1693 290.75 84.1652 282.447 89.6976C277.375 93.0415 271.608 95.118 265.038 95.118C247.395 95.118 236.096 83.356 236.096 67.4434Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M0 153.835C0 129.735 20.4092 112.67 44.1623 112.67C53.8478 112.67 66.6455 114.978 72.8727 117.744L74.2571 142.882C74.2571 143.571 73.3333 143.571 73.2188 142.882C72.295 133.657 69.5289 126.391 64.8006 121.434C60.0724 116.474 53.3847 113.823 44.3914 113.823C23.6361 113.823 10.3777 130.081 10.3777 153.835C10.3777 177.471 22.4858 193.732 43.4702 193.732C53.1557 193.732 60.1895 190.617 65.0322 185.311C69.9895 179.893 72.6411 172.167 73.5649 162.942C73.5649 162.482 74.4861 162.482 74.4861 162.942L73.1043 189.81C66.8772 192.577 56.1534 194.885 43.6992 194.885C18.9104 194.885 0 177.471 0 153.835Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M133.397 165.941C133.397 151.527 125.671 136.078 112.988 136.078C99.4982 136.078 93.5026 147.262 93.5026 164.096C93.5026 178.281 101.112 193.616 114.487 193.616C126.71 193.616 133.397 183.006 133.397 165.941ZM83.9316 166.058C83.9316 149.453 96.6149 134.925 114.372 134.925C130.629 134.925 142.737 146.341 142.737 164.096C142.737 178.973 129.939 194.883 112.528 194.883C96.2688 194.883 83.9316 183.469 83.9316 166.058Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M170.643 189.925C178.601 189.925 186.673 179.316 187.711 175.512C187.825 174.013 188.518 167.439 188.518 157.986V155.563L179.061 159.599C162.113 166.747 158.077 170.208 158.077 178.741C158.077 184.968 163.612 189.925 170.643 189.925ZM150.005 182.085C150.005 174.359 157.499 166.747 178.83 158.449L188.518 154.642C187.94 140.228 184.25 135.963 176.064 135.963C172.72 135.963 170.297 136.884 168.338 138.383C164.419 141.381 162.92 146.224 161.189 148.761C160.151 150.26 159.115 150.837 156 150.837C153.234 150.837 151.389 149.799 151.389 148.183C151.389 146.801 152.542 144.61 155.425 142.765C160.036 139.768 169.722 134.925 177.908 134.925C189.207 134.925 197.279 140.806 197.279 155.912C197.279 163.635 196.358 176.665 196.358 181.161C196.358 187.734 197.165 190.964 199.585 190.964C201.662 190.964 204.545 186.928 205.812 184.619C206.39 183.701 207.772 184.619 207.197 185.543C205.352 188.197 198.203 194.883 193.704 194.883C189.324 194.883 187.133 191.885 187.133 186.696C187.133 183.93 187.365 180.357 187.594 177.932C185.171 183.009 174.565 195 164.994 195C155.654 195 150.005 189.119 150.005 182.085Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M212.978 190.732C212.4 190.618 212.168 190.157 212.168 189.119C212.168 187.388 212.861 184.851 212.861 168.592C212.861 167.557 213.784 167.557 213.784 168.592C213.784 177.357 215.283 184.044 219.088 188.198C222.432 191.999 227.62 193.844 235.232 193.844C246.416 193.844 250.221 188.656 250.221 182.317C250.221 174.359 241.227 171.361 231.888 168.249C222.2 165.02 212.4 161.33 212.4 152.105C212.4 140.228 224.162 134.925 233.733 134.925C243.187 134.925 246.302 135.849 252.99 136.884C253.682 136.999 253.794 137.348 253.794 137.808C253.794 141.496 253.219 153.95 253.219 157.986C253.219 158.907 252.297 158.907 252.297 157.986C252.297 151.527 251.257 146.341 248.837 142.536C245.953 138.154 241.113 135.849 233.848 135.849C224.394 135.849 217.935 139.885 217.935 145.88C217.935 153.721 226.928 156.716 236.153 159.945C245.839 163.289 255.87 166.865 255.87 177.128C255.87 187.391 246.877 194.883 235.232 194.883C223.353 194.883 217.589 191.999 212.978 190.732Z\" fill=\"#EAE3DB\"/>\\n<path d=\"M268.685 178.971V142.418H262.343C262.229 142.418 262.114 142.075 262.343 141.843L277.103 124.895C277.335 124.663 277.564 124.546 277.564 125.009V136.194C281.022 136.194 289.326 136.194 293.13 136.079C296.935 135.962 297.166 136.079 297.166 136.308C297.166 137 295.089 139.306 291.514 142.535C290.593 142.535 281.253 142.418 277.334 142.418V178.625C277.334 186.926 279.986 191.309 284.829 191.309C289.44 191.309 293.937 187.043 296.588 179.317C296.934 178.394 298.55 179.086 298.087 180.01C294.397 187.504 287.71 194.884 279.755 194.884C272.029 194.884 268.685 190.039 268.685 178.971Z\" fill=\"#EAE3DB\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_10_87\">\\n<rect width=\"300.865\" height=\"194.839\" fill=\"white\" transform=\"translate(0 0.160156)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",children:\"Beach & Garden Weddings On The Gold Coast\"})}),className:\"framer-13vxrm4\",\"data-framer-name\":\"Beach & Garden Weddings On The Gold Coast\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+773.5+0+66.5),pixelHeight:2e3,pixelWidth:2e3,sizes:\"100px\",src:\"https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+736.5+0+3.5),pixelHeight:2e3,pixelWidth:2e3,sizes:\"180px\",src:\"https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5GlgkUMp9XcsaKf5wY5RThTLvRk.png 2000w\"},className:\"framer-sgfpra\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kb8lf8\",\"data-framer-name\":\"Intro\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBSZWd1bGFy\",\"--framer-font-family\":'\"Ogg Regular\", \"Ogg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"16.207462605296904px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"Elope for your perfect wedding on Queensland's stunning Gold Coast.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"Make your dream wedding a reality.\"})]})}),fonts:[\"CUSTOM;Ogg Regular\"],viewBox:undefined},y6p7zTXUU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBSZWd1bGFy\",\"--framer-font-family\":'\"Ogg Regular\", \"Ogg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"35.13786181967137px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:\"Elope for your \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBJdGFsaWM=\",\"--framer-font-family\":'\"Ogg Italic\", \"Ogg Italic Placeholder\", sans-serif',\"--framer-font-size\":\"35.146699463156615px\"},children:\"perfect wedding\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:\"on Queensland's stunning Gold Coast.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:\"Make your dream wedding \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBJdGFsaWM=\",\"--framer-font-family\":'\"Ogg Italic\", \"Ogg Italic Placeholder\", sans-serif',\"--framer-font-size\":\"35.146699463156615px\"},children:\"a reality\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35.146699463156615px\"},children:\".\"})]})}),viewBox:\"0 0 584 131\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBSZWd1bGFy\",\"--framer-font-family\":'\"Ogg Regular\", \"Ogg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"53.91435589170022px\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[\"Elope for your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBJdGFsaWM=\",\"--framer-font-family\":'\"Ogg Italic\", \"Ogg Italic Placeholder\", sans-serif'},children:\"perfect wedding\"}),/*#__PURE__*/_jsx(\"br\",{}),\"on Queensland's stunning Gold Coast.\",/*#__PURE__*/_jsx(\"br\",{}),\"Make your dream wedding \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO09nZyBJdGFsaWM=\",\"--framer-font-family\":'\"Ogg Italic\", \"Ogg Italic Placeholder\", sans-serif'},children:\"a reality\"}),\".\"]})}),className:\"framer-op24az\",fonts:[\"CUSTOM;Ogg Regular\",\"CUSTOM;Ogg Italic\"],verticalAlignment:\"top\",viewBox:\"0 0 896.07 198\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{y:(componentViewport?.y||0)+0+1e3+200+163}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-157spmx-container\",nodeId:\"p1CpKaD21\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonDark,{F3v2NqccU:\"Read our reviews\",height:\"100%\",id:\"p1CpKaD21\",layoutId:\"p1CpKaD21\",oblwfEyyH:\"#reviews\",variant:\"nXjLZ6OmB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-90c8td\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtkcnr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q8k2xh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tiSQlAGkF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"tiSQlAGkF\",isMixedBorderRadius:false,isRed:false,layoutId:\"tiSQlAGkF\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://www.youtube.com/watch?v=hr_39gvSUe0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gbry6u\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asjtbp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-62bv5c\",\"data-styles-preset\":\"yChqLQPZm\",children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[\"Affordable Elopement\",/*#__PURE__*/_jsx(\"br\",{}),\"Packages\"]})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-62bv5c\",\"data-styles-preset\":\"yChqLQPZm\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Affordable\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[\"Elopement\",/*#__PURE__*/_jsx(\"br\",{}),\"Packages\"]})]})}),className:\"framer-13lqugo\",\"data-framer-name\":\"Affordable Elopement Packages\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"doCM_VZjQ\"},implicitPathVariables:undefined},{href:{webPageId:\"doCM_VZjQ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y6p7zTXUU:{y:(componentViewport?.y||0)+0+2250+100+0+80.19999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+2450+100+0+80.19999999999999,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9aeo0w-container hidden-1ofk9u9\",nodeId:\"lF_royfy0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y6p7zTXUU:{pE2Yy1SY5:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonLight,{CH5Ujnx8Q:\"See our packages\",height:\"100%\",id:\"lF_royfy0\",layoutId:\"lF_royfy0\",pE2Yy1SY5:resolvedLinks1[0],variant:\"CNlz7OKj8\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4niunt\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1siz45k\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Accommodation\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"and transfers\"})]})}),className:\"framer-1nyi5z0\",\"data-framer-name\":\"Accommodation and transfers\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Enjoy your stay in our luxurious seaside apartments, offering stunning ocean views and top-notch amenities. Experience hassle-free transportation with our convenient transfer services, ensuring a seamless and relaxing journey for you and your partner.\"})}),className:\"framer-12xo4en\",\"data-framer-name\":\"Enjoy seaside rooms and experience smooth and hassle-free transportation.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7hbkmn\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Hair and\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Make-Up\"})]})}),className:\"framer-zzm0p4\",\"data-framer-name\":\"Accommodation and transfers\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Our professional hair and make-up services cater to brides, bridesmaids, and mothers. Enjoy a stress-free experience with our mobile team, who will come to your location to create stunning, personalised looks for everyone in your bridal party.\"})}),className:\"framer-xo4yv2\",\"data-framer-name\":\"Enjoy seaside rooms and experience smooth and hassle-free transportation.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gym2l8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Witnesses, ministers\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"and celebrants\"})]})}),className:\"framer-15hhvy3\",\"data-framer-name\":\"Accommodation and transfers\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pwohz1\",\"data-styles-preset\":\"ikXvq7E51\",style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Our comprehensive services include providing legal witnesses, experienced ministers, and professional celebrants to officiate your ceremony. Trust us to handle every detail and ensure your wedding day runs smoothly and seamlessly.\"})}),className:\"framer-42ids3\",\"data-framer-name\":\"Enjoy seaside rooms and experience smooth and hassle-free transportation.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"doCM_VZjQ\"},implicitPathVariables:undefined},{href:{webPageId:\"doCM_VZjQ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{height:41,y:(componentViewport?.y||0)+0+1910+100+390.70000000000005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a1713b-container hidden-72rtr7 hidden-1pmm2b6\",nodeId:\"W4Xhsvo0Q\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{pE2Yy1SY5:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonLight,{CH5Ujnx8Q:\"See our packages\",height:\"100%\",id:\"W4Xhsvo0Q\",layoutId:\"W4Xhsvo0Q\",pE2Yy1SY5:resolvedLinks2[0],variant:\"CNlz7OKj8\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82u9oe\",\"data-framer-name\":\"Wireframe - 6\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pr0xz5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rp4dIGag1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:1,fadeWidth:28,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"Rp4dIGag1\",layoutId:\"Rp4dIGag1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/bgQWNMrWaJWoSzMooBCyeaFBD6U.jpg\",srcSet:\"https://framerusercontent.com/images/bgQWNMrWaJWoSzMooBCyeaFBD6U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bgQWNMrWaJWoSzMooBCyeaFBD6U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bgQWNMrWaJWoSzMooBCyeaFBD6U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bgQWNMrWaJWoSzMooBCyeaFBD6U.jpg 2250w\"},className:\"framer-m5y9nz\",\"data-framer-name\":\"Elope_to_the_Coast_10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/Kt4X5aoeA8uSxC0L3I51xgapy0.jpg\",srcSet:\"https://framerusercontent.com/images/Kt4X5aoeA8uSxC0L3I51xgapy0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Kt4X5aoeA8uSxC0L3I51xgapy0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kt4X5aoeA8uSxC0L3I51xgapy0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kt4X5aoeA8uSxC0L3I51xgapy0.jpg 2250w\"},className:\"framer-1oo67fi\",\"data-framer-name\":\"Elope_to_the_Coast_22\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/IkYzUJeqipaCbOulSLGEkmgXMnY.jpg\",srcSet:\"https://framerusercontent.com/images/IkYzUJeqipaCbOulSLGEkmgXMnY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IkYzUJeqipaCbOulSLGEkmgXMnY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IkYzUJeqipaCbOulSLGEkmgXMnY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IkYzUJeqipaCbOulSLGEkmgXMnY.jpg 2250w\"},className:\"framer-cyjn60\",\"data-framer-name\":\"Elope_to_the_Coast_24\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/o82EUGyP5fXi9ZOFmmLWDI967Ak.jpg\",srcSet:\"https://framerusercontent.com/images/o82EUGyP5fXi9ZOFmmLWDI967Ak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o82EUGyP5fXi9ZOFmmLWDI967Ak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o82EUGyP5fXi9ZOFmmLWDI967Ak.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/o82EUGyP5fXi9ZOFmmLWDI967Ak.jpg 2250w\"},className:\"framer-6hhes0\",\"data-framer-name\":\"Elope_to_the_Coast_17\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/AfhnhAAulIsz4MsBQZTLG5EESzE.jpg\",srcSet:\"https://framerusercontent.com/images/AfhnhAAulIsz4MsBQZTLG5EESzE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AfhnhAAulIsz4MsBQZTLG5EESzE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AfhnhAAulIsz4MsBQZTLG5EESzE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AfhnhAAulIsz4MsBQZTLG5EESzE.jpg 2250w\"},className:\"framer-14jobrv\",\"data-framer-name\":\"Elope_to_the_Coast_4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/t3pnull4ddmEpovNkzwtizoDvg.jpg\",srcSet:\"https://framerusercontent.com/images/t3pnull4ddmEpovNkzwtizoDvg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t3pnull4ddmEpovNkzwtizoDvg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3pnull4ddmEpovNkzwtizoDvg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t3pnull4ddmEpovNkzwtizoDvg.jpg 2250w\"},className:\"framer-l9z9og\",\"data-framer-name\":\"Elope_to_the_Coast_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/Cz3s2AxSDnA5QKNp5f1txKQa5o.jpg\",srcSet:\"https://framerusercontent.com/images/Cz3s2AxSDnA5QKNp5f1txKQa5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Cz3s2AxSDnA5QKNp5f1txKQa5o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Cz3s2AxSDnA5QKNp5f1txKQa5o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Cz3s2AxSDnA5QKNp5f1txKQa5o.jpg 2250w\"},className:\"framer-2n89if\",\"data-framer-name\":\"Elope_to_the_Coast_21\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/sklUl8AiragqeiyevUExLMtiuc.jpg\",srcSet:\"https://framerusercontent.com/images/sklUl8AiragqeiyevUExLMtiuc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sklUl8AiragqeiyevUExLMtiuc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sklUl8AiragqeiyevUExLMtiuc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sklUl8AiragqeiyevUExLMtiuc.jpg 2250w\"},className:\"framer-1hhvqfc\",\"data-framer-name\":\"Elope_to_the_Coast_11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2250,pixelHeight:1500,pixelWidth:2250,sizes:\"466.5px\",src:\"https://framerusercontent.com/images/UhnlUKO8Jve6c6wDcwnj0Qr3Y.jpg\",srcSet:\"https://framerusercontent.com/images/UhnlUKO8Jve6c6wDcwnj0Qr3Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UhnlUKO8Jve6c6wDcwnj0Qr3Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhnlUKO8Jve6c6wDcwnj0Qr3Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UhnlUKO8Jve6c6wDcwnj0Qr3Y.jpg 2250w\"},className:\"framer-1q51hdb\",\"data-framer-name\":\"Elope_to_the_Coast_13\"})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fov2h1\",\"data-framer-name\":\"Frame 6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-62bv5c\",\"data-styles-preset\":\"yChqLQPZm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:[\"Your wedding, your style,\",/*#__PURE__*/_jsx(\"br\",{}),\"your budget\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-62bv5c\",\"data-styles-preset\":\"yChqLQPZm\",style:{\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:\"Your wedding, your style, your budget\"})}),className:\"framer-1k1fgz7\",\"data-framer-name\":\"Weddings On A Budget\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vkucre\",\"data-styles-preset\":\"nSA2kt8uQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, rgb(126, 138, 149))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We make your elopement on the Gold Coast as memorable as your love story. We make your elopement about what really matters \\xad-- you. Your wedding should be your dream, your style, and your budget. We aim to take the stress out of the equation to make sure your special day is perfect. No-one knows weddings on the Gold Coast like we do. We\u2019re here to celebrate you. Call us now to book or get a free quote.\"})})}),className:\"framer-tg46so\",\"data-framer-name\":\"Weddings on a budget should not hinder couples who want to be together.\\xa0Walk with your partner, take off your shoes and stroll the shore. No worries. We will make your beach weddings at the Gold Coast as memorable as your love story. We are happy to be part of your celebration. Call us now or get a free quote today!\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yIhO38Fea\"},implicitPathVariables:undefined},{href:{webPageId:\"yIhO38Fea\"},implicitPathVariables:undefined},{href:{webPageId:\"yIhO38Fea\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{y:(componentViewport?.y||0)+0+2501.7+60+330+0+215.2},y6p7zTXUU:{y:(componentViewport?.y||0)+0+2705.5+100+500+0+215.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+2905.5+100+500+0+215.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nqx923-container\",nodeId:\"dKBGAlFW4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{pE2Yy1SY5:resolvedLinks3[1]},y6p7zTXUU:{pE2Yy1SY5:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonLight,{CH5Ujnx8Q:\"Contact us\",height:\"100%\",id:\"dKBGAlFW4\",layoutId:\"dKBGAlFW4\",pE2Yy1SY5:resolvedLinks3[0],variant:\"CNlz7OKj8\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-115ohmh\",\"data-framer-name\":\"Reviews\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iewkss-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kWAu9daw2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div data-romw-token=\"HyjGIXkeSiMUoIgG0HeAsaPMCtOLuj4Pp2aYbnTtZ0dYnBojfE\"></div><script src=\"https://reviewsonmywebsite.com/js/v2/embed.js?id=7bf8acda5d5930b1a9db343a4ec1b31c\" type=\"text/javascript\"></script>',id:\"kWAu9daw2\",layoutId:\"kWAu9daw2\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{y:(componentViewport?.y||0)+0+3757.8999999999996},y6p7zTXUU:{y:(componentViewport?.y||0)+0+4311.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:266,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4511.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1677i1b-container\",nodeId:\"dLAWHoDbQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{variant:\"u15lfvhkF\"},y6p7zTXUU:{variant:\"gLVB47Ezx\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dLAWHoDbQ\",layoutId:\"dLAWHoDbQ\",style:{width:\"100%\"},variant:\"srawmyQha\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation10},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ptbrh5-container\",layoutScroll:true,nodeId:\"KgpNPN8Vz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XiKsBdaaX:{__framer__targets:[{ref:ref2,target:\"SDhg1ycEO\"},{offset:100,ref:ref1,target:\"SRWmG7gaw\"}],variant:\"SDhg1ycEO\"},y6p7zTXUU:{__framer__targets:[{ref:ref2,target:\"mXNcg1XRC\"},{offset:100,ref:ref1,target:\"rusq8MYLj\"}],variant:\"mXNcg1XRC\"}},children:/*#__PURE__*/_jsx(NavigationFinalWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"ZhHldPozM\"},{offset:100,ref:ref1,target:\"kzdZmyxAX\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"KgpNPN8Vz\",layoutId:\"KgpNPN8Vz\",style:{width:\"100%\"},variant:\"kzdZmyxAX\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uj3Xt.framer-lux5qc, .framer-uj3Xt .framer-lux5qc { display: block; }\",\".framer-uj3Xt.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-a6607921-185b-47da-bcb0-436038c43458, #eae3dc); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-uj3Xt .framer-2z6l7s-container { flex: none; height: auto; left: 93%; position: fixed; top: 95%; transform: translate(-50%, -50%); width: auto; z-index: 5; }\",\".framer-uj3Xt .framer-dusbf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-uj3Xt .framer-7xj2ba-container { flex: none; height: 100vh; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-uj3Xt .framer-14br8lv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uj3Xt .framer-1q8ppup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-uj3Xt .framer-321bo1 { flex: none; height: 145px; position: relative; width: 224px; }\",\".framer-uj3Xt .framer-13vxrm4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 519px; word-break: break-word; word-wrap: break-word; }\",\".framer-uj3Xt .framer-sgfpra { -webkit-filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.25)); aspect-ratio: 1 / 1; filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: visible; position: relative; width: 180px; }\",\".framer-uj3Xt .framer-1kb8lf8 { align-content: center; align-items: center; background-color: var(--token-a6607921-185b-47da-bcb0-436038c43458, #eae3dc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 110.00000000000001vh; justify-content: center; overflow: visible; padding: 200px 40px 200px 40px; position: relative; scroll-margin-top: 100px; width: 100%; z-index: 0; }\",\".framer-uj3Xt .framer-op24az { flex: none; height: auto; max-width: 900px; position: relative; white-space: pre; width: 80%; }\",\".framer-uj3Xt .framer-157spmx-container, .framer-uj3Xt .framer-9aeo0w-container, .framer-uj3Xt .framer-1a1713b-container, .framer-uj3Xt .framer-1nqx923-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uj3Xt .framer-90c8td { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-vtkcnr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-uj3Xt .framer-1q8k2xh-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 567px); position: relative; width: 90%; }\",\".framer-uj3Xt .framer-gbry6u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-asjtbp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 222px; }\",\".framer-uj3Xt .framer-13lqugo, .framer-uj3Xt .framer-1k1fgz7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uj3Xt .framer-4niunt { 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: 60%; }\",\".framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8 { --border-bottom-width: 0px; --border-color: var(--token-60f9122a-03a3-4c90-85a2-00dc5721c997, #7e8a95); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-1nyi5z0, .framer-uj3Xt .framer-zzm0p4, .framer-uj3Xt .framer-15hhvy3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\".framer-uj3Xt .framer-12xo4en, .framer-uj3Xt .framer-xo4yv2, .framer-uj3Xt .framer-42ids3 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uj3Xt .framer-82u9oe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-uj3Xt .framer-1pr0xz5-container { flex: none; height: 350px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-m5y9nz, .framer-uj3Xt .framer-1oo67fi, .framer-uj3Xt .framer-cyjn60, .framer-uj3Xt .framer-6hhes0, .framer-uj3Xt .framer-14jobrv, .framer-uj3Xt .framer-l9z9og, .framer-uj3Xt .framer-2n89if, .framer-uj3Xt .framer-1hhvqfc, .framer-uj3Xt .framer-1q51hdb { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 311px); overflow: visible; position: relative; width: 466px; }\",\".framer-uj3Xt .framer-1fov2h1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-tg46so { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 75%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uj3Xt .framer-115ohmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-uj3Xt .framer-1iewkss-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-uj3Xt .framer-1677i1b-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-uj3Xt .framer-1ptbrh5-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uj3Xt.framer-72rtr7, .framer-uj3Xt .framer-dusbf, .framer-uj3Xt .framer-1q8ppup, .framer-uj3Xt .framer-1kb8lf8, .framer-uj3Xt .framer-90c8td, .framer-uj3Xt .framer-vtkcnr, .framer-uj3Xt .framer-asjtbp, .framer-uj3Xt .framer-4niunt, .framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8, .framer-uj3Xt .framer-82u9oe, .framer-uj3Xt .framer-1fov2h1, .framer-uj3Xt .framer-115ohmh { gap: 0px; } .framer-uj3Xt.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uj3Xt.framer-72rtr7 > :first-child, .framer-uj3Xt .framer-dusbf > :first-child, .framer-uj3Xt .framer-1q8ppup > :first-child, .framer-uj3Xt .framer-1kb8lf8 > :first-child, .framer-uj3Xt .framer-vtkcnr > :first-child, .framer-uj3Xt .framer-asjtbp > :first-child, .framer-uj3Xt .framer-4niunt > :first-child, .framer-uj3Xt .framer-82u9oe > :first-child, .framer-uj3Xt .framer-1fov2h1 > :first-child { margin-top: 0px; } .framer-uj3Xt.framer-72rtr7 > :last-child, .framer-uj3Xt .framer-dusbf > :last-child, .framer-uj3Xt .framer-1q8ppup > :last-child, .framer-uj3Xt .framer-1kb8lf8 > :last-child, .framer-uj3Xt .framer-vtkcnr > :last-child, .framer-uj3Xt .framer-asjtbp > :last-child, .framer-uj3Xt .framer-4niunt > :last-child, .framer-uj3Xt .framer-82u9oe > :last-child, .framer-uj3Xt .framer-1fov2h1 > :last-child { margin-bottom: 0px; } .framer-uj3Xt .framer-dusbf > *, .framer-uj3Xt .framer-1q8ppup > *, .framer-uj3Xt .framer-vtkcnr > *, .framer-uj3Xt .framer-4niunt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uj3Xt .framer-1kb8lf8 > *, .framer-uj3Xt .framer-1fov2h1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-uj3Xt .framer-90c8td > *, .framer-uj3Xt .framer-115ohmh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uj3Xt .framer-90c8td > :first-child, .framer-uj3Xt .framer-1siz45k > :first-child, .framer-uj3Xt .framer-7hbkmn > :first-child, .framer-uj3Xt .framer-1gym2l8 > :first-child, .framer-uj3Xt .framer-115ohmh > :first-child { margin-left: 0px; } .framer-uj3Xt .framer-90c8td > :last-child, .framer-uj3Xt .framer-1siz45k > :last-child, .framer-uj3Xt .framer-7hbkmn > :last-child, .framer-uj3Xt .framer-1gym2l8 > :last-child, .framer-uj3Xt .framer-115ohmh > :last-child { margin-right: 0px; } .framer-uj3Xt .framer-asjtbp > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-uj3Xt .framer-1siz45k > *, .framer-uj3Xt .framer-7hbkmn > *, .framer-uj3Xt .framer-1gym2l8 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-uj3Xt .framer-82u9oe > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-uj3Xt[data-border=\"true\"]::after, .framer-uj3Xt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-uj3Xt.framer-72rtr7 { width: 390px; } .framer-uj3Xt .framer-2z6l7s-container { left: 78%; top: 95%; } .framer-uj3Xt .framer-dusbf { padding: 20px 20px 40px 20px; } .framer-uj3Xt .framer-1q8ppup { order: 0; } .framer-uj3Xt .framer-321bo1 { height: 128px; width: 198px; } .framer-uj3Xt .framer-13vxrm4 { align-self: stretch; width: auto; } .framer-uj3Xt .framer-sgfpra { -webkit-filter: unset; filter: unset; height: var(--framer-aspect-ratio-supported, 100px); order: 1; width: 100px; } .framer-uj3Xt .framer-1kb8lf8 { height: 60vh; padding: 200px 20px 200px 20px; } .framer-uj3Xt .framer-op24az { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-uj3Xt .framer-vtkcnr { padding: 20px; } .framer-uj3Xt .framer-1q8k2xh-container { height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-uj3Xt .framer-gbry6u { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: center; padding: 100px 20px 60px 20px; } .framer-uj3Xt .framer-asjtbp, .framer-uj3Xt .framer-4niunt { width: 100%; } .framer-uj3Xt .framer-13lqugo { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8 { gap: 30px; } .framer-uj3Xt .framer-1nyi5z0, .framer-uj3Xt .framer-zzm0p4, .framer-uj3Xt .framer-15hhvy3 { width: 100px; } .framer-uj3Xt .framer-82u9oe { gap: 60px; padding: 60px 0px 50px 0px; } .framer-uj3Xt .framer-1pr0xz5-container { height: 270px; } .framer-uj3Xt .framer-1fov2h1 { flex-wrap: wrap; justify-content: flex-start; padding: 0px 20px 0px 20px; } .framer-uj3Xt .framer-tg46so { max-width: 100%; width: 200%; } .framer-uj3Xt .framer-115ohmh { padding: 50px 20px 50px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uj3Xt .framer-gbry6u, .framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8, .framer-uj3Xt .framer-82u9oe { gap: 0px; } .framer-uj3Xt .framer-gbry6u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-uj3Xt .framer-gbry6u > :first-child, .framer-uj3Xt .framer-82u9oe > :first-child { margin-top: 0px; } .framer-uj3Xt .framer-gbry6u > :last-child, .framer-uj3Xt .framer-82u9oe > :last-child { margin-bottom: 0px; } .framer-uj3Xt .framer-1siz45k > *, .framer-uj3Xt .framer-7hbkmn > *, .framer-uj3Xt .framer-1gym2l8 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-uj3Xt .framer-1siz45k > :first-child, .framer-uj3Xt .framer-7hbkmn > :first-child, .framer-uj3Xt .framer-1gym2l8 > :first-child { margin-left: 0px; } .framer-uj3Xt .framer-1siz45k > :last-child, .framer-uj3Xt .framer-7hbkmn > :last-child, .framer-uj3Xt .framer-1gym2l8 > :last-child { margin-right: 0px; } .framer-uj3Xt .framer-82u9oe > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-uj3Xt.framer-72rtr7 { width: 810px; } .framer-uj3Xt .framer-2z6l7s-container { left: 88%; top: 95%; } .framer-uj3Xt .framer-1kb8lf8 { height: 90vh; } .framer-uj3Xt .framer-1q8k2xh-container { height: var(--framer-aspect-ratio-supported, 411px); width: 100%; } .framer-uj3Xt .framer-gbry6u { padding: 100px 20px 100px 20px; } .framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8 { gap: 50px; } .framer-uj3Xt .framer-1fov2h1 { padding: 0px 40px 0px 40px; } .framer-uj3Xt .framer-tg46so { max-width: 80%; width: 800%; } .framer-uj3Xt .framer-115ohmh { padding: 50px 20px 50px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uj3Xt .framer-1siz45k, .framer-uj3Xt .framer-7hbkmn, .framer-uj3Xt .framer-1gym2l8 { gap: 0px; } .framer-uj3Xt .framer-1siz45k > *, .framer-uj3Xt .framer-7hbkmn > *, .framer-uj3Xt .framer-1gym2l8 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-uj3Xt .framer-1siz45k > :first-child, .framer-uj3Xt .framer-7hbkmn > :first-child, .framer-uj3Xt .framer-1gym2l8 > :first-child { margin-left: 0px; } .framer-uj3Xt .framer-1siz45k > :last-child, .framer-uj3Xt .framer-7hbkmn > :last-child, .framer-uj3Xt .framer-1gym2l8 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5506\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XiKsBdaaX\":{\"layout\":[\"fixed\",\"auto\"]},\"y6p7zTXUU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"gwcj86WRm\":{\"pattern\":\":gwcj86WRm\",\"name\":\"hero\"},\"gl4abBrAT\":{\"pattern\":\":gl4abBrAT\",\"name\":\"intro\"},\"JJI5wQWSd\":{\"pattern\":\":JJI5wQWSd\",\"name\":\"conclusion\"},\"RHBGJQJfI\":{\"pattern\":\":RHBGJQJfI\",\"name\":\"reviews\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-uj3Xt\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5506,width:1200};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:\"Ogg Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/QwtPzqnWJTldib6821M0TafHmn8.woff2\"},{family:\"Ogg Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/7agVAzcs9h8m9bF1VmFsP6DwY.woff2\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...GetQuoteFonts,...VideoFonts,...ButtonDarkFonts,...YouTubeFonts,...ButtonLightFonts,...TickerFonts,...EmbedFonts,...FooterFonts,...NavigationFinalFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"gwcj86WRm\\\":{\\\"pattern\\\":\\\":gwcj86WRm\\\",\\\"name\\\":\\\"hero\\\"},\\\"gl4abBrAT\\\":{\\\"pattern\\\":\\\":gl4abBrAT\\\",\\\"name\\\":\\\"intro\\\"},\\\"JJI5wQWSd\\\":{\\\"pattern\\\":\\\":JJI5wQWSd\\\",\\\"name\\\":\\\"conclusion\\\"},\\\"RHBGJQJfI\\\":{\\\"pattern\\\":\\\":RHBGJQJfI\\\",\\\"name\\\":\\\"reviews\\\"}}\",\"framerIntrinsicHeight\":\"5506\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XiKsBdaaX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y6p7zTXUU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "GetQuoteFonts", "getFonts", "spAAiyhsl_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithFX", "RichText2", "ButtonDarkFonts", "HCCb1l0mR_default", "YouTubeFonts", "Youtube", "ButtonLightFonts", "x5Hf5yug_default", "MotionDivWithFX", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "FooterFonts", "MITwRqKNg_default", "NavigationFinalFonts", "B6_ezt9Lu_default", "NavigationFinalWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "animation3", "transition3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "isDisplayed", "isDisplayed1", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
