{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/5SCxS2lS7ODZxdy1ezYf/FsilQe5JPs97cDh8h57G/GD3RWesZC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Header from\"#framer/local/canvasComponent/CyC5uG86C/CyC5uG86C.js\";import Footer from\"#framer/local/canvasComponent/KQ079XW2p/KQ079XW2p.js\";import ContactSection from\"#framer/local/canvasComponent/PVUtyMYtZ/PVUtyMYtZ.js\";import Tagline from\"#framer/local/canvasComponent/roXeXCLDV/roXeXCLDV.js\";import*as sharedStyle4 from\"#framer/local/css/BvK1bLgtm/BvK1bLgtm.js\";import*as sharedStyle7 from\"#framer/local/css/CI1VnzFOG/CI1VnzFOG.js\";import*as sharedStyle3 from\"#framer/local/css/E6ASY2b1_/E6ASY2b1_.js\";import*as sharedStyle1 from\"#framer/local/css/gTEOozaZa/gTEOozaZa.js\";import*as sharedStyle from\"#framer/local/css/Hz5mc_6Zd/Hz5mc_6Zd.js\";import*as sharedStyle8 from\"#framer/local/css/IEkZN_toR/IEkZN_toR.js\";import*as sharedStyle6 from\"#framer/local/css/iY5uS7H8p/iY5uS7H8p.js\";import*as sharedStyle5 from\"#framer/local/css/K8WFGF3wO/K8WFGF3wO.js\";import*as sharedStyle10 from\"#framer/local/css/L8cvQ9aIW/L8cvQ9aIW.js\";import*as sharedStyle9 from\"#framer/local/css/sQPODkAV9/sQPODkAV9.js\";import*as sharedStyle2 from\"#framer/local/css/ToBYi8WzQ/ToBYi8WzQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/GD3RWesZC/GD3RWesZC.js\";const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const YouTubeFonts=getFonts(YouTube);const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const TaglineFonts=getFonts(Tagline);const ContactSectionFonts=getFonts(ContactSection);const FooterFonts=getFonts(Footer);const breakpoints={ACivU6eSG:\"(min-width: 1200px) and (max-width: 1599px)\",I9TLG4x9M:\"(max-width: 767px)\",maJJybhFK:\"(min-width: 1600px)\",W85A_1od0:\"(min-width: 768px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-k44jF\";const variantClassNames={ACivU6eSG:\"framer-v-g5agce\",I9TLG4x9M:\"framer-v-1jwz086\",maJJybhFK:\"framer-v-1rf81cc\",W85A_1od0:\"framer-v-1rat6j9\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"maJJybhFK\",Laptop:\"ACivU6eSG\",Phone:\"I9TLG4x9M\",Tablet:\"W85A_1od0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"maJJybhFK\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"B9EKxjN62\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"maJJybhFK\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1rf81cc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j323z2\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{width:\"100vw\",y:0},W85A_1od0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1knged6-container\",nodeId:\"K7ePysNGr\",rendersWithMotion:true,scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{variant:\"e2461BROV\"},I9TLG4x9M:{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"BUtXO4MNJ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"eiwKb1lKK\"},W85A_1od0:{variant:\"yUmzsvzV6\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{height:\"100%\",id:\"K7ePysNGr\",layoutId:\"K7ePysNGr\",style:{width:\"100%\"},variant:\"K0nVWFxAO\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mykwzs\",\"data-framer-name\":\"Hero Sections\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ys1wab\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7c0dj\",\"data-framer-name\":\"text \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-7xc6gk\",\"data-styles-preset\":\"Hz5mc_6Zd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"About Us\"})}),className:\"framer-44vq40\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-su1xow\",\"data-styles-preset\":\"gTEOozaZa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Our passion for driver education stems from a genuine desire to foster safer communities.  We understand that new drivers are particularly.\"})}),className:\"framer-14qytjr\",\"data-framer-name\":\"Our passion for driver education stems from a genuine desire to foster safer communities. We understand that new drivers are particularly.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+60+0+326.8),pixelHeight:1185,pixelWidth:2101,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png\",srcSet:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=512 512w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png 2101w\"}},I9TLG4x9M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+115+0+316.8),pixelHeight:1185,pixelWidth:2101,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 390px)`,src:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png\",srcSet:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=512 512w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png 2101w\"}},W85A_1od0:{background:{alt:\"\",fit:\"fill\",pixelHeight:1185,pixelWidth:2101,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 768px)`,src:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png\",srcSet:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=512 512w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png 2101w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+80+0+341.8),pixelHeight:1185,pixelWidth:2101,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1400px)`,src:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png\",srcSet:\"https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=512 512w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/engTcqA7YP2kXtSIYIkhWm8lu4.png 2101w\"},className:\"framer-l6j66h\",\"data-framer-name\":\"image video\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{transformTemplate:transformTemplate1},W85A_1od0:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x25qgk\",\"data-framer-name\":\"play Button \",id:\"x25qgk\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3ncn49\"),\"data-framer-portal-id\":\"x25qgk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gTA0r1_zh\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-zh7htd-container\"),\"data-framer-portal-id\":\"x25qgk\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ew28AvD0N\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ew28AvD0N\",isMixedBorderRadius:false,isRed:true,layoutId:\"ew28AvD0N\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/smPos0mJvh8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-9yiqhj-container\"),\"data-framer-portal-id\":\"x25qgk\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xPFT3f89l\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c8fb8d93-06ba-4e8a-a465-cd4192507b36, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"xPFT3f89l\",layoutId:\"xPFT3f89l\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),getContainer())})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+60+0+326.8+321.5+57.5),pixelHeight:25,pixelWidth:23,src:\"https://framerusercontent.com/images/GsebbIMYtryvvf97zONi99nCH8.svg\"}},I9TLG4x9M:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+115+0+316.8+360+25),pixelHeight:25,pixelWidth:23,src:\"https://framerusercontent.com/images/GsebbIMYtryvvf97zONi99nCH8.svg\"}},W85A_1od0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:22,pixelHeight:25,pixelWidth:23,src:\"https://framerusercontent.com/images/GsebbIMYtryvvf97zONi99nCH8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:22,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+89+80+0+341.8+321.5+57.5),pixelHeight:25,pixelWidth:23,src:\"https://framerusercontent.com/images/GsebbIMYtryvvf97zONi99nCH8.svg\"},className:\"framer-618viu\",\"data-framer-name\":\"Play icon\"})})]})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x36onb\",\"data-framer-name\":\"About Sections\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y0p24m\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xe19nz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"About Image 03\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1365.8+60+0+0+50.3),pixelHeight:2892,pixelWidth:2796,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) / 2)`,src:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png\",srcSet:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=1024 990w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=2048 1980w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png 2796w\"}},I9TLG4x9M:{background:{alt:\"About Image 03\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1251.8+30+0+0+0+0),pixelHeight:2892,pixelWidth:2796,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 390px)`,src:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png\",srcSet:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=1024 990w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=2048 1980w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png 2796w\"}},W85A_1od0:{background:{alt:\"About Image 03\",fit:\"stretch\",pixelHeight:2892,pixelWidth:2796,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 768px) * 0.9)`,src:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png\",srcSet:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=1024 990w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=2048 1980w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png 2796w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"About Image 03\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1365.8+65+0+0+12.8),pixelHeight:2892,pixelWidth:2796,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1400px) * 0.4993)`,src:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png\",srcSet:\"https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=1024 990w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png?scale-down-to=2048 1980w,https://framerusercontent.com/images/18U4YX6P5DR9xl5R9I1O4ZQg794.png 2796w\"},className:\"framer-1v8jt08\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hftk1i\",\"data-framer-name\":\"Right Content \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0xb7c\",\"data-framer-name\":\"Section Title \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"A Passion for Driving Education\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"A Passion for Driving Education\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"A Passion for Driving Education\"})}),className:\"framer-7x7znl\",\"data-framer-name\":\"A Passion for Driving Education\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Our passion for driver education stems from a genuine desire to foster safer communities.  We understand that new drivers are particularly vulnerable on the road.\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Our passion for driver education stems from a genuine desire to foster safer communities.  We understand that new drivers are particularly vulnerable on the road.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Our passion for driver education stems from a genuine desire to foster safer communities.  We understand that new drivers are particularly vulnerable on the road.\"})}),className:\"framer-h1eisg\",\"data-framer-name\":\"Our passion for driver education stems from a genuine desire to foster safer communities. We understand that new drivers are particularly vulnerable on the road.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182oxcb\",\"data-framer-name\":\"About Texts\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8sluc1\",\"data-framer-name\":\"Top Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Mission\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Mission\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Mission\"})}),className:\"framer-18m3aoj\",\"data-framer-name\":\"Our Mission\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We recognize that everyone learns at their own pace.  That's why we offer a variety of driving lesson packages tailored to your specific needs and goals.\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We recognize that everyone learns at their own pace.  That's why we offer a variety of driving lesson packages tailored to your specific needs and goals.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We recognize that everyone learns at their own pace.  That's why we offer a variety of driving lesson packages tailored to your specific needs and goals.\"})}),className:\"framer-65e968\",\"data-framer-name\":\"We recognize that everyone learns at their own pace. That's why we offer a variety of driving lesson packages tailored to your specific needs and goals.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xdckss\",\"data-framer-name\":\"Bottom Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Vision\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Vision\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1cr0vk8\",\"data-styles-preset\":\"BvK1bLgtm\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Our Vision\"})}),className:\"framer-19z7e2f\",\"data-framer-name\":\"Our Vision\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Each instructor undergoes a rigorous training program, ensuring they possess not only extensive knowledge of traffic laws and safe driving practices but also exceptional\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Each instructor undergoes a rigorous training program, ensuring they possess not only extensive knowledge of traffic laws and safe driving practices but also exceptional\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"Each instructor undergoes a rigorous training program, ensuring they possess not only extensive knowledge of traffic laws and safe driving practices but also exceptional\"})}),className:\"framer-148q74y\",\"data-framer-name\":\"Each instructor undergoes a rigorous training program, ensuring they possess not only extensive knowledge of traffic laws and safe driving practices but also exceptional\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1514drp\",\"data-framer-name\":\"Why Choose Us  section \",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fzvb9l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cnfqak\",\"data-framer-name\":\"Content  Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ihx2s\",\"data-framer-name\":\"Section TItle \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{y:(componentViewport?.y||0)+0+2274.4+100+0+0+0+0+0+0},I9TLG4x9M:{y:(componentViewport?.y||0)+0+2823.4+60+0+0+0+0+0+0+0},W85A_1od0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+2309.4+130+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m47n13-container\",nodeId:\"iaJdhsCgy\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(Tagline,{height:\"100%\",id:\"iaJdhsCgy\",layoutId:\"iaJdhsCgy\",tk3CLcswL:\"Why Choose Us\",variant:\"b551T1fKa\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Instructors Who Guide You to Success.\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Instructors Who Guide You to Success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Instructors Who Guide You to Success.\"})}),className:\"framer-1ii7x4z\",\"data-framer-name\":\"Your Trusted Partner for Safe Driving.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iz0kup\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12bpa4d\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"01\"})}),className:\"framer-4682r5\",\"data-framer-name\":\"01\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-od90gs\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Lessons That Fit Your Busy Life\"})}),className:\"framer-1h7ms3t\",\"data-framer-name\":\"title \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We understand that everyone has a busy schedule. We offer flexible scheduling options to accommodate your individual  needs.\"})}),className:\"framer-1wjwday\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwewrn\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"02\"})}),className:\"framer-fh9xvn\",\"data-framer-name\":\"01\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139oq9x\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"We Make Learning to Drive Fun\"})}),className:\"framer-7ppp7g\",\"data-framer-name\":\"title \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We know how hectic life can be. That\u2019s why we provide flexible scheduling options tailored to fit your individual needs.\"})}),className:\"framer-twxhq0\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168zvea\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"03\"})}),className:\"framer-1huyb1\",\"data-framer-name\":\"01\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-996spz\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1poo6uu\",\"data-styles-preset\":\"K8WFGF3wO\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Unparalleled Customer Service\"})}),className:\"framer-1bpd2di\",\"data-framer-name\":\"title \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"ware of your busy schedule, we offer flexible appointment times to suit your personal needs and preferences.\"})}),className:\"framer-1ie6121\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1hdv8\",\"data-border\":true,\"data-framer-name\":\"Content  Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bduz00\",\"data-framer-name\":\"text \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1114k9\",\"data-styles-preset\":\"CI1VnzFOG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Numbers Tell Stories\"})}),className:\"framer-1goiak1\",\"data-framer-name\":\"Numbers Tell Stories\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lrmrb1\",\"data-styles-preset\":\"E6ASY2b1_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9cf3500-cf7e-4168-abd8-7fdc80291391, rgb(102, 102, 106))\"},children:\"We understand that everyone has a busy schedule. We offer flexible scheduling options to accommodate\"})}),className:\"framer-1cmpdxm\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdlddl\",\"data-framer-name\":\"Counter\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18i8pdl\",\"data-border\":true,\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x71sjw\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jyy0ec\",\"data-styles-preset\":\"IEkZN_toR\",style:{\"--framer-text-color\":\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39))\"},children:\"5,400+\"})}),className:\"framer-1rzuuve\",\"data-framer-name\":\"5,400+\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Licenses Issued\"})}),className:\"framer-1q1i1cb\",\"data-framer-name\":\"Licenses Issued\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yz4con\",\"data-border\":true,\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w0fzmn\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jyy0ec\",\"data-styles-preset\":\"IEkZN_toR\",style:{\"--framer-text-color\":\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39))\"},children:\"1,350+\"})}),className:\"framer-17omjjo\",\"data-framer-name\":\"5,400+\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Active Students\"})}),className:\"framer-1eda0d6\",\"data-framer-name\":\"Licenses Issued\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6y7i7d\",\"data-border\":true,\"data-framer-name\":\"3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qkssgj\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jyy0ec\",\"data-styles-preset\":\"IEkZN_toR\",style:{\"--framer-text-color\":\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39))\"},children:\"150+\"})}),className:\"framer-1ktmxjs\",\"data-framer-name\":\"5,400+\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"People Reviews\"})}),className:\"framer-a9ouw9\",\"data-framer-name\":\"Licenses Issued\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2s2pjb\",\"data-border\":true,\"data-framer-name\":\"4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vf60tl\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jyy0ec\",\"data-styles-preset\":\"IEkZN_toR\",style:{\"--framer-text-color\":\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39))\"},children:\"60+\"})}),className:\"framer-1r85v3l\",\"data-framer-name\":\"5,400+\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-7044c342-673d-48ac-8ebf-1631e1598ce8, rgb(33, 31, 30))\"},children:\"Training Hours\"})}),className:\"framer-zalbm5\",\"data-framer-name\":\"Licenses Issued\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3268.4),pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png\",srcSet:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png 2333w\"}},I9TLG4x9M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4899.6),pixelHeight:1545,pixelWidth:2333,positionX:\"30.9%\",positionY:\"40.8%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png\",srcSet:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png 2333w\"}},W85A_1od0:{background:{alt:\"\",fit:\"fill\",pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png\",srcSet:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png 2333w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3363.4),pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png\",srcSet:\"https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kushQIFMfUKNtGvWBA14y979cI.png 2333w\"},className:\"framer-1jatu2t\",\"data-framer-name\":\"Testimonials Section \",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q9nitt\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsi105\",\"data-framer-name\":\"Content \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j4au83\",\"data-framer-name\":\"Section TItle \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{y:(componentViewport?.y||0)+0+3268.4+100+0+0+0+0+0+0},I9TLG4x9M:{y:(componentViewport?.y||0)+0+4899.6+60+0+0+0+0+0+0},W85A_1od0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+3363.4+136+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-59u48o-container\",nodeId:\"Fj4lnqTAB\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(Tagline,{height:\"100%\",id:\"Fj4lnqTAB\",layoutId:\"Fj4lnqTAB\",tk3CLcswL:\"Testimonial\",variant:\"cetKHa2jZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Great Reviews from Our Students\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Great Reviews from Our Students\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eugni3\",\"data-styles-preset\":\"ToBYi8WzQ\",style:{\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Great Reviews from Our Students\"})}),className:\"framer-4kvr0z\",\"data-framer-name\":\"title \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10p9t6j\",\"data-framer-name\":\"Client Feedback\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gl4hkc\",\"data-framer-name\":\"Client Feedback 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkv6jg\",\"data-framer-name\":\"profile \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3268.4+100+0+0+0+181.2+0+0+0+0+0+0),pixelHeight:132,pixelWidth:132,src:\"https://framerusercontent.com/images/ugixPwX8U8Lb1TT5UrlkdCpZ5M.png\"}},I9TLG4x9M:{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4899.6+60+0+0+0+147.2+0+0+0+0+0+0),pixelHeight:132,pixelWidth:132,src:\"https://framerusercontent.com/images/ugixPwX8U8Lb1TT5UrlkdCpZ5M.png\"}},W85A_1od0:{background:{alt:\"Client Image \",fit:\"fill\",pixelHeight:132,pixelWidth:132,src:\"https://framerusercontent.com/images/ugixPwX8U8Lb1TT5UrlkdCpZ5M.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3363.4+136+0+0+0+181.2+0+0+0+0+0+0),pixelHeight:132,pixelWidth:132,src:\"https://framerusercontent.com/images/ugixPwX8U8Lb1TT5UrlkdCpZ5M.png\"},className:\"framer-rvu1p0\",\"data-framer-name\":\"Client Image \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjn50k\",\"data-framer-name\":\"Icon \",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9xs41r\",\"data-framer-name\":\"Icon \",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 8\"><path d=\"M 8.235 2.794 C 8.421 1.783 8.729 1.056 8.974 0.606 C 9.07 0.43 8.874 0.234 8.7 0.335 C 6.647 1.525 5.746 3.261 5.635 4.653 C 5.538 5.854 6.361 7.09 7.61 7.315 C 8.858 7.541 10.054 6.717 10.28 5.475 C 10.518 4.174 9.595 2.923 8.235 2.794 Z\" fill=\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39)) /* {&quot;name&quot;:&quot;Theme Colors 01&quot;} */\"></path><path d=\"M 2.651 2.794 C 2.837 1.783 3.145 1.056 3.39 0.606 C 3.486 0.43 3.29 0.234 3.116 0.335 C 1.063 1.525 0.162 3.261 0.051 4.653 C -0.046 5.854 0.777 7.09 2.026 7.315 C 3.274 7.541 4.47 6.717 4.696 5.475 C 4.934 4.174 4.011 2.923 2.651 2.794 Z\" fill=\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39)) /* {&quot;name&quot;:&quot;Theme Colors 01&quot;} */\"></path></svg>',svgContentId:9076000087,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ibgbvi\",\"data-framer-name\":\"Name \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Shirley Parker\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Shirley Parker\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Shirley Parker\"})}),className:\"framer-1cmh370\",\"data-framer-name\":\"Shirley Parker\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})}),className:\"framer-13bphqf\",\"data-framer-name\":\"Driving Student\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\u201CA positive testimonial that you think will tell people how good you are. Some positive words from an existing or a past client makes a lot of difference and boosts conversions on your website\u201D\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\u201CA positive testimonial that you think will tell people how good you are. Some positive words from an existing or a past client makes a lot of difference and boosts conversions on your website\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\u201CA positive testimonial that you think will tell people how good you are. Some positive words from an existing or a past client makes a lot of difference and boosts conversions on your website\u201D\"})}),className:\"framer-8qaek8\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iw2320\",\"data-framer-name\":\"Client Feedback 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tt5zu1\",\"data-framer-name\":\"profile \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3268.4+100+0+0+0+181.2+0+588+0+0+0+0),pixelHeight:133,pixelWidth:132,src:\"https://framerusercontent.com/images/rxfGrxtosOTJw7tqTgwZHzzWXI.png\"}},I9TLG4x9M:{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4899.6+60+0+0+0+147.2+0+564+0+0+0+0),pixelHeight:133,pixelWidth:132,src:\"https://framerusercontent.com/images/rxfGrxtosOTJw7tqTgwZHzzWXI.png\"}},W85A_1od0:{background:{alt:\"Client Image \",fit:\"fill\",pixelHeight:133,pixelWidth:132,src:\"https://framerusercontent.com/images/rxfGrxtosOTJw7tqTgwZHzzWXI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Client Image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3363.4+136+0+0+0+181.2+0+588+0+0+0+0),pixelHeight:133,pixelWidth:132,src:\"https://framerusercontent.com/images/rxfGrxtosOTJw7tqTgwZHzzWXI.png\"},className:\"framer-1u7zow7\",\"data-framer-name\":\"Client Image \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5syxa\",\"data-framer-name\":\"Icon \",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vvmfr\",\"data-framer-name\":\"Icon \",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 8\"><path d=\"M 8.235 2.794 C 8.421 1.783 8.729 1.056 8.974 0.606 C 9.07 0.43 8.874 0.234 8.7 0.335 C 6.647 1.525 5.746 3.261 5.635 4.653 C 5.538 5.854 6.361 7.09 7.61 7.315 C 8.858 7.541 10.054 6.717 10.28 5.475 C 10.518 4.174 9.595 2.923 8.235 2.794 Z\" fill=\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39)) /* {&quot;name&quot;:&quot;Theme Colors 01&quot;} */\"></path><path d=\"M 2.651 2.794 C 2.837 1.783 3.145 1.056 3.39 0.606 C 3.486 0.43 3.29 0.234 3.116 0.335 C 1.063 1.525 0.162 3.261 0.051 4.653 C -0.046 5.854 0.777 7.09 2.026 7.315 C 3.274 7.541 4.47 6.717 4.696 5.475 C 4.934 4.174 4.011 2.923 2.651 2.794 Z\" fill=\"var(--token-0fc68bf2-ef34-47c9-90fc-32b34ce223d0, rgb(255, 82, 39)) /* {&quot;name&quot;:&quot;Theme Colors 01&quot;} */\"></path></svg>',svgContentId:9076000087,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wk8xq\",\"data-framer-name\":\"Name \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Selina Gomzen\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Selina Gomzen\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kq2r8i\",\"data-styles-preset\":\"sQPODkAV9\",style:{\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"Selina Gomzen\"})}),className:\"framer-1bk69c9\",\"data-framer-name\":\"Shirley Parker\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kkjxng\",\"data-styles-preset\":\"L8cvQ9aIW\",style:{\"--framer-text-color\":\"var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, rgb(248, 247, 247))\"},children:\"Driving Student\"})}),className:\"framer-1ylspnf\",\"data-framer-name\":\"Driving Student\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{I9TLG4x9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\\\"Positive remarks from satisfied clients can greatly influence others and increase your website's conversion previous client showcase our strengths and are key to increasing your website's conversion rate effectiveness.\\\"\"})})},W85A_1od0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\\\"Positive remarks from satisfied clients can greatly influence others and increase your website's conversion previous client showcase our strengths and are key to increasing your website's conversion rate effectiveness.\\\"\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-48ceem\",\"data-styles-preset\":\"iY5uS7H8p\",style:{\"--framer-text-color\":\"var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, rgb(255, 255, 255))\"},children:\"\\\"Positive remarks from satisfied clients can greatly influence others and increase your website's conversion previous client showcase our strengths and are key to increasing your website's conversion rate effectiveness.\\\"\"})}),className:\"framer-jgogtb\",\"data-framer-name\":\"paragraph \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{background:{alt:\"Client image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3268.4+-1.5104),pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png\",srcSet:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png 2333w\"}},I9TLG4x9M:{background:{alt:\"Client image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4899.6+-.6795),pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png\",srcSet:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png 2333w\"}},W85A_1od0:{background:{alt:\"Client image \",fit:\"fill\",pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png\",srcSet:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png 2333w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Client image \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3363.4+-1.5313),pixelHeight:1545,pixelWidth:2333,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png\",srcSet:\"https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IsPW5EeHEunGLcBu2mM7EFmc4.png 2333w\"},className:\"framer-15nb03r\",\"data-framer-name\":\"Linear Color\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5vj3yp\",\"data-framer-name\":\"Contact Section \",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{y:(componentViewport?.y||0)+0+4785.6+0},I9TLG4x9M:{y:(componentViewport?.y||0)+0+6270.8+0},W85A_1od0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:894,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4901.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rmo6ck-container\",\"data-framer-name\":\"Contact\",name:\"Contact\",nodeId:\"arJFv4llP\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{variant:\"UrYBSohn6\"},I9TLG4x9M:{variant:\"vsdBh1EX7\"},W85A_1od0:{variant:\"d92sCjLLi\"}},children:/*#__PURE__*/_jsx(ContactSection,{height:\"100%\",id:\"arJFv4llP\",layoutId:\"arJFv4llP\",name:\"Contact\",style:{width:\"100%\"},variant:\"bddCBhwr_\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-shety4\",\"data-framer-name\":\"Footer Sections\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{y:(componentViewport?.y||0)+0+5679.6+0+0},I9TLG4x9M:{y:(componentViewport?.y||0)+0+7164.8+0+0},W85A_1od0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:705,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5795.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yfe9ju-container\",nodeId:\"MJNXGcOst\",scopeId:\"GD3RWesZC\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ACivU6eSG:{variant:\"RTird2rnU\"},I9TLG4x9M:{variant:\"cYcbOLvqM\"},W85A_1od0:{variant:\"RNkfGSJng\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MJNXGcOst\",layoutId:\"MJNXGcOst\",style:{width:\"100%\"},variant:\"I12057:3312;11956:3581\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k44jF.framer-5m8hbx, .framer-k44jF .framer-5m8hbx { display: block; }\",\".framer-k44jF.framer-1rf81cc { align-content: center; align-items: center; background-color: var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, #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: 1600px; }\",\".framer-k44jF .framer-j323z2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-k44jF .framer-1knged6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-k44jF .framer-1mykwzs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 30px 65px 30px; position: relative; width: 100%; }\",\".framer-k44jF .framer-ys1wab, .framer-k44jF .framer-y0p24m { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-k44jF .framer-1v7c0dj { 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-k44jF .framer-44vq40, .framer-k44jF .framer-7x7znl, .framer-k44jF .framer-h1eisg, .framer-k44jF .framer-18m3aoj, .framer-k44jF .framer-65e968, .framer-k44jF .framer-19z7e2f, .framer-k44jF .framer-148q74y, .framer-k44jF .framer-1ii7x4z, .framer-k44jF .framer-1h7ms3t, .framer-k44jF .framer-1wjwday, .framer-k44jF .framer-7ppp7g, .framer-k44jF .framer-twxhq0, .framer-k44jF .framer-1bpd2di, .framer-k44jF .framer-1ie6121, .framer-k44jF .framer-1goiak1, .framer-k44jF .framer-1cmpdxm, .framer-k44jF .framer-4kvr0z, .framer-k44jF .framer-1cmh370, .framer-k44jF .framer-8qaek8, .framer-k44jF .framer-1bk69c9, .framer-k44jF .framer-jgogtb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k44jF .framer-14qytjr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 51%; word-break: break-word; word-wrap: break-word; }\",\".framer-k44jF .framer-l6j66h { aspect-ratio: 1.7721518987341771 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 790px); overflow: visible; position: relative; width: 100%; }\",\".framer-k44jF .framer-x25qgk { align-content: center; align-items: center; background-color: var(--token-9497418f-b189-44f8-994f-77064ac164d1, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 147px; justify-content: center; left: calc(50.00000000000002% - 147px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 147px / 2); width: 147px; z-index: 2; }\",\".framer-k44jF.framer-3ncn49 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-k44jF.framer-zh7htd-container { flex: none; height: 446px; left: calc(50.00000000000002% - 839px / 2); position: fixed; top: calc(50.00000000000002% - 446px / 2); width: 839px; z-index: 3; }\",\".framer-k44jF.framer-9yiqhj-container { flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: fixed; top: 130px; width: 40px; z-index: 3; }\",\".framer-k44jF .framer-618viu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; z-index: 1; }\",\".framer-k44jF .framer-1x36onb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 65px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-k44jF .framer-xe19nz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 94px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-k44jF .framer-1v8jt08 { aspect-ratio: 0.966804979253112 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 723px); overflow: hidden; position: relative; width: 53%; will-change: var(--framer-will-change-override, transform); }\",\".framer-k44jF .framer-1hftk1i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-k44jF .framer-1i0xb7c, .framer-k44jF .framer-1j4au83, .framer-k44jF .framer-gl4hkc, .framer-k44jF .framer-iw2320 { align-content: flex-start; align-items: flex-start; 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-k44jF .framer-182oxcb, .framer-k44jF .framer-iz0kup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-8sluc1, .framer-k44jF .framer-xdckss, .framer-k44jF .framer-8ihx2s, .framer-k44jF .framer-1gkv6jg, .framer-k44jF .framer-1tt5zu1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-1514drp { align-content: center; align-items: center; background-color: var(--token-7589c5a9-79ab-46dc-989e-c321d6175a37, #f8f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-k44jF .framer-fzvb9l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-1cnfqak { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 42%; }\",\".framer-k44jF .framer-m47n13-container, .framer-k44jF .framer-59u48o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-k44jF .framer-12bpa4d, .framer-k44jF .framer-nwewrn, .framer-k44jF .framer-168zvea { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-4682r5, .framer-k44jF .framer-fh9xvn, .framer-k44jF .framer-1huyb1, .framer-k44jF .framer-1rzuuve, .framer-k44jF .framer-1q1i1cb, .framer-k44jF .framer-17omjjo, .framer-k44jF .framer-1eda0d6, .framer-k44jF .framer-1ktmxjs, .framer-k44jF .framer-a9ouw9, .framer-k44jF .framer-1r85v3l, .framer-k44jF .framer-zalbm5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k44jF .framer-od90gs, .framer-k44jF .framer-139oq9x, .framer-k44jF .framer-996spz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-k44jF .framer-1d1hdv8 { --border-bottom-width: 1px; --border-color: rgba(33, 31, 30, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: auto; justify-content: flex-start; overflow: visible; padding: 44px 43px 44px 43px; position: relative; width: 47%; }\",\".framer-k44jF .framer-1bduz00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 521px; }\",\".framer-k44jF .framer-fdlddl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-18i8pdl, .framer-k44jF .framer-yz4con, .framer-k44jF .framer-6y7i7d, .framer-k44jF .framer-2s2pjb { --border-bottom-width: 1px; --border-color: var(--token-17fc87fa-54a7-4ec3-bc6b-aa13e1a1d89f, rgba(18, 19, 26, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 47%; will-change: var(--framer-will-change-override, transform); }\",\".framer-k44jF .framer-x71sjw, .framer-k44jF .framer-w0fzmn, .framer-k44jF .framer-1qkssgj, .framer-k44jF .framer-1vf60tl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 42px 60px 42px 60px; position: relative; width: 100%; }\",\".framer-k44jF .framer-1jatu2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 136px 0px 85px 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-q9nitt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 1400px; overflow: visible; padding: 0px 62px 0px 0px; position: relative; width: 100%; z-index: 6; }\",\".framer-k44jF .framer-vsi105 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 45%; z-index: 3; }\",\".framer-k44jF .framer-10p9t6j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-rvu1p0, .framer-k44jF .framer-1u7zow7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 66px; }\",\".framer-k44jF .framer-1fjn50k, .framer-k44jF .framer-1t5syxa { aspect-ratio: 1 / 1; background-color: var(--token-f62a7e4b-0439-42b3-b87a-5a5409de88dc, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 46px; position: absolute; top: 2px; width: 19px; }\",\".framer-k44jF .framer-9xs41r, .framer-k44jF .framer-vvmfr { flex: none; height: 8px; position: absolute; right: 4px; top: calc(52.63157894736844% - 8px / 2); width: 11px; }\",\".framer-k44jF .framer-ibgbvi, .framer-k44jF .framer-16wk8xq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-13bphqf, .framer-k44jF .framer-1ylspnf { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k44jF .framer-15nb03r { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.9; overflow: hidden; position: absolute; top: calc(49.9504459861249% - 100.09910802775023% / 2); width: 100%; z-index: 0; }\",\".framer-k44jF .framer-5vj3yp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k44jF .framer-rmo6ck-container, .framer-k44jF .framer-1yfe9ju-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-k44jF .framer-shety4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-k44jF[data-border=\"true\"]::after, .framer-k44jF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1599px) { .framer-k44jF.framer-1rf81cc { width: 1200px; } .framer-k44jF .framer-1mykwzs, .framer-k44jF .framer-1x36onb { padding: 60px 30px 50px 30px; } .framer-k44jF .framer-ys1wab, .framer-k44jF .framer-y0p24m { gap: 50px; max-width: 1140px; padding: 0px 0px 50px 0px; } .framer-k44jF .framer-14qytjr { width: 63%; } .framer-k44jF .framer-l6j66h { height: var(--framer-aspect-ratio-supported, 643px); } .framer-k44jF.framer-zh7htd-container { height: 408px; left: calc(50.00000000000002% - 739px / 2); top: calc(50.06321112515805% - 408px / 2); width: 739px; } .framer-k44jF .framer-xe19nz { gap: unset; justify-content: space-between; width: 100%; } .framer-k44jF .framer-1v8jt08 { aspect-ratio: 0.8441358024691358 / 1; height: var(--framer-aspect-ratio-supported, 676px); width: 50%; } .framer-k44jF .framer-1hftk1i { width: 42%; } .framer-k44jF .framer-7x7znl { width: 94%; } .framer-k44jF .framer-1514drp { padding: 100px 30px 100px 30px; } .framer-k44jF .framer-fzvb9l, .framer-k44jF .framer-q9nitt { max-width: 1140px; } .framer-k44jF .framer-1cnfqak { width: 46%; } .framer-k44jF .framer-1d1hdv8 { width: 50%; } .framer-k44jF .framer-fdlddl { gap: 19px; } .framer-k44jF .framer-18i8pdl, .framer-k44jF .framer-yz4con, .framer-k44jF .framer-6y7i7d, .framer-k44jF .framer-2s2pjb { width: 48%; } .framer-k44jF .framer-1jatu2t { padding: 100px 0px 100px 0px; } .framer-k44jF .framer-vsi105 { width: 578px; } .framer-k44jF .framer-4kvr0z { width: 93%; }}\",\"@media (min-width: 768px) and (max-width: 1199px) { .framer-k44jF.framer-1rf81cc { width: 768px; } .framer-k44jF .framer-1mykwzs, .framer-k44jF .framer-1x36onb { padding: 40px 30px 40px 30px; } .framer-k44jF .framer-ys1wab, .framer-k44jF .framer-y0p24m { max-width: 768px; } .framer-k44jF .framer-14qytjr, .framer-k44jF .framer-1cnfqak { width: 100%; } .framer-k44jF .framer-l6j66h { height: var(--framer-aspect-ratio-supported, 113px); } .framer-k44jF .framer-x25qgk { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100px; } .framer-k44jF.framer-zh7htd-container { height: 303px; left: calc(50.00000000000002% - 531px / 2); top: calc(49.92343032159267% - 303px / 2); width: 531px; } .framer-k44jF.framer-9yiqhj-container { top: 104px; } .framer-k44jF .framer-xe19nz { flex-direction: column; gap: 60px; width: 100%; } .framer-k44jF .framer-1v8jt08 { height: var(--framer-aspect-ratio-supported, 207px); width: 90%; } .framer-k44jF .framer-1hftk1i { width: 80%; } .framer-k44jF .framer-1514drp { padding: 80px 30px 80px 30px; } .framer-k44jF .framer-fzvb9l { flex-direction: column; gap: 40px; justify-content: center; max-width: 768px; } .framer-k44jF .framer-8ihx2s, .framer-k44jF .framer-iz0kup, .framer-k44jF .framer-gl4hkc, .framer-k44jF .framer-1gkv6jg, .framer-k44jF .framer-iw2320, .framer-k44jF .framer-1tt5zu1 { align-content: center; align-items: center; justify-content: center; } .framer-k44jF .framer-12bpa4d, .framer-k44jF .framer-nwewrn, .framer-k44jF .framer-168zvea { width: 83%; } .framer-k44jF .framer-od90gs, .framer-k44jF .framer-139oq9x, .framer-k44jF .framer-996spz { flex: none; width: 542px; } .framer-k44jF .framer-1d1hdv8 { align-content: center; align-items: center; align-self: unset; gap: 50px; height: min-content; justify-content: center; width: 100%; } .framer-k44jF .framer-1jatu2t { padding: 70px 0px 70px 0px; } .framer-k44jF .framer-q9nitt { justify-content: center; max-width: 768px; padding: 0px; } .framer-k44jF .framer-vsi105 { gap: 40px; width: 68%; } .framer-k44jF .framer-1j4au83 { align-content: center; align-items: center; }}\",\"@media (max-width: 767px) { .framer-k44jF.framer-1rf81cc { width: 390px; } .framer-k44jF .framer-j323z2 { left: 50%; position: fixed; top: 0px; transform: translateX(-50%); } .framer-k44jF .framer-1knged6-container { flex: none; width: 100%; z-index: 1; } .framer-k44jF .framer-1mykwzs { padding: 115px 20px 30px 20px; } .framer-k44jF .framer-ys1wab, .framer-k44jF .framer-y0p24m { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; max-width: 390px; } .framer-k44jF .framer-14qytjr, .framer-k44jF .framer-1hftk1i, .framer-k44jF .framer-1cnfqak, .framer-k44jF .framer-1bduz00, .framer-k44jF .framer-18i8pdl, .framer-k44jF .framer-yz4con, .framer-k44jF .framer-6y7i7d, .framer-k44jF .framer-2s2pjb { width: 100%; } .framer-k44jF .framer-l6j66h { height: var(--framer-aspect-ratio-supported, 113px); } .framer-k44jF .framer-x25qgk { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 70px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 70px; } .framer-k44jF.framer-zh7htd-container { height: 193px; left: calc(50.00000000000002% - 332px / 2); top: calc(49.88764044943822% - 193px / 2); width: 332px; } .framer-k44jF.framer-9yiqhj-container { top: 78px; } .framer-k44jF .framer-618viu { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-k44jF .framer-1x36onb { padding: 30px 20px 30px 20px; } .framer-k44jF .framer-xe19nz { flex-direction: column; gap: 40px; width: 100%; } .framer-k44jF .framer-1v8jt08 { height: var(--framer-aspect-ratio-supported, 207px); width: 100%; } .framer-k44jF .framer-1514drp, .framer-k44jF .framer-1jatu2t { gap: 0px; padding: 60px 20px 60px 20px; } .framer-k44jF .framer-fzvb9l { flex-direction: column; gap: 30px; justify-content: center; max-width: 390px; } .framer-k44jF .framer-8ihx2s { align-content: center; align-items: center; gap: 24px; justify-content: center; } .framer-k44jF .framer-iz0kup, .framer-k44jF .framer-10p9t6j { gap: 24px; } .framer-k44jF .framer-1d1hdv8 { align-self: unset; height: min-content; padding: 30px 20px 30px 20px; width: 100%; } .framer-k44jF .framer-fdlddl { flex-direction: column; } .framer-k44jF .framer-q9nitt { max-width: 390px; order: 1; padding: 0px; } .framer-k44jF .framer-vsi105 { align-content: center; align-items: center; flex: 1 0 0px; gap: 30px; justify-content: center; width: 1px; } .framer-k44jF .framer-1j4au83 { align-content: center; align-items: center; gap: 16px; } .framer-k44jF .framer-gl4hkc, .framer-k44jF .framer-iw2320 { gap: 16px; } .framer-k44jF .framer-1gkv6jg, .framer-k44jF .framer-1tt5zu1 { align-content: center; align-items: center; justify-content: center; } .framer-k44jF .framer-15nb03r { height: 100%; opacity: unset; order: 0; top: calc(49.9504459861249% - 100% / 2); } .framer-k44jF .framer-shety4 { gap: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5706\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ACivU6eSG\":{\"layout\":[\"fixed\",\"auto\"]},\"W85A_1od0\":{\"layout\":[\"fixed\",\"auto\"]},\"I9TLG4x9M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"B9EKxjN62\":{\"pattern\":\":B9EKxjN62\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerGD3RWesZC=withCSS(Component,css,\"framer-k44jF\");export default FramerGD3RWesZC;FramerGD3RWesZC.displayName=\"Home\";FramerGD3RWesZC.defaultProps={height:5706,width:1600};addFonts(FramerGD3RWesZC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HeaderFonts,...YouTubeFonts,...FeatherFonts,...TaglineFonts,...ContactSectionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGD3RWesZC\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"B9EKxjN62\\\":{\\\"pattern\\\":\\\":B9EKxjN62\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ACivU6eSG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W85A_1od0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I9TLG4x9M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1600\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5706\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "HeaderFonts", "getFonts", "CyC5uG86C_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "YouTubeFonts", "Youtube", "FeatherFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "TaglineFonts", "roXeXCLDV_default", "ContactSectionFonts", "PVUtyMYtZ_default", "FooterFonts", "KQ079XW2p_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "HeaderWithVariantAppearEffect", "MotionDivWithFX", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "l", "AnimatePresence", "Ga", "Youtube", "Icon", "roXeXCLDV_default", "SVG", "PVUtyMYtZ_default", "KQ079XW2p_default", "css", "FramerGD3RWesZC", "withCSS", "GD3RWesZC_default", "addFonts", "HeaderFonts", "YouTubeFonts", "FeatherFonts", "TaglineFonts", "ContactSectionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
