{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/2ItkiayWQDQru2vxxmpm/gI9bpX7nPfGn5BCRCR9N/sj4y2n2fG.js", "ssg:https://framerusercontent.com/modules/7wfbmLJFnpUf8rLBjKzQ/GrSbjLT3lBLouV3ywS3T/BWnRRPjZA.js", "ssg:https://framerusercontent.com/modules/9ZAWW0Aumfqzxt871jpr/p58Fm7BAxnqlZjI9443p/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4431e6b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const MaterialControls=getPropertyControls(Material);const cycleOrder=[\"JPH88w6tx\"];const variantClassNames={JPH88w6tx:\"framer-v-1e2ndnl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"JPH88w6tx\",text:m3LlPreBq=\"We use cookies to give you the best online experience. Find out more on how we use cookies in our cookie policy.\",name2:dU7xfzDPc=\"Home\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"JPH88w6tx\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-vk5lg\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-1e2ndnl\",className),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JPH88w6tx\",ref:ref,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1gd8l66\",layoutDependency:layoutDependency,layoutId:\"YnXm7VRV2\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-wn9qcp-container\",layoutDependency:layoutDependency,layoutId:\"XdXDpwLYT-container\",children:/*#__PURE__*/ _jsx(Material,{color:'var(--token-b15191f7-c742-4fb6-b06f-2dd4ac742e7e, rgb(245, 245, 245)) /* {\"name\":\"Light Grey\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:dU7xfzDPc,iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"XdXDpwLYT\",layoutId:\"XdXDpwLYT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"We use cookies to give you the best online experience. Find out more on how we use cookies in our cookie policy.\"})}),className:\"framer-1ugaglz\",fonts:[\"GF;Be Vietnam Pro-500\"],layoutDependency:layoutDependency,layoutId:\"OukLDegLA\",style:{\"--extracted-r6o4lv\":\"var(--token-b15191f7-c742-4fb6-b06f-2dd4ac742e7e, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},text:m3LlPreBq,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=['.framer-vk5lg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vk5lg .framer-bl78c8 { display: block; }\",\".framer-vk5lg .framer-1e2ndnl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 20px 20px 20px; position: relative; width: 312px; }\",\".framer-vk5lg .framer-1gd8l66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vk5lg .framer-wn9qcp-container { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-vk5lg .framer-1ugaglz { flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vk5lg .framer-1e2ndnl, .framer-vk5lg .framer-1gd8l66 { gap: 0px; } .framer-vk5lg .framer-1e2ndnl > *, .framer-vk5lg .framer-1gd8l66 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vk5lg .framer-1e2ndnl > :first-child, .framer-vk5lg .framer-1gd8l66 > :first-child { margin-top: 0px; } .framer-vk5lg .framer-1e2ndnl > :last-child, .framer-vk5lg .framer-1gd8l66 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 260\n * @framerIntrinsicWidth 312\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"m3LlPreBq\":\"text\",\"dU7xfzDPc\":\"name2\"}\n */ const Framersj4y2n2fG=withCSS(Component,css,\"framer-vk5lg\");export default Framersj4y2n2fG;Framersj4y2n2fG.displayName=\"Cookies Card\";Framersj4y2n2fG.defaultProps={height:260,width:312};addPropertyControls(Framersj4y2n2fG,{m3LlPreBq:{defaultValue:\"We use cookies to give you the best online experience. Find out more on how we use cookies in our cookie policy.\",displayTextArea:false,title:\"Text\",type:ControlType.String},dU7xfzDPc:(MaterialControls===null||MaterialControls===void 0?void 0:MaterialControls[\"iconSelection\"])&&{...MaterialControls[\"iconSelection\"],defaultValue:\"Home\",hidden:undefined,title:\"Name 2\"}});addFonts(Framersj4y2n2fG,[{family:\"Be Vietnam Pro\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/sj4y2n2fG:default\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",weight:\"500\"},...MaterialFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framersj4y2n2fG\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"312\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"m3LlPreBq\\\":\\\"text\\\",\\\"dU7xfzDPc\\\":\\\"name2\\\"}\",\"framerIntrinsicHeight\":\"260\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sj4y2n2fG.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-500\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/BWnRRPjZA:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",weight:\"500\"}];export const css=['.framer-yzPGe .framer-styles-preset-1xmzcsx:not(.rich-text-wrapper), .framer-yzPGe .framer-styles-preset-1xmzcsx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #888888; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-yzPGe\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}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 InputStylingEditMe from\"https://framerusercontent.com/modules/9O7VM0ZF4lBiDVPcUTGU/rmFp5F3XgjNF6lM4aK9q/jpoeHphXI.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import FooterDark from\"#framer/local/canvasComponent/gbG5aloyp/gbG5aloyp.js\";import MainButton from\"#framer/local/canvasComponent/PQeo_Vf0w/PQeo_Vf0w.js\";import SubmitStylingEditMe from\"#framer/local/canvasComponent/SFriT6FOX/SFriT6FOX.js\";import CookiesCard from\"#framer/local/canvasComponent/sj4y2n2fG/sj4y2n2fG.js\";import NavbarLogoLight from\"#framer/local/canvasComponent/WeFySkUe9/WeFySkUe9.js\";import{withForm,withInputField,withSubmitButton}from\"#framer/local/codeFile/C65vhhe/FramerFrorm.js\";import*as sharedStyle1 from\"#framer/local/css/BWnRRPjZA/BWnRRPjZA.js\";import*as sharedStyle2 from\"#framer/local/css/k8dqE5fGm/k8dqE5fGm.js\";import*as sharedStyle3 from\"#framer/local/css/sjTIpD5bZ/sjTIpD5bZ.js\";import*as sharedStyle from\"#framer/local/css/uNmhNHPZs/uNmhNHPZs.js\";import*as sharedStyle4 from\"#framer/local/css/WUEKSW7jN/WUEKSW7jN.js\";import*as sharedStyle5 from\"#framer/local/css/x_FFekXnc/x_FFekXnc.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarLogoLightFonts=getFonts(NavbarLogoLight);const MotionDivWithInputFieldl2ytvm=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"GW54gyKHU\",override:withInputField,scopeId:\"augiA20Il\"});const InputStylingEditMeFonts=getFonts(InputStylingEditMe);const MotionDivWithInputField1i6dqbv=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"xOd2cHiJl\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputField1yl1hk4=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"ZvrHQI9bd\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithFX=withFX(motion.div);const SubmitStylingEditMeFonts=getFonts(SubmitStylingEditMe);const MotionDivWithSubmitButton1ylf30s=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"LcibGhLr6\",override:withSubmitButton,scopeId:\"augiA20Il\"});const MotionDivWithForm1l2mjn9=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"ZBG5Mra9r\",override:withForm,scopeId:\"augiA20Il\"});const MainButtonFonts=getFonts(MainButton);const MotionDivWithInputFieldo4p1zh=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"DxbpEaN7N\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputField1vmzqfs=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"KE4TUZ7Bu\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputFieldg2gvic=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"mdNBClN7W\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithSubmitButton1wfecid=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"b4o93fSGS\",override:withSubmitButton,scopeId:\"augiA20Il\"});const MotionDivWithForm1mf7935=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"yqXNE61lx\",override:withForm,scopeId:\"augiA20Il\"});const TickerFonts=getFonts(Ticker);const MotionDivWithInputField3l4nkx=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"HrNhKCfsX\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputField1pefa8e=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"Mq_1qWiXv\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputFieldxbr3sk=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"zuLzHlcYi\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithSubmitButton16qx5vi=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"QpmzA0g5d\",override:withSubmitButton,scopeId:\"augiA20Il\"});const MotionDivWithForm19rfh11=withCodeBoundaryForOverrides(motion.div,{inComponentSlot:true,nodeId:\"l99z1B20e\",override:withForm,scopeId:\"augiA20Il\"});const CookiesCardFonts=getFonts(CookiesCard);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithInputFieldx5yy44=withCodeBoundaryForOverrides(motion.div,{nodeId:\"tO1WWptCH\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithInputField1i7myxc=withCodeBoundaryForOverrides(motion.div,{nodeId:\"F_YKUr2tb\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithInputField18gokbr=withCodeBoundaryForOverrides(motion.div,{nodeId:\"zlENKDGLb\",override:withInputField,scopeId:\"augiA20Il\"});const MotionDivWithSubmitButtonpu3f5k=withCodeBoundaryForOverrides(motion.div,{nodeId:\"zUZc53A0p\",override:withSubmitButton,scopeId:\"augiA20Il\"});const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const MotionDivWithForm1oo6j3x=withCodeBoundaryForOverrides(motion.div,{nodeId:\"X8Or3FlLC\",override:withForm,scopeId:\"augiA20Il\"});const FooterDarkFonts=getFonts(FooterDark);const breakpoints={IWKk8AZi0:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",xHoizhwKZ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XH6MV\";const variantClassNames={IWKk8AZi0:\"framer-v-1r8ybzn\",WQLkyLRf1:\"framer-v-72rtr7\",xHoizhwKZ:\"framer-v-1cz97ve\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition3};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};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 animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"xHoizhwKZ\",Tablet:\"IWKk8AZi0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const NCdkBfeZH3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const tap23bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xHoizhwKZ\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xHoizhwKZ\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-17qr727-container\",id:\"17qr727\",nodeId:\"EKIONkgA5\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{variant:\"tgvsZfqoO\"},xHoizhwKZ:{variant:\"Z4dbx37MW\"}},children:/*#__PURE__*/_jsx(NavbarLogoLight,{height:\"100%\",id:\"EKIONkgA5\",layoutId:\"EKIONkgA5\",NCdkBfeZH:NCdkBfeZH3bnx0g({overlay}),style:{width:\"100%\"},variant:\"L2iPlwVUg\",width:\"100%\"})}),/*#__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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-a4no4i\"),\"data-framer-portal-id\":\"17qr727\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"amWr4fUl3\"),/*#__PURE__*/_jsxs(MotionDivWithForm1l2mjn9,{className:cx(scopingClassNames,\"framer-1l2mjn9\"),\"data-framer-name\":\"Form for popup\",\"data-framer-portal-id\":\"17qr727\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-gz8snt\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eyf7ws\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputFieldl2ytvm,{className:\"framer-l2ytvm\",\"data-framer-name\":\"name\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17gc3wt-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Qe2RQLLpu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"Qe2RQLLpu\",layoutId:\"Qe2RQLLpu\",style:{width:\"100%\"},title:\"Name\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-8y656i\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufa0pj\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField1i6dqbv,{className:\"framer-1i6dqbv\",\"data-framer-name\":\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6zpzad-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"rAw7JUfs5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Mail\",iconColor:\"rgb(185, 186, 193)\",id:\"rAw7JUfs5\",layoutId:\"rAw7JUfs5\",style:{width:\"100%\"},title:\"Email Address\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-27bob2\",\"data-framer-name\":\"Input\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-e7e73d69-90f6-4bca-b3ba-d4cbd11b2d81, rgb(99, 101, 114))\"},children:\"Message\"})}),className:\"framer-5t1tq5\",\"data-framer-name\":\"Text\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-apww6y\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField1yl1hk4,{className:\"framer-1yl1hk4\",\"data-framer-name\":\"tags\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jstzjq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"PoYZ4G60U\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"PoYZ4G60U\",layoutId:\"PoYZ4G60U\",style:{height:\"100%\",width:\"100%\"},title:\"Select\",variant:\"JcA0uSMtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BiceTmUtp\"},motionChild:true,nodeId:\"tDOvUd3_s\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{animate:animation5,className:\"framer-flo4lh framer-lux5qc\",\"data-framer-name\":\"Submit\",exit:animation3,initial:animation2,style:{transformPerspective:1200},whileHover:animation4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j4bai-container\",inComponentSlot:true,nodeId:\"vuVfjhrHc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SubmitStylingEditMe,{background:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",height:\"100%\",icon:\"Send\",iconColor:\"var(--token-9c7d00e4-9265-4359-a7d0-4b21b068797c, rgb(255, 255, 255))\",id:\"vuVfjhrHc\",layoutId:\"vuVfjhrHc\",style:{height:\"100%\",width:\"100%\"},text:\"Send Message\",variant:\"fj6Hoa5i7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithSubmitButton1ylf30s,{className:\"framer-1ylf30s\",\"data-framer-name\":\"Submission\"})]})})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,src:\"https://framerusercontent.com/images/xLv1CLjUCChLwmSn4uGzlI3oV0.jpg\"},className:\"framer-d5t05n\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wz9u\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qg1zfh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kq9uae\",\"data-styles-preset\":\"uNmhNHPZs\",style:{\"--framer-text-alignment\":\"left\"},children:\"Expert electricians local to London and the home counties\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kq9uae\",\"data-styles-preset\":\"uNmhNHPZs\",style:{\"--framer-text-alignment\":\"center\"},children:\"Expert electricians local to London and the home counties\"})}),className:\"framer-1gx2nvl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xmzcsx\",\"data-styles-preset\":\"BWnRRPjZA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019ve completed a wide range of complex projects, over 20 years, in commercial, industrial, and domestic environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xmzcsx\",\"data-styles-preset\":\"BWnRRPjZA\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019ve completed a wide range of complex projects, over 20 years, in commercial, industrial, and domestic environments.\"})}),className:\"framer-1s5bhxz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fht3sn\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-y08t9r-container\",id:\"y08t9r\",nodeId:\"bj8YGYasf\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"bj8YGYasf\",layoutId:\"bj8YGYasf\",tap2:tap23bnx0g({overlay:overlay1}),title2:\"Free Quote\",variant:\"UAqKqZEn8\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.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-upp0ql\"),\"data-framer-portal-id\":\"y08t9r\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"kSWRLiA0z\"),/*#__PURE__*/_jsxs(MotionDivWithForm1mf7935,{className:cx(scopingClassNames,\"framer-1mf7935\"),\"data-framer-name\":\"Form for popup\",\"data-framer-portal-id\":\"y08t9r\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-c5shfp\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18prfwx\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputFieldo4p1zh,{className:\"framer-o4p1zh\",\"data-framer-name\":\"name\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j9aizh-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"kqbzWnQdt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"kqbzWnQdt\",layoutId:\"kqbzWnQdt\",style:{width:\"100%\"},title:\"Name\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-1rvsg8c\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uvv1n5\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField1vmzqfs,{className:\"framer-1vmzqfs\",\"data-framer-name\":\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jflphm-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"w5XumyBhc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Mail\",iconColor:\"rgb(185, 186, 193)\",id:\"w5XumyBhc\",layoutId:\"w5XumyBhc\",style:{width:\"100%\"},title:\"Email Address\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kxc32j\",\"data-framer-name\":\"Input\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-e7e73d69-90f6-4bca-b3ba-d4cbd11b2d81, rgb(99, 101, 114))\"},children:\"Message\"})}),className:\"framer-1icutlw\",\"data-framer-name\":\"Text\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dgpvpn\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputFieldg2gvic,{className:\"framer-g2gvic\",\"data-framer-name\":\"tags\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqrfj2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"adOY2STmh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"adOY2STmh\",layoutId:\"adOY2STmh\",style:{height:\"100%\",width:\"100%\"},title:\"Select\",variant:\"JcA0uSMtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BiceTmUtp\"},motionChild:true,nodeId:\"thhwiD9TE\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{animate:animation5,className:\"framer-14r0dm2 framer-lux5qc\",\"data-framer-name\":\"Submit\",exit:animation3,initial:animation2,style:{transformPerspective:1200},whileHover:animation4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7z9cwo-container\",inComponentSlot:true,nodeId:\"WgzE1DNe3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SubmitStylingEditMe,{background:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",height:\"100%\",icon:\"Send\",iconColor:\"var(--token-9c7d00e4-9265-4359-a7d0-4b21b068797c, rgb(255, 255, 255))\",id:\"WgzE1DNe3\",layoutId:\"WgzE1DNe3\",style:{height:\"100%\",width:\"100%\"},text:\"Send Message\",variant:\"fj6Hoa5i7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithSubmitButton1wfecid,{className:\"framer-1wfecid\",\"data-framer-name\":\"Submission\"})]})})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Yk9t6oSq6\"},implicitPathVariables:undefined},{href:{webPageId:\"Yk9t6oSq6\"},implicitPathVariables:undefined},{href:{webPageId:\"Yk9t6oSq6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jthpo6-container\",nodeId:\"RtQid0Hn8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{link:resolvedLinks[1]},xHoizhwKZ:{link:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"RtQid0Hn8\",layoutId:\"RtQid0Hn8\",link:resolvedLinks[0],title2:\"View Services\",variant:\"yUUjEQa2Y\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dukh04\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4dhl5j\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzs6hh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"Trustmark logo - government endorsed quality\",fit:\"fit\",intrinsicHeight:122,intrinsicWidth:543,pixelHeight:122,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:\"127px\",src:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png\",srcSet:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png 543w\"}},xHoizhwKZ:{background:{alt:\"Trustmark logo - government endorsed quality\",fit:\"fit\",intrinsicHeight:122,intrinsicWidth:543,pixelHeight:122,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:`calc(min(1440px, ${componentViewport?.width||\"100vw\"}) * 0.3806)`,src:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png\",srcSet:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png 543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Trustmark logo - government endorsed quality\",fit:\"fit\",intrinsicHeight:122,intrinsicWidth:543,pixelHeight:122,pixelWidth:543,positionX:\"center\",positionY:\"center\",sizes:\"171px\",src:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png\",srcSet:\"https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pu3b7Kt1q5kyuIBwtDpLn0zlTNA.png 543w\"},className:\"framer-g6v0sg\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"NAPIT Electrical logo\",fit:\"fit\",intrinsicHeight:515,intrinsicWidth:364,pixelHeight:515,pixelWidth:364,positionX:\"center\",positionY:\"center\",sizes:\"58px\",src:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png\",srcSet:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png 364w\"}},xHoizhwKZ:{background:{alt:\"NAPIT Electrical logo\",fit:\"fit\",intrinsicHeight:515,intrinsicWidth:364,pixelHeight:515,pixelWidth:364,positionX:\"center\",positionY:\"center\",sizes:\"63px\",src:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png\",srcSet:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png 364w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"NAPIT Electrical logo\",fit:\"fit\",intrinsicHeight:515,intrinsicWidth:364,pixelHeight:515,pixelWidth:364,positionX:\"center\",positionY:\"center\",sizes:\"70px\",src:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png\",srcSet:\"https://framerusercontent.com/images/S0iIceDQTBc8n50lJHlQpTGqzlM.png 364w\"},className:\"framer-1tn92vv\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"RISCO logo - a lifetime of security\",fit:\"fit\",intrinsicHeight:105,intrinsicWidth:340,pixelHeight:105,pixelWidth:340,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aSInB4FpSM9s0We1uB01lyMoQg.png\"},className:\"framer-i8xf3m\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Lutron lighting controls logo\",fit:\"fit\",intrinsicHeight:98,intrinsicWidth:393,pixelHeight:98,pixelWidth:393,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MWATacIy9LPkPlTrQQtkslxZY.png\"},className:\"framer-u7v6cf\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"City and Guilds Qualified logo\",fit:\"fit\",intrinsicHeight:280,intrinsicWidth:300,pixelHeight:280,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qFxe4Y8tM42pOankJ7R3MgOFa4.png\"},className:\"framer-8azd6g\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Link,{href:\"https://dbscheckonline.org.uk/verified/?id=1048941&token=32f5ff083e036c6f7d7a3f869fc9838805b91209\",motionChild:true,nodeId:\"obvFcAfdO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:495,intrinsicWidth:493,pixelHeight:495,pixelWidth:493,src:\"https://framerusercontent.com/images/bEeF31MUhIkwRaXB8aflHXPyQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YC0mn87vbfQ1qO7YSI3tW33YpE.png\"},className:\"framer-1k4reto framer-lux5qc\",\"data-framer-name\":\"DBs_check_grey\"})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-491272\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"We offer a wide range of electrical services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"We offer a wide range of electrical services\"})}),className:\"framer-qt5s96\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9en2o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2rzo0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4ij26m\",\"data-styles-preset\":\"sjTIpD5bZ\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"No job too big or small for our team.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4ij26m\",\"data-styles-preset\":\"sjTIpD5bZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our comprehensive selection of services are all carried out by our well-managed team and to the highest standards. We are committed to providing our clients with high quality results.\"})]}),className:\"framer-w42x5i\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7fu28e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4ij26m\",\"data-styles-preset\":\"sjTIpD5bZ\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"TrustMark Accreditation\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4ij26m\",\"data-styles-preset\":\"sjTIpD5bZ\",style:{\"--framer-text-alignment\":\"left\"},children:\"TrustMark protects consumers by connecting them with reputable tradespeople who have passed various checks and demonstrated their commitment to good practice and excellent customer service. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-4ij26m\",\"data-styles-preset\":\"sjTIpD5bZ\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.trustmark.org.uk/media/yernv15z/trustmark-code-of-conduct_version-1_4oct2018.pdf\",motionChild:true,nodeId:\"P_0kqrFah\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"Click here\"})}),\" to learn more about the TrustMark Code of Conduct.\"]})]}),className:\"framer-a26cic\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkdyka\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Yk9t6oSq6\"},motionChild:true,nodeId:\"mfMP7lAYI\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"Click here to view all the services we provide\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Yk9t6oSq6\"},motionChild:true,nodeId:\"mfMP7lAYI\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"Click here to view all the services we provide\"})})})}),className:\"framer-1xdc1uo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1daw9px\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1swsatm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SJ2IyK6yE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"SJ2IyK6yE\",layoutId:\"SJ2IyK6yE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"domestic ceiling spot lighting\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/vdDpWbYQ772QJzlYh7bphXKIkUQ.jpg\"},className:\"framer-sm5lr\",\"data-framer-name\":\"lighting 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Lareg outdoor lighting project for large house\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/7cnrHQVKkTHro3xMnjG6KYJkDE.jpg\"},className:\"framer-abhmu5\",\"data-framer-name\":\"domestic 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/SaAK4UPl3OJ3lSVxMZmEJNXGk8.jpg\"},className:\"framer-qs69ko\",\"data-framer-name\":\"newbuild 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"aerial installation\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/oYpjZsXFGBZqRADzOTM4Jr9mas.jpg\"},className:\"framer-8vvzaa\",\"data-framer-name\":\"tv-fm-arials 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Electrical maintanence tool\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/EXs4j0uwbz6JEk99DlTQZfdmm9E.jpg\"},className:\"framer-1m7ppos\",\"data-framer-name\":\"inspection-testing 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"fuse boards electrician work\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/0993NS2v29pw5Ay2XwThAOh5YQ.jpg\"},className:\"framer-rzq6wk\",\"data-framer-name\":\"fuse-boards 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Warehouse lighting installation\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/OhpwdQ2Wk8cSmPKc07x9cIuXmHw.jpg\"},className:\"framer-c2vbts\",\"data-framer-name\":\"industrial 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fire alarm fitting\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/Dy2x2uvEMn2UANYXClF5gGez1qE.jpg\"},className:\"framer-n91yvv\",\"data-framer-name\":\"fire-alarms 2\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-47bt34-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Cd9ndbbyx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"Cd9ndbbyx\",layoutId:\"Cd9ndbbyx\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"intercom installation\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/9OprAwrtTSGdKREoGHrUZe0dEY.jpg\"},className:\"framer-1lxfl4a\",\"data-framer-name\":\"video-voice-intercom 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"security keypad installation\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/vuFYmbsRjwcfp3pcoaTwP30.jpg\"},className:\"framer-3b7u0h\",\"data-framer-name\":\"accesandcontrol 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/OLwzZNU9bi6LDqCBUSZve7egKz8.jpg\"},className:\"framer-1tl2stz\",\"data-framer-name\":\"networking 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landscape lighting with decking and patio tiles\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/d2eeTa6DH3NojwTFW76hwmoojc.jpg\"},className:\"framer-pw5ppe\",\"data-framer-name\":\"outside-lighting-power 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Emergency signs installation\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/cV1ANgqc1zboSBnBedAD5OYn8ds.jpg\"},className:\"framer-yfmosc\",\"data-framer-name\":\"emergency-lighting 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Lighting installation job work in progress\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/HfCRpp4pAyo8Oo2dinwqSXZ0.jpg\"},className:\"framer-iddrdg\",\"data-framer-name\":\"shop-refit 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Restuarant / cafe lighting\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/bpuzq35GcEPpc6FK88bHONH568U.jpg\"},className:\"framer-1fi8y6j\",\"data-framer-name\":\"commercial 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/yrjD3ersBXPiO9iJeO1fBMZLzI.jpg\"},className:\"framer-10az1e8\",\"data-framer-name\":\"re-wires 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Electrical testing engineer\",fit:\"fill\",pixelHeight:220,pixelWidth:246,src:\"https://framerusercontent.com/images/pRuiqONPxIiWFqjhTmyEnnvxHoQ.jpg\"},className:\"framer-hqqzkj\",\"data-framer-name\":\"electrical-main 1\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-7b05lj-container\",id:\"7b05lj\",nodeId:\"fjVgepstf\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"fjVgepstf\",layoutId:\"fjVgepstf\",tap2:tap23bnx0g({overlay:overlay2}),title2:\"Get A Free Quote\",variant:\"UAqKqZEn8\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-qo5m0o\"),\"data-framer-portal-id\":\"7b05lj\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"bgTQN9Co_\"),/*#__PURE__*/_jsxs(MotionDivWithForm19rfh11,{className:cx(scopingClassNames,\"framer-19rfh11\"),\"data-framer-name\":\"Form for popup\",\"data-framer-portal-id\":\"7b05lj\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-1rf833d\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wt9ke5\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField3l4nkx,{className:\"framer-3l4nkx\",\"data-framer-name\":\"name\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oifg8r-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Lb1buI6Hk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"Lb1buI6Hk\",layoutId:\"Lb1buI6Hk\",style:{width:\"100%\"},title:\"Name\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-1qm4emr\",\"data-framer-name\":\"Input\",exit:animation,initial:animation2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fevjvf\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField1pefa8e,{className:\"framer-1pefa8e\",\"data-framer-name\":\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l29buf-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IwT4CCcqu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Mail\",iconColor:\"rgb(185, 186, 193)\",id:\"IwT4CCcqu\",layoutId:\"IwT4CCcqu\",style:{width:\"100%\"},title:\"Email Address\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d1x6j1\",\"data-framer-name\":\"Input\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-e7e73d69-90f6-4bca-b3ba-d4cbd11b2d81, rgb(99, 101, 114))\"},children:\"Message\"})}),className:\"framer-16yxoow\",\"data-framer-name\":\"Text\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hc5yt6\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputFieldxbr3sk,{className:\"framer-xbr3sk\",\"data-framer-name\":\"tags\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6twv9e-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"wDd0FAQYO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"wDd0FAQYO\",layoutId:\"wDd0FAQYO\",style:{height:\"100%\",width:\"100%\"},title:\"Select\",variant:\"JcA0uSMtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BiceTmUtp\"},motionChild:true,nodeId:\"CkXerHNxQ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{animate:animation5,className:\"framer-1xjbb8e framer-lux5qc\",\"data-framer-name\":\"Submit\",exit:animation3,initial:animation2,style:{transformPerspective:1200},whileHover:animation4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ehccrc-container\",inComponentSlot:true,nodeId:\"sUYH4bOsp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SubmitStylingEditMe,{background:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",height:\"100%\",icon:\"Send\",iconColor:\"var(--token-9c7d00e4-9265-4359-a7d0-4b21b068797c, rgb(255, 255, 255))\",id:\"sUYH4bOsp\",layoutId:\"sUYH4bOsp\",style:{height:\"100%\",width:\"100%\"},text:\"Send Message\",variant:\"fj6Hoa5i7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithSubmitButton16qx5vi,{className:\"framer-16qx5vi\",\"data-framer-name\":\"Submission\"})]})})]})]}),getContainer())})})]})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1kjbcj5\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",children:\"We provide security installation too!\"})}),className:\"framer-adhymx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f3r8q8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvg6ss-container\",nodeId:\"iPMQNc5iw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookiesCard,{height:\"100%\",id:\"iPMQNc5iw\",layoutId:\"iPMQNc5iw\",name2:\"Light\",style:{width:\"100%\"},text:\"Security lighting\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hs2etv-container\",nodeId:\"Gv54UPmZc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{text:\"Security alarms\"}},children:/*#__PURE__*/_jsx(CookiesCard,{height:\"100%\",id:\"Gv54UPmZc\",layoutId:\"Gv54UPmZc\",name2:\"Wifi\",style:{width:\"100%\"},text:\"Security alarms wireless and wired \",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ioi5oq-container\",nodeId:\"GxBsvNOXr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookiesCard,{height:\"100%\",id:\"GxBsvNOXr\",layoutId:\"GxBsvNOXr\",name2:\"CameraIndoor\",style:{width:\"100%\"},text:\"CCTV systems\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrnj6o-container\",nodeId:\"d3yT25ila\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{text:\"Ring doorbell / floodlights\"}},children:/*#__PURE__*/_jsx(CookiesCard,{height:\"100%\",id:\"d3yT25ila\",layoutId:\"d3yT25ila\",name2:\"Doorbell\",style:{width:\"100%\"},text:\"Ring products door bell and floodlights\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpvxn1-container\",nodeId:\"zfhnBjVnH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookiesCard,{height:\"100%\",id:\"zfhnBjVnH\",layoutId:\"zfhnBjVnH\",name2:\"VoiceChat\",style:{width:\"100%\"},text:\"Intercom systems\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2vxwzt\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"Customer reviews from Checkatrade\"})}),className:\"framer-jfxa6q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hqshc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b91uj7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"New fuse board\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Always use Adam for our electrics, wouldn\u2019t trust anyone else. Reliable, very experienced- knows his stuff.\"})]}),className:\"framer-25hxl3\",\"data-framer-name\":\"Used Adam on several projects now, always professional tidy work, reliable and competitively priced. I have no hesitation in recommending A P Stamp Electrical & Building Services. David Gradley \u2013 April 2016\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pax1t9\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})}),className:\"framer-1iyv5n2\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7z0bj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Garden lights\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Very happy with the work! Quick and friendly!\"})]}),className:\"framer-11h2icl\",\"data-framer-name\":\"Used Adam on several projects now, always professional tidy work, reliable and competitively priced. I have no hesitation in recommending A P Stamp Electrical & Building Services. David Gradley \u2013 April 2016\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3bnlp\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"9\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"9\"})}),className:\"framer-30kxxa\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8c5je\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:[\"Fitted 12 spot lights in\",/*#__PURE__*/_jsx(\"br\",{}),\"living room\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Very happy with the job Clean and tidy would recommend\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Fitted 12 spot lights in living room\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Very happy with the job Clean and tidy would recommend\"})]}),className:\"framer-sskd7i\",\"data-framer-name\":\"Used Adam on several projects now, always professional tidy work, reliable and competitively priced. I have no hesitation in recommending A P Stamp Electrical & Building Services. David Gradley \u2013 April 2016\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jycum\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})}),className:\"framer-o3fpg8\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kzvyp1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Re-wire\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Excellent service , kind and knowledgeable of anything electrical. Work carried out efficiently, affordable price too.\"})]}),className:\"framer-pdtxdq\",\"data-framer-name\":\"Used Adam on several projects now, always professional tidy work, reliable and competitively priced. I have no hesitation in recommending A P Stamp Electrical & Building Services. David Gradley \u2013 April 2016\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7hz9g\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:\"10\"})}),className:\"framer-1s33x2i\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wlblh1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xmzcsx\",\"data-styles-preset\":\"BWnRRPjZA\",children:\"Click below to read more of our amazing reviews\"})}),className:\"framer-dyt0cw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebg0jr-container\",nodeId:\"VANPQcDxd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MainButton,{height:\"100%\",id:\"VANPQcDxd\",layoutId:\"VANPQcDxd\",link:\"https://www.checkatrade.com/trades/apstampelectricalservices/reviews\",title2:\"Read Reviews\",variant:\"UAqKqZEn8\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-v3uteg\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udwtwy\",\"data-framer-name\":\"Header frame\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"A small example of the work we do\"})}),className:\"framer-ahc3t5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aUI1tZZtt\"},motionChild:true,nodeId:\"pNvACRmne\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"Click here to view more of our \"})}),\"work\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aUI1tZZtt\"},motionChild:true,nodeId:\"pNvACRmne\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"Click here to view more of our high quality work\"})})})}),className:\"framer-1crgrhk\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqab14-container hidden-72rtr7 hidden-1r8ybzn\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SgXaa_5nI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",arrowGap:10,arrowPadding:-40,arrowPaddingBottom:1,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.8},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",id:\"SgXaa_5nI\",intervalControl:1.5,itemAmount:1,layoutId:\"SgXaa_5nI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(255, 255, 255, 0)\",dotsBlur:0,dotsFill:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",dotsGap:20,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:800,pixelWidth:1200,sizes:\"1000.5px\",src:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg\",srcSet:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg 1200w\"},className:\"framer-ii3g0f\",\"data-framer-name\":\"Photo_13_02_2023_8_57_59_am\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"1000px\",src:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg\",srcSet:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg 2048w\"},className:\"framer-1v5ghzd\",\"data-framer-name\":\"Photo_02_08_2023_4_11_31_pm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,pixelHeight:3024,pixelWidth:4032,sizes:\"750px\",src:\"https://framerusercontent.com/images/vrlOJ0jZksVIMr3zuqk4QDR04.jpg\",srcSet:\"https://framerusercontent.com/images/vrlOJ0jZksVIMr3zuqk4QDR04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vrlOJ0jZksVIMr3zuqk4QDR04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vrlOJ0jZksVIMr3zuqk4QDR04.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vrlOJ0jZksVIMr3zuqk4QDR04.jpg 4032w\"},className:\"framer-qwdloj\",\"data-framer-name\":\"Photo_03_03_2023_4_02_54_pm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,pixelHeight:3024,pixelWidth:4032,sizes:\"750px\",src:\"https://framerusercontent.com/images/KEAsOgIywZeMfO5Oy31QK5u1qc.jpg\",srcSet:\"https://framerusercontent.com/images/KEAsOgIywZeMfO5Oy31QK5u1qc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KEAsOgIywZeMfO5Oy31QK5u1qc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KEAsOgIywZeMfO5Oy31QK5u1qc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KEAsOgIywZeMfO5Oy31QK5u1qc.jpg 4032w\"},className:\"framer-1fc2nfm\",\"data-framer-name\":\"Photo_03_03_2023_4_03_07_pm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:\"750px\",src:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg\",srcSet:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg 1536w\"},className:\"framer-3eaefu\",\"data-framer-name\":\"Photo_02_08_2023_4_11_28_pm_3_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:\"750px\",src:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg\",srcSet:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg 1536w\"},className:\"framer-1j3lyg6\",\"data-framer-name\":\"Photo_02_08_2023_4_11_28_pm_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1200,pixelHeight:1600,pixelWidth:1200,sizes:\"750px\",src:\"https://framerusercontent.com/images/s1H84dfU2HFLqgRfYQcZS2DiF2U.jpg\",srcSet:\"https://framerusercontent.com/images/s1H84dfU2HFLqgRfYQcZS2DiF2U.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/s1H84dfU2HFLqgRfYQcZS2DiF2U.jpg 1200w\"},className:\"framer-vnlb7a\",\"data-framer-name\":\"Photo_02_08_2023_4_11_28_pm_2_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:965,intrinsicWidth:764,pixelHeight:965,pixelWidth:764,sizes:\"790.1264px\",src:\"https://framerusercontent.com/images/P2DwoPWxhakfdOsoH4iNgaYnDk.png\",srcSet:\"https://framerusercontent.com/images/P2DwoPWxhakfdOsoH4iNgaYnDk.png 764w\"},className:\"framer-79knqj\",\"data-framer-name\":\"image\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.71,0,.25,1],type:\"tween\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qjbuc7 hidden-1cz97ve\"}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zb82nk hidden-1cz97ve\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,src:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg\",srcSet:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:\"350px\",src:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg\",srcSet:\"https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/wP7UQcznNzAnbKIab4XkqlySQq4.jpg 1536w\"},className:\"framer-14ori0x\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:991,intrinsicWidth:1200,pixelHeight:991,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 4, 1px)`,src:\"https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg\",srcSet:\"https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:991,intrinsicWidth:1200,pixelHeight:991,pixelWidth:1200,sizes:\"350px\",src:\"https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg\",srcSet:\"https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5dz83t9VBd8r3DvmFCXsIWk8i8A.jpg 1200w\"},className:\"framer-1ikg1oa\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg\",srcSet:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"700px\",src:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg\",srcSet:\"https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NSR9Tjl9UKN81itaQrk0ZLeVec.jpg 2048w\"},className:\"framer-1wb76k1\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12m8iwo hidden-1cz97ve\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 3, 1px)`,src:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg\",srcSet:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1536,pixelHeight:2048,pixelWidth:1536,sizes:\"466.6667px\",src:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg\",srcSet:\"https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/zua0C9wTJZuqCN4UrLvFM3maA.jpg 1536w\"},className:\"framer-1ussilr\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg\",srcSet:\"https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:4032,pixelHeight:3024,pixelWidth:4032,sizes:\"466.6667px\",src:\"https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg\",srcSet:\"https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jdsuk2WpDcPjlDu62y2fJlc05rE.jpg 4032w\"},className:\"framer-kmkec\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:800,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 70px) / 3, 1px)`,src:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg\",srcSet:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:800,pixelWidth:1200,sizes:\"466.6667px\",src:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg\",srcSet:\"https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XjSjWREgfhMin9KBAqSh10q6Qts.jpg 1200w\"},className:\"framer-143v31c\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1opat0u\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2oy84\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rkhbb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mff3c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xHoizhwKZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"Let\u2019s get in touch!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-iyhy7s\",\"data-styles-preset\":\"k8dqE5fGm\",style:{\"--framer-text-color\":\"var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, rgb(21, 36, 53))\"},children:\"Let\u2019s get in touch!\"})}),className:\"framer-185ee08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2mpd6v\",\"data-styles-preset\":\"x_FFekXnc\",style:{\"--framer-text-color\":\"rgb(59, 59, 59)\"},children:[\"Call on \",/*#__PURE__*/_jsx(Link,{href:\"tel:07929757021\",motionChild:true,nodeId:\"qxJkhQ_eg\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sbvomg\",\"data-styles-preset\":\"WUEKSW7jN\",children:\"07929 757 021\"})}),\" or fill out the form below and a member of our team will be in touch!\"]})}),className:\"framer-1q6kf2t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithForm1oo6j3x,{className:\"framer-1oo6j3x\",\"data-framer-name\":\"Form for popup\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-mg9du8\",\"data-framer-appear-id\":\"mg9du8\",\"data-framer-name\":\"Input\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3n3srb\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputFieldx5yy44,{className:\"framer-x5yy44\",\"data-framer-name\":\"name\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwjsza-container\",isModuleExternal:true,nodeId:\"xv7sGwGLp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"xv7sGwGLp\",layoutId:\"xv7sGwGLp\",style:{width:\"100%\"},title:\"Name\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-14b3a9k\",\"data-framer-appear-id\":\"14b3a9k\",\"data-framer-name\":\"Input\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n76pg\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField1i7myxc,{className:\"framer-1i7myxc\",\"data-framer-name\":\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dlmfqt-container\",isModuleExternal:true,nodeId:\"Raw55rknR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Mail\",iconColor:\"rgb(185, 186, 193)\",id:\"Raw55rknR\",layoutId:\"Raw55rknR\",style:{width:\"100%\"},title:\"Email Address\",variant:\"SeQavAGFo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pfahak\",\"data-framer-name\":\"Input\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-e7e73d69-90f6-4bca-b3ba-d4cbd11b2d81, rgb(99, 101, 114))\"},children:\"Message\"})}),className:\"framer-a9xiq3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q9yrd2\",\"data-framer-name\":\"Input State\",children:/*#__PURE__*/_jsx(MotionDivWithInputField18gokbr,{className:\"framer-18gokbr\",\"data-framer-name\":\"tags\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1deyyw8-container\",isModuleExternal:true,nodeId:\"YWIl3BD1e\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InputStylingEditMe,{height:\"100%\",icon:\"Person\",iconColor:\"rgb(185, 186, 193)\",id:\"YWIl3BD1e\",layoutId:\"YWIl3BD1e\",style:{height:\"100%\",width:\"100%\"},title:\"Select\",variant:\"JcA0uSMtD\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BiceTmUtp\"},motionChild:true,nodeId:\"tcNnZCm0b\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation5,className:\"framer-mh1lkd framer-lux5qc\",\"data-framer-appear-id\":\"mh1lkd\",\"data-framer-name\":\"Submit\",initial:animation6,optimized:true,style:{transformPerspective:1200},whileHover:animation4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1953pf2-container\",nodeId:\"ezDJFp7d3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SubmitStylingEditMe,{background:\"var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, rgb(223, 160, 30))\",height:\"100%\",icon:\"Send\",iconColor:\"var(--token-9c7d00e4-9265-4359-a7d0-4b21b068797c, rgb(255, 255, 255))\",id:\"ezDJFp7d3\",layoutId:\"ezDJFp7d3\",style:{height:\"100%\",width:\"100%\"},text:\"Send Message\",variant:\"fj6Hoa5i7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithSubmitButtonpu3f5k,{className:\"framer-pu3f5k\",\"data-framer-name\":\"Submission\"})]})})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-119ai7g\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zhh30u-container\",nodeId:\"OaM3Q2FQX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWKk8AZi0:{variant:\"Dfdxwnbki\"},xHoizhwKZ:{variant:\"VJ8n6uaf_\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"OaM3Q2FQX\",layoutId:\"OaM3Q2FQX\",style:{width:\"100%\"},variant:\"bEHkvG6ud\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XH6MV.framer-lux5qc, .framer-XH6MV .framer-lux5qc { display: block; }\",\".framer-XH6MV.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-17qr727-container { flex: none; height: auto; position: relative; width: 1440px; z-index: 1; }\",\".framer-XH6MV.framer-a4no4i { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-XH6MV.framer-1l2mjn9 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 20px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 40%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-XH6MV .framer-gz8snt, .framer-XH6MV .framer-8y656i, .framer-XH6MV .framer-c5shfp, .framer-XH6MV .framer-1rvsg8c, .framer-XH6MV .framer-1rf833d, .framer-XH6MV .framer-1qm4emr, .framer-XH6MV .framer-mg9du8, .framer-XH6MV .framer-14b3a9k { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XH6MV .framer-1eyf7ws, .framer-XH6MV .framer-ufa0pj, .framer-XH6MV .framer-18prfwx, .framer-XH6MV .framer-uvv1n5, .framer-XH6MV .framer-wt9ke5, .framer-XH6MV .framer-1fevjvf, .framer-XH6MV .framer-3n3srb, .framer-XH6MV .framer-1n76pg { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-XH6MV .framer-l2ytvm, .framer-XH6MV .framer-1i6dqbv, .framer-XH6MV .framer-o4p1zh, .framer-XH6MV .framer-1vmzqfs, .framer-XH6MV .framer-3l4nkx, .framer-XH6MV .framer-1pefa8e, .framer-XH6MV .framer-x5yy44, .framer-XH6MV .framer-1i7myxc { flex: none; height: 50px; overflow: hidden; position: relative; width: 99%; z-index: 1; }\",\".framer-XH6MV .framer-17gc3wt-container, .framer-XH6MV .framer-6zpzad-container, .framer-XH6MV .framer-1j9aizh-container, .framer-XH6MV .framer-1jflphm-container, .framer-XH6MV .framer-1oifg8r-container, .framer-XH6MV .framer-1l29buf-container, .framer-XH6MV .framer-lwjsza-container, .framer-XH6MV .framer-1dlmfqt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XH6MV .framer-27bob2, .framer-XH6MV .framer-1kxc32j, .framer-XH6MV .framer-1daw9px, .framer-XH6MV .framer-1d1x6j1, .framer-XH6MV .framer-1pfahak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-5t1tq5, .framer-XH6MV .framer-1icutlw, .framer-XH6MV .framer-16yxoow, .framer-XH6MV .framer-a9xiq3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-apww6y, .framer-XH6MV .framer-1dgpvpn, .framer-XH6MV .framer-1hc5yt6, .framer-XH6MV .framer-1q9yrd2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-XH6MV .framer-1yl1hk4, .framer-XH6MV .framer-g2gvic, .framer-XH6MV .framer-xbr3sk, .framer-XH6MV .framer-18gokbr { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-XH6MV .framer-1jstzjq-container, .framer-XH6MV .framer-hqrfj2-container, .framer-XH6MV .framer-6twv9e-container, .framer-XH6MV .framer-1deyyw8-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-flo4lh, .framer-XH6MV .framer-14r0dm2, .framer-XH6MV .framer-1xjbb8e, .framer-XH6MV .framer-mh1lkd { cursor: pointer; flex: none; height: 50px; overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XH6MV .framer-8j4bai-container, .framer-XH6MV .framer-7z9cwo-container, .framer-XH6MV .framer-1ehccrc-container, .framer-XH6MV .framer-1953pf2-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-XH6MV .framer-1ylf30s, .framer-XH6MV .framer-1wfecid, .framer-XH6MV .framer-16qx5vi, .framer-XH6MV .framer-pu3f5k { bottom: 0px; cursor: pointer; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-XH6MV .framer-d5t05n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 80vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-6wz9u { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.14); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: center; overflow: hidden; padding: 80px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-1qg1zfh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XH6MV .framer-1gx2nvl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 926px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XH6MV .framer-1s5bhxz { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 744px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XH6MV .framer-1fht3sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-XH6MV .framer-y08t9r-container, .framer-XH6MV .framer-jthpo6-container, .framer-XH6MV .framer-7b05lj-container, .framer-XH6MV .framer-1ebg0jr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XH6MV.framer-upp0ql { background-color: rgba(21, 36, 53, 0.91); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-XH6MV.framer-1mf7935, .framer-XH6MV.framer-19rfh11 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 20px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 40%; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-XH6MV .framer-dukh04 { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-XH6MV .framer-4dhl5j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-1dzs6hh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-g6v0sg { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: hidden; position: relative; width: 171px; }\",\".framer-XH6MV .framer-1tn92vv { flex: none; height: 143px; overflow: hidden; position: relative; width: 70px; }\",\".framer-XH6MV .framer-i8xf3m { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 136px; }\",\".framer-XH6MV .framer-u7v6cf { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: hidden; position: relative; width: 151px; }\",\".framer-XH6MV .framer-8azd6g { flex: none; height: 97px; overflow: hidden; position: relative; width: 131px; }\",\".framer-XH6MV .framer-1k4reto { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); overflow: visible; position: relative; text-decoration: none; width: 109px; }\",\".framer-XH6MV .framer-491272 { align-content: center; align-items: center; background-color: var(--token-b15191f7-c742-4fb6-b06f-2dd4ac742e7e, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-qt5s96, .framer-XH6MV .framer-adhymx, .framer-XH6MV .framer-jfxa6q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-g9en2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 927px; }\",\".framer-XH6MV .framer-i2rzo0, .framer-XH6MV .framer-7fu28e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-XH6MV .framer-w42x5i { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 879%; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-a26cic { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 204%; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-gkdyka { 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: 895px; }\",\".framer-XH6MV .framer-1xdc1uo, .framer-XH6MV .framer-1crgrhk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-1swsatm-container, .framer-XH6MV .framer-47bt34-container { flex: none; height: 140px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-sm5lr, .framer-XH6MV .framer-abhmu5, .framer-XH6MV .framer-qs69ko, .framer-XH6MV .framer-8vvzaa, .framer-XH6MV .framer-rzq6wk, .framer-XH6MV .framer-c2vbts, .framer-XH6MV .framer-1lxfl4a, .framer-XH6MV .framer-3b7u0h, .framer-XH6MV .framer-1tl2stz, .framer-XH6MV .framer-iddrdg, .framer-XH6MV .framer-1fi8y6j, .framer-XH6MV .framer-10az1e8 { aspect-ratio: 1.1224489795918366 / 1; height: var(--framer-aspect-ratio-supported, 196px); position: relative; width: 220px; }\",\".framer-XH6MV .framer-1m7ppos, .framer-XH6MV .framer-n91yvv { aspect-ratio: 1.116751269035533 / 1; height: var(--framer-aspect-ratio-supported, 197px); position: relative; width: 220px; }\",\".framer-XH6MV .framer-pw5ppe { aspect-ratio: 1.1210526446906888 / 1; height: var(--framer-aspect-ratio-supported, 196px); position: relative; width: 220px; }\",\".framer-XH6MV .framer-yfmosc { aspect-ratio: 1.1134020746970663 / 1; height: var(--framer-aspect-ratio-supported, 196px); position: relative; width: 218px; }\",\".framer-XH6MV .framer-hqqzkj { aspect-ratio: 1.1237113329829003 / 1; height: var(--framer-aspect-ratio-supported, 196px); position: relative; width: 220px; }\",\".framer-XH6MV.framer-qo5m0o { background-color: rgba(21, 36, 53, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-XH6MV .framer-1kjbcj5 { align-content: center; align-items: center; background-color: var(--token-c343bd8e-6e8f-4364-b848-e37c3962782d, #152435); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-f3r8q8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-1qvg6ss-container { flex: none; height: auto; position: relative; width: 196px; }\",\".framer-XH6MV .framer-1hs2etv-container, .framer-XH6MV .framer-1ioi5oq-container, .framer-XH6MV .framer-1yrnj6o-container { flex: none; height: auto; position: relative; width: 260px; }\",\".framer-XH6MV .framer-1lpvxn1-container { flex: none; height: auto; position: relative; width: 209px; }\",\".framer-XH6MV .framer-2vxwzt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-14hqshc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-1b91uj7, .framer-XH6MV .framer-s7z0bj, .framer-XH6MV .framer-b8c5je, .framer-XH6MV .framer-1kzvyp1 { align-content: center; align-items: center; background-color: var(--token-b15191f7-c742-4fb6-b06f-2dd4ac742e7e, #f5f5f5); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 140px; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 49%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XH6MV .framer-25hxl3, .framer-XH6MV .framer-11h2icl, .framer-XH6MV .framer-sskd7i, .framer-XH6MV .framer-pdtxdq { --framer-paragraph-spacing: 10px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-pax1t9, .framer-XH6MV .framer-1q3bnlp, .framer-XH6MV .framer-5jycum, .framer-XH6MV .framer-1k7hz9g { --border-bottom-width: 3px; --border-color: var(--token-b9e77aae-42fc-4e1c-a0d7-41afbd48fb84, #dfa01e); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XH6MV .framer-1iyv5n2, .framer-XH6MV .framer-30kxxa, .framer-XH6MV .framer-o3fpg8, .framer-XH6MV .framer-1s33x2i, .framer-XH6MV .framer-ahc3t5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XH6MV .framer-1wlblh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 159px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 392px; }\",\".framer-XH6MV .framer-dyt0cw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-v3uteg { align-content: center; align-items: center; background-color: var(--token-b15191f7-c742-4fb6-b06f-2dd4ac742e7e, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 15px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-udwtwy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-fqab14-container { flex: none; height: 368px; position: relative; width: 266px; }\",\".framer-XH6MV .framer-ii3g0f { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 667px); overflow: visible; position: relative; width: 1000px; }\",\".framer-XH6MV .framer-1v5ghzd { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 750px); overflow: visible; position: relative; width: 1000px; }\",\".framer-XH6MV .framer-qwdloj, .framer-XH6MV .framer-1fc2nfm, .framer-XH6MV .framer-3eaefu, .framer-XH6MV .framer-1j3lyg6, .framer-XH6MV .framer-vnlb7a { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 1000px); overflow: visible; position: relative; width: 750px; }\",\".framer-XH6MV .framer-79knqj { aspect-ratio: 0.7917098445595855 / 1; height: var(--framer-aspect-ratio-supported, 998px); overflow: visible; position: relative; width: 790px; }\",\".framer-XH6MV .framer-qjbuc7, .framer-XH6MV .framer-zb82nk, .framer-XH6MV .framer-12m8iwo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 0%; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-14ori0x, .framer-XH6MV .framer-1ikg1oa, .framer-XH6MV .framer-1ussilr, .framer-XH6MV .framer-kmkec, .framer-XH6MV .framer-143v31c { flex: 1 0 0px; height: 302px; overflow: hidden; position: relative; width: 1px; }\",\".framer-XH6MV .framer-1wb76k1 { flex: 2 0 0px; height: 302px; overflow: hidden; position: relative; width: 1px; }\",\".framer-XH6MV .framer-1opat0u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 612px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-XH6MV .framer-1w2oy84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 576px; }\",\".framer-XH6MV .framer-rkhbb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; max-width: 2018px; padding: 80px 40px 80px 15px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-15mff3c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XH6MV .framer-185ee08 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-XH6MV .framer-1q6kf2t { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XH6MV .framer-1oo6j3x { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XH6MV .framer-119ai7g { align-content: center; align-items: center; background-color: #111111; 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%; }\",\".framer-XH6MV .framer-zhh30u-container { flex: none; height: auto; position: relative; width: 1440px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XH6MV.framer-72rtr7, .framer-XH6MV.framer-1l2mjn9, .framer-XH6MV .framer-gz8snt, .framer-XH6MV .framer-1eyf7ws, .framer-XH6MV .framer-8y656i, .framer-XH6MV .framer-ufa0pj, .framer-XH6MV .framer-27bob2, .framer-XH6MV .framer-apww6y, .framer-XH6MV .framer-d5t05n, .framer-XH6MV .framer-6wz9u, .framer-XH6MV .framer-1qg1zfh, .framer-XH6MV .framer-1fht3sn, .framer-XH6MV.framer-1mf7935, .framer-XH6MV .framer-c5shfp, .framer-XH6MV .framer-18prfwx, .framer-XH6MV .framer-1rvsg8c, .framer-XH6MV .framer-uvv1n5, .framer-XH6MV .framer-1kxc32j, .framer-XH6MV .framer-1dgpvpn, .framer-XH6MV .framer-4dhl5j, .framer-XH6MV .framer-491272, .framer-XH6MV .framer-g9en2o, .framer-XH6MV .framer-i2rzo0, .framer-XH6MV .framer-7fu28e, .framer-XH6MV .framer-gkdyka, .framer-XH6MV .framer-1daw9px, .framer-XH6MV.framer-19rfh11, .framer-XH6MV .framer-1rf833d, .framer-XH6MV .framer-wt9ke5, .framer-XH6MV .framer-1qm4emr, .framer-XH6MV .framer-1fevjvf, .framer-XH6MV .framer-1d1x6j1, .framer-XH6MV .framer-1hc5yt6, .framer-XH6MV .framer-1kjbcj5, .framer-XH6MV .framer-2vxwzt, .framer-XH6MV .framer-14hqshc, .framer-XH6MV .framer-1b91uj7, .framer-XH6MV .framer-pax1t9, .framer-XH6MV .framer-s7z0bj, .framer-XH6MV .framer-1q3bnlp, .framer-XH6MV .framer-b8c5je, .framer-XH6MV .framer-5jycum, .framer-XH6MV .framer-1kzvyp1, .framer-XH6MV .framer-1k7hz9g, .framer-XH6MV .framer-1wlblh1, .framer-XH6MV .framer-v3uteg, .framer-XH6MV .framer-udwtwy, .framer-XH6MV .framer-qjbuc7, .framer-XH6MV .framer-zb82nk, .framer-XH6MV .framer-12m8iwo, .framer-XH6MV .framer-1opat0u, .framer-XH6MV .framer-1w2oy84, .framer-XH6MV .framer-rkhbb, .framer-XH6MV .framer-15mff3c, .framer-XH6MV .framer-1oo6j3x, .framer-XH6MV .framer-mg9du8, .framer-XH6MV .framer-3n3srb, .framer-XH6MV .framer-14b3a9k, .framer-XH6MV .framer-1n76pg, .framer-XH6MV .framer-1pfahak, .framer-XH6MV .framer-1q9yrd2, .framer-XH6MV .framer-119ai7g { gap: 0px; } .framer-XH6MV.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XH6MV.framer-72rtr7 > :first-child, .framer-XH6MV.framer-1l2mjn9 > :first-child, .framer-XH6MV .framer-27bob2 > :first-child, .framer-XH6MV .framer-d5t05n > :first-child, .framer-XH6MV .framer-6wz9u > :first-child, .framer-XH6MV .framer-1qg1zfh > :first-child, .framer-XH6MV.framer-1mf7935 > :first-child, .framer-XH6MV .framer-1kxc32j > :first-child, .framer-XH6MV .framer-491272 > :first-child, .framer-XH6MV .framer-gkdyka > :first-child, .framer-XH6MV .framer-1daw9px > :first-child, .framer-XH6MV.framer-19rfh11 > :first-child, .framer-XH6MV .framer-1d1x6j1 > :first-child, .framer-XH6MV .framer-1kjbcj5 > :first-child, .framer-XH6MV .framer-2vxwzt > :first-child, .framer-XH6MV .framer-1wlblh1 > :first-child, .framer-XH6MV .framer-udwtwy > :first-child, .framer-XH6MV .framer-rkhbb > :first-child, .framer-XH6MV .framer-15mff3c > :first-child, .framer-XH6MV .framer-1oo6j3x > :first-child, .framer-XH6MV .framer-1pfahak > :first-child, .framer-XH6MV .framer-119ai7g > :first-child { margin-top: 0px; } .framer-XH6MV.framer-72rtr7 > :last-child, .framer-XH6MV.framer-1l2mjn9 > :last-child, .framer-XH6MV .framer-27bob2 > :last-child, .framer-XH6MV .framer-d5t05n > :last-child, .framer-XH6MV .framer-6wz9u > :last-child, .framer-XH6MV .framer-1qg1zfh > :last-child, .framer-XH6MV.framer-1mf7935 > :last-child, .framer-XH6MV .framer-1kxc32j > :last-child, .framer-XH6MV .framer-491272 > :last-child, .framer-XH6MV .framer-gkdyka > :last-child, .framer-XH6MV .framer-1daw9px > :last-child, .framer-XH6MV.framer-19rfh11 > :last-child, .framer-XH6MV .framer-1d1x6j1 > :last-child, .framer-XH6MV .framer-1kjbcj5 > :last-child, .framer-XH6MV .framer-2vxwzt > :last-child, .framer-XH6MV .framer-1wlblh1 > :last-child, .framer-XH6MV .framer-udwtwy > :last-child, .framer-XH6MV .framer-rkhbb > :last-child, .framer-XH6MV .framer-15mff3c > :last-child, .framer-XH6MV .framer-1oo6j3x > :last-child, .framer-XH6MV .framer-1pfahak > :last-child, .framer-XH6MV .framer-119ai7g > :last-child { margin-bottom: 0px; } .framer-XH6MV.framer-1l2mjn9 > *, .framer-XH6MV.framer-1mf7935 > *, .framer-XH6MV.framer-19rfh11 > *, .framer-XH6MV .framer-1oo6j3x > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-XH6MV .framer-gz8snt > *, .framer-XH6MV .framer-1eyf7ws > *, .framer-XH6MV .framer-8y656i > *, .framer-XH6MV .framer-ufa0pj > *, .framer-XH6MV .framer-apww6y > *, .framer-XH6MV .framer-c5shfp > *, .framer-XH6MV .framer-18prfwx > *, .framer-XH6MV .framer-1rvsg8c > *, .framer-XH6MV .framer-uvv1n5 > *, .framer-XH6MV .framer-1dgpvpn > *, .framer-XH6MV .framer-i2rzo0 > *, .framer-XH6MV .framer-7fu28e > *, .framer-XH6MV .framer-1rf833d > *, .framer-XH6MV .framer-wt9ke5 > *, .framer-XH6MV .framer-1qm4emr > *, .framer-XH6MV .framer-1fevjvf > *, .framer-XH6MV .framer-1hc5yt6 > *, .framer-XH6MV .framer-pax1t9 > *, .framer-XH6MV .framer-1q3bnlp > *, .framer-XH6MV .framer-5jycum > *, .framer-XH6MV .framer-1k7hz9g > *, .framer-XH6MV .framer-1w2oy84 > *, .framer-XH6MV .framer-mg9du8 > *, .framer-XH6MV .framer-3n3srb > *, .framer-XH6MV .framer-14b3a9k > *, .framer-XH6MV .framer-1n76pg > *, .framer-XH6MV .framer-1q9yrd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XH6MV .framer-gz8snt > :first-child, .framer-XH6MV .framer-1eyf7ws > :first-child, .framer-XH6MV .framer-8y656i > :first-child, .framer-XH6MV .framer-ufa0pj > :first-child, .framer-XH6MV .framer-apww6y > :first-child, .framer-XH6MV .framer-1fht3sn > :first-child, .framer-XH6MV .framer-c5shfp > :first-child, .framer-XH6MV .framer-18prfwx > :first-child, .framer-XH6MV .framer-1rvsg8c > :first-child, .framer-XH6MV .framer-uvv1n5 > :first-child, .framer-XH6MV .framer-1dgpvpn > :first-child, .framer-XH6MV .framer-4dhl5j > :first-child, .framer-XH6MV .framer-g9en2o > :first-child, .framer-XH6MV .framer-i2rzo0 > :first-child, .framer-XH6MV .framer-7fu28e > :first-child, .framer-XH6MV .framer-1rf833d > :first-child, .framer-XH6MV .framer-wt9ke5 > :first-child, .framer-XH6MV .framer-1qm4emr > :first-child, .framer-XH6MV .framer-1fevjvf > :first-child, .framer-XH6MV .framer-1hc5yt6 > :first-child, .framer-XH6MV .framer-14hqshc > :first-child, .framer-XH6MV .framer-1b91uj7 > :first-child, .framer-XH6MV .framer-pax1t9 > :first-child, .framer-XH6MV .framer-s7z0bj > :first-child, .framer-XH6MV .framer-1q3bnlp > :first-child, .framer-XH6MV .framer-b8c5je > :first-child, .framer-XH6MV .framer-5jycum > :first-child, .framer-XH6MV .framer-1kzvyp1 > :first-child, .framer-XH6MV .framer-1k7hz9g > :first-child, .framer-XH6MV .framer-v3uteg > :first-child, .framer-XH6MV .framer-qjbuc7 > :first-child, .framer-XH6MV .framer-zb82nk > :first-child, .framer-XH6MV .framer-12m8iwo > :first-child, .framer-XH6MV .framer-1opat0u > :first-child, .framer-XH6MV .framer-1w2oy84 > :first-child, .framer-XH6MV .framer-mg9du8 > :first-child, .framer-XH6MV .framer-3n3srb > :first-child, .framer-XH6MV .framer-14b3a9k > :first-child, .framer-XH6MV .framer-1n76pg > :first-child, .framer-XH6MV .framer-1q9yrd2 > :first-child { margin-left: 0px; } .framer-XH6MV .framer-gz8snt > :last-child, .framer-XH6MV .framer-1eyf7ws > :last-child, .framer-XH6MV .framer-8y656i > :last-child, .framer-XH6MV .framer-ufa0pj > :last-child, .framer-XH6MV .framer-apww6y > :last-child, .framer-XH6MV .framer-1fht3sn > :last-child, .framer-XH6MV .framer-c5shfp > :last-child, .framer-XH6MV .framer-18prfwx > :last-child, .framer-XH6MV .framer-1rvsg8c > :last-child, .framer-XH6MV .framer-uvv1n5 > :last-child, .framer-XH6MV .framer-1dgpvpn > :last-child, .framer-XH6MV .framer-4dhl5j > :last-child, .framer-XH6MV .framer-g9en2o > :last-child, .framer-XH6MV .framer-i2rzo0 > :last-child, .framer-XH6MV .framer-7fu28e > :last-child, .framer-XH6MV .framer-1rf833d > :last-child, .framer-XH6MV .framer-wt9ke5 > :last-child, .framer-XH6MV .framer-1qm4emr > :last-child, .framer-XH6MV .framer-1fevjvf > :last-child, .framer-XH6MV .framer-1hc5yt6 > :last-child, .framer-XH6MV .framer-14hqshc > :last-child, .framer-XH6MV .framer-1b91uj7 > :last-child, .framer-XH6MV .framer-pax1t9 > :last-child, .framer-XH6MV .framer-s7z0bj > :last-child, .framer-XH6MV .framer-1q3bnlp > :last-child, .framer-XH6MV .framer-b8c5je > :last-child, .framer-XH6MV .framer-5jycum > :last-child, .framer-XH6MV .framer-1kzvyp1 > :last-child, .framer-XH6MV .framer-1k7hz9g > :last-child, .framer-XH6MV .framer-v3uteg > :last-child, .framer-XH6MV .framer-qjbuc7 > :last-child, .framer-XH6MV .framer-zb82nk > :last-child, .framer-XH6MV .framer-12m8iwo > :last-child, .framer-XH6MV .framer-1opat0u > :last-child, .framer-XH6MV .framer-1w2oy84 > :last-child, .framer-XH6MV .framer-mg9du8 > :last-child, .framer-XH6MV .framer-3n3srb > :last-child, .framer-XH6MV .framer-14b3a9k > :last-child, .framer-XH6MV .framer-1n76pg > :last-child, .framer-XH6MV .framer-1q9yrd2 > :last-child { margin-right: 0px; } .framer-XH6MV .framer-27bob2 > *, .framer-XH6MV .framer-1kxc32j > *, .framer-XH6MV .framer-1daw9px > *, .framer-XH6MV .framer-1d1x6j1 > *, .framer-XH6MV .framer-udwtwy > *, .framer-XH6MV .framer-1pfahak > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XH6MV .framer-d5t05n > *, .framer-XH6MV .framer-gkdyka > *, .framer-XH6MV .framer-1kjbcj5 > *, .framer-XH6MV .framer-1wlblh1 > *, .framer-XH6MV .framer-15mff3c > *, .framer-XH6MV .framer-119ai7g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XH6MV .framer-6wz9u > *, .framer-XH6MV .framer-1qg1zfh > *, .framer-XH6MV .framer-491272 > *, .framer-XH6MV .framer-2vxwzt > *, .framer-XH6MV .framer-rkhbb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XH6MV .framer-1fht3sn > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-XH6MV .framer-4dhl5j > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-XH6MV .framer-g9en2o > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-XH6MV .framer-14hqshc > *, .framer-XH6MV .framer-v3uteg > *, .framer-XH6MV .framer-qjbuc7 > *, .framer-XH6MV .framer-zb82nk > *, .framer-XH6MV .framer-12m8iwo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-XH6MV .framer-1b91uj7 > *, .framer-XH6MV .framer-s7z0bj > *, .framer-XH6MV .framer-b8c5je > *, .framer-XH6MV .framer-1kzvyp1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-XH6MV .framer-1opat0u > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-XH6MV[data-border=\"true\"]::after, .framer-XH6MV [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: 810px) and (max-width: 1439px) { .framer-XH6MV.framer-72rtr7 { width: 810px; } .framer-XH6MV .framer-17qr727-container, .framer-XH6MV .framer-1qg1zfh, .framer-XH6MV .framer-w42x5i, .framer-XH6MV .framer-a26cic, .framer-XH6MV .framer-gkdyka, .framer-XH6MV .framer-1b91uj7, .framer-XH6MV .framer-s7z0bj, .framer-XH6MV .framer-b8c5je, .framer-XH6MV .framer-1kzvyp1, .framer-XH6MV .framer-zhh30u-container { width: 100%; } .framer-XH6MV.framer-1l2mjn9, .framer-XH6MV.framer-1mf7935, .framer-XH6MV .framer-qt5s96, .framer-XH6MV.framer-19rfh11 { width: 80%; } .framer-XH6MV .framer-d5t05n { height: 600px; } .framer-XH6MV .framer-4dhl5j { padding: 40px 15px 40px 15px; } .framer-XH6MV .framer-g6v0sg { height: var(--framer-aspect-ratio-supported, 43px); order: 1; width: 127px; } .framer-XH6MV .framer-1tn92vv { order: 0; width: 58px; } .framer-XH6MV .framer-i8xf3m { height: var(--framer-aspect-ratio-supported, 35px); order: 2; width: 106px; } .framer-XH6MV .framer-u7v6cf { height: var(--framer-aspect-ratio-supported, 43px); order: 3; width: 125px; } .framer-XH6MV .framer-8azd6g { order: 4; width: 71px; } .framer-XH6MV .framer-1k4reto { height: var(--framer-aspect-ratio-supported, 84px); order: 5; width: 84px; } .framer-XH6MV .framer-g9en2o, .framer-XH6MV .framer-14hqshc { flex-direction: column; width: 100%; } .framer-XH6MV .framer-i2rzo0, .framer-XH6MV .framer-7fu28e { flex: none; width: 100%; } .framer-XH6MV .framer-1kjbcj5 { gap: 40px; } .framer-XH6MV .framer-f3r8q8 { flex-wrap: wrap; gap: 10px; justify-content: center; width: 100%; } .framer-XH6MV .framer-1qvg6ss-container { order: 0; width: 280px; } .framer-XH6MV .framer-1hs2etv-container { order: 1; width: 280px; } .framer-XH6MV .framer-1ioi5oq-container { order: 2; width: 32%; } .framer-XH6MV .framer-1yrnj6o-container { order: 3; width: 32%; } .framer-XH6MV .framer-1lpvxn1-container { order: 4; width: 32%; } .framer-XH6MV .framer-udwtwy { order: 0; } .framer-XH6MV .framer-qjbuc7 { order: 1; width: 100%; } .framer-XH6MV .framer-zb82nk { order: 2; width: 100%; } .framer-XH6MV .framer-12m8iwo { order: 3; width: 100%; } .framer-XH6MV .framer-1opat0u { height: 620px; width: 100%; } .framer-XH6MV .framer-1w2oy84 { padding: 0px 0px 0px 15px; width: 50%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XH6MV .framer-g9en2o, .framer-XH6MV .framer-1kjbcj5, .framer-XH6MV .framer-f3r8q8, .framer-XH6MV .framer-14hqshc { gap: 0px; } .framer-XH6MV .framer-g9en2o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XH6MV .framer-g9en2o > :first-child, .framer-XH6MV .framer-1kjbcj5 > :first-child, .framer-XH6MV .framer-14hqshc > :first-child { margin-top: 0px; } .framer-XH6MV .framer-g9en2o > :last-child, .framer-XH6MV .framer-1kjbcj5 > :last-child, .framer-XH6MV .framer-14hqshc > :last-child { margin-bottom: 0px; } .framer-XH6MV .framer-1kjbcj5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XH6MV .framer-f3r8q8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XH6MV .framer-f3r8q8 > :first-child { margin-left: 0px; } .framer-XH6MV .framer-f3r8q8 > :last-child { margin-right: 0px; } .framer-XH6MV .framer-14hqshc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-XH6MV.framer-72rtr7 { width: 390px; } .framer-XH6MV .framer-17qr727-container, .framer-XH6MV .framer-1gx2nvl, .framer-XH6MV .framer-y08t9r-container, .framer-XH6MV .framer-jthpo6-container, .framer-XH6MV .framer-w42x5i, .framer-XH6MV .framer-a26cic, .framer-XH6MV .framer-gkdyka, .framer-XH6MV .framer-zhh30u-container { width: 100%; } .framer-XH6MV.framer-1l2mjn9, .framer-XH6MV.framer-1mf7935, .framer-XH6MV.framer-19rfh11 { width: 90%; } .framer-XH6MV .framer-d5t05n { height: min-content; } .framer-XH6MV .framer-6wz9u { flex: none; height: min-content; padding: 100px 15px 80px 15px; } .framer-XH6MV .framer-1qg1zfh { gap: 20px; order: 0; width: 100%; } .framer-XH6MV .framer-1fht3sn { flex-direction: column; order: 1; width: 100%; } .framer-XH6MV .framer-4dhl5j { flex-direction: column; padding: 40px 15px 40px 15px; } .framer-XH6MV .framer-1dzs6hh { gap: 20px; justify-content: center; } .framer-XH6MV .framer-g6v0sg { height: var(--framer-aspect-ratio-supported, 46px); order: 0; width: 38%; } .framer-XH6MV .framer-1tn92vv { height: 129px; order: 1; width: 63px; } .framer-XH6MV .framer-i8xf3m { height: var(--framer-aspect-ratio-supported, 31px); order: 2; width: 26%; } .framer-XH6MV .framer-u7v6cf { height: var(--framer-aspect-ratio-supported, 42px); order: 4; width: 34%; } .framer-XH6MV .framer-8azd6g { height: 72px; order: 3; width: 91px; } .framer-XH6MV .framer-1k4reto { height: var(--framer-aspect-ratio-supported, 79px); order: 5; width: 79px; } .framer-XH6MV .framer-491272, .framer-XH6MV .framer-1kjbcj5 { padding: 60px 15px 60px 15px; } .framer-XH6MV .framer-g9en2o { flex-direction: column; width: 100%; } .framer-XH6MV .framer-i2rzo0, .framer-XH6MV .framer-7fu28e { flex: none; width: 100%; } .framer-XH6MV .framer-f3r8q8 { align-content: center; align-items: center; flex-wrap: wrap; gap: 0px; justify-content: center; width: 100%; } .framer-XH6MV .framer-1qvg6ss-container { order: 0; width: 50%; } .framer-XH6MV .framer-1hs2etv-container { order: 1; width: 50%; } .framer-XH6MV .framer-1ioi5oq-container { order: 3; width: 50%; } .framer-XH6MV .framer-1yrnj6o-container { order: 2; width: 50%; } .framer-XH6MV .framer-1lpvxn1-container { order: 4; } .framer-XH6MV .framer-2vxwzt { padding: 60px 20px 60px 20px; } .framer-XH6MV .framer-14hqshc { flex-direction: column; gap: 40px; width: 100%; } .framer-XH6MV .framer-1b91uj7, .framer-XH6MV .framer-s7z0bj, .framer-XH6MV .framer-b8c5je, .framer-XH6MV .framer-1kzvyp1 { gap: 0px; height: min-content; padding: 20px; width: 100%; } .framer-XH6MV .framer-25hxl3, .framer-XH6MV .framer-1iyv5n2 { order: 0; } .framer-XH6MV .framer-pax1t9 { height: 60px; order: 1; width: 60px; } .framer-XH6MV .framer-1q3bnlp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-XH6MV .framer-5jycum, .framer-XH6MV .framer-1k7hz9g { height: 60px; width: 60px; } .framer-XH6MV .framer-v3uteg { gap: 40px; padding: 60px 15px 60px 15px; } .framer-XH6MV .framer-udwtwy { gap: 20px; order: 0; padding: 0px; } .framer-XH6MV .framer-ahc3t5 { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-XH6MV .framer-1crgrhk { order: 1; } .framer-XH6MV .framer-fqab14-container { order: 2; } .framer-XH6MV .framer-1opat0u { flex-direction: column; height: min-content; width: 100%; } .framer-XH6MV .framer-1w2oy84 { height: min-content; order: 0; padding: 0px 15px 0px 15px; width: 100%; } .framer-XH6MV .framer-rkhbb { height: min-content; padding: 40px 15px 40px 15px; } .framer-XH6MV .framer-185ee08 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-XH6MV .framer-119ai7g { height: 600px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XH6MV .framer-1qg1zfh, .framer-XH6MV .framer-1fht3sn, .framer-XH6MV .framer-4dhl5j, .framer-XH6MV .framer-1dzs6hh, .framer-XH6MV .framer-g9en2o, .framer-XH6MV .framer-f3r8q8, .framer-XH6MV .framer-14hqshc, .framer-XH6MV .framer-1b91uj7, .framer-XH6MV .framer-s7z0bj, .framer-XH6MV .framer-b8c5je, .framer-XH6MV .framer-1kzvyp1, .framer-XH6MV .framer-v3uteg, .framer-XH6MV .framer-udwtwy, .framer-XH6MV .framer-1opat0u { gap: 0px; } .framer-XH6MV .framer-1qg1zfh > *, .framer-XH6MV .framer-udwtwy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XH6MV .framer-1qg1zfh > :first-child, .framer-XH6MV .framer-1fht3sn > :first-child, .framer-XH6MV .framer-4dhl5j > :first-child, .framer-XH6MV .framer-g9en2o > :first-child, .framer-XH6MV .framer-14hqshc > :first-child, .framer-XH6MV .framer-udwtwy > :first-child, .framer-XH6MV .framer-1opat0u > :first-child { margin-top: 0px; } .framer-XH6MV .framer-1qg1zfh > :last-child, .framer-XH6MV .framer-1fht3sn > :last-child, .framer-XH6MV .framer-4dhl5j > :last-child, .framer-XH6MV .framer-g9en2o > :last-child, .framer-XH6MV .framer-14hqshc > :last-child, .framer-XH6MV .framer-udwtwy > :last-child, .framer-XH6MV .framer-1opat0u > :last-child { margin-bottom: 0px; } .framer-XH6MV .framer-1fht3sn > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-XH6MV .framer-4dhl5j > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-XH6MV .framer-1dzs6hh > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-XH6MV .framer-1dzs6hh > :first-child, .framer-XH6MV .framer-f3r8q8 > :first-child, .framer-XH6MV .framer-1b91uj7 > :first-child, .framer-XH6MV .framer-s7z0bj > :first-child, .framer-XH6MV .framer-b8c5je > :first-child, .framer-XH6MV .framer-1kzvyp1 > :first-child, .framer-XH6MV .framer-v3uteg > :first-child { margin-left: 0px; } .framer-XH6MV .framer-1dzs6hh > :last-child, .framer-XH6MV .framer-f3r8q8 > :last-child, .framer-XH6MV .framer-1b91uj7 > :last-child, .framer-XH6MV .framer-s7z0bj > :last-child, .framer-XH6MV .framer-b8c5je > :last-child, .framer-XH6MV .framer-1kzvyp1 > :last-child, .framer-XH6MV .framer-v3uteg > :last-child { margin-right: 0px; } .framer-XH6MV .framer-g9en2o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XH6MV .framer-f3r8q8 > *, .framer-XH6MV .framer-1b91uj7 > *, .framer-XH6MV .framer-s7z0bj > *, .framer-XH6MV .framer-b8c5je > *, .framer-XH6MV .framer-1kzvyp1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XH6MV .framer-14hqshc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XH6MV .framer-v3uteg > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-XH6MV .framer-1opat0u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4939\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IWKk8AZi0\":{\"layout\":[\"fixed\",\"auto\"]},\"xHoizhwKZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-XH6MV\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4939,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavbarLogoLightFonts,...InputStylingEditMeFonts,...SubmitStylingEditMeFonts,...MainButtonFonts,...TickerFonts,...CookiesCardFonts,...SlideshowFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4939\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IWKk8AZi0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xHoizhwKZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MaterialFonts", "getFonts", "Icon", "MaterialControls", "getPropertyControls", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "m3LlPreBq", "dU7xfzDPc", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Icon", "RichText2", "x", "css", "Framersj4y2n2fG", "withCSS", "sj4y2n2fG_default", "addPropertyControls", "ControlType", "MaterialControls", "addFonts", "MaterialFonts", "fontStore", "fonts", "css", "className", "NavbarLogoLightFonts", "getFonts", "WeFySkUe9_default", "MotionDivWithInputFieldl2ytvm", "withCodeBoundaryForOverrides", "motion", "withInputField", "InputStylingEditMeFonts", "jpoeHphXI_default", "MotionDivWithInputField1i6dqbv", "MotionDivWithInputField1yl1hk4", "MotionDivWithFX", "withFX", "SubmitStylingEditMeFonts", "SFriT6FOX_default", "MotionDivWithSubmitButton1ylf30s", "withSubmitButton", "MotionDivWithForm1l2mjn9", "withForm", "MainButtonFonts", "PQeo_Vf0w_default", "MotionDivWithInputFieldo4p1zh", "MotionDivWithInputField1vmzqfs", "MotionDivWithInputFieldg2gvic", "MotionDivWithSubmitButton1wfecid", "MotionDivWithForm1mf7935", "TickerFonts", "Ticker", "MotionDivWithInputField3l4nkx", "MotionDivWithInputField1pefa8e", "MotionDivWithInputFieldxbr3sk", "MotionDivWithSubmitButton16qx5vi", "MotionDivWithForm19rfh11", "CookiesCardFonts", "sj4y2n2fG_default", "SlideshowFonts", "Slideshow", "MotionDivWithInputFieldx5yy44", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivWithInputField1i7myxc", "MotionDivWithInputField18gokbr", "MotionDivWithSubmitButtonpu3f5k", "MotionAWithOptimizedAppearEffect", "MotionDivWithForm1oo6j3x", "FooterDarkFonts", "gbG5aloyp_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "NCdkBfeZH3bnx0g", "overlay", "loadMore", "args", "tap23bnx0g", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "RichText2", "Link", "Image2", "overlay1", "ResolveLinks", "resolvedLinks", "overlay2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
