{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/BZxAnBZmHKoVDQEkLJb6/i4RgPMYaDM1WIx3CTYQo/kF5h2tZAe.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import URLDataCollector from\"https://framerusercontent.com/modules/Kuwa4LRQnmmppaTnEydr/OyCZglBxLZoJn5latIqw/DataInput.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import FormField from\"#framer/local/canvasComponent/bCpkduSmk/bCpkduSmk.js\";import ButtonsSubmit from\"#framer/local/canvasComponent/bws_XzbBd/bws_XzbBd.js\";import Headline from\"#framer/local/canvasComponent/CATy9KlQN/CATy9KlQN.js\";import CardsExperience from\"#framer/local/canvasComponent/Uzp0GGUIY/Uzp0GGUIY.js\";import ButtonsSecondary from\"#framer/local/canvasComponent/wmXsrfZbE/wmXsrfZbE.js\";import MediaCaRd from\"#framer/local/canvasComponent/wQ0Cw_DUc/wQ0Cw_DUc.js\";import*as sharedStyle from\"#framer/local/css/p0iIH5wBN/p0iIH5wBN.js\";import*as sharedStyle1 from\"#framer/local/css/pw6zGppyk/pw6zGppyk.js\";import*as sharedStyle2 from\"#framer/local/css/tBy5FN6dd/tBy5FN6dd.js\";import metadataProvider from\"#framer/local/webPageMetadata/kF5h2tZAe/kF5h2tZAe.js\";const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ButtonsSecondaryFonts=getFonts(ButtonsSecondary);const CardsExperienceFonts=getFonts(CardsExperience);const MotionSectionWithFX=withFX(motion.section);const HeadlineFonts=getFonts(Headline);const MediaCaRdFonts=getFonts(MediaCaRd);const TickerFonts=getFonts(Ticker);const FormFieldFonts=getFonts(FormField);const URLDataCollectorFonts=getFonts(URLDataCollector);const ButtonsSubmitFonts=getFonts(ButtonsSubmit);const SVG1Fonts=getFonts(SVG1);const breakpoints={J8PfEE7Z8:\"(min-width: 810px) and (max-width: 1199px)\",tY7duOV0U:\"(max-width: 809px)\",XJYtu58l9:\"(min-width: 1200px) and (max-width: 1599px)\",ZHarZ_RpP:\"(min-width: 1600px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GnWfx\";const variantClassNames={J8PfEE7Z8:\"framer-v-19tjk63\",tY7duOV0U:\"framer-v-sv6hha\",XJYtu58l9:\"framer-v-1q9h3qs\",ZHarZ_RpP:\"framer-v-4mnbna\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition1={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-64,y:0};const transition2={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"XJYtu58l9\",Phone:\"tY7duOV0U\",Tablet:\"J8PfEE7Z8\",Wide:\"ZHarZ_RpP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZHarZ_RpP\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"IzpLMTEMf\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"FCYGbdQqn\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"doVgcS0b6\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZHarZ_RpP\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-95dafb5e-2aae-4fc1-a145-9498331353b3, rgb(77, 105, 108)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-4mnbna\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-2ocwns\",\"data-framer-name\":\"Sections / Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1luqymf\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1szk1g1\",\"data-framer-name\":\"Background Gradient 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cwla5l\",\"data-framer-name\":\"Background Gradient 2\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:\"491px\",src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"}},tY7duOV0U:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:\"259px\",src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"},style:{rotate:39}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:\"665px\",src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"},className:\"framer-wuijh1\",\"data-framer-name\":\"element 1\",style:{rotate:56}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qwxih\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bp3e4s\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u513gd-container\",\"data-framer-name\":\"Video File\",isModuleExternal:true,name:\"Video File\",nodeId:\"aTKdTWkiJ\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:29,bottomLeftRadius:29,bottomRightRadius:29,controls:true,height:\"100%\",id:\"aTKdTWkiJ\",isMixedBorderRadius:false,layoutId:\"aTKdTWkiJ\",loop:true,muted:true,name:\"Video File\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/pVlu2KRrrykfVgJ9ndBzIT2RM.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:29,topRightRadius:29,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kxnaki\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3b9o2\",\"data-framer-name\":\"Titles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 212 40\"><path d=\"M 27.292 33.203 C 26.899 32.914 26.627 32.53 26.475 32.044 L 16.729 2.273 L 10.563 2.273 L 11.785 6.045 L 3.265 32.044 C 3.113 32.53 2.841 32.914 2.448 33.203 C 2.056 33.492 1.618 33.634 1.134 33.634 L 0 33.634 L 0 34.089 L 5.894 34.089 L 5.894 33.634 L 4.76 33.634 C 4.276 33.634 3.946 33.492 3.763 33.203 C 3.582 32.914 3.566 32.53 3.718 32.044 L 6.848 22.544 L 17.23 22.544 L 20.359 32.044 C 20.511 32.53 20.495 32.914 20.315 33.203 C 20.134 33.492 19.802 33.634 19.317 33.634 L 18.183 33.634 L 18.183 34.089 L 29.744 34.089 L 29.744 33.634 L 28.61 33.634 C 28.125 33.634 27.688 33.492 27.295 33.203 M 6.981 22.134 L 12.013 6.725 L 17.091 22.134 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 59.928 8.544 C 60.805 8.544 61.546 8.239 62.151 7.633 C 62.75 7.03 63.054 6.287 63.054 5.41 C 63.054 4.534 62.75 3.788 62.151 3.181 C 61.546 2.575 60.805 2.276 59.928 2.276 C 59.05 2.276 58.309 2.575 57.704 3.181 C 57.106 3.788 56.801 4.531 56.801 5.41 C 56.801 6.29 57.106 7.033 57.704 7.633 C 58.309 8.239 59.05 8.544 59.928 8.544 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 54.258 11.821 L 55.392 11.821 C 55.877 11.821 56.263 11.964 56.551 12.25 C 56.84 12.539 56.985 12.926 56.985 13.412 L 56.985 30.755 C 56.985 31.288 56.89 31.822 56.71 32.323 C 56.564 32.711 56.377 33.098 56.136 33.489 L 55.734 34.092 C 55.718 34.114 55.709 34.127 55.693 34.149 C 55.243 34.765 54.679 35.359 54.011 35.924 L 54.052 35.899 C 53.764 36.134 53.498 36.311 53.254 36.432 C 52.842 36.632 52.472 36.724 52.142 36.724 C 51.721 36.724 51.392 36.581 51.167 36.296 C 50.942 36.007 50.828 35.692 50.828 35.365 L 50.828 2.045 C 50.828 1.562 50.971 1.178 51.256 0.889 C 51.544 0.6 51.93 0.454 52.415 0.454 L 53.549 0.454 L 53.549 0 L 42.216 0 L 42.216 0.454 L 43.35 0.454 C 43.832 0.454 44.218 0.6 44.503 0.889 C 44.791 1.178 44.937 1.565 44.937 2.045 L 44.937 13.091 C 43.391 11.637 41.535 10.91 39.356 10.91 C 37.513 10.91 35.891 11.281 34.485 12.024 C 33.076 12.767 31.907 13.742 30.966 14.955 C 30.032 16.168 29.329 17.549 28.863 19.115 C 28.394 20.674 28.16 22.271 28.16 23.909 C 28.16 25.211 28.344 26.494 28.702 27.751 C 29.066 29.008 29.598 30.132 30.307 31.117 C 31.017 32.101 31.92 32.895 33.006 33.505 C 34.095 34.108 35.365 34.409 36.816 34.409 C 37.966 34.409 38.992 34.216 39.901 33.819 C 40.392 33.603 40.851 33.352 41.273 33.06 C 41.627 32.819 41.95 32.546 42.254 32.254 C 42.916 31.599 43.48 30.831 43.936 29.936 C 44.25 29.313 44.506 28.662 44.703 27.989 C 44.791 27.697 44.87 27.399 44.934 27.094 L 44.934 35 C 44.934 36.365 45.311 37.486 46.068 38.366 C 46.825 39.245 47.775 39.683 48.921 39.683 C 49.83 39.683 50.796 39.363 51.823 38.731 C 52.953 38.036 55.383 35.073 55.383 35.073 C 55.383 35.07 55.389 35.067 55.392 35.064 C 55.943 34.457 56.713 34.095 57.533 34.095 L 65.6 34.095 L 65.6 33.641 L 64.466 33.641 C 63.982 33.641 63.595 33.495 63.307 33.206 C 63.019 32.917 62.879 32.53 62.879 32.05 L 62.879 13.415 C 62.879 12.929 63.022 12.542 63.307 12.253 C 63.595 11.964 63.982 11.824 64.466 11.824 L 65.6 11.824 L 65.6 11.37 L 54.261 11.37 L 54.261 11.824 Z M 44.931 23.363 C 44.931 24.211 44.82 25.163 44.611 26.227 C 44.456 27.011 44.234 27.748 43.949 28.45 C 43.844 28.7 43.733 28.942 43.613 29.183 C 43.16 30.088 42.558 30.856 41.824 31.476 C 41.491 31.758 41.114 31.974 40.702 32.13 C 40.205 32.314 39.648 32.406 39.036 32.406 C 37.975 32.406 37.104 32.044 36.427 31.317 C 35.749 30.59 35.21 29.71 34.818 28.678 C 34.422 27.646 34.143 26.557 33.978 25.408 C 33.81 24.255 33.728 23.268 33.728 22.452 C 33.728 21.363 33.81 20.172 33.978 18.883 C 34.146 17.597 34.447 16.397 34.887 15.292 C 35.324 14.187 35.92 13.256 36.677 12.498 C 37.427 11.739 38.384 11.361 39.53 11.361 C 40.224 11.361 40.899 11.504 41.551 11.789 C 42.197 12.078 42.774 12.501 43.274 13.063 C 43.771 13.628 44.17 14.323 44.475 15.155 C 44.779 15.987 44.927 16.949 44.927 18.045 L 44.927 23.36 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 87.866 11.999 C 87.381 11.634 86.862 11.355 86.301 11.158 C 85.741 10.961 85.19 10.862 84.645 10.862 C 83.619 10.834 82.725 10.977 81.972 11.294 C 81.215 11.612 80.575 12.059 80.046 12.634 C 79.517 13.209 79.093 13.876 78.776 14.635 C 78.459 15.393 78.209 16.197 78.028 17.044 L 78.028 11.364 L 69.413 11.364 L 69.413 11.818 L 70.547 11.818 C 71.029 11.818 71.415 11.961 71.703 12.25 C 71.988 12.539 72.134 12.923 72.134 13.409 L 72.134 32.044 C 72.134 32.53 71.992 32.914 71.703 33.203 C 71.415 33.492 71.029 33.635 70.547 33.635 L 69.413 33.635 L 69.413 34.089 L 80.749 34.089 L 80.749 33.635 L 79.615 33.635 C 79.131 33.635 78.744 33.492 78.459 33.203 C 78.171 32.914 78.028 32.53 78.028 32.044 L 78.028 19.089 C 78.361 16.848 78.918 15.174 79.707 14.066 C 80.493 12.961 81.459 12.377 82.608 12.317 C 83.153 12.288 83.673 12.409 84.173 12.682 C 84.673 12.955 85.088 13.349 85.421 13.863 C 85.753 14.377 85.956 15.031 86.032 15.819 C 86.105 16.606 85.978 17.518 85.646 18.546 L 85.826 18.683 L 89.861 15.184 C 89.741 14.485 89.5 13.872 89.136 13.342 C 88.775 12.812 88.351 12.364 87.866 12.002\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 113.255 33.634 L 112.12 33.634 L 112.12 34.089 L 123.681 34.089 L 123.681 33.634 L 122.547 33.634 C 122.063 33.634 121.626 33.492 121.233 33.203 C 120.84 32.914 120.568 32.53 120.416 32.044 L 110.667 2.273 L 104.5 2.273 L 105.723 6.045 L 97.2 32.044 C 97.048 32.53 96.775 32.914 96.383 33.203 C 95.99 33.492 95.553 33.634 95.068 33.634 L 93.934 33.634 L 93.934 34.089 L 99.829 34.089 L 99.829 33.634 L 98.695 33.634 C 98.21 33.634 97.878 33.492 97.697 33.203 C 97.516 32.914 97.501 32.53 97.653 32.044 L 100.782 22.544 L 111.165 22.544 L 114.294 32.044 C 114.446 32.53 114.43 32.914 114.249 33.203 C 114.068 33.492 113.736 33.634 113.251 33.634 M 100.921 22.134 L 105.954 6.725 L 111.031 22.134 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 137.439 23.134 C 136.547 22.499 135.59 21.931 134.561 21.429 C 133.531 20.931 132.565 20.391 131.66 19.816 C 130.754 19.241 129.997 18.587 129.392 17.86 C 128.787 17.133 128.47 16.241 128.439 15.18 C 128.407 13.967 128.799 13.021 129.616 12.339 C 130.433 11.656 131.356 11.316 132.381 11.316 C 133.408 11.316 134.225 11.535 134.83 11.973 C 135.435 12.412 135.85 12.967 136.077 13.634 C 136.306 14.301 136.357 15.034 136.236 15.838 C 136.116 16.641 135.828 17.406 135.375 18.133 L 135.556 18.27 L 139.59 14.771 C 139.346 14.317 139.008 13.856 138.57 13.383 C 138.133 12.913 137.61 12.491 137.005 12.11 C 136.4 11.732 135.708 11.427 134.919 11.202 C 134.133 10.973 133.256 10.862 132.29 10.862 C 131.323 10.862 130.288 10.999 129.274 11.272 C 128.261 11.545 127.349 11.954 126.532 12.497 C 125.715 13.043 125.049 13.726 124.536 14.542 C 124.023 15.361 123.767 16.314 123.767 17.406 C 123.767 18.498 124.061 19.495 124.65 20.315 C 125.24 21.134 125.98 21.867 126.87 22.518 C 127.764 23.169 128.721 23.782 129.75 24.36 C 130.776 24.934 131.735 25.519 132.629 26.109 C 133.519 26.7 134.259 27.344 134.849 28.043 C 135.438 28.742 135.732 29.542 135.732 30.453 C 135.732 30.939 135.612 31.399 135.368 31.837 C 135.124 32.279 134.792 32.657 134.37 32.974 C 133.946 33.292 133.449 33.549 132.875 33.746 C 132.302 33.942 131.665 34.041 130.973 34.041 C 129.975 34.041 129.114 33.838 128.388 33.428 C 127.663 33.019 127.089 32.466 126.665 31.771 C 126.24 31.075 125.984 30.256 125.895 29.316 C 125.804 28.376 125.879 27.376 126.123 26.316 L 125.85 26.179 L 122.994 31.361 C 124.292 32.574 125.683 33.406 127.166 33.86 C 128.647 34.314 130.066 34.543 131.428 34.543 C 132.79 34.543 133.931 34.412 135.033 34.155 C 136.135 33.898 137.094 33.511 137.912 32.996 C 138.729 32.482 139.368 31.853 139.838 31.11 C 140.306 30.367 140.54 29.497 140.54 28.497 C 140.54 27.256 140.246 26.211 139.657 25.36 C 139.068 24.512 138.326 23.769 137.434 23.134\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 159.452 33.635 L 159.224 33.635 L 159.224 34.089 L 168.745 34.089 L 168.745 33.635 L 168.472 33.635 C 167.988 33.635 167.611 33.492 167.339 33.203 C 167.066 32.914 166.931 32.53 166.931 32.044 L 166.931 21.363 C 166.931 20.121 166.854 18.88 166.705 17.635 C 166.553 16.393 166.205 15.279 165.663 14.295 C 165.118 13.31 164.333 12.501 163.303 11.862 C 162.278 11.227 160.884 10.894 159.132 10.862 C 157.922 10.862 156.836 11.053 155.867 11.431 C 154.901 11.809 154.052 12.339 153.327 13.021 C 152.601 13.704 151.99 14.507 151.49 15.431 C 150.99 16.355 150.59 17.349 150.289 18.41 L 150.289 2 C 150.289 1.546 150.432 1.175 150.72 0.886 C 151.008 0.597 151.391 0.454 151.876 0.454 L 152.104 0.454 L 152.104 0 L 142.584 0 L 142.584 0.454 L 142.811 0.454 C 143.296 0.454 143.679 0.597 143.968 0.886 C 144.255 1.175 144.399 1.546 144.399 2 L 144.399 32.044 C 144.399 32.53 144.255 32.914 143.968 33.203 C 143.679 33.492 143.296 33.635 142.811 33.635 L 142.584 33.635 L 142.584 34.089 L 152.104 34.089 L 152.104 33.635 L 151.876 33.635 C 151.391 33.635 151.008 33.492 150.72 33.203 C 150.432 32.914 150.289 32.53 150.289 32.044 L 150.289 20.728 C 150.47 19.486 150.764 18.356 151.173 17.34 C 151.581 16.327 152.063 15.454 152.623 14.726 C 153.181 13.999 153.795 13.441 154.46 13.044 C 155.125 12.65 155.803 12.453 156.5 12.453 C 157.498 12.453 158.29 12.732 158.879 13.294 C 159.468 13.856 159.921 14.666 160.241 15.727 C 160.557 16.787 160.764 18.083 160.853 19.613 C 160.944 21.144 160.988 22.893 160.988 24.862 L 161.036 32.044 C 161.036 32.53 160.894 32.914 160.605 33.203 C 160.316 33.492 159.933 33.635 159.45 33.635\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 211.275 13.342 C 210.913 12.812 210.489 12.364 210.004 12.002 C 209.52 11.637 209.001 11.358 208.44 11.161 C 207.88 10.964 207.328 10.866 206.783 10.866 C 205.725 10.837 204.82 10.98 204.063 11.297 C 203.309 11.615 202.672 12.056 202.159 12.615 C 201.646 13.177 201.231 13.828 200.912 14.571 C 200.594 15.314 200.344 16.108 200.164 16.956 L 200.164 11.364 L 191.549 11.364 L 191.549 11.818 L 192.682 11.818 C 193.168 11.818 193.55 11.961 193.839 12.25 C 194.128 12.539 194.27 12.923 194.27 13.409 L 194.27 28.59 C 192.848 30.104 191.248 31.311 189.465 32.203 C 187.682 33.098 185.731 33.543 183.619 33.543 C 182.561 33.543 181.546 33.286 180.581 32.771 C 179.615 32.257 178.798 31.361 178.132 30.088 C 178.585 28.666 179.212 27.256 180.014 25.862 C 180.815 24.468 181.743 23.144 182.801 21.887 C 183.86 20.629 185.008 19.464 186.247 18.388 C 187.486 17.311 188.756 16.41 190.054 15.682 C 189.782 15.108 189.42 14.53 188.964 13.955 C 188.511 13.38 187.961 12.866 187.311 12.409 C 186.662 11.955 185.921 11.59 185.092 11.32 C 184.258 11.047 183.346 10.91 182.348 10.91 C 180.746 10.91 179.241 11.199 177.838 11.774 C 176.432 12.348 175.21 13.152 174.164 14.184 C 173.122 15.212 172.298 16.441 171.693 17.864 C 171.088 19.289 170.788 20.864 170.788 22.592 C 170.788 24.319 171.088 25.91 171.693 27.364 C 172.298 28.818 173.137 30.085 174.212 31.158 C 175.285 32.235 176.552 33.067 178.019 33.657 C 179.485 34.248 181.078 34.543 182.801 34.543 C 184.977 34.543 187.048 34.06 189.012 33.089 C 190.975 32.12 192.73 30.847 194.27 29.272 C 195.813 27.697 197.117 25.91 198.191 23.909 C 199.264 21.909 199.996 19.896 200.389 17.864 C 200.782 16.048 201.349 14.682 202.089 13.774 C 202.831 12.866 203.714 12.38 204.741 12.32 C 205.286 12.291 205.805 12.412 206.305 12.685 C 206.802 12.958 207.217 13.352 207.55 13.866 C 207.882 14.381 208.085 15.035 208.162 15.822 C 208.237 16.61 208.107 17.518 207.774 18.55 L 207.955 18.686 L 211.99 15.187 C 211.87 14.489 211.626 13.876 211.265 13.345 M 177.813 29.364 C 177.481 28.545 177.214 27.577 177.021 26.456 C 176.825 25.335 176.726 24.046 176.726 22.592 C 176.726 20.471 176.9 18.699 177.245 17.273 C 177.594 15.851 178.053 14.698 178.629 13.819 C 179.203 12.939 179.853 12.31 180.577 11.933 C 181.303 11.555 182.044 11.364 182.798 11.364 C 183.403 11.364 183.923 11.583 184.362 12.025 C 184.8 12.463 185.104 13.069 185.268 13.844 C 185.433 14.616 185.427 15.527 185.246 16.571 C 185.066 17.616 184.641 18.731 183.976 19.912 C 182.646 21.274 181.445 22.766 180.372 24.389 C 179.298 26.008 178.446 27.669 177.809 29.364\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10599182672}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1duht3p\",\"data-framer-name\":\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 307 58\"><path d=\"M 39.522 48.144 C 38.953 47.725 38.559 47.168 38.339 46.463 L 24.226 3.296 L 15.296 3.296 L 17.066 8.766 L 4.729 46.463 C 4.509 47.168 4.114 47.725 3.545 48.144 C 2.977 48.563 2.344 48.77 1.642 48.77 L 0 48.77 L 0 49.428 L 8.536 49.428 L 8.536 48.77 L 6.894 48.77 C 6.192 48.77 5.715 48.563 5.449 48.144 C 5.187 47.725 5.164 47.168 5.385 46.463 L 9.916 32.688 L 24.951 32.688 L 29.482 46.463 C 29.702 47.168 29.68 47.725 29.418 48.144 C 29.157 48.563 28.675 48.77 27.973 48.77 L 26.331 48.77 L 26.331 49.428 L 43.072 49.428 L 43.072 48.77 L 41.43 48.77 C 40.728 48.77 40.095 48.563 39.527 48.144 M 10.109 32.094 L 17.397 9.751 L 24.749 32.094 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 86.782 12.389 C 88.052 12.389 89.126 11.947 90.002 11.068 C 90.868 10.193 91.309 9.116 91.309 7.845 C 91.309 6.574 90.868 5.492 90.002 4.613 C 89.126 3.734 88.052 3.301 86.782 3.301 C 85.511 3.301 84.438 3.734 83.562 4.613 C 82.695 5.492 82.255 6.57 82.255 7.845 C 82.255 9.12 82.695 10.198 83.562 11.068 C 84.438 11.947 85.511 12.389 86.782 12.389 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 78.572 17.141 L 80.214 17.141 C 80.916 17.141 81.475 17.348 81.893 17.762 C 82.31 18.181 82.521 18.743 82.521 19.447 L 82.521 44.594 C 82.521 45.368 82.383 46.141 82.122 46.869 C 81.911 47.431 81.64 47.992 81.292 48.559 L 80.709 49.433 C 80.686 49.465 80.673 49.484 80.65 49.516 C 79.998 50.409 79.182 51.27 78.214 52.09 L 78.274 52.053 C 77.856 52.394 77.471 52.651 77.118 52.826 C 76.522 53.117 75.985 53.25 75.508 53.25 C 74.898 53.25 74.421 53.043 74.095 52.629 C 73.77 52.21 73.605 51.754 73.605 51.28 L 73.605 2.965 C 73.605 2.265 73.811 1.708 74.224 1.289 C 74.641 0.87 75.201 0.658 75.903 0.658 L 77.545 0.658 L 77.545 0 L 61.134 0 L 61.134 0.658 L 62.776 0.658 C 63.473 0.658 64.033 0.87 64.445 1.289 C 64.863 1.708 65.074 2.27 65.074 2.965 L 65.074 18.982 C 62.836 16.874 60.148 15.819 56.992 15.819 C 54.323 15.819 51.975 16.358 49.938 17.435 C 47.897 18.513 46.205 19.926 44.843 21.685 C 43.49 23.444 42.471 25.446 41.797 27.716 C 41.118 29.977 40.779 32.293 40.779 34.668 C 40.779 36.556 41.045 38.416 41.563 40.239 C 42.091 42.062 42.861 43.692 43.889 45.119 C 44.916 46.547 46.223 47.698 47.796 48.582 C 49.374 49.456 51.213 49.894 53.314 49.894 C 54.979 49.894 56.465 49.613 57.781 49.037 C 58.492 48.724 59.157 48.361 59.767 47.937 C 60.281 47.587 60.749 47.191 61.189 46.768 C 62.148 45.819 62.964 44.705 63.625 43.407 C 64.079 42.504 64.45 41.56 64.734 40.584 C 64.863 40.161 64.977 39.728 65.069 39.286 L 65.069 50.75 C 65.069 52.73 65.615 54.355 66.711 55.63 C 67.807 56.906 69.183 57.541 70.844 57.541 C 72.16 57.541 73.559 57.076 75.045 56.16 C 76.682 55.152 80.2 50.856 80.2 50.856 C 80.2 50.851 80.209 50.847 80.214 50.842 C 81.012 49.963 82.127 49.438 83.314 49.438 L 94.996 49.438 L 94.996 48.78 L 93.354 48.78 C 92.653 48.78 92.093 48.568 91.676 48.149 C 91.258 47.73 91.057 47.168 91.057 46.473 L 91.057 19.452 C 91.057 18.748 91.263 18.186 91.676 17.767 C 92.093 17.348 92.653 17.145 93.354 17.145 L 94.996 17.145 L 94.996 16.487 L 78.577 16.487 L 78.577 17.145 Z M 65.065 33.876 C 65.065 35.106 64.904 36.487 64.601 38.029 C 64.377 39.166 64.056 40.234 63.643 41.252 C 63.491 41.616 63.331 41.966 63.157 42.316 C 62.501 43.628 61.629 44.742 60.565 45.64 C 60.084 46.049 59.538 46.362 58.942 46.588 C 58.222 46.855 57.414 46.989 56.529 46.989 C 54.993 46.989 53.731 46.464 52.75 45.409 C 51.768 44.355 50.989 43.08 50.42 41.583 C 49.847 40.087 49.443 38.508 49.204 36.841 C 48.961 35.17 48.842 33.738 48.842 32.555 C 48.842 30.976 48.961 29.249 49.204 27.38 C 49.447 25.515 49.883 23.775 50.521 22.173 C 51.154 20.571 52.016 19.222 53.112 18.121 C 54.199 17.021 55.584 16.473 57.245 16.473 C 58.249 16.473 59.226 16.68 60.171 17.095 C 61.107 17.514 61.941 18.126 62.666 18.941 C 63.386 19.76 63.964 20.769 64.404 21.975 C 64.845 23.181 65.06 24.576 65.06 26.165 L 65.06 33.872 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 127.24 17.399 C 126.538 16.869 125.786 16.464 124.974 16.179 C 124.162 15.893 123.364 15.75 122.575 15.75 C 121.089 15.709 119.796 15.916 118.704 16.377 C 117.608 16.837 116.682 17.486 115.916 18.319 C 115.15 19.153 114.535 20.12 114.076 21.22 C 113.618 22.32 113.255 23.485 112.994 24.714 L 112.994 16.478 L 100.519 16.478 L 100.519 17.136 L 102.161 17.136 C 102.858 17.136 103.417 17.343 103.835 17.763 C 104.247 18.181 104.458 18.739 104.458 19.443 L 104.458 46.464 C 104.458 47.168 104.252 47.725 103.835 48.144 C 103.417 48.563 102.858 48.77 102.161 48.77 L 100.519 48.77 L 100.519 49.429 L 116.934 49.429 L 116.934 48.77 L 115.292 48.77 C 114.59 48.77 114.031 48.563 113.618 48.144 C 113.2 47.725 112.994 47.168 112.994 46.464 L 112.994 27.68 C 113.476 24.429 114.283 22.003 115.425 20.396 C 116.562 18.794 117.961 17.947 119.626 17.859 C 120.415 17.818 121.167 17.993 121.892 18.389 C 122.617 18.785 123.217 19.355 123.699 20.101 C 124.181 20.847 124.474 21.796 124.584 22.937 C 124.69 24.079 124.506 25.4 124.025 26.892 L 124.286 27.09 L 130.129 22.016 C 129.955 21.004 129.606 20.115 129.079 19.346 C 128.556 18.577 127.942 17.928 127.24 17.403\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 164.005 48.77 L 162.363 48.77 L 162.363 49.428 L 179.105 49.428 L 179.105 48.77 L 177.462 48.77 C 176.761 48.77 176.128 48.563 175.559 48.144 C 174.99 47.725 174.596 47.168 174.376 46.463 L 160.258 3.296 L 151.328 3.296 L 153.099 8.766 L 140.756 46.463 C 140.536 47.168 140.142 47.725 139.573 48.144 C 139.004 48.563 138.371 48.77 137.67 48.77 L 136.028 48.77 L 136.028 49.428 L 144.563 49.428 L 144.563 48.77 L 142.921 48.77 C 142.219 48.77 141.738 48.563 141.476 48.144 C 141.215 47.725 141.192 47.168 141.412 46.463 L 145.944 32.688 L 160.979 32.688 L 165.51 46.463 C 165.73 47.168 165.708 47.725 165.446 48.144 C 165.184 48.563 164.703 48.77 164.001 48.77 M 146.145 32.094 L 153.433 9.751 L 160.786 32.094 Z\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 199.028 33.545 C 197.735 32.624 196.35 31.8 194.86 31.072 C 193.368 30.349 191.97 29.567 190.658 28.733 C 189.347 27.9 188.25 26.952 187.374 25.897 C 186.498 24.843 186.039 23.549 185.994 22.011 C 185.947 20.253 186.516 18.881 187.699 17.891 C 188.882 16.901 190.218 16.408 191.703 16.408 C 193.19 16.408 194.373 16.726 195.249 17.361 C 196.125 17.997 196.726 18.802 197.055 19.769 C 197.387 20.736 197.46 21.8 197.285 22.964 C 197.112 24.129 196.694 25.239 196.038 26.293 L 196.3 26.491 L 202.143 21.418 C 201.789 20.759 201.299 20.092 200.665 19.406 C 200.032 18.724 199.275 18.112 198.399 17.559 C 197.523 17.012 196.52 16.569 195.377 16.243 C 194.239 15.911 192.97 15.75 191.571 15.75 C 190.171 15.75 188.672 15.948 187.204 16.344 C 185.737 16.74 184.415 17.334 183.232 18.121 C 182.049 18.913 181.085 19.903 180.342 21.086 C 179.6 22.274 179.229 23.655 179.229 25.239 C 179.229 26.823 179.654 28.268 180.508 29.456 C 181.361 30.644 182.434 31.707 183.723 32.651 C 185.017 33.595 186.402 34.484 187.892 35.322 C 189.379 36.155 190.768 37.002 192.061 37.859 C 193.351 38.715 194.423 39.649 195.276 40.662 C 196.13 41.675 196.556 42.835 196.556 44.157 C 196.556 44.861 196.382 45.529 196.028 46.164 C 195.675 46.804 195.194 47.352 194.583 47.812 C 193.969 48.273 193.249 48.646 192.418 48.931 C 191.589 49.217 190.666 49.359 189.663 49.359 C 188.218 49.359 186.971 49.065 185.92 48.471 C 184.87 47.877 184.039 47.076 183.425 46.067 C 182.81 45.059 182.438 43.871 182.31 42.509 C 182.178 41.146 182.287 39.696 182.641 38.158 L 182.245 37.96 L 178.11 45.474 C 179.989 47.232 182.003 48.439 184.15 49.097 C 186.296 49.755 188.35 50.087 190.322 50.087 C 192.295 50.087 193.947 49.898 195.543 49.525 C 197.139 49.152 198.528 48.59 199.712 47.845 C 200.895 47.099 201.821 46.187 202.501 45.11 C 203.179 44.032 203.518 42.771 203.518 41.321 C 203.518 39.521 203.093 38.006 202.239 36.772 C 201.386 35.543 200.312 34.465 199.02 33.545\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 230.904 48.77 L 230.575 48.77 L 230.575 49.429 L 244.362 49.429 L 244.362 48.77 L 243.967 48.77 C 243.266 48.77 242.72 48.563 242.326 48.144 C 241.93 47.725 241.734 47.168 241.734 46.464 L 241.734 30.976 C 241.734 29.176 241.623 27.376 241.408 25.571 C 241.188 23.77 240.683 22.155 239.899 20.727 C 239.11 19.3 237.973 18.126 236.482 17.201 C 234.996 16.28 232.978 15.796 230.441 15.75 C 228.689 15.75 227.116 16.027 225.713 16.574 C 224.314 17.122 223.085 17.891 222.035 18.881 C 220.984 19.871 220.098 21.036 219.375 22.375 C 218.65 23.715 218.071 25.156 217.636 26.694 L 217.636 2.901 C 217.636 2.242 217.843 1.703 218.259 1.285 C 218.677 0.866 219.232 0.658 219.934 0.658 L 220.264 0.658 L 220.264 0 L 206.478 0 L 206.478 0.658 L 206.807 0.658 C 207.51 0.658 208.064 0.866 208.482 1.285 C 208.898 1.703 209.106 2.242 209.106 2.901 L 209.106 46.464 C 209.106 47.168 208.898 47.725 208.482 48.144 C 208.064 48.563 207.51 48.77 206.807 48.77 L 206.478 48.77 L 206.478 49.429 L 220.264 49.429 L 220.264 48.77 L 219.934 48.77 C 219.232 48.77 218.677 48.563 218.259 48.144 C 217.843 47.725 217.636 47.168 217.636 46.464 L 217.636 30.055 C 217.898 28.255 218.324 26.616 218.915 25.143 C 219.507 23.674 220.204 22.408 221.016 21.353 C 221.823 20.299 222.713 19.489 223.676 18.913 C 224.639 18.342 225.621 18.057 226.63 18.057 C 228.075 18.057 229.221 18.462 230.075 19.277 C 230.928 20.092 231.584 21.266 232.047 22.804 C 232.505 24.341 232.804 26.22 232.933 28.439 C 233.064 30.658 233.129 33.195 233.129 36.049 L 233.198 46.464 C 233.198 47.168 232.992 47.725 232.574 48.144 C 232.156 48.563 231.602 48.77 230.901 48.77\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 305.95 19.346 C 305.426 18.577 304.812 17.928 304.11 17.403 C 303.409 16.874 302.657 16.469 301.845 16.183 C 301.034 15.898 300.235 15.755 299.446 15.755 C 297.914 15.714 296.602 15.921 295.506 16.381 C 294.415 16.842 293.492 17.482 292.749 18.292 C 292.007 19.107 291.406 20.051 290.943 21.128 C 290.483 22.205 290.121 23.356 289.859 24.586 L 289.859 16.478 L 277.385 16.478 L 277.385 17.136 L 279.026 17.136 C 279.728 17.136 280.283 17.344 280.701 17.762 C 281.119 18.182 281.325 18.739 281.325 19.443 L 281.325 41.455 C 279.266 43.651 276.949 45.4 274.366 46.694 C 271.785 47.993 268.959 48.637 265.901 48.637 C 264.369 48.637 262.9 48.264 261.501 47.518 C 260.103 46.772 258.92 45.474 257.956 43.628 C 258.611 41.565 259.52 39.521 260.68 37.5 C 261.841 35.479 263.184 33.559 264.716 31.736 C 266.249 29.913 267.913 28.223 269.707 26.662 C 271.501 25.101 273.339 23.794 275.22 22.74 C 274.826 21.906 274.302 21.068 273.642 20.235 C 272.986 19.402 272.188 18.656 271.248 17.993 C 270.308 17.334 269.234 16.805 268.034 16.414 C 266.826 16.018 265.505 15.82 264.06 15.82 C 261.741 15.82 259.561 16.239 257.53 17.072 C 255.493 17.905 253.723 19.07 252.209 20.566 C 250.7 22.058 249.507 23.84 248.631 25.902 C 247.755 27.97 247.32 30.253 247.32 32.758 C 247.32 35.262 247.755 37.569 248.631 39.678 C 249.507 41.786 250.723 43.623 252.279 45.179 C 253.833 46.74 255.667 47.947 257.792 48.803 C 259.915 49.659 262.221 50.087 264.716 50.087 C 267.868 50.087 270.867 49.387 273.711 47.979 C 276.554 46.574 279.095 44.728 281.325 42.445 C 283.559 40.161 285.447 37.569 287.003 34.669 C 288.558 31.768 289.617 28.849 290.186 25.902 C 290.755 23.269 291.576 21.289 292.648 19.972 C 293.722 18.656 295.001 17.951 296.488 17.864 C 297.277 17.822 298.03 17.997 298.753 18.393 C 299.473 18.789 300.074 19.36 300.556 20.106 C 301.037 20.852 301.331 21.8 301.442 22.942 C 301.551 24.084 301.363 25.401 300.881 26.897 L 301.143 27.095 L 306.986 22.021 C 306.812 21.008 306.458 20.12 305.936 19.351 M 257.493 42.578 C 257.012 41.39 256.626 39.986 256.347 38.361 C 256.062 36.736 255.919 34.867 255.919 32.758 C 255.919 29.682 256.171 27.113 256.671 25.046 C 257.176 22.983 257.841 21.312 258.676 20.037 C 259.507 18.762 260.447 17.85 261.497 17.302 C 262.548 16.754 263.62 16.478 264.713 16.478 C 265.589 16.478 266.341 16.796 266.978 17.436 C 267.611 18.071 268.051 18.95 268.289 20.074 C 268.529 21.193 268.519 22.514 268.257 24.029 C 267.997 25.543 267.381 27.159 266.418 28.872 C 264.493 30.847 262.753 33.011 261.199 35.364 C 259.643 37.712 258.41 40.12 257.488 42.578\" fill=\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9939586040,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1msua7b\",\"data-styles-preset\":\"p0iIH5wBN\",style:{\"--framer-text-alignment\":\"center\",direction:\"rtl\"},children:[\"\u05E1\u05D3\u05E0\u05EA\",/*#__PURE__*/_jsx(\"br\",{}),\"\u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05D5\u05D4\u05E7\u05D6\u05EA \u05D3\u05DD:\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1msua7b\",\"data-styles-preset\":\"p0iIH5wBN\",style:{direction:\"rtl\"},children:[\"\u05E1\u05D3\u05E0\u05EA\",/*#__PURE__*/_jsx(\"br\",{}),\"\u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05D5\u05D4\u05E7\u05D6\u05EA \u05D3\u05DD:\\xa0\"]})}),className:\"framer-128yokx\",\"data-framer-name\":\"Main Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u7u6n\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":doVgcS0b6\",webPageId:\"kF5h2tZAe\"},implicitPathVariables:undefined},{href:{hash:\":doVgcS0b6\",webPageId:\"kF5h2tZAe\"},implicitPathVariables:undefined},{href:{hash:\":doVgcS0b6\",webPageId:\"kF5h2tZAe\"},implicitPathVariables:undefined},{href:{hash:\":doVgcS0b6\",webPageId:\"kF5h2tZAe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px), 200px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b2keam-container\",nodeId:\"oEYhY5clB\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{G6mmqrOXp:resolvedLinks[2]},tY7duOV0U:{G6mmqrOXp:resolvedLinks[3],style:{width:\"100%\"}},XJYtu58l9:{G6mmqrOXp:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{G6mmqrOXp:resolvedLinks[0],height:\"100%\",id:\"oEYhY5clB\",layoutId:\"oEYhY5clB\",variant:\"l6Qh3dHva\",VpJCgesYE:\"\u05DC\u05D4\u05E9\u05D0\u05E8\u05EA \u05E4\u05E8\u05D8\u05D9\u05DD\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:\"601px\",src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"}},tY7duOV0U:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:`calc(${componentViewport?.width||\"100vw\"} + 282px)`,src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:396,pixelHeight:519,pixelWidth:792,sizes:\"1016px\",src:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/deG7j2vSBCiuxJm8THG6y0HwI.png 792w\"},className:\"framer-93xhlu\",\"data-framer-name\":\"element 1\"})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xcc86y\",\"data-framer-name\":\"Sections / Experience\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gmjtux\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1120px) - 32px) / 2, 50px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1120px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1120px) - 32px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw9s8y-container\",nodeId:\"TYrPrXOdp\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{variant:\"naZ53O3qD\"},tY7duOV0U:{variant:\"naZ53O3qD\"}},children:/*#__PURE__*/_jsx(CardsExperience,{height:\"100%\",Hj0kNccEW:\"\u05DE\u05D9\u05E7\u05D5\u05DD \u05D4\u05D4\u05E8\u05E6\u05D0\u05D4\",id:\"TYrPrXOdp\",layoutId:\"TYrPrXOdp\",lsmoUpDl1:\"\u05D3\u05D5\u05D3 \u05E1\u05D7\u05E8\u05D5\u05D1 3 \u05E8\u05D0\u05E9\u05DC\u05F4\u05E6  \u05DE\u05D2\u05D3\u05DC \u05E1\u05D8\u05D5\u05E6\u05D9  \u05E7\u05D5\u05DE\u05D4 5 (\u05E2\u05D3 \u05D4\u05E1\u05D5\u05E3 \u05E9\u05DE\u05D0\u05DC\u05D4 \u05D0\u05D7\u05E8\u05D9 \u05D4\u05DE\u05E2\u05DC\u05D9\u05EA)\",style:{width:\"100%\"},variant:\"j7eoyx5Km\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1120px) - 32px) / 2, 50px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1120px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1120px) - 32px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2y8sdk-container\",nodeId:\"HPx8x0OYM\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{variant:\"naZ53O3qD\"},tY7duOV0U:{variant:\"naZ53O3qD\"}},children:/*#__PURE__*/_jsx(CardsExperience,{height:\"100%\",Hj0kNccEW:\"\u05D2\u05D9\u05DC\",id:\"HPx8x0OYM\",layoutId:\"HPx8x0OYM\",lsmoUpDl1:\"16+\",style:{width:\"100%\"},variant:\"j7eoyx5Km\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cbuc5k\",\"data-framer-name\":\"Sections / About\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:260,pixelHeight:520,pixelWidth:520,sizes:\"383px\",src:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png 520w\"}},tY7duOV0U:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:260,pixelHeight:520,pixelWidth:520,sizes:\"281px\",src:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png 520w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:260,intrinsicWidth:260,pixelHeight:520,pixelWidth:520,sizes:\"376px\",src:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png?scale-down-to=512 512w,https://framerusercontent.com/images/qhFX6wcYzzK7dZiGS9hy13e20c.png 520w\"},className:\"framer-1iywlm6\",\"data-framer-name\":\"element 2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161tcww\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hkptx5\",\"data-framer-name\":\"Right Side\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18du2l6\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9vzbf-container\",nodeId:\"JO49WzSEF\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Headline,{height:\"100%\",id:\"JO49WzSEF\",layoutId:\"JO49WzSEF\",QCV68kyX6:\"\u05E1\u05D3\u05E0\u05EA \u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05D5\u05D4\u05E7\u05D6\u05EA \u05D3\u05DD\",style:{width:\"100%\"},variant:\"y5WwgQlUu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:\"\u05D1\u05E2\u05D5\u05DC\u05DD \u05E9\u05D1\u05D5 \u05DB\u05DC \u05D0\u05D7\u05D3 \u201C\u05DE\u05D8\u05E4\u05DC\u201D \u2013 \u05D4\u05DE\u05D8\u05E4\u05DC\u05D9\u05DD \u05E9\u05D1\u05D0\u05DE\u05EA \u05E2\u05D5\u05E9\u05D9\u05DD \u05D0\u05EA \u05D4\u05D4\u05D1\u05D3\u05DC \u05D4\u05DD \u05D0\u05DC\u05D5 \u05E9\u05DC\u05D0 \u05DE\u05E4\u05D7\u05D3\u05D9\u05DD \u05DC\u05D2\u05E2\u05EA \u05D1\u05E9\u05D9\u05D8\u05D5\u05EA \u05DE\u05E1\u05D5\u05E8\u05EA\u05D9\u05D5\u05EA, \u05DC\u05D4\u05D1\u05D9\u05DF \u05D0\u05EA \u05D4\u05E2\u05D5\u05DE\u05E7 \u05E9\u05DE\u05D0\u05D7\u05D5\u05E8\u05D9\u05D4\u05DF, \u05D5\u05DC\u05EA\u05E8\u05D2\u05DD \u05D0\u05D5\u05EA\u05DF \u05DC\u05E2\u05D1\u05D5\u05D3\u05D4 \u05E7\u05DC\u05D9\u05E0\u05D9\u05EA \u05DE\u05D5\u05D3\u05E8\u05E0\u05D9\u05EA, \u05D1\u05D8\u05D5\u05D7\u05D4 \u05D5\u05DE\u05D3\u05D5\u05D9\u05E7\u05EA.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:\"\u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05D5\u05D4\u05E7\u05D6\u05EA \u05D3\u05DD \u05D4\u05DF \u05DC\u05D0 \u05D8\u05E8\u05E0\u05D3 \u2013 \u05D4\u05DF \u05DB\u05DC\u05D9\u05DD \u05E8\u05D1\u05D9 \u05E2\u05D5\u05E6\u05DE\u05D4 \u05E9\u05E2\u05D5\u05D1\u05D3\u05D9\u05DD \u05DB\u05D1\u05E8 \u05D0\u05DC\u05E4\u05D9 \u05E9\u05E0\u05D9\u05DD, \u05D5\u05D4\u05D9\u05D5\u05DD \u05D0\u05E0\u05D7\u05E0\u05D5 \u05D9\u05D5\u05D3\u05E2\u05D9\u05DD \u05D2\u05DD \u05DC\u05D4\u05E1\u05D1\u05D9\u05E8 \u05DC\u05DE\u05D4 \u05D4\u05DD \u05E2\u05D5\u05D1\u05D3\u05D9\u05DD, \u05D0\u05D9\u05DA \u05D4\u05DD \u05DE\u05E9\u05E4\u05D9\u05E2\u05D9\u05DD \u05E2\u05DC \u05E8\u05E7\u05DE\u05D5\u05EA, \u05D6\u05E8\u05D9\u05DE\u05EA \u05D3\u05DD \u05D5\u05DE\u05E2\u05E8\u05DB\u05EA \u05D4\u05E2\u05E6\u05D1\u05D9\u05DD, \u05D5\u05D0\u05D9\u05E4\u05D4 \u05D4\u05DD \u05DE\u05E9\u05EA\u05DC\u05D1\u05D9\u05DD \u05D1\u05E6\u05D5\u05E8\u05D4 \u05DE\u05D5\u05E9\u05DC\u05DE\u05EA \u05D1\u05D8\u05D9\u05E4\u05D5\u05DC \u05D1\u05DB\u05D0\u05D1, \u05E2\u05D5\u05DE\u05E1, \u05E4\u05E6\u05D9\u05E2\u05D5\u05EA \u05D5\u05E9\u05D7\u05E8\u05D5\u05E8 \u05E8\u05E7\u05DE\u05D5\u05EA.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:\"\u05D1\u05E1\u05D3\u05E0\u05D4 \u05D4\u05D6\u05D0\u05EA \u05D0\u05E0\u05D7\u05E0\u05D5 \u05E0\u05DC\u05DE\u05D3 \u05DB\u05DE\u05D4 \u05D2\u05D9\u05E9\u05D5\u05EA \u05E9\u05D5\u05E0\u05D5\u05EA \u05DC\u05D8\u05D9\u05E4\u05D5\u05DC \u05D1\u05E2\u05D6\u05E8\u05EA \u05D4\u05E9\u05D9\u05D8\u05D4 \u05D5\u05E0\u05DB\u05D9\u05E8 \u05D2\u05DD \u05D3\u05E8\u05DB\u05D9\u05DD \u05E9\u05DC\u05D0 \u05D9\u05D3\u05D5\u05E2\u05D5\u05EA \u05D1\u05D0\u05E8\u05E5\uD83D\uDE4C\uD83C\uDFFD\"})]}),className:\"framer-1boulcn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14wk0ra-container\",nodeId:\"VP_dF3DTl\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Headline,{height:\"100%\",id:\"VP_dF3DTl\",layoutId:\"VP_dF3DTl\",QCV68kyX6:\"\u05DE\u05D4 \u05D4\u05D5\u05DC\u05DB\u05D9\u05DD \u05DC\u05DC\u05DE\u05D5\u05D3\",style:{width:\"100%\"},variant:\"y5WwgQlUu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:[\"\u05DE\u05D1\u05D5\u05D0 - \u05D4\u05DB\u05E8\u05EA \u05D4\u05DB\u05DC\u05D9\u05DD \u05D5\u05E1\u05D5\u05D2\u05D9\u05D4\u05DD\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2060\u2022\u2060\\xa0 \u2060\u05DE\u05D4\u05D9 \u05DE\u05D8\u05E8\u05EA \u05D4\u05D8\u05DB\u05E0\u05D9\u05E7\u05D4 \u05D5\u05E9\u05D9\u05DC\u05D5\u05D1\u05D4 \u05D1\u05D8\u05D9\u05E4\u05D5\u05DC\u05D9\u05DD \u05D9\u05D9\u05E2\u05D5\u05D3\u05D9\u05D9\u05DD\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05E1\u05D5\u05D2\u05D9 \u05D4\u05DB\u05D5\u05E1\u05D5\u05EA \u05D5\u05D4\u05DB\u05DC\u05D9\u05DD, \u05D4\u05EA\u05D0\u05DE\u05EA\u05DD \u05DC\u05DE\u05E6\u05D1\u05D9\u05DD \u05E9\u05D5\u05E0\u05D9\u05DD \u05D5\u05DE\u05D8\u05E8\u05D5\u05EA\u05D9\u05D4\u05DD\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05D4\u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05E0\u05D2\u05D3- \u05DE\u05D4 \u05D0\u05E1\u05D5\u05E8 \u05D5\u05DE\u05D4 \u05DE\u05D5\u05EA\u05E8 \u05DC\u05E2\u05E9\u05D5\u05EA\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05D3\u05D9\u05E0\u05D0\u05DE\u05D9\u05D5\u05EA\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"* \u05DB\u05D5\u05E1\u05D5\u05EA \u05E8\u05D5\u05D7 \u05E1\u05D8\u05D8\u05D9\u05D5\u05EA\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05D8\u05D1\u05DC\u05EA \u05D0\u05D6\u05D5\u05E8\u05D9 \u05E4\u05E2\u05D5\u05DC\u05D4 - \u05DB\u05D9\u05E6\u05D3 \u05E4\u05D5\u05E2\u05DC\u05D9\u05DD \u05D1\u05DB\u05DC \u05D0\u05D6\u05D5\u05E8 \u05D5\u05DE\u05D4 \u05D4\u05E1\u05D9\u05DB\u05D5\u05E0\u05D9\u05DD \u05D5\u05D4\u05D9\u05EA\u05E8\u05D5\u05E0\u05D5\u05EA \u05D1\u05DB\u05DC \u05DE\u05D9\u05E7\u05D5\u05DD.\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05DB\u05DC\u05DC\u05D9 \u05E2\u05D1\u05D5\u05D3\u05D4 \u05E0\u05E7\u05D9\u05D4 \u05D5\u05DE\u05D3\u05D5\u05D9\u05E7\u05EA\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"* \u05D4\u05E7\u05D6\u05EA \u05D3\u05DD \u05D1\u05D2\u05D9\u05E9\u05D4 \u05D4\u05DE\u05E2\u05E8\u05D1\u05D9\u05EA\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u2060\u05E2\u05D1\u05D5\u05D3\u05D4 \u05E4\u05E8\u05E7\u05D8\u05D9\u05EA \u05D0\u05D7\u05D3 \u05E2\u05DC \u05D4\u05E9\u05E0\u05D9.\"]})}),className:\"framer-1ohr33a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k0dmkb-container\",nodeId:\"o9S2fR0Tx\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Headline,{height:\"100%\",id:\"o9S2fR0Tx\",layoutId:\"o9S2fR0Tx\",QCV68kyX6:\"\u05DC\u05DE\u05D9 \u05DE\u05EA\u05D0\u05D9\u05DE\u05D4 \u05D4\u05E1\u05D3\u05E0\u05D4\",style:{width:\"100%\"},variant:\"y5WwgQlUu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:[\"\u2022\u2060\\xa0 \u2060\u05DE\u05D8\u05E4\u05DC\u05D9\u05DD \u05D1\u05DE\u05D2\u05E2( \u05DE\u05E2\u05E1\u05D9\u05DD, \u05E4\u05D9\u05D6\u05D9\u05D5\u05EA\u05E8\u05E4\u05D9\u05E1\u05D8\u05D9\u05DD, \u05D0\u05D5\u05E1\u05EA\u05D0\u05D5\u05E4\u05D8\u05D9\u05DD \u05D5\u05DB\u05D9\u05D5\u05E6\u05D0 \u05D1\u05D6\u05D4)\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05DE\u05D8\u05E4\u05DC\u05D9\u05DD \u05D4\u05E2\u05D5\u05E1\u05E7\u05D9\u05DD \u05D1\u05E0\u05E4\u05E9\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05D0\u05E0\u05E9\u05D9\u05DD \u05D4\u05DE\u05E2\u05D5\u05E0\u05D9\u05D9\u05E0\u05D9\u05DD \u05DC\u05DC\u05DE\u05D5\u05D3 \u05D0\u05EA \u05D4\u05EA\u05D7\u05D5\u05DD\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"\u2022\u2060\\xa0 \u2060\u05D0\u05E0\u05E9\u05D9\u05DD \u05D1\u05E2\u05DC\u05D9 \u05D9\u05D3\u05E2 \u05D0\u05E0\u05D8\u05D5\u05DE\u05D9 \u05E9\u05E8\u05D5\u05E6\u05D9\u05DD \u05DC\u05E2\u05D6\u05D5\u05E8 \u05DC\u05D9\u05E7\u05E8\u05D9\u05D4\u05DD\"]})}),className:\"framer-dmq8mh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px), 200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px), 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a7zkt1-container\",nodeId:\"c0Uj_QIrb\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Headline,{height:\"100%\",id:\"c0Uj_QIrb\",layoutId:\"c0Uj_QIrb\",QCV68kyX6:\"\u05E2\u05DC\u05D9\u05DB\u05DD \u05DC\u05D4\u05E6\u05D8\u05D9\u05D9\u05D3 \u05D1:\",style:{width:\"100%\"},variant:\"y5WwgQlUu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:[\"1.\u2060 \u2060\u05D1\u05D2\u05D3\u05D9\u05DD \u05E0\u05D5\u05D7\u05D9\u05DD (\u05DC\u05E7\u05D7\u05EA \u05D1\u05D7\u05E9\u05D1\u05D5\u05DF \u05E9\u05D4\u05E2\u05D1\u05D5\u05D3\u05D4\",/*#__PURE__*/_jsx(\"br\",{}),\"\u05E0\u05E2\u05E9\u05D9\u05EA \u05D0\u05D7\u05D3 \u05E2\u05DC \u05D4\u05E9\u05E0\u05D9)\",/*#__PURE__*/_jsx(\"br\",{}),\"2.\u2060 \u2060\u2060\u05DE\u05D2\u05D1\u05EA \u05D0\u05D9\u05E9\u05D9\u05EA \",/*#__PURE__*/_jsx(\"br\",{}),\"3.\u2060 \u2060\u2060 \u05E0\u05E9\u05D9\u05DD \u05DE\u05D2\u05D9\u05E2\u05D5\u05EA \u05E2\u05DD \u05D8\u05D5\u05E4 \u05D5\u05D1\u05D2\u05D3\u05D9 \u05D4\u05D7\u05DC\u05E4\u05D4\",/*#__PURE__*/_jsx(\"br\",{}),\"4.\u2060 \u2060\u05E8\u05E6\u05D5\u05DF \u05D8\u05D5\u05D1 \u05DC\u05DC\u05DE\u05D5\u05D3 \u05D5\u05DC\u05D4\u05E9\u05EA\u05E4\u05E8 \",/*#__PURE__*/_jsx(\"br\",{}),\"5.\u2060 \u2060\u05D7\u05D9\u05D5\u05DA\",/*#__PURE__*/_jsx(\"br\",{}),\"6.\u2060 \u2060\u05DE\u05D7\u05D1\u05E8\u05EA/\u05E4\u05E0\u05E7\u05E1 (\u05DB\u05D9 \u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E6\u05DC\u05DD \u05D0\u05EA \u05D4\u05DE\u05E6\u05D2\u05EA)\",/*#__PURE__*/_jsx(\"br\",{}),\"7.\u2060 \u2060\u2060\u05DC\u05D4\u05D2\u05D9\u05E2 \u05E2\u05DD \u05D8\u05DC\u05E4\u05D5\u05E0\u05D9\u05DD \u05E9\u05EA\u05D5\u05DB\u05DC\u05D5 \u05DC\u05E6\u05DC\u05DD \u05D0\u05EA \u05D4\u05E4\u05E8\u05E7\u05D8\u05D9\u05E7\u05D4\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{direction:\"rtl\"},children:[\"1. \u05DE\u05D2\u05D1\u05EA \u05D0\u05D9\u05E9\u05D9\u05EA\",/*#__PURE__*/_jsx(\"br\",{}),\"2. \u05D0\u05DC\u05DB\u05D5\u05D4\u05D5\u05DC 70 \u05D0\u05D7\u05D5\u05D6\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"3. \u05D1\u05D2\u05D3\u05D9\u05DD \u05E0\u05D5\u05D7\u05D9\u05DD\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),\"4. \u05DE\u05D7\u05D1\u05E8\u05EA/\u05E4\u05E0\u05E7\u05E1 (\u05DB\u05D9 \u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05E6\u05DC\u05DD \u05D0\u05EA \u05D4\u05DE\u05E6\u05D2\u05EA)\",/*#__PURE__*/_jsx(\"br\",{}),\"5. \u05E4\u05DC\u05D0\u05E4\u05D5\u05E0\u05D9\u05DD \u05DB\u05D3\u05D9 \u05E9\u05EA\u05D5\u05DB\u05DC\u05D5 \u05DC\u05E6\u05DC\u05DD \u05D0\u05EA \u05D4\u05E4\u05E8\u05E7\u05D8\u05D9\u05E7\u05D4.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"\u05D9\u05D4\u05D9\u05D5 \u05DB\u05DC\u05D9\u05DD \u05DC\u05E8\u05DB\u05D9\u05E9\u05D4 \u05D1\u05DE\u05D4\u05DC\u05DA \u05D4\u05E1\u05D3\u05E0\u05D4\"]})}),className:\"framer-91f06q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12mvdko\",\"data-framer-name\":\"Left Side\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vnm3ej\",\"data-framer-name\":\"Image Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iyojmy\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{height:544},tY7duOV0U:{height:551,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px), 200px) + 43px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:901,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px), 200px) + 43px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1unq7my-container\",nodeId:\"LBGij_UOL\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{OU90m7V7a:addImageAlt({pixelHeight:2048,pixelWidth:1278,positionX:\"53.3%\",positionY:\"36.8%\",src:\"https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg\",srcSet:\"https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg?scale-down-to=1024 639w,https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg 1278w\"},\"\")}},children:/*#__PURE__*/_jsx(MediaCaRd,{height:\"100%\",id:\"LBGij_UOL\",layoutId:\"LBGij_UOL\",OU90m7V7a:addImageAlt({pixelHeight:2048,pixelWidth:1278,positionX:\"52.2%\",positionY:\"97.7%\",src:\"https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg\",srcSet:\"https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg?scale-down-to=1024 639w,https://framerusercontent.com/images/ulPVjOiqUGdNkgRj9eUHyg10mg.jpeg 1278w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mqjhm9\",\"data-framer-name\":\"Background\"})]})})]})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aphtt0\",\"data-framer-name\":\"Sections / Experience\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwza0t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1120px) - 64px) / 3, 50px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1120px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1120px) - 64px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8uf2h-container\",nodeId:\"HHTMRbClM\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{variant:\"naZ53O3qD\"},tY7duOV0U:{variant:\"naZ53O3qD\"}},children:/*#__PURE__*/_jsx(CardsExperience,{height:\"100%\",Hj0kNccEW:\"750 + \u05DE\u05E2\u05F4\u05DE\",id:\"HHTMRbClM\",layoutId:\"HHTMRbClM\",lsmoUpDl1:\"\u05E2\u05DC\u05D5\u05EA \u05D4\u05E1\u05D3\u05E0\u05D4\",style:{width:\"100%\"},variant:\"j7eoyx5Km\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1120px) - 64px) / 3, 50px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1120px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1120px) - 64px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nelx1o-container\",nodeId:\"CVF0PFBoJ\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{variant:\"naZ53O3qD\"},tY7duOV0U:{variant:\"naZ53O3qD\"}},children:/*#__PURE__*/_jsx(CardsExperience,{height:\"100%\",Hj0kNccEW:\"3 \u05E9\u05E2\u05D5\u05EA\",id:\"CVF0PFBoJ\",layoutId:\"CVF0PFBoJ\",lsmoUpDl1:\"\u05DE\u05E9\u05DA \u05D4\u05E1\u05D3\u05E0\u05D4\",style:{width:\"100%\"},variant:\"j7eoyx5Km\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1120px) - 64px) / 3, 50px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1120px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1120px) - 64px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qizym4-container\",nodeId:\"AhsQp6Orz\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{variant:\"naZ53O3qD\"},tY7duOV0U:{variant:\"naZ53O3qD\"}},children:/*#__PURE__*/_jsx(CardsExperience,{height:\"100%\",Hj0kNccEW:\"\u05EA\u05E2\u05D5\u05D3\u05D4\",id:\"AhsQp6Orz\",layoutId:\"AhsQp6Orz\",lsmoUpDl1:\"\u05DE\u05E7\u05D1\u05DC\u05D9\u05DD \u05EA\u05E2\u05D5\u05D3\u05D4 \u05D1\u05E1\u05D5\u05E3 \u05D4\u05E1\u05D3\u05E0\u05D4\",style:{width:\"100%\"},variant:\"j7eoyx5Km\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ajnzni\",\"data-framer-name\":\"Line Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hqlbsw\",\"data-framer-name\":\"Line\"})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1042j3e\",\"data-framer-name\":\"Sections / Moving Text\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hvnp7p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FNGtVV34n\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"FNGtVV34n\",layoutId:\"FNGtVV34n\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ay34ga\",\"data-framer-name\":\"Text To Move\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":im8LP8gA0\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"R8Rp4Si6V\",openInNewTab:false,scopeId:\"kF5h2tZAe\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11c2n1s framer-1y4me1b\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tlm6do\",\"data-framer-name\":\"Group\",opacity:.18,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 401.985 76\"><path d=\"M 51.75 63.085 C 51.006 62.536 50.489 61.806 50.201 60.883 L 31.722 4.319 L 20.029 4.319 L 22.347 11.486 L 6.192 60.883 C 5.904 61.806 5.387 62.536 4.642 63.085 C 3.898 63.634 3.069 63.905 2.15 63.905 L 0 63.905 L 0 64.768 L 11.176 64.768 L 11.176 63.905 L 9.026 63.905 C 8.108 63.905 7.483 63.634 7.135 63.085 C 6.792 62.536 6.762 61.806 7.051 60.883 L 12.984 42.833 L 32.67 42.833 L 38.604 60.883 C 38.892 61.806 38.862 62.536 38.52 63.085 C 38.178 63.634 37.547 63.905 36.628 63.905 L 34.478 63.905 L 34.478 64.768 L 56.399 64.768 L 56.399 63.905 L 54.249 63.905 C 53.33 63.905 52.501 63.634 51.756 63.085 M 13.236 42.055 L 22.779 12.777 L 32.406 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 113.632 16.234 C 115.296 16.234 116.701 15.655 117.848 14.503 C 118.983 13.356 119.56 11.945 119.56 10.28 C 119.56 8.615 118.983 7.197 117.848 6.045 C 116.701 4.892 115.296 4.325 113.632 4.325 C 111.969 4.325 110.563 4.892 109.416 6.045 C 108.281 7.197 107.705 8.609 107.705 10.28 C 107.705 11.951 108.281 13.363 109.416 14.503 C 110.563 15.655 111.969 16.234 113.632 16.234 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 102.882 22.46 L 105.032 22.46 C 105.951 22.46 106.684 22.732 107.23 23.275 C 107.777 23.824 108.053 24.56 108.053 25.483 L 108.053 58.434 C 108.053 59.448 107.873 60.461 107.53 61.414 C 107.254 62.15 106.9 62.886 106.443 63.628 L 105.681 64.775 C 105.651 64.817 105.633 64.841 105.603 64.883 C 104.75 66.054 103.681 67.182 102.414 68.256 L 102.492 68.207 C 101.945 68.654 101.441 68.992 100.978 69.221 C 100.198 69.601 99.495 69.776 98.87 69.776 C 98.072 69.776 97.447 69.504 97.021 68.962 C 96.594 68.412 96.378 67.815 96.378 67.194 L 96.378 3.885 C 96.378 2.968 96.648 2.238 97.189 1.689 C 97.735 1.14 98.468 0.863 99.387 0.863 L 101.537 0.863 L 101.537 0 L 80.049 0 L 80.049 0.863 L 82.199 0.863 C 83.112 0.863 83.844 1.14 84.385 1.689 C 84.931 2.238 85.208 2.974 85.208 3.885 L 85.208 24.873 C 82.277 22.11 78.758 20.729 74.626 20.729 C 71.13 20.729 68.056 21.435 65.389 22.846 C 62.717 24.258 60.501 26.11 58.717 28.415 C 56.945 30.719 55.612 33.344 54.729 36.318 C 53.84 39.28 53.396 42.314 53.396 45.427 C 53.396 47.901 53.744 50.338 54.423 52.727 C 55.113 55.116 56.122 57.252 57.468 59.122 C 58.813 60.992 60.524 62.5 62.585 63.659 C 64.65 64.805 67.059 65.378 69.809 65.378 C 71.989 65.378 73.935 65.01 75.659 64.256 C 76.59 63.846 77.46 63.369 78.259 62.814 C 78.932 62.355 79.544 61.837 80.121 61.282 C 81.376 60.039 82.445 58.579 83.31 56.878 C 83.904 55.695 84.391 54.458 84.763 53.18 C 84.931 52.625 85.081 52.057 85.202 51.478 L 85.202 66.5 C 85.202 69.094 85.916 71.224 87.352 72.895 C 88.787 74.566 90.589 75.399 92.763 75.399 C 94.486 75.399 96.318 74.789 98.264 73.589 C 100.408 72.268 105.014 66.639 105.014 66.639 C 105.014 66.633 105.026 66.627 105.032 66.621 C 106.077 65.469 107.536 64.781 109.092 64.781 L 124.388 64.781 L 124.388 63.918 L 122.238 63.918 C 121.319 63.918 120.587 63.641 120.04 63.092 C 119.494 62.543 119.229 61.807 119.229 60.896 L 119.229 25.489 C 119.229 24.566 119.5 23.83 120.04 23.281 C 120.587 22.732 121.319 22.466 122.238 22.466 L 124.388 22.466 L 124.388 21.604 L 102.888 21.604 L 102.888 22.466 Z M 85.196 44.39 C 85.196 46 84.985 47.81 84.589 49.831 C 84.295 51.321 83.874 52.721 83.334 54.054 C 83.136 54.531 82.925 54.989 82.697 55.448 C 81.838 57.167 80.697 58.627 79.304 59.804 C 78.673 60.341 77.959 60.751 77.178 61.046 C 76.235 61.396 75.178 61.571 74.019 61.571 C 72.007 61.571 70.356 60.883 69.071 59.502 C 67.785 58.12 66.764 56.449 66.02 54.489 C 65.269 52.528 64.741 50.459 64.428 48.275 C 64.11 46.085 63.954 44.209 63.954 42.658 C 63.954 40.589 64.11 38.327 64.428 35.877 C 64.746 33.434 65.317 31.154 66.152 29.054 C 66.981 26.955 68.11 25.187 69.545 23.745 C 70.968 22.303 72.782 21.585 74.956 21.585 C 76.271 21.585 77.55 21.857 78.788 22.4 C 80.013 22.949 81.106 23.751 82.055 24.819 C 82.998 25.893 83.754 27.214 84.331 28.795 C 84.907 30.375 85.19 32.203 85.19 34.285 L 85.19 44.384 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 166.608 22.798 C 165.689 22.105 164.704 21.574 163.641 21.2 C 162.578 20.826 161.533 20.639 160.5 20.639 C 158.554 20.584 156.86 20.856 155.431 21.459 C 153.996 22.062 152.783 22.913 151.78 24.005 C 150.777 25.097 149.972 26.364 149.372 27.806 C 148.771 29.247 148.296 30.774 147.954 32.384 L 147.954 21.592 L 131.619 21.592 L 131.619 22.454 L 133.769 22.454 C 134.682 22.454 135.414 22.726 135.961 23.275 C 136.501 23.824 136.778 24.554 136.778 25.477 L 136.778 60.884 C 136.778 61.807 136.508 62.537 135.961 63.086 C 135.414 63.635 134.682 63.906 133.769 63.906 L 131.619 63.906 L 131.619 64.769 L 153.113 64.769 L 153.113 63.906 L 150.963 63.906 C 150.044 63.906 149.312 63.635 148.771 63.086 C 148.224 62.537 147.954 61.807 147.954 60.884 L 147.954 36.27 C 148.585 32.011 149.642 28.831 151.137 26.726 C 152.627 24.626 154.458 23.516 156.638 23.402 C 157.671 23.347 158.656 23.576 159.605 24.095 C 160.554 24.614 161.341 25.362 161.971 26.34 C 162.602 27.317 162.986 28.56 163.13 30.056 C 163.269 31.552 163.028 33.283 162.398 35.238 L 162.74 35.497 L 170.391 28.849 C 170.163 27.522 169.707 26.358 169.016 25.35 C 168.331 24.343 167.527 23.492 166.608 22.804\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 214.749 63.905 L 212.598 63.905 L 212.598 64.768 L 234.52 64.768 L 234.52 63.905 L 232.369 63.905 C 231.451 63.905 230.622 63.634 229.877 63.085 C 229.132 62.536 228.616 61.806 228.328 60.883 L 209.842 4.319 L 198.149 4.319 L 200.467 11.486 L 184.306 60.883 C 184.018 61.806 183.501 62.536 182.757 63.085 C 182.012 63.634 181.183 63.905 180.264 63.905 L 178.114 63.905 L 178.114 64.768 L 189.291 64.768 L 189.291 63.905 L 187.141 63.905 C 186.222 63.905 185.591 63.634 185.249 63.085 C 184.907 62.536 184.877 61.806 185.165 60.883 L 191.098 42.833 L 210.786 42.833 L 216.719 60.883 C 217.007 61.806 216.977 62.536 216.634 63.085 C 216.291 63.634 215.662 63.905 214.742 63.905 M 191.363 42.055 L 200.906 12.777 L 210.533 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 260.607 43.955 C 258.914 42.748 257.1 41.668 255.149 40.715 C 253.196 39.768 251.365 38.742 249.648 37.651 C 247.93 36.559 246.495 35.316 245.348 33.934 C 244.201 32.553 243.599 30.858 243.54 28.843 C 243.479 26.538 244.224 24.74 245.773 23.443 C 247.322 22.146 249.071 21.501 251.016 21.501 C 252.963 21.501 254.512 21.917 255.659 22.75 C 256.806 23.582 257.593 24.638 258.024 25.905 C 258.458 27.171 258.555 28.565 258.325 30.091 C 258.098 31.618 257.551 33.072 256.692 34.453 L 257.035 34.713 L 264.685 28.064 C 264.222 27.202 263.58 26.327 262.751 25.428 C 261.922 24.535 260.931 23.733 259.784 23.009 C 258.637 22.291 257.323 21.712 255.827 21.283 C 254.337 20.849 252.674 20.638 250.843 20.638 C 249.01 20.638 247.046 20.897 245.125 21.416 C 243.203 21.935 241.473 22.713 239.924 23.745 C 238.375 24.783 237.113 26.08 236.14 27.63 C 235.168 29.187 234.682 30.996 234.682 33.072 C 234.682 35.147 235.239 37.041 236.357 38.598 C 237.475 40.154 238.878 41.548 240.566 42.785 C 242.26 44.021 244.075 45.186 246.026 46.284 C 247.972 47.375 249.791 48.486 251.485 49.608 C 253.173 50.73 254.577 51.954 255.694 53.282 C 256.812 54.609 257.37 56.129 257.37 57.861 C 257.37 58.784 257.142 59.658 256.679 60.491 C 256.216 61.329 255.587 62.047 254.787 62.651 C 253.983 63.254 253.04 63.743 251.952 64.117 C 250.866 64.491 249.658 64.678 248.345 64.678 C 246.453 64.678 244.82 64.292 243.443 63.513 C 242.069 62.735 240.981 61.685 240.177 60.364 C 239.371 59.043 238.885 57.487 238.716 55.701 C 238.544 53.915 238.687 52.015 239.15 50 L 238.632 49.74 L 233.217 59.586 C 235.677 61.891 238.314 63.471 241.126 64.334 C 243.936 65.197 246.625 65.631 249.208 65.631 C 251.79 65.631 253.954 65.384 256.044 64.895 C 258.134 64.406 259.952 63.67 261.503 62.693 C 263.052 61.716 264.264 60.521 265.155 59.109 C 266.043 57.698 266.487 56.045 266.487 54.144 C 266.487 51.786 265.929 49.801 264.812 48.184 C 263.694 46.573 262.288 45.162 260.596 43.955\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 302.346 63.906 L 301.914 63.906 L 301.914 64.769 L 319.968 64.769 L 319.968 63.906 L 319.45 63.906 C 318.532 63.906 317.817 63.634 317.301 63.085 C 316.784 62.536 316.527 61.807 316.527 60.883 L 316.527 40.589 C 316.527 38.23 316.382 35.871 316.1 33.506 C 315.811 31.148 315.15 29.03 314.123 27.16 C 313.09 25.29 311.602 23.751 309.649 22.539 C 307.704 21.332 305.061 20.699 301.74 20.638 C 299.446 20.638 297.385 21 295.548 21.718 C 293.717 22.436 292.107 23.444 290.732 24.741 C 289.356 26.038 288.196 27.564 287.249 29.32 C 286.3 31.075 285.542 32.964 284.972 34.978 L 284.972 3.801 C 284.972 2.938 285.243 2.232 285.789 1.683 C 286.336 1.134 287.062 0.863 287.982 0.863 L 288.413 0.863 L 288.413 0 L 270.362 0 L 270.362 0.863 L 270.793 0.863 C 271.713 0.863 272.439 1.134 272.986 1.683 C 273.531 2.232 273.803 2.938 273.803 3.801 L 273.803 60.883 C 273.803 61.807 273.531 62.536 272.986 63.085 C 272.439 63.634 271.713 63.906 270.793 63.906 L 270.362 63.906 L 270.362 64.769 L 288.413 64.769 L 288.413 63.906 L 287.982 63.906 C 287.062 63.906 286.336 63.634 285.789 63.085 C 285.243 62.536 284.972 61.807 284.972 60.883 L 284.972 39.382 C 285.315 37.024 285.873 34.876 286.647 32.945 C 287.422 31.021 288.335 29.362 289.398 27.98 C 290.455 26.599 291.62 25.537 292.881 24.783 C 294.142 24.035 295.428 23.661 296.749 23.661 C 298.642 23.661 300.142 24.192 301.26 25.259 C 302.377 26.327 303.236 27.866 303.842 29.881 C 304.442 31.896 304.833 34.357 305.002 37.265 C 305.174 40.173 305.259 43.497 305.259 47.237 L 305.349 60.883 C 305.349 61.807 305.08 62.536 304.532 63.085 C 303.985 63.634 303.259 63.906 302.341 63.906\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 400.611 25.35 C 399.925 24.343 399.121 23.492 398.201 22.804 C 397.284 22.111 396.299 21.58 395.236 21.206 C 394.173 20.832 393.127 20.645 392.094 20.645 C 390.088 20.59 388.371 20.862 386.935 21.465 C 385.506 22.068 384.298 22.907 383.326 23.969 C 382.354 25.037 381.566 26.273 380.96 27.685 C 380.358 29.097 379.885 30.605 379.542 32.216 L 379.542 21.592 L 363.208 21.592 L 363.208 22.455 L 365.356 22.455 C 366.276 22.455 367.002 22.726 367.55 23.275 C 368.097 23.824 368.366 24.554 368.366 25.477 L 368.366 54.32 C 365.67 57.198 362.637 59.49 359.255 61.185 C 355.875 62.887 352.175 63.731 348.17 63.731 C 346.164 63.731 344.241 63.243 342.41 62.265 C 340.579 61.288 339.03 59.587 337.767 57.168 C 338.625 54.465 339.815 51.786 341.334 49.138 C 342.854 46.489 344.613 43.974 346.619 41.585 C 348.627 39.196 350.805 36.982 353.154 34.937 C 355.503 32.891 357.91 31.178 360.373 29.797 C 359.857 28.705 359.171 27.607 358.306 26.515 C 357.447 25.423 356.403 24.445 355.172 23.577 C 353.941 22.714 352.535 22.02 350.963 21.507 C 349.382 20.989 347.652 20.729 345.76 20.729 C 342.723 20.729 339.869 21.278 337.209 22.37 C 334.542 23.462 332.225 24.988 330.243 26.949 C 328.266 28.904 326.705 31.238 325.558 33.941 C 324.411 36.65 323.84 39.642 323.84 42.924 C 323.84 46.206 324.411 49.228 325.558 51.991 C 326.705 54.754 328.296 57.161 330.333 59.201 C 332.368 61.246 334.77 62.826 337.552 63.949 C 340.332 65.071 343.352 65.632 346.619 65.632 C 350.746 65.632 354.673 64.715 358.396 62.869 C 362.12 61.029 365.447 58.61 368.366 55.617 C 371.292 52.625 373.764 49.228 375.802 45.428 C 377.837 41.627 379.224 37.802 379.969 33.941 C 380.714 30.49 381.789 27.896 383.193 26.171 C 384.599 24.445 386.274 23.522 388.221 23.408 C 389.255 23.354 390.24 23.583 391.187 24.101 C 392.13 24.62 392.917 25.368 393.548 26.346 C 394.177 27.323 394.563 28.566 394.708 30.062 C 394.851 31.558 394.605 33.284 393.973 35.244 L 394.316 35.504 L 401.967 28.856 C 401.739 27.528 401.276 26.364 400.592 25.356 M 337.161 55.792 C 336.531 54.236 336.026 52.396 335.66 50.266 C 335.288 48.136 335.1 45.687 335.1 42.924 C 335.1 38.894 335.431 35.528 336.085 32.819 C 336.746 30.116 337.617 27.926 338.71 26.255 C 339.798 24.584 341.029 23.39 342.403 22.672 C 343.78 21.954 345.184 21.592 346.615 21.592 C 347.762 21.592 348.747 22.008 349.58 22.847 C 350.409 23.679 350.986 24.832 351.297 26.304 C 351.611 27.77 351.598 29.501 351.255 31.486 C 350.914 33.471 350.108 35.588 348.848 37.832 C 346.326 40.42 344.049 43.256 342.014 46.339 C 339.977 49.415 338.362 52.571 337.154 55.792\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path></svg>',svgContentId:8968494616,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2qvtgv\",\"data-framer-name\":\"Group\",opacity:.18,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 401.985 76\"><path d=\"M 51.75 63.085 C 51.006 62.536 50.489 61.806 50.201 60.883 L 31.722 4.319 L 20.029 4.319 L 22.347 11.486 L 6.192 60.883 C 5.904 61.806 5.387 62.536 4.642 63.085 C 3.898 63.634 3.069 63.905 2.15 63.905 L 0 63.905 L 0 64.768 L 11.176 64.768 L 11.176 63.905 L 9.026 63.905 C 8.108 63.905 7.483 63.634 7.135 63.085 C 6.792 62.536 6.762 61.806 7.051 60.883 L 12.984 42.833 L 32.67 42.833 L 38.604 60.883 C 38.892 61.806 38.862 62.536 38.52 63.085 C 38.178 63.634 37.547 63.905 36.628 63.905 L 34.478 63.905 L 34.478 64.768 L 56.399 64.768 L 56.399 63.905 L 54.249 63.905 C 53.33 63.905 52.501 63.634 51.756 63.085 M 13.236 42.055 L 22.779 12.777 L 32.406 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 113.632 16.234 C 115.296 16.234 116.701 15.655 117.848 14.503 C 118.983 13.356 119.56 11.945 119.56 10.28 C 119.56 8.615 118.983 7.197 117.848 6.045 C 116.701 4.892 115.296 4.325 113.632 4.325 C 111.969 4.325 110.563 4.892 109.416 6.045 C 108.281 7.197 107.705 8.609 107.705 10.28 C 107.705 11.951 108.281 13.363 109.416 14.503 C 110.563 15.655 111.969 16.234 113.632 16.234 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 102.882 22.46 L 105.032 22.46 C 105.951 22.46 106.684 22.732 107.23 23.275 C 107.777 23.824 108.053 24.56 108.053 25.483 L 108.053 58.434 C 108.053 59.448 107.873 60.461 107.53 61.414 C 107.254 62.15 106.9 62.886 106.443 63.628 L 105.681 64.775 C 105.651 64.817 105.633 64.841 105.603 64.883 C 104.75 66.054 103.681 67.182 102.414 68.256 L 102.492 68.207 C 101.945 68.654 101.441 68.992 100.978 69.221 C 100.198 69.601 99.495 69.776 98.87 69.776 C 98.072 69.776 97.447 69.504 97.021 68.962 C 96.594 68.412 96.378 67.815 96.378 67.194 L 96.378 3.885 C 96.378 2.968 96.648 2.238 97.189 1.689 C 97.735 1.14 98.468 0.863 99.387 0.863 L 101.537 0.863 L 101.537 0 L 80.049 0 L 80.049 0.863 L 82.199 0.863 C 83.112 0.863 83.844 1.14 84.385 1.689 C 84.931 2.238 85.208 2.974 85.208 3.885 L 85.208 24.873 C 82.277 22.11 78.758 20.729 74.626 20.729 C 71.13 20.729 68.056 21.435 65.389 22.846 C 62.717 24.258 60.501 26.11 58.717 28.415 C 56.945 30.719 55.612 33.344 54.729 36.318 C 53.84 39.28 53.396 42.314 53.396 45.427 C 53.396 47.901 53.744 50.338 54.423 52.727 C 55.113 55.116 56.122 57.252 57.468 59.122 C 58.813 60.992 60.524 62.5 62.585 63.659 C 64.65 64.805 67.059 65.378 69.809 65.378 C 71.989 65.378 73.935 65.01 75.659 64.256 C 76.59 63.846 77.46 63.369 78.259 62.814 C 78.932 62.355 79.544 61.837 80.121 61.282 C 81.376 60.039 82.445 58.579 83.31 56.878 C 83.904 55.695 84.391 54.458 84.763 53.18 C 84.931 52.625 85.081 52.057 85.202 51.478 L 85.202 66.5 C 85.202 69.094 85.916 71.224 87.352 72.895 C 88.787 74.566 90.589 75.399 92.763 75.399 C 94.486 75.399 96.318 74.789 98.264 73.589 C 100.408 72.268 105.014 66.639 105.014 66.639 C 105.014 66.633 105.026 66.627 105.032 66.621 C 106.077 65.469 107.536 64.781 109.092 64.781 L 124.388 64.781 L 124.388 63.918 L 122.238 63.918 C 121.319 63.918 120.587 63.641 120.04 63.092 C 119.494 62.543 119.229 61.807 119.229 60.896 L 119.229 25.489 C 119.229 24.566 119.5 23.83 120.04 23.281 C 120.587 22.732 121.319 22.466 122.238 22.466 L 124.388 22.466 L 124.388 21.604 L 102.888 21.604 L 102.888 22.466 Z M 85.196 44.39 C 85.196 46 84.985 47.81 84.589 49.831 C 84.295 51.321 83.874 52.721 83.334 54.054 C 83.136 54.531 82.925 54.989 82.697 55.448 C 81.838 57.167 80.697 58.627 79.304 59.804 C 78.673 60.341 77.959 60.751 77.178 61.046 C 76.235 61.396 75.178 61.571 74.019 61.571 C 72.007 61.571 70.356 60.883 69.071 59.502 C 67.785 58.12 66.764 56.449 66.02 54.489 C 65.269 52.528 64.741 50.459 64.428 48.275 C 64.11 46.085 63.954 44.209 63.954 42.658 C 63.954 40.589 64.11 38.327 64.428 35.877 C 64.746 33.434 65.317 31.154 66.152 29.054 C 66.981 26.955 68.11 25.187 69.545 23.745 C 70.968 22.303 72.782 21.585 74.956 21.585 C 76.271 21.585 77.55 21.857 78.788 22.4 C 80.013 22.949 81.106 23.751 82.055 24.819 C 82.998 25.893 83.754 27.214 84.331 28.795 C 84.907 30.375 85.19 32.203 85.19 34.285 L 85.19 44.384 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 166.608 22.798 C 165.689 22.105 164.704 21.574 163.641 21.2 C 162.578 20.826 161.533 20.639 160.5 20.639 C 158.554 20.584 156.86 20.856 155.431 21.459 C 153.996 22.062 152.783 22.913 151.78 24.005 C 150.777 25.097 149.972 26.364 149.372 27.806 C 148.771 29.247 148.296 30.774 147.954 32.384 L 147.954 21.592 L 131.619 21.592 L 131.619 22.454 L 133.769 22.454 C 134.682 22.454 135.414 22.726 135.961 23.275 C 136.501 23.824 136.778 24.554 136.778 25.477 L 136.778 60.884 C 136.778 61.807 136.508 62.537 135.961 63.086 C 135.414 63.635 134.682 63.906 133.769 63.906 L 131.619 63.906 L 131.619 64.769 L 153.113 64.769 L 153.113 63.906 L 150.963 63.906 C 150.044 63.906 149.312 63.635 148.771 63.086 C 148.224 62.537 147.954 61.807 147.954 60.884 L 147.954 36.27 C 148.585 32.011 149.642 28.831 151.137 26.726 C 152.627 24.626 154.458 23.516 156.638 23.402 C 157.671 23.347 158.656 23.576 159.605 24.095 C 160.554 24.614 161.341 25.362 161.971 26.34 C 162.602 27.317 162.986 28.56 163.13 30.056 C 163.269 31.552 163.028 33.283 162.398 35.238 L 162.74 35.497 L 170.391 28.849 C 170.163 27.522 169.707 26.358 169.016 25.35 C 168.331 24.343 167.527 23.492 166.608 22.804\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 214.749 63.905 L 212.598 63.905 L 212.598 64.768 L 234.52 64.768 L 234.52 63.905 L 232.369 63.905 C 231.451 63.905 230.622 63.634 229.877 63.085 C 229.132 62.536 228.616 61.806 228.328 60.883 L 209.842 4.319 L 198.149 4.319 L 200.467 11.486 L 184.306 60.883 C 184.018 61.806 183.501 62.536 182.757 63.085 C 182.012 63.634 181.183 63.905 180.264 63.905 L 178.114 63.905 L 178.114 64.768 L 189.291 64.768 L 189.291 63.905 L 187.141 63.905 C 186.222 63.905 185.591 63.634 185.249 63.085 C 184.907 62.536 184.877 61.806 185.165 60.883 L 191.098 42.833 L 210.786 42.833 L 216.719 60.883 C 217.007 61.806 216.977 62.536 216.634 63.085 C 216.291 63.634 215.662 63.905 214.742 63.905 M 191.363 42.055 L 200.906 12.777 L 210.533 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 260.607 43.955 C 258.914 42.748 257.1 41.668 255.149 40.715 C 253.196 39.768 251.365 38.742 249.648 37.651 C 247.93 36.559 246.495 35.316 245.348 33.934 C 244.201 32.553 243.599 30.858 243.54 28.843 C 243.479 26.538 244.224 24.74 245.773 23.443 C 247.322 22.146 249.071 21.501 251.016 21.501 C 252.963 21.501 254.512 21.917 255.659 22.75 C 256.806 23.582 257.593 24.638 258.024 25.905 C 258.458 27.171 258.555 28.565 258.325 30.091 C 258.098 31.618 257.551 33.072 256.692 34.453 L 257.035 34.713 L 264.685 28.064 C 264.222 27.202 263.58 26.327 262.751 25.428 C 261.922 24.535 260.931 23.733 259.784 23.009 C 258.637 22.291 257.323 21.712 255.827 21.283 C 254.337 20.849 252.674 20.638 250.843 20.638 C 249.01 20.638 247.046 20.897 245.125 21.416 C 243.203 21.935 241.473 22.713 239.924 23.745 C 238.375 24.783 237.113 26.08 236.14 27.63 C 235.168 29.187 234.682 30.996 234.682 33.072 C 234.682 35.147 235.239 37.041 236.357 38.598 C 237.475 40.154 238.878 41.548 240.566 42.785 C 242.26 44.021 244.075 45.186 246.026 46.284 C 247.972 47.375 249.791 48.486 251.485 49.608 C 253.173 50.73 254.577 51.954 255.694 53.282 C 256.812 54.609 257.37 56.129 257.37 57.861 C 257.37 58.784 257.142 59.658 256.679 60.491 C 256.216 61.329 255.587 62.047 254.787 62.651 C 253.983 63.254 253.04 63.743 251.952 64.117 C 250.866 64.491 249.658 64.678 248.345 64.678 C 246.453 64.678 244.82 64.292 243.443 63.513 C 242.069 62.735 240.981 61.685 240.177 60.364 C 239.371 59.043 238.885 57.487 238.716 55.701 C 238.544 53.915 238.687 52.015 239.15 50 L 238.632 49.74 L 233.217 59.586 C 235.677 61.891 238.314 63.471 241.126 64.334 C 243.936 65.197 246.625 65.631 249.208 65.631 C 251.79 65.631 253.954 65.384 256.044 64.895 C 258.134 64.406 259.952 63.67 261.503 62.693 C 263.052 61.716 264.264 60.521 265.155 59.109 C 266.043 57.698 266.487 56.045 266.487 54.144 C 266.487 51.786 265.929 49.801 264.812 48.184 C 263.694 46.573 262.288 45.162 260.596 43.955\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 302.346 63.906 L 301.914 63.906 L 301.914 64.769 L 319.968 64.769 L 319.968 63.906 L 319.45 63.906 C 318.532 63.906 317.817 63.634 317.301 63.085 C 316.784 62.536 316.527 61.807 316.527 60.883 L 316.527 40.589 C 316.527 38.23 316.382 35.871 316.1 33.506 C 315.811 31.148 315.15 29.03 314.123 27.16 C 313.09 25.29 311.602 23.751 309.649 22.539 C 307.704 21.332 305.061 20.699 301.74 20.638 C 299.446 20.638 297.385 21 295.548 21.718 C 293.717 22.436 292.107 23.444 290.732 24.741 C 289.356 26.038 288.196 27.564 287.249 29.32 C 286.3 31.075 285.542 32.964 284.972 34.978 L 284.972 3.801 C 284.972 2.938 285.243 2.232 285.789 1.683 C 286.336 1.134 287.062 0.863 287.982 0.863 L 288.413 0.863 L 288.413 0 L 270.362 0 L 270.362 0.863 L 270.793 0.863 C 271.713 0.863 272.439 1.134 272.986 1.683 C 273.531 2.232 273.803 2.938 273.803 3.801 L 273.803 60.883 C 273.803 61.807 273.531 62.536 272.986 63.085 C 272.439 63.634 271.713 63.906 270.793 63.906 L 270.362 63.906 L 270.362 64.769 L 288.413 64.769 L 288.413 63.906 L 287.982 63.906 C 287.062 63.906 286.336 63.634 285.789 63.085 C 285.243 62.536 284.972 61.807 284.972 60.883 L 284.972 39.382 C 285.315 37.024 285.873 34.876 286.647 32.945 C 287.422 31.021 288.335 29.362 289.398 27.98 C 290.455 26.599 291.62 25.537 292.881 24.783 C 294.142 24.035 295.428 23.661 296.749 23.661 C 298.642 23.661 300.142 24.192 301.26 25.259 C 302.377 26.327 303.236 27.866 303.842 29.881 C 304.442 31.896 304.833 34.357 305.002 37.265 C 305.174 40.173 305.259 43.497 305.259 47.237 L 305.349 60.883 C 305.349 61.807 305.08 62.536 304.532 63.085 C 303.985 63.634 303.259 63.906 302.341 63.906\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 400.611 25.35 C 399.925 24.343 399.121 23.492 398.201 22.804 C 397.284 22.111 396.299 21.58 395.236 21.206 C 394.173 20.832 393.127 20.645 392.094 20.645 C 390.088 20.59 388.371 20.862 386.935 21.465 C 385.506 22.068 384.298 22.907 383.326 23.969 C 382.354 25.037 381.566 26.273 380.96 27.685 C 380.358 29.097 379.885 30.605 379.542 32.216 L 379.542 21.592 L 363.208 21.592 L 363.208 22.455 L 365.356 22.455 C 366.276 22.455 367.002 22.726 367.55 23.275 C 368.097 23.824 368.366 24.554 368.366 25.477 L 368.366 54.32 C 365.67 57.198 362.637 59.49 359.255 61.185 C 355.875 62.887 352.175 63.731 348.17 63.731 C 346.164 63.731 344.241 63.243 342.41 62.265 C 340.579 61.288 339.03 59.587 337.767 57.168 C 338.625 54.465 339.815 51.786 341.334 49.138 C 342.854 46.489 344.613 43.974 346.619 41.585 C 348.627 39.196 350.805 36.982 353.154 34.937 C 355.503 32.891 357.91 31.178 360.373 29.797 C 359.857 28.705 359.171 27.607 358.306 26.515 C 357.447 25.423 356.403 24.445 355.172 23.577 C 353.941 22.714 352.535 22.02 350.963 21.507 C 349.382 20.989 347.652 20.729 345.76 20.729 C 342.723 20.729 339.869 21.278 337.209 22.37 C 334.542 23.462 332.225 24.988 330.243 26.949 C 328.266 28.904 326.705 31.238 325.558 33.941 C 324.411 36.65 323.84 39.642 323.84 42.924 C 323.84 46.206 324.411 49.228 325.558 51.991 C 326.705 54.754 328.296 57.161 330.333 59.201 C 332.368 61.246 334.77 62.826 337.552 63.949 C 340.332 65.071 343.352 65.632 346.619 65.632 C 350.746 65.632 354.673 64.715 358.396 62.869 C 362.12 61.029 365.447 58.61 368.366 55.617 C 371.292 52.625 373.764 49.228 375.802 45.428 C 377.837 41.627 379.224 37.802 379.969 33.941 C 380.714 30.49 381.789 27.896 383.193 26.171 C 384.599 24.445 386.274 23.522 388.221 23.408 C 389.255 23.354 390.24 23.583 391.187 24.101 C 392.13 24.62 392.917 25.368 393.548 26.346 C 394.177 27.323 394.563 28.566 394.708 30.062 C 394.851 31.558 394.605 33.284 393.973 35.244 L 394.316 35.504 L 401.967 28.856 C 401.739 27.528 401.276 26.364 400.592 25.356 M 337.161 55.792 C 336.531 54.236 336.026 52.396 335.66 50.266 C 335.288 48.136 335.1 45.687 335.1 42.924 C 335.1 38.894 335.431 35.528 336.085 32.819 C 336.746 30.116 337.617 27.926 338.71 26.255 C 339.798 24.584 341.029 23.39 342.403 22.672 C 343.78 21.954 345.184 21.592 346.615 21.592 C 347.762 21.592 348.747 22.008 349.58 22.847 C 350.409 23.679 350.986 24.832 351.297 26.304 C 351.611 27.77 351.598 29.501 351.255 31.486 C 350.914 33.471 350.108 35.588 348.848 37.832 C 346.326 40.42 344.049 43.256 342.014 46.339 C 339.977 49.415 338.362 52.571 337.154 55.792\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path></svg>',svgContentId:11625189795,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jzyesh\",\"data-framer-name\":\"Group\",opacity:.18,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 401.985 76\"><path d=\"M 51.75 63.085 C 51.006 62.536 50.489 61.806 50.201 60.883 L 31.722 4.319 L 20.029 4.319 L 22.347 11.486 L 6.192 60.883 C 5.904 61.806 5.387 62.536 4.642 63.085 C 3.898 63.634 3.069 63.905 2.15 63.905 L 0 63.905 L 0 64.768 L 11.176 64.768 L 11.176 63.905 L 9.026 63.905 C 8.108 63.905 7.483 63.634 7.135 63.085 C 6.792 62.536 6.762 61.806 7.051 60.883 L 12.984 42.833 L 32.67 42.833 L 38.604 60.883 C 38.892 61.806 38.862 62.536 38.52 63.085 C 38.178 63.634 37.547 63.905 36.628 63.905 L 34.478 63.905 L 34.478 64.768 L 56.399 64.768 L 56.399 63.905 L 54.249 63.905 C 53.33 63.905 52.501 63.634 51.756 63.085 M 13.236 42.055 L 22.779 12.777 L 32.406 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 113.632 16.234 C 115.296 16.234 116.701 15.655 117.848 14.503 C 118.983 13.356 119.56 11.945 119.56 10.28 C 119.56 8.615 118.983 7.197 117.848 6.045 C 116.701 4.892 115.296 4.325 113.632 4.325 C 111.969 4.325 110.563 4.892 109.416 6.045 C 108.281 7.197 107.705 8.609 107.705 10.28 C 107.705 11.951 108.281 13.363 109.416 14.503 C 110.563 15.655 111.969 16.234 113.632 16.234 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 102.882 22.46 L 105.032 22.46 C 105.951 22.46 106.684 22.732 107.23 23.275 C 107.777 23.824 108.053 24.56 108.053 25.483 L 108.053 58.434 C 108.053 59.448 107.873 60.461 107.53 61.414 C 107.254 62.15 106.9 62.886 106.443 63.628 L 105.681 64.775 C 105.651 64.817 105.633 64.841 105.603 64.883 C 104.75 66.054 103.681 67.182 102.414 68.256 L 102.492 68.207 C 101.945 68.654 101.441 68.992 100.978 69.221 C 100.198 69.601 99.495 69.776 98.87 69.776 C 98.072 69.776 97.447 69.504 97.021 68.962 C 96.594 68.412 96.378 67.815 96.378 67.194 L 96.378 3.885 C 96.378 2.968 96.648 2.238 97.189 1.689 C 97.735 1.14 98.468 0.863 99.387 0.863 L 101.537 0.863 L 101.537 0 L 80.049 0 L 80.049 0.863 L 82.199 0.863 C 83.112 0.863 83.844 1.14 84.385 1.689 C 84.931 2.238 85.208 2.974 85.208 3.885 L 85.208 24.873 C 82.277 22.11 78.758 20.729 74.626 20.729 C 71.13 20.729 68.056 21.435 65.389 22.846 C 62.717 24.258 60.501 26.11 58.717 28.415 C 56.945 30.719 55.612 33.344 54.729 36.318 C 53.84 39.28 53.396 42.314 53.396 45.427 C 53.396 47.901 53.744 50.338 54.423 52.727 C 55.113 55.116 56.122 57.252 57.468 59.122 C 58.813 60.992 60.524 62.5 62.585 63.659 C 64.65 64.805 67.059 65.378 69.809 65.378 C 71.989 65.378 73.935 65.01 75.659 64.256 C 76.59 63.846 77.46 63.369 78.259 62.814 C 78.932 62.355 79.544 61.837 80.121 61.282 C 81.376 60.039 82.445 58.579 83.31 56.878 C 83.904 55.695 84.391 54.458 84.763 53.18 C 84.931 52.625 85.081 52.057 85.202 51.478 L 85.202 66.5 C 85.202 69.094 85.916 71.224 87.352 72.895 C 88.787 74.566 90.589 75.399 92.763 75.399 C 94.486 75.399 96.318 74.789 98.264 73.589 C 100.408 72.268 105.014 66.639 105.014 66.639 C 105.014 66.633 105.026 66.627 105.032 66.621 C 106.077 65.469 107.536 64.781 109.092 64.781 L 124.388 64.781 L 124.388 63.918 L 122.238 63.918 C 121.319 63.918 120.587 63.641 120.04 63.092 C 119.494 62.543 119.229 61.807 119.229 60.896 L 119.229 25.489 C 119.229 24.566 119.5 23.83 120.04 23.281 C 120.587 22.732 121.319 22.466 122.238 22.466 L 124.388 22.466 L 124.388 21.604 L 102.888 21.604 L 102.888 22.466 Z M 85.196 44.39 C 85.196 46 84.985 47.81 84.589 49.831 C 84.295 51.321 83.874 52.721 83.334 54.054 C 83.136 54.531 82.925 54.989 82.697 55.448 C 81.838 57.167 80.697 58.627 79.304 59.804 C 78.673 60.341 77.959 60.751 77.178 61.046 C 76.235 61.396 75.178 61.571 74.019 61.571 C 72.007 61.571 70.356 60.883 69.071 59.502 C 67.785 58.12 66.764 56.449 66.02 54.489 C 65.269 52.528 64.741 50.459 64.428 48.275 C 64.11 46.085 63.954 44.209 63.954 42.658 C 63.954 40.589 64.11 38.327 64.428 35.877 C 64.746 33.434 65.317 31.154 66.152 29.054 C 66.981 26.955 68.11 25.187 69.545 23.745 C 70.968 22.303 72.782 21.585 74.956 21.585 C 76.271 21.585 77.55 21.857 78.788 22.4 C 80.013 22.949 81.106 23.751 82.055 24.819 C 82.998 25.893 83.754 27.214 84.331 28.795 C 84.907 30.375 85.19 32.203 85.19 34.285 L 85.19 44.384 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 166.608 22.798 C 165.689 22.105 164.704 21.574 163.641 21.2 C 162.578 20.826 161.533 20.639 160.5 20.639 C 158.554 20.584 156.86 20.856 155.431 21.459 C 153.996 22.062 152.783 22.913 151.78 24.005 C 150.777 25.097 149.972 26.364 149.372 27.806 C 148.771 29.247 148.296 30.774 147.954 32.384 L 147.954 21.592 L 131.619 21.592 L 131.619 22.454 L 133.769 22.454 C 134.682 22.454 135.414 22.726 135.961 23.275 C 136.501 23.824 136.778 24.554 136.778 25.477 L 136.778 60.884 C 136.778 61.807 136.508 62.537 135.961 63.086 C 135.414 63.635 134.682 63.906 133.769 63.906 L 131.619 63.906 L 131.619 64.769 L 153.113 64.769 L 153.113 63.906 L 150.963 63.906 C 150.044 63.906 149.312 63.635 148.771 63.086 C 148.224 62.537 147.954 61.807 147.954 60.884 L 147.954 36.27 C 148.585 32.011 149.642 28.831 151.137 26.726 C 152.627 24.626 154.458 23.516 156.638 23.402 C 157.671 23.347 158.656 23.576 159.605 24.095 C 160.554 24.614 161.341 25.362 161.971 26.34 C 162.602 27.317 162.986 28.56 163.13 30.056 C 163.269 31.552 163.028 33.283 162.398 35.238 L 162.74 35.497 L 170.391 28.849 C 170.163 27.522 169.707 26.358 169.016 25.35 C 168.331 24.343 167.527 23.492 166.608 22.804\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 214.749 63.905 L 212.598 63.905 L 212.598 64.768 L 234.52 64.768 L 234.52 63.905 L 232.369 63.905 C 231.451 63.905 230.622 63.634 229.877 63.085 C 229.132 62.536 228.616 61.806 228.328 60.883 L 209.842 4.319 L 198.149 4.319 L 200.467 11.486 L 184.306 60.883 C 184.018 61.806 183.501 62.536 182.757 63.085 C 182.012 63.634 181.183 63.905 180.264 63.905 L 178.114 63.905 L 178.114 64.768 L 189.291 64.768 L 189.291 63.905 L 187.141 63.905 C 186.222 63.905 185.591 63.634 185.249 63.085 C 184.907 62.536 184.877 61.806 185.165 60.883 L 191.098 42.833 L 210.786 42.833 L 216.719 60.883 C 217.007 61.806 216.977 62.536 216.634 63.085 C 216.291 63.634 215.662 63.905 214.742 63.905 M 191.363 42.055 L 200.906 12.777 L 210.533 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 260.607 43.955 C 258.914 42.748 257.1 41.668 255.149 40.715 C 253.196 39.768 251.365 38.742 249.648 37.651 C 247.93 36.559 246.495 35.316 245.348 33.934 C 244.201 32.553 243.599 30.858 243.54 28.843 C 243.479 26.538 244.224 24.74 245.773 23.443 C 247.322 22.146 249.071 21.501 251.016 21.501 C 252.963 21.501 254.512 21.917 255.659 22.75 C 256.806 23.582 257.593 24.638 258.024 25.905 C 258.458 27.171 258.555 28.565 258.325 30.091 C 258.098 31.618 257.551 33.072 256.692 34.453 L 257.035 34.713 L 264.685 28.064 C 264.222 27.202 263.58 26.327 262.751 25.428 C 261.922 24.535 260.931 23.733 259.784 23.009 C 258.637 22.291 257.323 21.712 255.827 21.283 C 254.337 20.849 252.674 20.638 250.843 20.638 C 249.01 20.638 247.046 20.897 245.125 21.416 C 243.203 21.935 241.473 22.713 239.924 23.745 C 238.375 24.783 237.113 26.08 236.14 27.63 C 235.168 29.187 234.682 30.996 234.682 33.072 C 234.682 35.147 235.239 37.041 236.357 38.598 C 237.475 40.154 238.878 41.548 240.566 42.785 C 242.26 44.021 244.075 45.186 246.026 46.284 C 247.972 47.375 249.791 48.486 251.485 49.608 C 253.173 50.73 254.577 51.954 255.694 53.282 C 256.812 54.609 257.37 56.129 257.37 57.861 C 257.37 58.784 257.142 59.658 256.679 60.491 C 256.216 61.329 255.587 62.047 254.787 62.651 C 253.983 63.254 253.04 63.743 251.952 64.117 C 250.866 64.491 249.658 64.678 248.345 64.678 C 246.453 64.678 244.82 64.292 243.443 63.513 C 242.069 62.735 240.981 61.685 240.177 60.364 C 239.371 59.043 238.885 57.487 238.716 55.701 C 238.544 53.915 238.687 52.015 239.15 50 L 238.632 49.74 L 233.217 59.586 C 235.677 61.891 238.314 63.471 241.126 64.334 C 243.936 65.197 246.625 65.631 249.208 65.631 C 251.79 65.631 253.954 65.384 256.044 64.895 C 258.134 64.406 259.952 63.67 261.503 62.693 C 263.052 61.716 264.264 60.521 265.155 59.109 C 266.043 57.698 266.487 56.045 266.487 54.144 C 266.487 51.786 265.929 49.801 264.812 48.184 C 263.694 46.573 262.288 45.162 260.596 43.955\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 302.346 63.906 L 301.914 63.906 L 301.914 64.769 L 319.968 64.769 L 319.968 63.906 L 319.45 63.906 C 318.532 63.906 317.817 63.634 317.301 63.085 C 316.784 62.536 316.527 61.807 316.527 60.883 L 316.527 40.589 C 316.527 38.23 316.382 35.871 316.1 33.506 C 315.811 31.148 315.15 29.03 314.123 27.16 C 313.09 25.29 311.602 23.751 309.649 22.539 C 307.704 21.332 305.061 20.699 301.74 20.638 C 299.446 20.638 297.385 21 295.548 21.718 C 293.717 22.436 292.107 23.444 290.732 24.741 C 289.356 26.038 288.196 27.564 287.249 29.32 C 286.3 31.075 285.542 32.964 284.972 34.978 L 284.972 3.801 C 284.972 2.938 285.243 2.232 285.789 1.683 C 286.336 1.134 287.062 0.863 287.982 0.863 L 288.413 0.863 L 288.413 0 L 270.362 0 L 270.362 0.863 L 270.793 0.863 C 271.713 0.863 272.439 1.134 272.986 1.683 C 273.531 2.232 273.803 2.938 273.803 3.801 L 273.803 60.883 C 273.803 61.807 273.531 62.536 272.986 63.085 C 272.439 63.634 271.713 63.906 270.793 63.906 L 270.362 63.906 L 270.362 64.769 L 288.413 64.769 L 288.413 63.906 L 287.982 63.906 C 287.062 63.906 286.336 63.634 285.789 63.085 C 285.243 62.536 284.972 61.807 284.972 60.883 L 284.972 39.382 C 285.315 37.024 285.873 34.876 286.647 32.945 C 287.422 31.021 288.335 29.362 289.398 27.98 C 290.455 26.599 291.62 25.537 292.881 24.783 C 294.142 24.035 295.428 23.661 296.749 23.661 C 298.642 23.661 300.142 24.192 301.26 25.259 C 302.377 26.327 303.236 27.866 303.842 29.881 C 304.442 31.896 304.833 34.357 305.002 37.265 C 305.174 40.173 305.259 43.497 305.259 47.237 L 305.349 60.883 C 305.349 61.807 305.08 62.536 304.532 63.085 C 303.985 63.634 303.259 63.906 302.341 63.906\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 400.611 25.35 C 399.925 24.343 399.121 23.492 398.201 22.804 C 397.284 22.111 396.299 21.58 395.236 21.206 C 394.173 20.832 393.127 20.645 392.094 20.645 C 390.088 20.59 388.371 20.862 386.935 21.465 C 385.506 22.068 384.298 22.907 383.326 23.969 C 382.354 25.037 381.566 26.273 380.96 27.685 C 380.358 29.097 379.885 30.605 379.542 32.216 L 379.542 21.592 L 363.208 21.592 L 363.208 22.455 L 365.356 22.455 C 366.276 22.455 367.002 22.726 367.55 23.275 C 368.097 23.824 368.366 24.554 368.366 25.477 L 368.366 54.32 C 365.67 57.198 362.637 59.49 359.255 61.185 C 355.875 62.887 352.175 63.731 348.17 63.731 C 346.164 63.731 344.241 63.243 342.41 62.265 C 340.579 61.288 339.03 59.587 337.767 57.168 C 338.625 54.465 339.815 51.786 341.334 49.138 C 342.854 46.489 344.613 43.974 346.619 41.585 C 348.627 39.196 350.805 36.982 353.154 34.937 C 355.503 32.891 357.91 31.178 360.373 29.797 C 359.857 28.705 359.171 27.607 358.306 26.515 C 357.447 25.423 356.403 24.445 355.172 23.577 C 353.941 22.714 352.535 22.02 350.963 21.507 C 349.382 20.989 347.652 20.729 345.76 20.729 C 342.723 20.729 339.869 21.278 337.209 22.37 C 334.542 23.462 332.225 24.988 330.243 26.949 C 328.266 28.904 326.705 31.238 325.558 33.941 C 324.411 36.65 323.84 39.642 323.84 42.924 C 323.84 46.206 324.411 49.228 325.558 51.991 C 326.705 54.754 328.296 57.161 330.333 59.201 C 332.368 61.246 334.77 62.826 337.552 63.949 C 340.332 65.071 343.352 65.632 346.619 65.632 C 350.746 65.632 354.673 64.715 358.396 62.869 C 362.12 61.029 365.447 58.61 368.366 55.617 C 371.292 52.625 373.764 49.228 375.802 45.428 C 377.837 41.627 379.224 37.802 379.969 33.941 C 380.714 30.49 381.789 27.896 383.193 26.171 C 384.599 24.445 386.274 23.522 388.221 23.408 C 389.255 23.354 390.24 23.583 391.187 24.101 C 392.13 24.62 392.917 25.368 393.548 26.346 C 394.177 27.323 394.563 28.566 394.708 30.062 C 394.851 31.558 394.605 33.284 393.973 35.244 L 394.316 35.504 L 401.967 28.856 C 401.739 27.528 401.276 26.364 400.592 25.356 M 337.161 55.792 C 336.531 54.236 336.026 52.396 335.66 50.266 C 335.288 48.136 335.1 45.687 335.1 42.924 C 335.1 38.894 335.431 35.528 336.085 32.819 C 336.746 30.116 337.617 27.926 338.71 26.255 C 339.798 24.584 341.029 23.39 342.403 22.672 C 343.78 21.954 345.184 21.592 346.615 21.592 C 347.762 21.592 348.747 22.008 349.58 22.847 C 350.409 23.679 350.986 24.832 351.297 26.304 C 351.611 27.77 351.598 29.501 351.255 31.486 C 350.914 33.471 350.108 35.588 348.848 37.832 C 346.326 40.42 344.049 43.256 342.014 46.339 C 339.977 49.415 338.362 52.571 337.154 55.792\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path></svg>',svgContentId:9291386059,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qtlh0c\",\"data-framer-name\":\"Group\",opacity:.18,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 401.985 76\"><path d=\"M 51.75 63.085 C 51.006 62.536 50.489 61.806 50.201 60.883 L 31.722 4.319 L 20.029 4.319 L 22.347 11.486 L 6.192 60.883 C 5.904 61.806 5.387 62.536 4.642 63.085 C 3.898 63.634 3.069 63.905 2.15 63.905 L 0 63.905 L 0 64.768 L 11.176 64.768 L 11.176 63.905 L 9.026 63.905 C 8.108 63.905 7.483 63.634 7.135 63.085 C 6.792 62.536 6.762 61.806 7.051 60.883 L 12.984 42.833 L 32.67 42.833 L 38.604 60.883 C 38.892 61.806 38.862 62.536 38.52 63.085 C 38.178 63.634 37.547 63.905 36.628 63.905 L 34.478 63.905 L 34.478 64.768 L 56.399 64.768 L 56.399 63.905 L 54.249 63.905 C 53.33 63.905 52.501 63.634 51.756 63.085 M 13.236 42.055 L 22.779 12.777 L 32.406 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 113.632 16.234 C 115.296 16.234 116.701 15.655 117.848 14.503 C 118.983 13.356 119.56 11.945 119.56 10.28 C 119.56 8.615 118.983 7.197 117.848 6.045 C 116.701 4.892 115.296 4.325 113.632 4.325 C 111.969 4.325 110.563 4.892 109.416 6.045 C 108.281 7.197 107.705 8.609 107.705 10.28 C 107.705 11.951 108.281 13.363 109.416 14.503 C 110.563 15.655 111.969 16.234 113.632 16.234 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 102.882 22.46 L 105.032 22.46 C 105.951 22.46 106.684 22.732 107.23 23.275 C 107.777 23.824 108.053 24.56 108.053 25.483 L 108.053 58.434 C 108.053 59.448 107.873 60.461 107.53 61.414 C 107.254 62.15 106.9 62.886 106.443 63.628 L 105.681 64.775 C 105.651 64.817 105.633 64.841 105.603 64.883 C 104.75 66.054 103.681 67.182 102.414 68.256 L 102.492 68.207 C 101.945 68.654 101.441 68.992 100.978 69.221 C 100.198 69.601 99.495 69.776 98.87 69.776 C 98.072 69.776 97.447 69.504 97.021 68.962 C 96.594 68.412 96.378 67.815 96.378 67.194 L 96.378 3.885 C 96.378 2.968 96.648 2.238 97.189 1.689 C 97.735 1.14 98.468 0.863 99.387 0.863 L 101.537 0.863 L 101.537 0 L 80.049 0 L 80.049 0.863 L 82.199 0.863 C 83.112 0.863 83.844 1.14 84.385 1.689 C 84.931 2.238 85.208 2.974 85.208 3.885 L 85.208 24.873 C 82.277 22.11 78.758 20.729 74.626 20.729 C 71.13 20.729 68.056 21.435 65.389 22.846 C 62.717 24.258 60.501 26.11 58.717 28.415 C 56.945 30.719 55.612 33.344 54.729 36.318 C 53.84 39.28 53.396 42.314 53.396 45.427 C 53.396 47.901 53.744 50.338 54.423 52.727 C 55.113 55.116 56.122 57.252 57.468 59.122 C 58.813 60.992 60.524 62.5 62.585 63.659 C 64.65 64.805 67.059 65.378 69.809 65.378 C 71.989 65.378 73.935 65.01 75.659 64.256 C 76.59 63.846 77.46 63.369 78.259 62.814 C 78.932 62.355 79.544 61.837 80.121 61.282 C 81.376 60.039 82.445 58.579 83.31 56.878 C 83.904 55.695 84.391 54.458 84.763 53.18 C 84.931 52.625 85.081 52.057 85.202 51.478 L 85.202 66.5 C 85.202 69.094 85.916 71.224 87.352 72.895 C 88.787 74.566 90.589 75.399 92.763 75.399 C 94.486 75.399 96.318 74.789 98.264 73.589 C 100.408 72.268 105.014 66.639 105.014 66.639 C 105.014 66.633 105.026 66.627 105.032 66.621 C 106.077 65.469 107.536 64.781 109.092 64.781 L 124.388 64.781 L 124.388 63.918 L 122.238 63.918 C 121.319 63.918 120.587 63.641 120.04 63.092 C 119.494 62.543 119.229 61.807 119.229 60.896 L 119.229 25.489 C 119.229 24.566 119.5 23.83 120.04 23.281 C 120.587 22.732 121.319 22.466 122.238 22.466 L 124.388 22.466 L 124.388 21.604 L 102.888 21.604 L 102.888 22.466 Z M 85.196 44.39 C 85.196 46 84.985 47.81 84.589 49.831 C 84.295 51.321 83.874 52.721 83.334 54.054 C 83.136 54.531 82.925 54.989 82.697 55.448 C 81.838 57.167 80.697 58.627 79.304 59.804 C 78.673 60.341 77.959 60.751 77.178 61.046 C 76.235 61.396 75.178 61.571 74.019 61.571 C 72.007 61.571 70.356 60.883 69.071 59.502 C 67.785 58.12 66.764 56.449 66.02 54.489 C 65.269 52.528 64.741 50.459 64.428 48.275 C 64.11 46.085 63.954 44.209 63.954 42.658 C 63.954 40.589 64.11 38.327 64.428 35.877 C 64.746 33.434 65.317 31.154 66.152 29.054 C 66.981 26.955 68.11 25.187 69.545 23.745 C 70.968 22.303 72.782 21.585 74.956 21.585 C 76.271 21.585 77.55 21.857 78.788 22.4 C 80.013 22.949 81.106 23.751 82.055 24.819 C 82.998 25.893 83.754 27.214 84.331 28.795 C 84.907 30.375 85.19 32.203 85.19 34.285 L 85.19 44.384 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 166.608 22.798 C 165.689 22.105 164.704 21.574 163.641 21.2 C 162.578 20.826 161.533 20.639 160.5 20.639 C 158.554 20.584 156.86 20.856 155.431 21.459 C 153.996 22.062 152.783 22.913 151.78 24.005 C 150.777 25.097 149.972 26.364 149.372 27.806 C 148.771 29.247 148.296 30.774 147.954 32.384 L 147.954 21.592 L 131.619 21.592 L 131.619 22.454 L 133.769 22.454 C 134.682 22.454 135.414 22.726 135.961 23.275 C 136.501 23.824 136.778 24.554 136.778 25.477 L 136.778 60.884 C 136.778 61.807 136.508 62.537 135.961 63.086 C 135.414 63.635 134.682 63.906 133.769 63.906 L 131.619 63.906 L 131.619 64.769 L 153.113 64.769 L 153.113 63.906 L 150.963 63.906 C 150.044 63.906 149.312 63.635 148.771 63.086 C 148.224 62.537 147.954 61.807 147.954 60.884 L 147.954 36.27 C 148.585 32.011 149.642 28.831 151.137 26.726 C 152.627 24.626 154.458 23.516 156.638 23.402 C 157.671 23.347 158.656 23.576 159.605 24.095 C 160.554 24.614 161.341 25.362 161.971 26.34 C 162.602 27.317 162.986 28.56 163.13 30.056 C 163.269 31.552 163.028 33.283 162.398 35.238 L 162.74 35.497 L 170.391 28.849 C 170.163 27.522 169.707 26.358 169.016 25.35 C 168.331 24.343 167.527 23.492 166.608 22.804\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 214.749 63.905 L 212.598 63.905 L 212.598 64.768 L 234.52 64.768 L 234.52 63.905 L 232.369 63.905 C 231.451 63.905 230.622 63.634 229.877 63.085 C 229.132 62.536 228.616 61.806 228.328 60.883 L 209.842 4.319 L 198.149 4.319 L 200.467 11.486 L 184.306 60.883 C 184.018 61.806 183.501 62.536 182.757 63.085 C 182.012 63.634 181.183 63.905 180.264 63.905 L 178.114 63.905 L 178.114 64.768 L 189.291 64.768 L 189.291 63.905 L 187.141 63.905 C 186.222 63.905 185.591 63.634 185.249 63.085 C 184.907 62.536 184.877 61.806 185.165 60.883 L 191.098 42.833 L 210.786 42.833 L 216.719 60.883 C 217.007 61.806 216.977 62.536 216.634 63.085 C 216.291 63.634 215.662 63.905 214.742 63.905 M 191.363 42.055 L 200.906 12.777 L 210.533 42.055 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 260.607 43.955 C 258.914 42.748 257.1 41.668 255.149 40.715 C 253.196 39.768 251.365 38.742 249.648 37.651 C 247.93 36.559 246.495 35.316 245.348 33.934 C 244.201 32.553 243.599 30.858 243.54 28.843 C 243.479 26.538 244.224 24.74 245.773 23.443 C 247.322 22.146 249.071 21.501 251.016 21.501 C 252.963 21.501 254.512 21.917 255.659 22.75 C 256.806 23.582 257.593 24.638 258.024 25.905 C 258.458 27.171 258.555 28.565 258.325 30.091 C 258.098 31.618 257.551 33.072 256.692 34.453 L 257.035 34.713 L 264.685 28.064 C 264.222 27.202 263.58 26.327 262.751 25.428 C 261.922 24.535 260.931 23.733 259.784 23.009 C 258.637 22.291 257.323 21.712 255.827 21.283 C 254.337 20.849 252.674 20.638 250.843 20.638 C 249.01 20.638 247.046 20.897 245.125 21.416 C 243.203 21.935 241.473 22.713 239.924 23.745 C 238.375 24.783 237.113 26.08 236.14 27.63 C 235.168 29.187 234.682 30.996 234.682 33.072 C 234.682 35.147 235.239 37.041 236.357 38.598 C 237.475 40.154 238.878 41.548 240.566 42.785 C 242.26 44.021 244.075 45.186 246.026 46.284 C 247.972 47.375 249.791 48.486 251.485 49.608 C 253.173 50.73 254.577 51.954 255.694 53.282 C 256.812 54.609 257.37 56.129 257.37 57.861 C 257.37 58.784 257.142 59.658 256.679 60.491 C 256.216 61.329 255.587 62.047 254.787 62.651 C 253.983 63.254 253.04 63.743 251.952 64.117 C 250.866 64.491 249.658 64.678 248.345 64.678 C 246.453 64.678 244.82 64.292 243.443 63.513 C 242.069 62.735 240.981 61.685 240.177 60.364 C 239.371 59.043 238.885 57.487 238.716 55.701 C 238.544 53.915 238.687 52.015 239.15 50 L 238.632 49.74 L 233.217 59.586 C 235.677 61.891 238.314 63.471 241.126 64.334 C 243.936 65.197 246.625 65.631 249.208 65.631 C 251.79 65.631 253.954 65.384 256.044 64.895 C 258.134 64.406 259.952 63.67 261.503 62.693 C 263.052 61.716 264.264 60.521 265.155 59.109 C 266.043 57.698 266.487 56.045 266.487 54.144 C 266.487 51.786 265.929 49.801 264.812 48.184 C 263.694 46.573 262.288 45.162 260.596 43.955\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 302.346 63.906 L 301.914 63.906 L 301.914 64.769 L 319.968 64.769 L 319.968 63.906 L 319.45 63.906 C 318.532 63.906 317.817 63.634 317.301 63.085 C 316.784 62.536 316.527 61.807 316.527 60.883 L 316.527 40.589 C 316.527 38.23 316.382 35.871 316.1 33.506 C 315.811 31.148 315.15 29.03 314.123 27.16 C 313.09 25.29 311.602 23.751 309.649 22.539 C 307.704 21.332 305.061 20.699 301.74 20.638 C 299.446 20.638 297.385 21 295.548 21.718 C 293.717 22.436 292.107 23.444 290.732 24.741 C 289.356 26.038 288.196 27.564 287.249 29.32 C 286.3 31.075 285.542 32.964 284.972 34.978 L 284.972 3.801 C 284.972 2.938 285.243 2.232 285.789 1.683 C 286.336 1.134 287.062 0.863 287.982 0.863 L 288.413 0.863 L 288.413 0 L 270.362 0 L 270.362 0.863 L 270.793 0.863 C 271.713 0.863 272.439 1.134 272.986 1.683 C 273.531 2.232 273.803 2.938 273.803 3.801 L 273.803 60.883 C 273.803 61.807 273.531 62.536 272.986 63.085 C 272.439 63.634 271.713 63.906 270.793 63.906 L 270.362 63.906 L 270.362 64.769 L 288.413 64.769 L 288.413 63.906 L 287.982 63.906 C 287.062 63.906 286.336 63.634 285.789 63.085 C 285.243 62.536 284.972 61.807 284.972 60.883 L 284.972 39.382 C 285.315 37.024 285.873 34.876 286.647 32.945 C 287.422 31.021 288.335 29.362 289.398 27.98 C 290.455 26.599 291.62 25.537 292.881 24.783 C 294.142 24.035 295.428 23.661 296.749 23.661 C 298.642 23.661 300.142 24.192 301.26 25.259 C 302.377 26.327 303.236 27.866 303.842 29.881 C 304.442 31.896 304.833 34.357 305.002 37.265 C 305.174 40.173 305.259 43.497 305.259 47.237 L 305.349 60.883 C 305.349 61.807 305.08 62.536 304.532 63.085 C 303.985 63.634 303.259 63.906 302.341 63.906\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 400.611 25.35 C 399.925 24.343 399.121 23.492 398.201 22.804 C 397.284 22.111 396.299 21.58 395.236 21.206 C 394.173 20.832 393.127 20.645 392.094 20.645 C 390.088 20.59 388.371 20.862 386.935 21.465 C 385.506 22.068 384.298 22.907 383.326 23.969 C 382.354 25.037 381.566 26.273 380.96 27.685 C 380.358 29.097 379.885 30.605 379.542 32.216 L 379.542 21.592 L 363.208 21.592 L 363.208 22.455 L 365.356 22.455 C 366.276 22.455 367.002 22.726 367.55 23.275 C 368.097 23.824 368.366 24.554 368.366 25.477 L 368.366 54.32 C 365.67 57.198 362.637 59.49 359.255 61.185 C 355.875 62.887 352.175 63.731 348.17 63.731 C 346.164 63.731 344.241 63.243 342.41 62.265 C 340.579 61.288 339.03 59.587 337.767 57.168 C 338.625 54.465 339.815 51.786 341.334 49.138 C 342.854 46.489 344.613 43.974 346.619 41.585 C 348.627 39.196 350.805 36.982 353.154 34.937 C 355.503 32.891 357.91 31.178 360.373 29.797 C 359.857 28.705 359.171 27.607 358.306 26.515 C 357.447 25.423 356.403 24.445 355.172 23.577 C 353.941 22.714 352.535 22.02 350.963 21.507 C 349.382 20.989 347.652 20.729 345.76 20.729 C 342.723 20.729 339.869 21.278 337.209 22.37 C 334.542 23.462 332.225 24.988 330.243 26.949 C 328.266 28.904 326.705 31.238 325.558 33.941 C 324.411 36.65 323.84 39.642 323.84 42.924 C 323.84 46.206 324.411 49.228 325.558 51.991 C 326.705 54.754 328.296 57.161 330.333 59.201 C 332.368 61.246 334.77 62.826 337.552 63.949 C 340.332 65.071 343.352 65.632 346.619 65.632 C 350.746 65.632 354.673 64.715 358.396 62.869 C 362.12 61.029 365.447 58.61 368.366 55.617 C 371.292 52.625 373.764 49.228 375.802 45.428 C 377.837 41.627 379.224 37.802 379.969 33.941 C 380.714 30.49 381.789 27.896 383.193 26.171 C 384.599 24.445 386.274 23.522 388.221 23.408 C 389.255 23.354 390.24 23.583 391.187 24.101 C 392.13 24.62 392.917 25.368 393.548 26.346 C 394.177 27.323 394.563 28.566 394.708 30.062 C 394.851 31.558 394.605 33.284 393.973 35.244 L 394.316 35.504 L 401.967 28.856 C 401.739 27.528 401.276 26.364 400.592 25.356 M 337.161 55.792 C 336.531 54.236 336.026 52.396 335.66 50.266 C 335.288 48.136 335.1 45.687 335.1 42.924 C 335.1 38.894 335.431 35.528 336.085 32.819 C 336.746 30.116 337.617 27.926 338.71 26.255 C 339.798 24.584 341.029 23.39 342.403 22.672 C 343.78 21.954 345.184 21.592 346.615 21.592 C 347.762 21.592 348.747 22.008 349.58 22.847 C 350.409 23.679 350.986 24.832 351.297 26.304 C 351.611 27.77 351.598 29.501 351.255 31.486 C 350.914 33.471 350.108 35.588 348.848 37.832 C 346.326 40.42 344.049 43.256 342.014 46.339 C 339.977 49.415 338.362 52.571 337.154 55.792\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path></svg>',svgContentId:11087194191,withExternalLayout:true})]})})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-94svso\",\"data-framer-name\":\"Sections / Contact\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d81i3l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14acna3\",\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/22c7d5dd-e2d1-4708-9c64-3c705e763af6/submit\",className:\"framer-a7h5mt\",nodeId:\"rcecNtvfA\",redirectUrl:{webPageId:\"rATkBORdm\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c63aq3\",\"data-framer-name\":\"Fields\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4gm39\",\"data-framer-name\":\"01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-83hzu2-container\",nodeId:\"vzvsNXTXq\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(FormField,{d8xm1Ffej:\"\u05DE\u05D9\u05D9\u05DC\",height:\"100%\",Hmoegws_F:\"Email\",id:\"vzvsNXTXq\",kr7XsBb5g:\"\",layoutId:\"vzvsNXTXq\",PKDWbzFVL:\"email\",style:{width:\"100%\"},width:\"100%\",XCkoMqren:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lhl5az-container\",nodeId:\"FluiU41ae\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(FormField,{d8xm1Ffej:\"\u05E9\u05DD \u05DE\u05DC\u05D0 \",height:\"100%\",Hmoegws_F:\"Name\",id:\"FluiU41ae\",kr7XsBb5g:\"\",layoutId:\"FluiU41ae\",PKDWbzFVL:\"text\",style:{width:\"100%\"},width:\"100%\",XCkoMqren:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0tax2\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18g098s-container\",nodeId:\"tWU4GQ8ru\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(FormField,{d8xm1Ffej:\"\u05E9\u05DD \u05D7\u05D1\u05E8\u05D4\",height:\"100%\",Hmoegws_F:\"Company\",id:\"tWU4GQ8ru\",kr7XsBb5g:\"\",layoutId:\"tWU4GQ8ru\",PKDWbzFVL:\"text\",style:{width:\"100%\"},width:\"100%\",XCkoMqren:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 20px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hq9rq3-container\",nodeId:\"KEm4GmruE\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(FormField,{d8xm1Ffej:\"\u05D8\u05DC\u05E4\u05D5\u05DF\",height:\"100%\",Hmoegws_F:\"Name\",id:\"KEm4GmruE\",kr7XsBb5g:\"\",layoutId:\"KEm4GmruE\",PKDWbzFVL:\"tel\",style:{width:\"100%\"},width:\"100%\",XCkoMqren:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kar4p\",\"data-framer-name\":\"03\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-62nxgw-container\",nodeId:\"lwBcfolM3\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(FormField,{d8xm1Ffej:\"\u05E1\u05E4\u05E8 \u05DC\u05D9 \u05E2\u05DC \u05D4\u05DB\u05D0\u05D1 / \u05D4\u05E4\u05E6\u05D9\u05E2\u05D4 \u05E9\u05DC\u05DA\",height:\"100%\",Hmoegws_F:\"Message\",id:\"lwBcfolM3\",kr7XsBb5g:\"\",layoutId:\"lwBcfolM3\",PKDWbzFVL:\"textarea\",style:{width:\"100%\"},width:\"100%\",XCkoMqren:true})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9wa1ew-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QPqdRb2mF\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(URLDataCollector,{height:\"100%\",id:\"QPqdRb2mF\",layoutId:\"QPqdRb2mF\",name:\"page_url\",type:\"url\",urlParameter:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J8PfEE7Z8:{width:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px) - 48px)`},tY7duOV0U:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1400px) - 60px, 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1400px) - 120px, 300px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ap6le0-container\",nodeId:\"zBUz556kZ\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(ButtonsSubmit,{height:\"100%\",id:\"zBUz556kZ\",layoutId:\"zBUz556kZ\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"AJ40NwBPY\",pending:\"WA0mrTq9v\",success:\"calBzId6x\"},\"KR7btc4HF\"),width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-euro1n\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5yo44\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1llz6ll\",\"data-framer-name\":\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 143 27\"><path d=\"M 18.409 22.412 C 18.144 22.217 17.961 21.957 17.858 21.63 L 11.284 1.534 L 7.125 1.534 L 7.95 4.081 L 2.203 21.63 C 2.1 21.957 1.916 22.217 1.651 22.412 C 1.387 22.607 1.092 22.703 0.765 22.703 L 0 22.703 L 0 23.01 L 3.976 23.01 L 3.976 22.703 L 3.211 22.703 C 2.884 22.703 2.662 22.607 2.538 22.412 C 2.416 22.217 2.406 21.957 2.508 21.63 L 4.619 15.217 L 11.622 15.217 L 13.733 21.63 C 13.835 21.957 13.825 22.217 13.703 22.412 C 13.581 22.607 13.357 22.703 13.03 22.703 L 12.265 22.703 L 12.265 23.01 L 20.063 23.01 L 20.063 22.703 L 19.298 22.703 C 18.971 22.703 18.676 22.607 18.412 22.412 M 4.709 14.94 L 8.103 4.539 L 11.528 14.94 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 40.423 5.767 C 41.015 5.767 41.515 5.562 41.923 5.152 C 42.326 4.745 42.531 4.244 42.531 3.652 C 42.531 3.06 42.326 2.557 41.923 2.147 C 41.515 1.738 41.015 1.537 40.423 1.537 C 39.831 1.537 39.331 1.738 38.923 2.147 C 38.519 2.557 38.314 3.058 38.314 3.652 C 38.314 4.246 38.519 4.747 38.923 5.152 C 39.331 5.562 39.831 5.767 40.423 5.767 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 36.599 7.979 L 37.364 7.979 C 37.69 7.979 37.951 8.076 38.145 8.269 C 38.34 8.464 38.438 8.725 38.438 9.053 L 38.438 20.759 C 38.438 21.12 38.374 21.48 38.252 21.818 C 38.154 22.08 38.028 22.341 37.866 22.605 L 37.594 23.012 C 37.584 23.027 37.577 23.036 37.566 23.051 C 37.263 23.466 36.883 23.867 36.432 24.249 L 36.46 24.232 C 36.265 24.39 36.086 24.51 35.921 24.592 C 35.644 24.727 35.394 24.789 35.172 24.789 C 34.887 24.789 34.665 24.692 34.514 24.499 C 34.362 24.304 34.285 24.092 34.285 23.872 L 34.285 1.38 C 34.285 1.054 34.381 0.795 34.573 0.6 C 34.768 0.405 35.028 0.306 35.355 0.306 L 36.12 0.306 L 36.12 0 L 28.476 0 L 28.476 0.306 L 29.241 0.306 C 29.566 0.306 29.826 0.405 30.019 0.6 C 30.213 0.795 30.311 1.057 30.311 1.38 L 30.311 8.837 C 29.269 7.855 28.017 7.364 26.547 7.364 C 25.304 7.364 24.21 7.615 23.261 8.117 C 22.31 8.618 21.522 9.276 20.888 10.095 C 20.257 10.913 19.783 11.846 19.469 12.902 C 19.153 13.955 18.995 15.033 18.995 16.139 C 18.995 17.017 19.119 17.883 19.36 18.732 C 19.606 19.581 19.965 20.339 20.443 21.004 C 20.922 21.668 21.531 22.204 22.263 22.616 C 22.998 23.023 23.855 23.226 24.834 23.226 C 25.609 23.226 26.301 23.096 26.914 22.828 C 27.246 22.682 27.555 22.513 27.839 22.316 C 28.079 22.153 28.297 21.968 28.502 21.771 C 28.948 21.33 29.329 20.811 29.636 20.207 C 29.848 19.787 30.021 19.347 30.153 18.893 C 30.213 18.696 30.266 18.494 30.309 18.288 L 30.309 23.625 C 30.309 24.547 30.563 25.303 31.074 25.897 C 31.585 26.491 32.225 26.786 32.999 26.786 C 33.612 26.786 34.264 26.57 34.956 26.143 C 35.718 25.674 37.357 23.674 37.357 23.674 C 37.357 23.672 37.361 23.67 37.364 23.668 C 37.735 23.259 38.254 23.014 38.808 23.014 L 44.249 23.014 L 44.249 22.708 L 43.484 22.708 C 43.157 22.708 42.897 22.609 42.702 22.414 C 42.508 22.219 42.414 21.958 42.414 21.634 L 42.414 9.055 C 42.414 8.727 42.51 8.466 42.702 8.271 C 42.897 8.076 43.157 7.981 43.484 7.981 L 44.249 7.981 L 44.249 7.675 L 36.601 7.675 L 36.601 7.981 Z M 30.307 15.77 C 30.307 16.342 30.232 16.985 30.091 17.703 C 29.987 18.233 29.837 18.73 29.645 19.204 C 29.574 19.373 29.499 19.536 29.418 19.699 C 29.113 20.309 28.707 20.828 28.211 21.246 C 27.987 21.437 27.733 21.583 27.455 21.688 C 27.119 21.812 26.743 21.874 26.331 21.874 C 25.615 21.874 25.028 21.63 24.571 21.139 C 24.114 20.648 23.75 20.054 23.485 19.358 C 23.218 18.661 23.03 17.926 22.919 17.15 C 22.806 16.372 22.751 15.706 22.751 15.155 C 22.751 14.42 22.806 13.616 22.919 12.746 C 23.033 11.878 23.235 11.068 23.532 10.322 C 23.827 9.576 24.229 8.948 24.74 8.436 C 25.246 7.924 25.891 7.669 26.664 7.669 C 27.132 7.669 27.587 7.765 28.027 7.958 C 28.463 8.153 28.852 8.438 29.19 8.817 C 29.525 9.199 29.794 9.668 29.999 10.23 C 30.204 10.791 30.305 11.441 30.305 12.18 L 30.305 15.768 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 59.268 8.099 C 58.941 7.853 58.591 7.664 58.213 7.531 C 57.835 7.399 57.463 7.332 57.095 7.332 C 56.403 7.313 55.801 7.409 55.292 7.624 C 54.782 7.838 54.35 8.14 53.993 8.528 C 53.636 8.916 53.35 9.366 53.137 9.878 C 52.923 10.391 52.754 10.933 52.632 11.505 L 52.632 7.671 L 46.821 7.671 L 46.821 7.977 L 47.586 7.977 C 47.911 7.977 48.172 8.074 48.366 8.269 C 48.558 8.464 48.657 8.723 48.657 9.051 L 48.657 21.63 C 48.657 21.958 48.56 22.217 48.366 22.412 C 48.172 22.607 47.911 22.703 47.586 22.703 L 46.821 22.703 L 46.821 23.01 L 54.468 23.01 L 54.468 22.703 L 53.703 22.703 C 53.376 22.703 53.115 22.607 52.923 22.412 C 52.729 22.217 52.632 21.958 52.632 21.63 L 52.632 12.885 C 52.857 11.372 53.233 10.243 53.765 9.495 C 54.294 8.749 54.946 8.354 55.722 8.314 C 56.089 8.294 56.439 8.376 56.777 8.56 C 57.115 8.745 57.394 9.01 57.619 9.358 C 57.843 9.705 57.98 10.146 58.031 10.678 C 58.08 11.209 57.995 11.824 57.77 12.519 L 57.892 12.611 L 60.614 10.249 C 60.533 9.778 60.37 9.364 60.125 9.006 C 59.881 8.648 59.595 8.346 59.268 8.102\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 76.393 22.703 L 75.628 22.703 L 75.628 23.01 L 83.427 23.01 L 83.427 22.703 L 82.661 22.703 C 82.335 22.703 82.04 22.607 81.775 22.412 C 81.51 22.217 81.327 21.957 81.224 21.63 L 74.648 1.534 L 70.488 1.534 L 71.313 4.081 L 65.564 21.63 C 65.461 21.957 65.278 22.217 65.013 22.412 C 64.748 22.607 64.453 22.703 64.126 22.703 L 63.361 22.703 L 63.361 23.01 L 67.337 23.01 L 67.337 22.703 L 66.572 22.703 C 66.246 22.703 66.021 22.607 65.899 22.412 C 65.778 22.217 65.767 21.957 65.869 21.63 L 67.98 15.217 L 74.984 15.217 L 77.094 21.63 C 77.197 21.957 77.186 22.217 77.064 22.412 C 76.942 22.607 76.718 22.703 76.391 22.703 M 68.074 14.94 L 71.469 4.539 L 74.894 14.94 Z\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 92.707 15.616 C 92.105 15.187 91.459 14.803 90.765 14.465 C 90.071 14.128 89.419 13.764 88.808 13.376 C 88.197 12.988 87.687 12.546 87.279 12.056 C 86.871 11.565 86.657 10.963 86.636 10.247 C 86.614 9.428 86.879 8.789 87.43 8.329 C 87.981 7.868 88.603 7.638 89.295 7.638 C 89.987 7.638 90.538 7.786 90.947 8.082 C 91.355 8.378 91.635 8.753 91.788 9.203 C 91.942 9.653 91.977 10.148 91.895 10.69 C 91.814 11.233 91.62 11.749 91.314 12.24 L 91.436 12.332 L 94.158 9.97 C 93.993 9.664 93.765 9.353 93.47 9.034 C 93.175 8.716 92.822 8.431 92.414 8.174 C 92.006 7.919 91.539 7.713 91.006 7.561 C 90.476 7.407 89.885 7.332 89.233 7.332 C 88.581 7.332 87.883 7.424 87.199 7.608 C 86.516 7.793 85.9 8.069 85.349 8.436 C 84.798 8.804 84.349 9.265 84.003 9.816 C 83.657 10.369 83.484 11.012 83.484 11.749 C 83.484 12.486 83.683 13.159 84.08 13.712 C 84.478 14.265 84.977 14.76 85.578 15.2 C 86.18 15.639 86.826 16.053 87.52 16.443 C 88.212 16.831 88.859 17.225 89.462 17.624 C 90.062 18.022 90.562 18.457 90.959 18.929 C 91.357 19.401 91.555 19.941 91.555 20.556 C 91.555 20.884 91.474 21.194 91.31 21.49 C 91.145 21.788 90.921 22.043 90.637 22.258 C 90.351 22.472 90.015 22.645 89.628 22.778 C 89.242 22.911 88.812 22.978 88.345 22.978 C 87.672 22.978 87.091 22.84 86.601 22.564 C 86.112 22.288 85.725 21.915 85.439 21.445 C 85.152 20.976 84.979 20.423 84.92 19.788 C 84.858 19.154 84.909 18.479 85.074 17.763 L 84.89 17.671 L 82.963 21.169 C 83.838 21.987 84.777 22.549 85.777 22.855 C 86.776 23.162 87.733 23.316 88.652 23.316 C 89.57 23.316 90.34 23.228 91.084 23.055 C 91.827 22.881 92.474 22.62 93.026 22.273 C 93.577 21.925 94.008 21.501 94.325 20.999 C 94.641 20.498 94.799 19.911 94.799 19.235 C 94.799 18.397 94.6 17.692 94.203 17.118 C 93.805 16.546 93.305 16.044 92.703 15.616\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 107.555 22.703 L 107.401 22.703 L 107.401 23.01 L 113.824 23.01 L 113.824 22.703 L 113.639 22.703 C 113.313 22.703 113.058 22.607 112.875 22.412 C 112.691 22.217 112.599 21.958 112.599 21.63 L 112.599 14.42 C 112.599 13.582 112.548 12.744 112.447 11.904 C 112.345 11.066 112.11 10.313 111.744 9.649 C 111.377 8.984 110.847 8.438 110.153 8.007 C 109.461 7.579 108.521 7.353 107.339 7.332 C 106.523 7.332 105.79 7.461 105.136 7.716 C 104.485 7.971 103.912 8.329 103.423 8.789 C 102.934 9.25 102.521 9.793 102.184 10.416 C 101.847 11.04 101.577 11.711 101.374 12.427 L 101.374 1.35 C 101.374 1.044 101.471 0.793 101.665 0.598 C 101.859 0.403 102.118 0.306 102.445 0.306 L 102.598 0.306 L 102.598 0 L 96.177 0 L 96.177 0.306 L 96.33 0.306 C 96.658 0.306 96.916 0.403 97.11 0.598 C 97.304 0.793 97.401 1.044 97.401 1.35 L 97.401 21.63 C 97.401 21.958 97.304 22.217 97.11 22.412 C 96.916 22.607 96.658 22.703 96.33 22.703 L 96.177 22.703 L 96.177 23.01 L 102.598 23.01 L 102.598 22.703 L 102.445 22.703 C 102.118 22.703 101.859 22.607 101.665 22.412 C 101.471 22.217 101.374 21.958 101.374 21.63 L 101.374 13.991 C 101.496 13.153 101.695 12.39 101.97 11.704 C 102.246 11.021 102.571 10.431 102.949 9.94 C 103.325 9.45 103.739 9.072 104.188 8.804 C 104.636 8.539 105.094 8.406 105.564 8.406 C 106.237 8.406 106.771 8.594 107.168 8.974 C 107.566 9.353 107.871 9.9 108.087 10.616 C 108.3 11.331 108.44 12.206 108.5 13.239 C 108.561 14.272 108.591 15.453 108.591 16.782 L 108.623 21.63 C 108.623 21.958 108.527 22.217 108.333 22.412 C 108.138 22.607 107.88 22.703 107.553 22.703\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path><path d=\"M 142.511 9.006 C 142.267 8.648 141.981 8.346 141.654 8.102 C 141.327 7.855 140.977 7.666 140.599 7.534 C 140.221 7.401 139.849 7.334 139.481 7.334 C 138.768 7.315 138.157 7.411 137.646 7.626 C 137.138 7.84 136.708 8.138 136.362 8.515 C 136.016 8.895 135.736 9.334 135.521 9.835 C 135.306 10.337 135.138 10.873 135.016 11.445 L 135.016 7.671 L 129.205 7.671 L 129.205 7.977 L 129.97 7.977 C 130.297 7.977 130.555 8.074 130.75 8.269 C 130.945 8.464 131.04 8.723 131.04 9.051 L 131.04 19.298 C 130.081 20.32 129.002 21.135 127.799 21.737 C 126.597 22.341 125.281 22.641 123.856 22.641 C 123.142 22.641 122.458 22.468 121.807 22.121 C 121.155 21.773 120.604 21.169 120.155 20.31 C 120.461 19.349 120.884 18.398 121.424 17.457 C 121.965 16.516 122.591 15.622 123.304 14.773 C 124.018 13.925 124.793 13.138 125.629 12.412 C 126.464 11.685 127.321 11.076 128.197 10.586 C 128.013 10.198 127.769 9.808 127.462 9.42 C 127.156 9.032 126.785 8.685 126.347 8.376 C 125.909 8.069 125.409 7.823 124.849 7.641 C 124.287 7.456 123.672 7.364 122.999 7.364 C 121.918 7.364 120.903 7.559 119.957 7.947 C 119.008 8.335 118.184 8.877 117.479 9.574 C 116.776 10.268 116.22 11.098 115.812 12.058 C 115.404 13.02 115.201 14.083 115.201 15.249 C 115.201 16.415 115.404 17.489 115.812 18.471 C 116.22 19.452 116.786 20.307 117.511 21.032 C 118.235 21.758 119.089 22.32 120.079 22.719 C 121.068 23.117 122.142 23.317 123.304 23.317 C 124.772 23.317 126.169 22.991 127.494 22.335 C 128.818 21.681 130.002 20.822 131.04 19.759 C 132.081 18.696 132.961 17.489 133.686 16.139 C 134.41 14.788 134.903 13.43 135.168 12.058 C 135.433 10.832 135.816 9.91 136.315 9.298 C 136.815 8.685 137.411 8.357 138.104 8.316 C 138.471 8.297 138.822 8.378 139.158 8.562 C 139.494 8.747 139.774 9.012 139.999 9.36 C 140.222 9.707 140.359 10.148 140.411 10.68 C 140.462 11.211 140.374 11.824 140.15 12.521 L 140.272 12.613 L 142.993 10.251 C 142.912 9.78 142.748 9.366 142.504 9.008 M 119.94 19.821 C 119.716 19.268 119.536 18.614 119.406 17.858 C 119.273 17.101 119.207 16.231 119.207 15.249 C 119.207 13.818 119.324 12.622 119.557 11.659 C 119.792 10.699 120.102 9.921 120.491 9.328 C 120.878 8.734 121.316 8.309 121.805 8.054 C 122.294 7.799 122.794 7.671 123.303 7.671 C 123.711 7.671 124.061 7.819 124.358 8.117 C 124.653 8.412 124.858 8.822 124.969 9.345 C 125.08 9.865 125.076 10.481 124.954 11.186 C 124.832 11.891 124.546 12.643 124.097 13.44 C 123.2 14.36 122.39 15.367 121.666 16.462 C 120.941 17.555 120.367 18.676 119.937 19.821\" fill=\"var(--token-f83a7767-bf01-4624-97ef-373ddc80b4c5, rgb(225, 220, 208))\"></path></svg>',svgContentId:9844677271,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-he53th\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY7duOV0U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11mhu9n\",\"data-styles-preset\":\"tBy5FN6dd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u05D4\u05E9\u05D0\u05D9\u05E8\u05D5 \u05E4\u05E8\u05D8\u05D9\u05DD\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11mhu9n\",\"data-styles-preset\":\"tBy5FN6dd\",style:{\"--framer-text-color\":\"var(--token-7e4a2d8f-8463-41c3-9983-4dcd01545557, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u05D4\u05E9\u05D0\u05D9\u05E8\u05D5 \u05E4\u05E8\u05D8\u05D9\u05DD\"})}),className:\"framer-1pgwhtb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tdrw8w\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54id9q\",\"data-framer-name\":\"Email\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{\"--framer-text-alignment\":\"right\"},children:\"itsadirasher1@gmail.com\"})}),className:\"framer-s8sxiy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8byiq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JAoI5INd9\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 255, 255)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg id=\"email\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.8 9.80039L13.8 13.0004C13.3 13.4004 12.7 13.6004 12 13.6004C11.4 13.6004 10.8 13.4004 10.2 13.0004L6.2 9.70039C5.9 9.40039 5.8 9.00039 6.1 8.60039C6.4 8.20039 6.8 8.20039 7.2 8.50039L11.2 11.7004C11.7 12.1004 12.4 12.1004 12.8 11.7004L16.8 8.50039C17.1 8.20039 17.6 8.30039 17.9 8.60039C18.2 9.00039 18.1 9.50039 17.8 9.80039ZM16.4 3.40039H7.6C4.7 3.40039 2.5 5.80039 2.5 8.90039V15.1004C2.5 16.7004 3.1 18.2004 4.1 19.2004C5 20.1004 6.2 20.6004 7.6 20.6004H16.4C17.7 20.6004 18.9 20.1004 19.9 19.2004C20.9 18.2004 21.5 16.7004 21.5 15.1004V8.90039C21.5 5.80039 19.3 3.40039 16.4 3.40039Z\" fill=\"#FFFFFF\"></path> </svg>',description:\"\",height:\"100%\",id:\"JAoI5INd9\",layoutId:\"JAoI5INd9\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iz2dix\",\"data-framer-name\":\"Phone\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-be20ke\",\"data-styles-preset\":\"pw6zGppyk\",style:{\"--framer-text-alignment\":\"right\"},children:\"050-8861145\"})}),className:\"framer-1hdtzmd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rbf2zp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JjRr6qo1P\",scopeId:\"kF5h2tZAe\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 255, 255)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg id=\"Call\" width=\"24\" height=\"25\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4974 16.4125C18.8594 13.2125 17.5444 13.4995 16.0984 14.2025C15.0974 14.6885 14.2334 15.1105 11.9874 12.8635C9.74141 10.6165 10.1624 9.75354 10.6484 8.75454C11.3534 7.30754 11.6394 5.98954 8.43641 3.35254C7.67341 2.72754 6.84141 2.48754 5.97541 2.65554C4.14241 2.99854 2.84741 5.03854 2.84941 5.03854C2.03741 6.17454 0.925409 9.59054 8.09241 16.7585C12.8064 21.4735 15.8974 22.6045 17.7734 22.6045C18.7504 22.6045 19.3964 22.2985 19.7704 22.0295C19.7914 22.0175 21.8494 20.7425 22.1964 18.8735C22.3584 18.0045 22.1234 17.1775 21.4974 16.4125Z\" fill=\"#FFFFFF\"></path> </svg>',description:\"\",height:\"100%\",id:\"JjRr6qo1P\",layoutId:\"JjRr6qo1P\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GnWfx.framer-1y4me1b, .framer-GnWfx .framer-1y4me1b { display: block; }\",\".framer-GnWfx.framer-4mnbna { align-content: center; align-items: center; background-color: var(--token-95dafb5e-2aae-4fc1-a145-9498331353b3, #4d696c); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-GnWfx .framer-2ocwns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 200px 40px 100px 40px; position: relative; scroll-margin-top: 200px; width: 100%; }\",\".framer-GnWfx .framer-1luqymf { bottom: -654px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-GnWfx .framer-1szk1g1 { background: radial-gradient(50% 50% at 50% 50%, rgba(224, 219, 206, 0.09) 0%, rgba(8, 8, 7, 0) 100%); border-bottom-left-radius: 10000px; border-bottom-right-radius: 10000px; border-top-left-radius: 10000px; border-top-right-radius: 10000px; bottom: 338px; flex: none; height: 1001px; left: 92px; overflow: hidden; position: absolute; width: 636px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-GnWfx .framer-1cwla5l { background: radial-gradient(50% 50% at 50% 50%, rgba(137, 89, 57, 0.1) 0%, rgba(8, 8, 7, 0) 100%); border-bottom-left-radius: 10000px; border-bottom-right-radius: 10000px; border-top-left-radius: 10000px; border-top-right-radius: 10000px; bottom: 59px; flex: none; height: 1000px; overflow: hidden; position: absolute; right: 0px; width: 800px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-GnWfx .framer-wuijh1 { aspect-ratio: 1.5260115606936415 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 436px); left: -216px; overflow: visible; position: absolute; top: 80px; width: 665px; z-index: 2; }\",\".framer-GnWfx .framer-15qwxih { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-bp3e4s { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-GnWfx .framer-u513gd-container { flex: none; height: 815px; position: relative; width: 491px; }\",\".framer-GnWfx .framer-kxnaki { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-width: 200px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-1x3b9o2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-1duht3p { background-color: rgba(0, 0, 0, 0); flex: none; height: 58px; position: relative; width: 307px; }\",\".framer-GnWfx .framer-128yokx, .framer-GnWfx .framer-1pgwhtb { --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-GnWfx .framer-1u7u6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-b2keam-container, .framer-GnWfx .framer-9wa1ew-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-GnWfx .framer-93xhlu { aspect-ratio: 1.5260115606936415 / 1; bottom: -210px; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 666px); overflow: visible; pointer-events: none; position: absolute; right: -100px; width: 1016px; z-index: 2; }\",\".framer-GnWfx .framer-xcc86y, .framer-GnWfx .framer-aphtt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-1gmjtux { display: grid; flex: 1 0 0px; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1120px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-aw9s8y-container, .framer-GnWfx .framer-2y8sdk-container, .framer-GnWfx .framer-k8uf2h-container, .framer-GnWfx .framer-nelx1o-container, .framer-GnWfx .framer-1qizym4-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-GnWfx .framer-cbuc5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 500px; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-1iywlm6 { aspect-ratio: 1 / 1; bottom: -309px; flex: none; height: var(--framer-aspect-ratio-supported, 376px); left: -170px; overflow: visible; position: absolute; width: 376px; z-index: 1; }\",\".framer-GnWfx .framer-161tcww { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-1hkptx5 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-width: 200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-18du2l6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-1f9vzbf-container, .framer-GnWfx .framer-14wk0ra-container, .framer-GnWfx .framer-1k0dmkb-container, .framer-GnWfx .framer-a7zkt1-container, .framer-GnWfx .framer-ap6le0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GnWfx .framer-1boulcn, .framer-GnWfx .framer-1ohr33a, .framer-GnWfx .framer-dmq8mh, .framer-GnWfx .framer-91f06q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GnWfx .framer-12mvdko { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-1vnm3ej { align-content: center; align-items: center; aspect-ratio: 0.9066666666666666 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 728px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-iyojmy { background-color: #99eeff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-GnWfx .framer-1unq7my-container { bottom: -131px; flex: none; left: -10px; position: absolute; right: -33px; top: -20px; }\",\".framer-GnWfx .framer-mqjhm9 { background-color: var(--token-7097eaad-379a-49d0-a1d4-a89b21707f20, rgba(138, 90, 58, 0.05)); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; bottom: 24px; flex: none; left: -24px; overflow: hidden; position: absolute; right: 24px; top: -24px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-GnWfx .framer-1hwza0t { display: grid; flex: 1 0 0px; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1120px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-ajnzni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-hqlbsw { background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(242, 232, 217, 0.5) 50.42933558558559%, rgba(255, 255, 255, 0) 100%); flex: 1 0 0px; height: 2px; max-width: 1120px; overflow: hidden; position: relative; width: 1px; }\",\".framer-GnWfx .framer-1042j3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-hvnp7p-container { flex: 1 0 0px; height: 146px; max-width: 1120px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-ay34ga { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 251px; justify-content: center; overflow: hidden; padding: 0px 32px 0px 0px; position: relative; width: min-content; }\",\".framer-GnWfx .framer-11c2n1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-GnWfx .framer-1tlm6do, .framer-GnWfx .framer-2qvtgv, .framer-GnWfx .framer-1jzyesh, .framer-GnWfx .framer-qtlh0c { background-color: rgba(0, 0, 0, 0); flex: none; height: 76px; opacity: 0.18; position: relative; width: 402px; }\",\".framer-GnWfx .framer-94svso { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-d81i3l { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 60px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-14acna3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-a7h5mt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-c63aq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-m4gm39, .framer-GnWfx .framer-l0tax2, .framer-GnWfx .framer-7kar4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-83hzu2-container, .framer-GnWfx .framer-1lhl5az-container, .framer-GnWfx .framer-18g098s-container, .framer-GnWfx .framer-1hq9rq3-container, .framer-GnWfx .framer-62nxgw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-GnWfx .framer-euro1n { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; min-width: 200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GnWfx .framer-r5yo44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GnWfx .framer-1llz6ll { background-color: rgba(0, 0, 0, 0); flex: none; height: 27px; position: relative; width: 143px; }\",\".framer-GnWfx .framer-he53th { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GnWfx .framer-tdrw8w { background-color: var(--token-a3ddb855-8c37-4bc7-988a-0c299bdb2214, rgba(255, 255, 255, 0.25)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-GnWfx .framer-54id9q, .framer-GnWfx .framer-iz2dix { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.04); 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: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-GnWfx .framer-s8sxiy, .framer-GnWfx .framer-1hdtzmd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GnWfx .framer-y8byiq-container, .framer-GnWfx .framer-rbf2zp-container { flex: none; height: 24px; position: relative; width: 24px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 1200px) and (max-width: 1599px) { .framer-GnWfx.framer-4mnbna { width: 1200px; } .framer-GnWfx .framer-wuijh1 { left: -259px; top: 301px; } .framer-GnWfx .framer-93xhlu { bottom: -50px; } .framer-GnWfx .framer-1vnm3ej { height: var(--framer-aspect-ratio-supported, 530px); } .framer-GnWfx .framer-s8sxiy { order: 1; } .framer-GnWfx .framer-y8byiq-container { order: 0; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GnWfx.framer-4mnbna { width: 810px; } .framer-GnWfx .framer-2ocwns { min-height: unset; order: 0; } .framer-GnWfx .framer-wuijh1 { height: var(--framer-aspect-ratio-supported, 322px); left: -189px; top: 237px; width: 491px; z-index: 1; } .framer-GnWfx .framer-15qwxih, .framer-GnWfx .framer-161tcww, .framer-GnWfx .framer-m4gm39, .framer-GnWfx .framer-l0tax2, .framer-GnWfx .framer-7kar4p { flex-direction: column; } .framer-GnWfx .framer-bp3e4s { align-self: unset; flex: none; height: 815px; order: 1; width: 100%; } .framer-GnWfx .framer-kxnaki { flex: none; order: 0; padding: 8px 0px 0px 0px; width: 100%; } .framer-GnWfx .framer-1u7u6n { width: 349px; } .framer-GnWfx .framer-93xhlu { bottom: -90px; height: var(--framer-aspect-ratio-supported, 394px); right: -70px; width: 601px; } .framer-GnWfx .framer-xcc86y { order: 1; padding: 64px 32px 64px 32px; } .framer-GnWfx .framer-cbuc5k { order: 2; } .framer-GnWfx .framer-1iywlm6 { bottom: unset; height: var(--framer-aspect-ratio-supported, 383px); left: unset; right: -104px; top: -55px; width: 383px; } .framer-GnWfx .framer-1hkptx5 { flex: none; order: 1; width: 100%; } .framer-GnWfx .framer-12mvdko { flex: none; order: 0; width: 100%; } .framer-GnWfx .framer-1vnm3ej { aspect-ratio: unset; height: min-content; } .framer-GnWfx .framer-iyojmy { flex: none; height: 500px; } .framer-GnWfx .framer-1unq7my-container { bottom: -24px; } .framer-GnWfx .framer-aphtt0 { order: 3; padding: 64px 32px 64px 32px; } .framer-GnWfx .framer-ajnzni { order: 4; padding: 0px 32px 0px 32px; } .framer-GnWfx .framer-1042j3e { order: 5; } .framer-GnWfx .framer-94svso { order: 6; } .framer-GnWfx .framer-14acna3 { height: 100%; order: 1; padding: 0px 24px 0px 24px; } .framer-GnWfx .framer-83hzu2-container, .framer-GnWfx .framer-1lhl5az-container, .framer-GnWfx .framer-18g098s-container, .framer-GnWfx .framer-1hq9rq3-container, .framer-GnWfx .framer-62nxgw-container { flex: none; width: 100%; } .framer-GnWfx .framer-euro1n { order: 0; }}\",\"@media (max-width: 809px) { .framer-GnWfx.framer-4mnbna { width: 390px; } .framer-GnWfx .framer-2ocwns { padding: 120px 20px 80px 20px; } .framer-GnWfx .framer-wuijh1 { height: var(--framer-aspect-ratio-supported, 170px); left: -109px; top: 95px; width: 259px; } .framer-GnWfx .framer-15qwxih { flex-direction: column; gap: 48px; } .framer-GnWfx .framer-bp3e4s { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-GnWfx .framer-u513gd-container { aspect-ratio: 0.601840490797546 / 1; height: var(--framer-aspect-ratio-supported, 621px); width: 350px; } .framer-GnWfx .framer-kxnaki { flex: none; order: 0; padding: 4px 0px 0px 0px; width: 100%; } .framer-GnWfx .framer-1x3b9o2 { align-content: center; align-items: center; } .framer-GnWfx .framer-1duht3p { height: 40px; width: 212px; } .framer-GnWfx .framer-b2keam-container { flex: 1 0 0px; width: 1px; } .framer-GnWfx .framer-93xhlu { bottom: 26px; height: var(--framer-aspect-ratio-supported, 440px); left: -182px; width: unset; z-index: 1; } .framer-GnWfx .framer-xcc86y, .framer-GnWfx .framer-aphtt0, .framer-GnWfx .framer-1042j3e { padding: 40px 20px 40px 20px; } .framer-GnWfx .framer-1gmjtux, .framer-GnWfx .framer-1hwza0t { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-GnWfx .framer-cbuc5k { gap: 20px; min-height: unset; padding: 40px 20px 40px 20px; } .framer-GnWfx .framer-1iywlm6 { bottom: unset; height: var(--framer-aspect-ratio-supported, 281px); left: unset; right: -130px; top: -140px; width: 281px; } .framer-GnWfx .framer-161tcww { gap: 20px; } .framer-GnWfx .framer-1hkptx5 { align-content: center; align-items: center; order: 0; } .framer-GnWfx .framer-12mvdko, .framer-GnWfx .framer-1qizym4-container { order: 1; } .framer-GnWfx .framer-1vnm3ej { height: var(--framer-aspect-ratio-supported, 386px); } .framer-GnWfx .framer-mqjhm9 { bottom: 8px; left: 8px; right: -8px; top: -8px; } .framer-GnWfx .framer-k8uf2h-container { order: 2; } .framer-GnWfx .framer-nelx1o-container { order: 0; } .framer-GnWfx .framer-ajnzni { height: min-content; padding: 40px 20px 40px 20px; } .framer-GnWfx .framer-94svso { gap: 20px; padding: 40px 20px 40px 20px; } .framer-GnWfx .framer-d81i3l { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex-direction: column; gap: 40px; padding: 30px; } .framer-GnWfx .framer-14acna3 { flex: none; order: 1; width: 100%; } .framer-GnWfx .framer-m4gm39, .framer-GnWfx .framer-l0tax2, .framer-GnWfx .framer-7kar4p { flex-direction: column; } .framer-GnWfx .framer-83hzu2-container, .framer-GnWfx .framer-1lhl5az-container, .framer-GnWfx .framer-18g098s-container, .framer-GnWfx .framer-1hq9rq3-container, .framer-GnWfx .framer-62nxgw-container { flex: none; width: 100%; } .framer-GnWfx .framer-euro1n { align-content: center; align-items: center; flex: none; order: 0; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4090.5\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XJYtu58l9\":{\"layout\":[\"fixed\",\"auto\"]},\"J8PfEE7Z8\":{\"layout\":[\"fixed\",\"auto\"]},\"tY7duOV0U\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"IzpLMTEMf\":{\"pattern\":\":IzpLMTEMf\",\"name\":\"hero\"},\"FCYGbdQqn\":{\"pattern\":\":FCYGbdQqn\",\"name\":\"about\"},\"doVgcS0b6\":{\"pattern\":\":doVgcS0b6\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FramerkF5h2tZAe=withCSS(Component,css,\"framer-GnWfx\");export default FramerkF5h2tZAe;FramerkF5h2tZAe.displayName=\"Gua.sha\";FramerkF5h2tZAe.defaultProps={height:4090.5,width:1600};addFonts(FramerkF5h2tZAe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...ButtonsSecondaryFonts,...CardsExperienceFonts,...HeadlineFonts,...MediaCaRdFonts,...TickerFonts,...FormFieldFonts,...URLDataCollectorFonts,...ButtonsSubmitFonts,...SVG1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkF5h2tZAe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"IzpLMTEMf\\\":{\\\"pattern\\\":\\\":IzpLMTEMf\\\",\\\"name\\\":\\\"hero\\\"},\\\"FCYGbdQqn\\\":{\\\"pattern\\\":\\\":FCYGbdQqn\\\",\\\"name\\\":\\\"about\\\"},\\\"doVgcS0b6\\\":{\\\"pattern\\\":\\\":doVgcS0b6\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4090.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XJYtu58l9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J8PfEE7Z8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tY7duOV0U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "MotionDivWithFX", "withFX", "motion", "ButtonsSecondaryFonts", "wmXsrfZbE_default", "CardsExperienceFonts", "Uzp0GGUIY_default", "MotionSectionWithFX", "HeadlineFonts", "CATy9KlQN_default", "MediaCaRdFonts", "wQ0Cw_DUc_default", "TickerFonts", "Ticker", "FormFieldFonts", "bCpkduSmk_default", "URLDataCollectorFonts", "DataInput", "ButtonsSubmitFonts", "bws_XzbBd_default", "SVG1Fonts", "SVG_Prod_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "Image2", "MotionDivWithFX", "ComponentViewportProvider", "Container", "Video", "SVG", "x", "RichText", "ResolveLinks", "resolvedLinks", "wmXsrfZbE_default", "MotionSectionWithFX", "Uzp0GGUIY_default", "CATy9KlQN_default", "wQ0Cw_DUc_default", "Ticker", "Link", "FormContainer", "formState", "l", "bCpkduSmk_default", "DataInput", "bws_XzbBd_default", "SVG_Prod_default", "css", "FramerkF5h2tZAe", "withCSS", "kF5h2tZAe_default", "addFonts", "VideoFonts", "ButtonsSecondaryFonts", "CardsExperienceFonts", "HeadlineFonts", "MediaCaRdFonts", "TickerFonts", "FormFieldFonts", "URLDataCollectorFonts", "ButtonsSubmitFonts", "SVG1Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
