{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/caUujYnf88p0fuMSf6gz/8fcbLjWbVtCh8Zv9Eqav/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}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={}));/**\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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(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()?ThumbnailFormat.WebP:ThumbnailFormat.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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.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,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\"},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}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,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}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (15813d8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import UserAvatar from\"https://framerusercontent.com/modules/67qYZOZ2eZpNOPGf7eOE/jESxPzkYJxtYSAyKCI7I/HzQtwu6mZ.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import TestimonialCardCopy from\"#framer/local/canvasComponent/BDREXZMhw/BDREXZMhw.js\";import Card from\"#framer/local/canvasComponent/dX24_5PW2/dX24_5PW2.js\";import FooterCopy from\"#framer/local/canvasComponent/otGTKfXCB/otGTKfXCB.js\";import NavigationCopy3 from\"#framer/local/canvasComponent/uzE60eZD7/uzE60eZD7.js\";import*as sharedStyle from\"#framer/local/css/gOxvbrWwJ/gOxvbrWwJ.js\";import*as sharedStyle2 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const UserAvatarFonts=getFonts(UserAvatar);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionAWithFX=withFX(motion.a);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const NavigationCopy3Fonts=getFonts(NavigationCopy3);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const CardFonts=getFonts(Card);const RichTextWithFX=withFX(RichText);const TestimonialCardCopyFonts=getFonts(TestimonialCardCopy);const ContainerWithFX=withFX(Container);const FooterCopyFonts=getFonts(FooterCopy);const breakpoints={O9e9F8tqT:\"(max-width: 809px)\",sEXjThNt1:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Si2qS\";const variantClassNames={O9e9F8tqT:\"framer-v-1i1kn5r\",sEXjThNt1:\"framer-v-1ayjw28\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={delay:.3,duration:.5,ease:[.44,0,.22,.99],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition4={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition5};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition6={delay:0,duration:1,ease:[.5,1,.89,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:20};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition7={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"O9e9F8tqT\",Tablet:\"sEXjThNt1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Si2qS`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Si2qS`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"sEXjThNt1\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"O9e9F8tqT\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"O9e9F8tqT\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"sEXjThNt1\",\"O9e9F8tqT\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"sEXjThNt1\",\"O9e9F8tqT\"].includes(baseVariant))return false;return true;};const id=useRouteElementId(\"VoZuv6REF\");const ref4=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(0),pixelHeight:4e3,pixelWidth:6e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg\",srcSet:\"https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg\",srcSet:\"https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2idQI4NH9sprgKMN5Fw9d12LI.jpeg 6000w\"},className:\"framer-1vpu7k6\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18yv9bc\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkk82q\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xd6ris\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1domwio\",\"data-framer-name\":\"Heading and supporting text\",name:\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u201CThe BEST way to see THE OBX\u201D\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60.45925886888109px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u201CThe BEST way to see THE OBX\u201D\"})}),className:\"framer-16jv3xt\",\"data-framer-appear-id\":\"16jv3xt\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Poppins-700\"],initial:animation1,name:\"Heading\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tripadvisor.com/Attraction_Review-g60755-d3726167-Reviews-OBX_Airplanes-Manteo_Roanoke_Island_Outer_Banks_North_Carolina.html\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(557.25),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L5d3JDqWRatqlFVoOJ4LmZCxM.gif\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L5d3JDqWRatqlFVoOJ4LmZCxM.gif\"},className:\"framer-6dsx35 framer-lux5qc\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tripadvisor.com/Attraction_Review-g60755-d3726167-Reviews-OBX_Airplanes-Manteo_Roanoke_Island_Outer_Banks_North_Carolina.html\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1yt86wi framer-lux5qc\",\"data-framer-appear-id\":\"1yt86wi\",\"data-framer-name\":\"Social Trust\",initial:animation1,name:\"Social Trust\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1w5f8\",\"data-framer-name\":\"Stacked Avatars\",name:\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwguol-container\",children:/*#__PURE__*/_jsx(UserAvatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"Y73gjADXf\",layoutId:\"Y73gjADXf\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"RS_Ae5x2z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l62vae-container\",children:/*#__PURE__*/_jsx(UserAvatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"jMMA9A2zk\",layoutId:\"jMMA9A2zk\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/0OBj7uN1ncKrMVzB0GprNt5uI.jpg\",srcSet:\"https://framerusercontent.com/images/0OBj7uN1ncKrMVzB0GprNt5uI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/0OBj7uN1ncKrMVzB0GprNt5uI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/0OBj7uN1ncKrMVzB0GprNt5uI.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/0OBj7uN1ncKrMVzB0GprNt5uI.jpg 3744w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"RS_Ae5x2z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cbbg4p-container\",children:/*#__PURE__*/_jsx(UserAvatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"JycHvj5ZN\",layoutId:\"JycHvj5ZN\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg\",srcSet:\"https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/lVDVGe7ZXiK6CfmkoqwS5fUXY.jpg 6720w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"RS_Ae5x2z\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dmixbc-container\",children:/*#__PURE__*/_jsx(UserAvatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"BUiFDBP5a\",layoutId:\"BUiFDBP5a\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/JhbGle453RWF0QjzZnSxbtxRBiA.jpg\",srcSet:\"https://framerusercontent.com/images/JhbGle453RWF0QjzZnSxbtxRBiA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/JhbGle453RWF0QjzZnSxbtxRBiA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/JhbGle453RWF0QjzZnSxbtxRBiA.jpg?scale-down-to=4096 2731w,https://framerusercontent.com/images/JhbGle453RWF0QjzZnSxbtxRBiA.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"RS_Ae5x2z\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jnorma\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,name:\"Stars\",svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_408_62493)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip1_408_62493)\">\\n<path d=\"M9.53834 1.60996C9.70914 1.19932 10.2909 1.19932 10.4617 1.60996L12.5278 6.57744C12.5998 6.75056 12.7626 6.86885 12.9495 6.88383L18.3123 7.31376C18.7556 7.3493 18.9354 7.90256 18.5976 8.19189L14.5117 11.6919C14.3693 11.8139 14.3071 12.0053 14.3506 12.1876L15.5989 17.4208C15.7021 17.8534 15.2315 18.1954 14.8519 17.9635L10.2606 15.1592C10.1006 15.0615 9.89938 15.0615 9.73937 15.1592L5.14806 17.9635C4.76851 18.1954 4.29788 17.8534 4.40108 17.4208L5.64939 12.1876C5.69289 12.0053 5.6307 11.8139 5.48831 11.6919L1.40241 8.19189C1.06464 7.90256 1.24441 7.3493 1.68773 7.31376L7.05054 6.88383C7.23744 6.86885 7.40024 6.75056 7.47225 6.57744L9.53834 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip2_408_62493)\">\\n<path d=\"M33.5383 1.60996C33.7091 1.19932 34.2909 1.19932 34.4617 1.60996L36.5278 6.57744C36.5998 6.75056 36.7626 6.86885 36.9495 6.88383L42.3123 7.31376C42.7556 7.3493 42.9354 7.90256 42.5976 8.19189L38.5117 11.6919C38.3693 11.8139 38.3071 12.0053 38.3506 12.1876L39.5989 17.4208C39.7021 17.8534 39.2315 18.1954 38.8519 17.9635L34.2606 15.1592C34.1006 15.0615 33.8994 15.0615 33.7394 15.1592L29.1481 17.9635C28.7685 18.1954 28.2979 17.8534 28.4011 17.4208L29.6494 12.1876C29.6929 12.0053 29.6307 11.8139 29.4883 11.6919L25.4024 8.19189C25.0646 7.90256 25.2444 7.3493 25.6877 7.31376L31.0505 6.88383C31.2374 6.86885 31.4002 6.75056 31.4722 6.57744L33.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip3_408_62493)\">\\n<path d=\"M33.5383 1.60996C33.7091 1.19932 34.2909 1.19932 34.4617 1.60996L36.5278 6.57744C36.5998 6.75056 36.7626 6.86885 36.9495 6.88383L42.3123 7.31376C42.7556 7.3493 42.9354 7.90256 42.5976 8.19189L38.5117 11.6919C38.3693 11.8139 38.3071 12.0053 38.3506 12.1876L39.5989 17.4208C39.7021 17.8534 39.2315 18.1954 38.8519 17.9635L34.2606 15.1592C34.1006 15.0615 33.8994 15.0615 33.7394 15.1592L29.1481 17.9635C28.7685 18.1954 28.2979 17.8534 28.4011 17.4208L29.6494 12.1876C29.6929 12.0053 29.6307 11.8139 29.4883 11.6919L25.4024 8.19189C25.0646 7.90256 25.2444 7.3493 25.6877 7.31376L31.0505 6.88383C31.2374 6.86885 31.4002 6.75056 31.4722 6.57744L33.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip4_408_62493)\">\\n<path d=\"M57.5383 1.60996C57.7091 1.19932 58.2909 1.19932 58.4617 1.60996L60.5278 6.57744C60.5998 6.75056 60.7626 6.86885 60.9495 6.88383L66.3123 7.31376C66.7556 7.3493 66.9354 7.90256 66.5976 8.19189L62.5117 11.6919C62.3693 11.8139 62.3071 12.0053 62.3506 12.1876L63.5989 17.4208C63.7021 17.8534 63.2315 18.1954 62.8519 17.9635L58.2606 15.1592C58.1006 15.0615 57.8994 15.0615 57.7394 15.1592L53.1481 17.9635C52.7685 18.1954 52.2979 17.8534 52.4011 17.4208L53.6494 12.1876C53.6929 12.0053 53.6307 11.8139 53.4883 11.6919L49.4024 8.19189C49.0646 7.90256 49.2444 7.3493 49.6877 7.31376L55.0505 6.88383C55.2374 6.86885 55.4002 6.75056 55.4722 6.57744L57.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip5_408_62493)\">\\n<path d=\"M57.5383 1.60996C57.7091 1.19932 58.2909 1.19932 58.4617 1.60996L60.5278 6.57744C60.5998 6.75056 60.7626 6.86885 60.9495 6.88383L66.3123 7.31376C66.7556 7.3493 66.9354 7.90256 66.5976 8.19189L62.5117 11.6919C62.3693 11.8139 62.3071 12.0053 62.3506 12.1876L63.5989 17.4208C63.7021 17.8534 63.2315 18.1954 62.8519 17.9635L58.2606 15.1592C58.1006 15.0615 57.8994 15.0615 57.7394 15.1592L53.1481 17.9635C52.7685 18.1954 52.2979 17.8534 52.4011 17.4208L53.6494 12.1876C53.6929 12.0053 53.6307 11.8139 53.4883 11.6919L49.4024 8.19189C49.0646 7.90256 49.2444 7.3493 49.6877 7.31376L55.0505 6.88383C55.2374 6.86885 55.4002 6.75056 55.4722 6.57744L57.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip6_408_62493)\">\\n<path d=\"M81.5383 1.60996C81.7091 1.19932 82.2909 1.19932 82.4617 1.60996L84.5278 6.57744C84.5998 6.75056 84.7626 6.86885 84.9495 6.88383L90.3123 7.31376C90.7556 7.3493 90.9354 7.90256 90.5976 8.19189L86.5117 11.6919C86.3693 11.8139 86.3071 12.0053 86.3506 12.1876L87.5989 17.4208C87.7021 17.8534 87.2315 18.1954 86.8519 17.9635L82.2606 15.1592C82.1006 15.0615 81.8994 15.0615 81.7394 15.1592L77.1481 17.9635C76.7685 18.1954 76.2979 17.8534 76.4011 17.4208L77.6494 12.1876C77.6929 12.0053 77.6307 11.8139 77.4883 11.6919L73.4024 8.19189C73.0646 7.90256 73.2444 7.3493 73.6877 7.31376L79.0505 6.88383C79.2374 6.86885 79.4002 6.75056 79.4722 6.57744L81.5383 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip7_408_62493)\">\\n<path d=\"M81.5383 1.60996C81.7091 1.19932 82.2909 1.19932 82.4617 1.60996L84.5278 6.57744C84.5998 6.75056 84.7626 6.86885 84.9495 6.88383L90.3123 7.31376C90.7556 7.3493 90.9354 7.90256 90.5976 8.19189L86.5117 11.6919C86.3693 11.8139 86.3071 12.0053 86.3506 12.1876L87.5989 17.4208C87.7021 17.8534 87.2315 18.1954 86.8519 17.9635L82.2606 15.1592C82.1006 15.0615 81.8994 15.0615 81.7394 15.1592L77.1481 17.9635C76.7685 18.1954 76.2979 17.8534 76.4011 17.4208L77.6494 12.1876C77.6929 12.0053 77.6307 11.8139 77.4883 11.6919L73.4024 8.19189C73.0646 7.90256 73.2444 7.3493 73.6877 7.31376L79.0505 6.88383C79.2374 6.86885 79.4002 6.75056 79.4722 6.57744L81.5383 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<g clip-path=\"url(#clip8_408_62493)\">\\n<path d=\"M105.538 1.60996C105.709 1.19932 106.291 1.19932 106.462 1.60996L108.528 6.57744C108.6 6.75056 108.763 6.86885 108.949 6.88383L114.312 7.31376C114.756 7.3493 114.935 7.90256 114.598 8.19189L110.512 11.6919C110.369 11.8139 110.307 12.0053 110.351 12.1876L111.599 17.4208C111.702 17.8534 111.231 18.1954 110.852 17.9635L106.261 15.1592C106.101 15.0615 105.899 15.0615 105.739 15.1592L101.148 17.9635C100.769 18.1954 100.298 17.8534 100.401 17.4208L101.649 12.1876C101.693 12.0053 101.631 11.8139 101.488 11.6919L97.4024 8.19189C97.0646 7.90256 97.2444 7.3493 97.6877 7.31376L103.051 6.88383C103.237 6.86885 103.4 6.75056 103.472 6.57744L105.538 1.60996Z\" fill=\"#F2F4F7\"/>\\n<g clip-path=\"url(#clip9_408_62493)\">\\n<path d=\"M105.538 1.60996C105.709 1.19932 106.291 1.19932 106.462 1.60996L108.528 6.57744C108.6 6.75056 108.763 6.86885 108.949 6.88383L114.312 7.31376C114.756 7.3493 114.935 7.90256 114.598 8.19189L110.512 11.6919C110.369 11.8139 110.307 12.0053 110.351 12.1876L111.599 17.4208C111.702 17.8534 111.231 18.1954 110.852 17.9635L106.261 15.1592C106.101 15.0615 105.899 15.0615 105.739 15.1592L101.148 17.9635C100.769 18.1954 100.298 17.8534 100.401 17.4208L101.649 12.1876C101.693 12.0053 101.631 11.8139 101.488 11.6919L97.4024 8.19189C97.0646 7.90256 97.2444 7.3493 97.6877 7.31376L103.051 6.88383C103.237 6.86885 103.4 6.75056 103.472 6.57744L105.538 1.60996Z\" fill=\"#FEC84B\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip2_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(24)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(48)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(72)\"/>\\n</clipPath>\\n<clipPath id=\"clip8_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_408_62493\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(96)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1jyfr8o\",\"data-framer-appear-id\":\"1jyfr8o\",\"data-framer-name\":\"Right\",initial:animation4,name:\"Right\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16oxrho\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o88qlk\",\"data-framer-name\":\"Text and supporting text\",name:\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:\"Don't miss out book online today\"})}),className:\"framer-1hoqxeb\",\"data-framer-name\":\"Text\",fonts:[\"GF;Poppins-500\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:2524732442\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-tyasbr\",\"data-styles-preset\":\"gOxvbrWwJ\",children:\"252.473.2442\"})})})}),className:\"framer-iffgia\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Poppins-regular\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://book.peek.com/s/49dfdcf7-3df9-4f9f-a32a-1a3f1d3085bb/JWoK\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zct9n7 framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",style:{transformPerspective:1200},whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BOOK YOUR FLIGHT NOW!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BOOK YOUR FLIGHT TODAY!\"})}),className:\"framer-1ygcpfz\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sEXjThNt1:{width:\"110.1235vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jsb9hr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{variant:\"gfBkohOfd\"}},children:/*#__PURE__*/_jsx(NavigationCopy3,{height:\"100%\",id:\"UAFv8vTtr\",layoutId:\"UAFv8vTtr\",style:{width:\"100%\"},variant:\"F0UDa288c\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y8v6mv\",\"data-framer-name\":\"Section Introduction\",name:\"Section Introduction\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"About us.\"})})},sEXjThNt1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"About us.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"About us.\"})}),className:\"framer-1t2ig74\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b2qz6v-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"kdUDj1Ns6\",isMixedBorderRadius:false,isRed:true,layoutId:\"kdUDj1Ns6\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Ka_jgIYEBzU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(831.3060114122065),sizes:\"61px\",src:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png\",srcSet:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png 590w\"}},sEXjThNt1:{background:{alt:\"\",fit:\"fill\",sizes:\"95px\",src:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png\",srcSet:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png 590w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"151px\",src:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png\",srcSet:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png 590w\"},className:\"framer-18gfwog\",\"data-framer-name\":\"arrows-3\",name:\"arrows-3\",style:{rotate:-176}})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\"},children:\"Nice to meet you! To say that we are passionate about flying is an understatement\u2026\"})}),className:\"framer-1ek6lz3\",\"data-framer-appear-id\":\"1ek6lz3\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Poppins-regular\"],id:\"1ek6lz3\",initial:animation11,name:\"Supporting text\",onMouseEnter:onMouseEnterizu9gt({overlay}),optimized:true,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{offsetX:-.2500064899213612,offsetY:.4218284332600888},sEXjThNt1:{offsetX:17.5,offsetY:9.96875}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ek6lz3\",offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation10,className:\"framer-15el96b\",exit:animation12,initial:animation13,ref:ref3,role:\"dialog\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Nice to meet you! To say that we are passionate about flying is an understatement. The thrill of being in the air and seeing the earth from above is something we can't get enough of. Sharing this incredible experience with our customers is what we love to do. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"This is an amazing place to see from above and an air tour in our Cessnas or our open cockpit biplane is a great way to do it. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"The high wing design and panoramic windows of our Cessnas offer an unforgettable experience. & there's nothing like the wind on your face and the roar of the radial of the biplane. Call or click today to reserve your tour and create a memory that will last a lifetime.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Nice to meet you! To say that we are passionate about flying is an understatement. The thrill of being in the air and seeing the earth from above is something we can't get enough of. Sharing this incredible experience with our customers is what we love to do. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"This is an amazing place to see from above and an air tour in our Cessnas or our open cockpit biplane is a great way to do it. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"The high wing design and panoramic windows of our Cessnas offer an unforgettable experience. & there's nothing like the wind on your face and the roar of the radial of the biplane. Call or click today to reserve your tour and create a memory that will last a lifetime.\"})]}),className:\"framer-d3nap6 hidden-1ayjw28\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qnuh0o\",\"data-framer-name\":\"Section Portfolio\",name:\"Section Portfolio\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"p7qE3cOQG\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-19bnauv framer-lux5qc\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{height:430,width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pqnjbe-container hidden-72rtr7 hidden-1ayjw28\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"dD_U8BRVx\",layoutId:\"dD_U8BRVx\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg\",srcSet:\"https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg 6000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Air Tours\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sEXjThNt1:{height:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(50vw, 200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6q2zfo-container hidden-1i1kn5r\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"ha2YIFnlt\",layoutId:\"ha2YIFnlt\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg\",srcSet:\"https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/E4BgE0tHhGQAG4WRomhCz74V0.jpeg 6000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Air Tours\"})})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vj5eHltHt\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-8qwn33 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{height:420,width:\"390px\"},sEXjThNt1:{height:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(50vw, 200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mht1ea-container\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"L2Eer16Wj\",layoutId:\"L2Eer16Wj\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/KWfAGlBg9Ptt1EDOd16JN2X6O0U.jpg\",srcSet:\"https://framerusercontent.com/images/KWfAGlBg9Ptt1EDOd16JN2X6O0U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KWfAGlBg9Ptt1EDOd16JN2X6O0U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KWfAGlBg9Ptt1EDOd16JN2X6O0U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KWfAGlBg9Ptt1EDOd16JN2X6O0U.jpg 2710w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Biplane Rides\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"M_oax5DQJ\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-vvy9e4 framer-lux5qc\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{height:430,width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqtzwm-container hidden-72rtr7 hidden-1ayjw28\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"O3n6NlGi8\",layoutId:\"O3n6NlGi8\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg\",srcSet:\"https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg 4032w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Aerial Advertising\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sEXjThNt1:{height:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(50vw, 200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qxzt1b-container hidden-1i1kn5r\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"ZoaQt2qlu\",layoutId:\"ZoaQt2qlu\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg\",srcSet:\"https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvMKZmPsZSIshrBrwpYATGh8.jpeg 4032w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Aerial Advertising\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{href:{webPageId:\"yyavixjBX\"}},sEXjThNt1:{href:{webPageId:\"yyavixjBX\"}}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"M_oax5DQJ\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-121ue4u hidden-72rtr7 framer-lux5qc\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{height:430,width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zw19jf-container hidden-72rtr7 hidden-1ayjw28\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"K09KcVTwH\",layoutId:\"K09KcVTwH\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg\",srcSet:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg 1773w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Personal Banners\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sEXjThNt1:{width:\"max(50vw, 200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e1hppc-container hidden-1i1kn5r\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"qq2dDDGsv\",layoutId:\"qq2dDDGsv\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg\",srcSet:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg 1773w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Personal Banners\"})})})})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yyavixjBX\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-qvp48t hidden-1ayjw28 hidden-1i1kn5r framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(50vw, 200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10u4u9v-container\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"HVJbSF3Qi\",layoutId:\"HVJbSF3Qi\",lY8a2ZDxb:addImageAlt({src:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg\",srcSet:\"https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9PS2oycXsbQbnv0RvrsfZQLU5as.jpeg 1773w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",yGi22RqP8:\"Personal Banners\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-18fn4o8\",\"data-framer-name\":\"Testmonials\",id:id,name:\"Testmonials\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4hnd\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lilnrz\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"Real stories.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Don\u2019t take our word for it.\"]})})},sEXjThNt1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"Real stories.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Don\u2019t take our word for it.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(15, 23, 40)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(163, 166, 174)\"},children:\"Real stories.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Don\u2019t take our word for it.\"]})}),className:\"framer-ee8yod\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"GF;Poppins-500\"],name:\"Don\u2019t take our word for it\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3155.0105463284067),sizes:\"152px\",src:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png\",srcSet:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png 590w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"152px\",src:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png\",srcSet:\"https://framerusercontent.com/images/VL43VhHmWPuTeXXKbTYxdaAoyU.png 590w\"},className:\"framer-habpms\",\"data-framer-name\":\"arrows-3\",name:\"arrows-3\",style:{rotate:-43}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ay3tu1\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112tijh\",\"data-framer-name\":\"Row\",name:\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{width:\"calc((100vw - 40px) * 0.9)\",y:3309.436918856483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:200,ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-978,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p1oidp-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{style:{width:\"100%\"},variant:\"P2ag25kj4\"}},children:/*#__PURE__*/_jsx(TestimonialCardCopy,{cpd5Mlc1b:\"Colington Harbor, NC\",height:\"100%\",id:\"vZ1fkST8a\",jkYRumNrv:addImageAlt({src:\"https://framerusercontent.com/images/wQq05TRefAEc4j4fsjsPlWamSis.jpg\",srcSet:\"https://framerusercontent.com/images/wQq05TRefAEc4j4fsjsPlWamSis.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wQq05TRefAEc4j4fsjsPlWamSis.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wQq05TRefAEc4j4fsjsPlWamSis.jpg 1200w\"},\"\"),Jxq2GRK7M:'\"We booked with Amelia & Dan the man took us on an epic adventure. Our 2 sons 4 & 11 had never flown before. It was a light wind but the entire ride was smooth including a perfect 10 landing. As we were crossing over Colington harbor Dan had asked where we lived & when we told him it was near by he immediately banked north\"',layoutId:\"vZ1fkST8a\",lxoksPKf0:\"rgb(255, 255, 255)\",qI_1kg5V6:\"David A\",variant:\"suwsoWH_6\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{width:\"calc((100vw - 40px) * 0.9)\",y:3789.436918856483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:200,ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-984,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15b6gys-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{style:{width:\"100%\"},variant:\"P2ag25kj4\"}},children:/*#__PURE__*/_jsx(TestimonialCardCopy,{cpd5Mlc1b:\"Hayesville, NC\",height:\"100%\",id:\"HT8eEC8TX\",jkYRumNrv:addImageAlt({src:\"https://framerusercontent.com/images/JVLcVmXuIVTXJhbLm8a35etcs.jpg\",srcSet:\"https://framerusercontent.com/images/JVLcVmXuIVTXJhbLm8a35etcs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JVLcVmXuIVTXJhbLm8a35etcs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JVLcVmXuIVTXJhbLm8a35etcs.jpg 1200w\"},\"\"),Jxq2GRK7M:'\"Amazing! We took the 20 min ride and it was fantastic. We have a family of 4 so we took turns and scheduled 2 rides. We all loved it! The pilot was awesome. She pointed out things of interest as we flew over them, and flying over the Wright Brother\\'s memorial was a neat experience.\"',layoutId:\"HT8eEC8TX\",lxoksPKf0:\"rgb(223, 250, 183)\",qI_1kg5V6:\"Melissa T.\",variant:\"suwsoWH_6\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{width:\"calc((100vw - 40px) * 0.9)\",y:4269.436918856483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:200,ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-997,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eorluw-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{style:{width:\"100%\"},variant:\"P2ag25kj4\"}},children:/*#__PURE__*/_jsx(TestimonialCardCopy,{cpd5Mlc1b:\"Moyock, NC\",height:\"100%\",id:\"cdnosKUUr\",jkYRumNrv:addImageAlt({src:\"https://framerusercontent.com/images/VgjPi4h0Q8LhTA0WF4lNdZiP8Os.jpg\",srcSet:\"https://framerusercontent.com/images/VgjPi4h0Q8LhTA0WF4lNdZiP8Os.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VgjPi4h0Q8LhTA0WF4lNdZiP8Os.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VgjPi4h0Q8LhTA0WF4lNdZiP8Os.jpg 1200w\"},\"\"),Jxq2GRK7M:'\"Our pilot and daughter, Amelia, did a great job!! The whole family including grandparents went for flights. Just spectacular!!! I did it and I\u2019m terrified of flying \uD83D\uDE01\"',layoutId:\"cdnosKUUr\",lxoksPKf0:\"rgb(255, 255, 255)\",qI_1kg5V6:\"Andrea M.\",variant:\"suwsoWH_6\",width:\"100%\"})})})})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{y:4769.436918856483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19rijah-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O9e9F8tqT:{variant:\"OvoZQdr3y\"},sEXjThNt1:{variant:\"Vi95ZBcA4\"}},children:/*#__PURE__*/_jsx(FooterCopy,{height:\"100%\",id:\"aBtFjFc3h\",layoutId:\"aBtFjFc3h\",name:\"Footer\",style:{width:\"100%\"},variant:\"Fl0TfZUpR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Si2qS { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-Si2qS.framer-lux5qc, .framer-Si2qS .framer-lux5qc { display: block; }\",\".framer-Si2qS.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Si2qS .framer-1vpu7k6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 19%; justify-content: flex-start; overflow: hidden; padding: 200px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-18yv9bc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-mkk82q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-1xd6ris { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Si2qS .framer-1domwio { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 73px 32px 73px 32px; position: relative; width: 86%; }\",\".framer-Si2qS .framer-16jv3xt { flex: none; height: auto; position: relative; text-shadow: 6px 2px 2px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-6dsx35 { flex: none; height: 141px; position: relative; text-decoration: none; width: 186px; }\",\".framer-Si2qS .framer-1yt86wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Si2qS .framer-u1w5f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Si2qS .framer-1vwguol-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-Si2qS .framer-l62vae-container, .framer-Si2qS .framer-1cbbg4p-container, .framer-Si2qS .framer-1dmixbc-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-Si2qS .framer-jnorma { flex: none; height: 20px; position: relative; width: 116px; }\",\".framer-Si2qS .framer-1jyfr8o { align-content: center; align-items: center; background-color: #fdffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 5px 25px 25px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 32px 40px 32px; position: relative; width: 1px; z-index: 1; }\",\".framer-Si2qS .framer-16oxrho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-o88qlk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-1hoqxeb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-iffgia { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-zct9n7 { align-content: center; align-items: center; background-color: var(--token-92a5f7c8-87fe-40c9-a4db-ebb253caaa2e, #1158c2); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Si2qS .framer-1ygcpfz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Si2qS .framer-1jsb9hr-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-Si2qS .framer-y8v6mv { align-content: flex-start; align-items: flex-start; background-color: #f5f5f5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-1t2ig74 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-b2qz6v-container { flex: none; height: 760px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-18gfwog { aspect-ratio: 0.9007633587786259 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 168px); left: 423px; position: absolute; top: 16px; width: 151px; z-index: 1; }\",\".framer-Si2qS .framer-1ek6lz3 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-15el96b { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 526px; overflow: hidden; position: relative; width: 1244px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Si2qS .framer-d3nap6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 51%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 91%; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-1qnuh0o { background-color: #ffffff; display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-19bnauv, .framer-Si2qS .framer-8qwn33, .framer-Si2qS .framer-vvy9e4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; grid-row: auto / span 2; height: 100%; justify-content: center; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Si2qS .framer-pqnjbe-container, .framer-Si2qS .framer-1uqtzwm-container, .framer-Si2qS .framer-zw19jf-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-Si2qS .framer-6q2zfo-container, .framer-Si2qS .framer-1mht1ea-container, .framer-Si2qS .framer-1qxzt1b-container, .framer-Si2qS .framer-1e1hppc-container, .framer-Si2qS .framer-10u4u9v-container { flex: none; height: 430px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-121ue4u, .framer-Si2qS .framer-qvp48t { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; grid-row: auto / span 2; height: min-content; justify-content: center; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Si2qS .framer-18fn4o8 { align-content: center; align-items: center; background-color: #f5f5f5; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 80px 60px; position: relative; scroll-margin-top: 200px; width: 100%; z-index: 1; }\",\".framer-Si2qS .framer-t4hnd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-1lilnrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-ee8yod { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-Si2qS .framer-habpms { aspect-ratio: 0.9007633587786259 / 1; bottom: -25px; flex: none; left: 918px; position: absolute; top: -32px; width: var(--framer-aspect-ratio-supported, 152px); z-index: 1; }\",\".framer-Si2qS .framer-ay3tu1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-Si2qS .framer-112tijh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Si2qS .framer-1p1oidp-container, .framer-Si2qS .framer-15b6gys-container, .framer-Si2qS .framer-eorluw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Si2qS .framer-19rijah-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Si2qS.framer-72rtr7, .framer-Si2qS .framer-1vpu7k6, .framer-Si2qS .framer-18yv9bc, .framer-Si2qS .framer-mkk82q, .framer-Si2qS .framer-1xd6ris, .framer-Si2qS .framer-1domwio, .framer-Si2qS .framer-1yt86wi, .framer-Si2qS .framer-u1w5f8, .framer-Si2qS .framer-1jyfr8o, .framer-Si2qS .framer-16oxrho, .framer-Si2qS .framer-o88qlk, .framer-Si2qS .framer-zct9n7, .framer-Si2qS .framer-y8v6mv, .framer-Si2qS .framer-19bnauv, .framer-Si2qS .framer-8qwn33, .framer-Si2qS .framer-vvy9e4, .framer-Si2qS .framer-121ue4u, .framer-Si2qS .framer-qvp48t, .framer-Si2qS .framer-18fn4o8, .framer-Si2qS .framer-t4hnd, .framer-Si2qS .framer-1lilnrz, .framer-Si2qS .framer-ay3tu1, .framer-Si2qS .framer-112tijh { gap: 0px; } .framer-Si2qS.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Si2qS.framer-72rtr7 > :first-child, .framer-Si2qS .framer-1vpu7k6 > :first-child, .framer-Si2qS .framer-18yv9bc > :first-child, .framer-Si2qS .framer-1xd6ris > :first-child, .framer-Si2qS .framer-1domwio > :first-child, .framer-Si2qS .framer-1jyfr8o > :first-child, .framer-Si2qS .framer-16oxrho > :first-child, .framer-Si2qS .framer-o88qlk > :first-child, .framer-Si2qS .framer-y8v6mv > :first-child, .framer-Si2qS .framer-18fn4o8 > :first-child, .framer-Si2qS .framer-t4hnd > :first-child, .framer-Si2qS .framer-1lilnrz > :first-child, .framer-Si2qS .framer-ay3tu1 > :first-child { margin-top: 0px; } .framer-Si2qS.framer-72rtr7 > :last-child, .framer-Si2qS .framer-1vpu7k6 > :last-child, .framer-Si2qS .framer-18yv9bc > :last-child, .framer-Si2qS .framer-1xd6ris > :last-child, .framer-Si2qS .framer-1domwio > :last-child, .framer-Si2qS .framer-1jyfr8o > :last-child, .framer-Si2qS .framer-16oxrho > :last-child, .framer-Si2qS .framer-o88qlk > :last-child, .framer-Si2qS .framer-y8v6mv > :last-child, .framer-Si2qS .framer-18fn4o8 > :last-child, .framer-Si2qS .framer-t4hnd > :last-child, .framer-Si2qS .framer-1lilnrz > :last-child, .framer-Si2qS .framer-ay3tu1 > :last-child { margin-bottom: 0px; } .framer-Si2qS .framer-1vpu7k6 > *, .framer-Si2qS .framer-18yv9bc > *, .framer-Si2qS .framer-18fn4o8 > *, .framer-Si2qS .framer-t4hnd > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Si2qS .framer-mkk82q > *, .framer-Si2qS .framer-112tijh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Si2qS .framer-mkk82q > :first-child, .framer-Si2qS .framer-1yt86wi > :first-child, .framer-Si2qS .framer-u1w5f8 > :first-child, .framer-Si2qS .framer-zct9n7 > :first-child, .framer-Si2qS .framer-19bnauv > :first-child, .framer-Si2qS .framer-8qwn33 > :first-child, .framer-Si2qS .framer-vvy9e4 > :first-child, .framer-Si2qS .framer-121ue4u > :first-child, .framer-Si2qS .framer-qvp48t > :first-child, .framer-Si2qS .framer-112tijh > :first-child { margin-left: 0px; } .framer-Si2qS .framer-mkk82q > :last-child, .framer-Si2qS .framer-1yt86wi > :last-child, .framer-Si2qS .framer-u1w5f8 > :last-child, .framer-Si2qS .framer-zct9n7 > :last-child, .framer-Si2qS .framer-19bnauv > :last-child, .framer-Si2qS .framer-8qwn33 > :last-child, .framer-Si2qS .framer-vvy9e4 > :last-child, .framer-Si2qS .framer-121ue4u > :last-child, .framer-Si2qS .framer-qvp48t > :last-child, .framer-Si2qS .framer-112tijh > :last-child { margin-right: 0px; } .framer-Si2qS .framer-1xd6ris > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Si2qS .framer-1domwio > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-Si2qS .framer-1yt86wi > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Si2qS .framer-u1w5f8 > *, .framer-Si2qS .framer-19bnauv > *, .framer-Si2qS .framer-8qwn33 > *, .framer-Si2qS .framer-vvy9e4 > *, .framer-Si2qS .framer-121ue4u > *, .framer-Si2qS .framer-qvp48t > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Si2qS .framer-1jyfr8o > *, .framer-Si2qS .framer-16oxrho > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Si2qS .framer-o88qlk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Si2qS .framer-zct9n7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Si2qS .framer-y8v6mv > *, .framer-Si2qS .framer-ay3tu1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Si2qS .framer-1lilnrz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\"@media (min-width: 1440px) { .framer-Si2qS .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-Si2qS .hidden-1ayjw28 { display: none !important; } .${metadata.bodyClassName}-framer-Si2qS { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-Si2qS.framer-72rtr7 { width: 810px; } .framer-Si2qS .framer-1vpu7k6 { order: 0; } .framer-Si2qS .framer-18yv9bc { max-width: unset; order: 0; } .framer-Si2qS .framer-mkk82q { flex-direction: column; gap: 0px; padding: 0px 40px 0px 40px; } .framer-Si2qS .framer-1xd6ris { flex: none; width: 100%; } .framer-Si2qS .framer-1domwio { padding: 73px 4px 73px 24px; } .framer-Si2qS .framer-1jyfr8o { flex: none; max-width: 700px; width: 700px; } .framer-Si2qS .framer-o88qlk { width: 60%; } .framer-Si2qS .framer-1hoqxeb, .framer-Si2qS .framer-iffgia, .framer-Si2qS .framer-ee8yod { width: 100%; } .framer-Si2qS .framer-1jsb9hr-container { left: 52%; order: 1; width: 110%; } .framer-Si2qS .framer-y8v6mv { order: 2; padding: 80px 40px 80px 40px; } .framer-Si2qS .framer-b2qz6v-container { height: 408px; } .framer-Si2qS .framer-18gfwog { height: var(--framer-aspect-ratio-supported, 105px); left: 44px; top: 27px; width: 95px; } .framer-Si2qS .framer-15el96b { height: 658px; width: 816px; } .framer-Si2qS .framer-1qnuh0o { order: 3; } .framer-Si2qS .framer-6q2zfo-container, .framer-Si2qS .framer-1mht1ea-container, .framer-Si2qS .framer-1qxzt1b-container { height: 100%; } .framer-Si2qS .framer-18fn4o8 { order: 4; overflow: hidden; padding: 60px 40px 60px 40px; } .framer-Si2qS .framer-t4hnd { max-width: unset; } .framer-Si2qS .framer-habpms { width: var(--framer-aspect-ratio-supported, 146px); } .framer-Si2qS .framer-19rijah-container { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Si2qS .framer-mkk82q { gap: 0px; } .framer-Si2qS .framer-mkk82q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Si2qS .framer-mkk82q > :first-child { margin-top: 0px; } .framer-Si2qS .framer-mkk82q > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-Si2qS .hidden-1i1kn5r { display: none !important; } .${metadata.bodyClassName}-framer-Si2qS { background: var(--token-09a05a34-e9dd-4f0b-adc7-c9f4c0f84fc8, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-Si2qS.framer-72rtr7 { width: 390px; } .framer-Si2qS .framer-1vpu7k6 { gap: 100px; } .framer-Si2qS .framer-18yv9bc, .framer-Si2qS .framer-t4hnd { max-width: unset; } .framer-Si2qS .framer-mkk82q { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-Si2qS .framer-1xd6ris, .framer-Si2qS .framer-1jyfr8o { flex: none; width: 100%; } .framer-Si2qS .framer-1domwio { align-content: center; align-items: center; gap: 48px; padding: 73px 0px 73px 0px; width: 100%; } .framer-Si2qS .framer-1yt86wi, .framer-Si2qS .framer-112tijh { flex-direction: column; } .framer-Si2qS .framer-1hoqxeb, .framer-Si2qS .framer-iffgia, .framer-Si2qS .framer-1p1oidp-container, .framer-Si2qS .framer-15b6gys-container, .framer-Si2qS .framer-eorluw-container { width: 100%; } .framer-Si2qS .framer-y8v6mv { gap: 20px; padding: 40px 20px 40px 20px; } .framer-Si2qS .framer-b2qz6v-container { height: 197px; } .framer-Si2qS .framer-18gfwog { height: var(--framer-aspect-ratio-supported, 68px); left: 2px; top: 2px; width: 61px; } .framer-Si2qS .framer-15el96b { height: 408px; width: 333px; } .framer-Si2qS .framer-d3nap6 { left: 50%; width: 86%; } .framer-Si2qS .framer-1qnuh0o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; width: 390px; } .framer-Si2qS .framer-19bnauv, .framer-Si2qS .framer-vvy9e4, .framer-Si2qS .framer-121ue4u { align-self: unset; height: 430px; } .framer-Si2qS .framer-8qwn33 { align-self: unset; height: 420px; } .framer-Si2qS .framer-1mht1ea-container { height: 100%; order: 0; } .framer-Si2qS .framer-18fn4o8 { gap: 60px; padding: 60px 20px 60px 20px; } .framer-Si2qS .framer-ee8yod { width: 90%; } .framer-Si2qS .framer-habpms { width: var(--framer-aspect-ratio-supported, 165px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Si2qS .framer-1vpu7k6, .framer-Si2qS .framer-mkk82q, .framer-Si2qS .framer-1domwio, .framer-Si2qS .framer-1yt86wi, .framer-Si2qS .framer-y8v6mv, .framer-Si2qS .framer-1qnuh0o, .framer-Si2qS .framer-18fn4o8, .framer-Si2qS .framer-112tijh { gap: 0px; } .framer-Si2qS .framer-1vpu7k6 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Si2qS .framer-1vpu7k6 > :first-child, .framer-Si2qS .framer-mkk82q > :first-child, .framer-Si2qS .framer-1domwio > :first-child, .framer-Si2qS .framer-1yt86wi > :first-child, .framer-Si2qS .framer-y8v6mv > :first-child, .framer-Si2qS .framer-1qnuh0o > :first-child, .framer-Si2qS .framer-18fn4o8 > :first-child, .framer-Si2qS .framer-112tijh > :first-child { margin-top: 0px; } .framer-Si2qS .framer-1vpu7k6 > :last-child, .framer-Si2qS .framer-mkk82q > :last-child, .framer-Si2qS .framer-1domwio > :last-child, .framer-Si2qS .framer-1yt86wi > :last-child, .framer-Si2qS .framer-y8v6mv > :last-child, .framer-Si2qS .framer-1qnuh0o > :last-child, .framer-Si2qS .framer-18fn4o8 > :last-child, .framer-Si2qS .framer-112tijh > :last-child { margin-bottom: 0px; } .framer-Si2qS .framer-mkk82q > *, .framer-Si2qS .framer-112tijh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Si2qS .framer-1domwio > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Si2qS .framer-1yt86wi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Si2qS .framer-y8v6mv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Si2qS .framer-1qnuh0o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Si2qS .framer-18fn4o8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3902.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sEXjThNt1\":{\"layout\":[\"fixed\",\"auto\"]},\"O9e9F8tqT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Si2qS\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3902.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{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\"}]},...UserAvatarFonts,...NavigationCopy3Fonts,...YouTubeFonts,...CardFonts,...TestimonialCardCopyFonts,...FooterCopyFonts,...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\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sEXjThNt1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O9e9F8tqT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"3902.5\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "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", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "UserAvatarFonts", "getFonts", "HzQtwu6mZ_default", "MotionAWithOptimizedAppearEffect", "motion", "MotionAWithFX", "withFX", "MotionDivWithOptimizedAppearEffect", "NavigationCopy3Fonts", "uzE60eZD7_default", "YouTubeFonts", "Youtube", "MotionDivWithFX", "CardFonts", "dX24_5PW2_default", "RichTextWithFX", "TestimonialCardCopyFonts", "BDREXZMhw_default", "ContainerWithFX", "Container", "FooterCopyFonts", "otGTKfXCB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "animation11", "animation12", "animation13", "transformTemplate1", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation14", "animation15", "transition7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "ref2", "ref3", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useRouteElementId", "ref4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "ComponentViewportProvider", "SVG", "l", "AnimatePresence", "Floating", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
