{"version":3,"file":"qVlzQIQ03bYxXClPVI0t5DcxgOgcm31iXOMB6jIAOFU.BphCJQiB.mjs","names":["getProps","props","ObjectFitType","SrcType","fonts","css","className","fonts","css","className","Button2","Image","MEnu","props","Work","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js","https:/framerusercontent.com/modules/qwVS9wdffH1vuhMQsXWJ/ywZsJQbTJWqbSGmnpNNo/BVDWc98rc.js","https:/framerusercontent.com/modules/iuEpY0zD2BbZaMcpLO2i/oNUIvekT2xqaXKwPHG1q/J87mP72kt.js","https:/framerusercontent.com/modules/PeDq4FJmYiJ3ExfjlAno/S9hnwPVWAbYKNY9J8CCj/njtTl6oLh.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}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 “Play”.\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 renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won’t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",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(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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 – if we’re 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??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’s because\n// `startTime` == start == changing it shouldn’t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn’t exist,\n// you might ask? Now, that’s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the “Start Time” in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don’t know, and it\n//   always supported it, so let’s not break it\n(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//     !isStaticRenderer\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??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??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\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!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:isStaticRenderer?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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map","// Generated by Framer (114832d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-B9Iku .framer-styles-preset-1891lfs:not(.rich-text-wrapper), .framer-B9Iku .framer-styles-preset-1891lfs.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1511px) and (min-width: 1024px) { .framer-B9Iku .framer-styles-preset-1891lfs:not(.rich-text-wrapper), .framer-B9Iku .framer-styles-preset-1891lfs.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1023px) and (min-width: 768px) { .framer-B9Iku .framer-styles-preset-1891lfs:not(.rich-text-wrapper), .framer-B9Iku .framer-styles-preset-1891lfs.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 600px) { .framer-B9Iku .framer-styles-preset-1891lfs:not(.rich-text-wrapper), .framer-B9Iku .framer-styles-preset-1891lfs.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-B9Iku .framer-styles-preset-1891lfs:not(.rich-text-wrapper), .framer-B9Iku .framer-styles-preset-1891lfs.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-B9Iku\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (114832d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Work Sans-bold\",\"FS;Work Sans-black\",\"FS;Work Sans-black italic\",\"FS;Work Sans-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FE5DMCVO7676XBZO76R6BBLVYNJTAGNN/ZSUXML62VYR72Y4ABFYVQUJXTHDK7YJ2/LIFXYPK76URT3NB4B4JNO3Y23DJLOWJ3.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QML5C5XZEBR7I3AU3AFZMQXA2F5MRDVL/S3LQ3HBF2JP53OFYRMM4JBQ3YHVPOE62/T34RJ6HRTKSRNRRMEDEU7ZH2PX5BUQ4U.woff2\",weight:\"900\"},{family:\"Work Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZDQYY7WQE6J2LQJEMABD2KCKOU7QQF3/LQCJAHZ2REXSPMWQWMEWUSVCXAUZT7XV/DPGL44GATXXQ37NTDPNF64CE2DG4K37M.woff2\",weight:\"900\"},{family:\"Work Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4IOO6HE2KP5VJDPCI2J2DVDL6ZKR7GOP/UTF7AFH75PMBFZU74BYTKFURR2UL3DCD/LXEOV3VUZC34RH6VVI7IJSPR3H2TTV7E.woff2\",weight:\"700\"}]}];export const css=['.framer-kzJsf .framer-styles-preset-8lhn24:not(.rich-text-wrapper), .framer-kzJsf .framer-styles-preset-8lhn24.rich-text-wrapper p { --framer-font-family: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Work Sans\", sans-serif; --framer-font-family-bold-italic: \"Work Sans\", sans-serif; --framer-font-family-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 122px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1511px) and (min-width: 974px) { .framer-kzJsf .framer-styles-preset-8lhn24:not(.rich-text-wrapper), .framer-kzJsf .framer-styles-preset-8lhn24.rich-text-wrapper p { --framer-font-family: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Work Sans\", sans-serif; --framer-font-family-bold-italic: \"Work Sans\", sans-serif; --framer-font-family-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 92px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 973px) and (min-width: 0px) { .framer-kzJsf .framer-styles-preset-8lhn24:not(.rich-text-wrapper), .framer-kzJsf .framer-styles-preset-8lhn24.rich-text-wrapper p { --framer-font-family: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Work Sans\", sans-serif; --framer-font-family-bold-italic: \"Work Sans\", sans-serif; --framer-font-family-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 45px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-kzJsf\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import MEnu from\"#framer/local/canvasComponent/FQ5LaOgZx/FQ5LaOgZx.js\";import Button2 from\"#framer/local/canvasComponent/g9VHUd0nS/g9VHUd0nS.js\";import Work from\"#framer/local/collection/Xhx2PFrbN/Xhx2PFrbN.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/BVDWc98rc/BVDWc98rc.js\";import*as sharedStyle7 from\"#framer/local/css/EIJSrJUWS/EIJSrJUWS.js\";import*as sharedStyle6 from\"#framer/local/css/G_CuGIND_/G_CuGIND_.js\";import*as sharedStyle from\"#framer/local/css/gOjLDejyR/gOjLDejyR.js\";import*as sharedStyle1 from\"#framer/local/css/J87mP72kt/J87mP72kt.js\";import*as sharedStyle2 from\"#framer/local/css/lkGN_zauX/lkGN_zauX.js\";import*as sharedStyle3 from\"#framer/local/css/UFKtawFni/UFKtawFni.js\";import*as sharedStyle4 from\"#framer/local/css/yUkt8vJem/yUkt8vJem.js\";import*as sharedStyle8 from\"#framer/local/css/zj5JsH6pd/zj5JsH6pd.js\";import metadataProvider from\"#framer/local/webPageMetadata/njtTl6oLh/njtTl6oLh.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const Button2Fonts=getFonts(Button2);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const MEnuFonts=getFonts(MEnu);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const VideoFonts=getFonts(Video);const breakpoints={IbUoqqpd_:\"(min-width: 1512px)\",LzIT9dF6D:\"(min-width: 1024px) and (max-width: 1511px)\",rN3j5g1cc:\"(min-width: 768px) and (max-width: 1023px)\",x7ZlL2OmK:\"(min-width: 600px) and (max-width: 767px)\",xIjao21rP:\"(max-width: 599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8H7FO\";const variantClassNames={IbUoqqpd_:\"framer-v-70o4f9\",LzIT9dF6D:\"framer-v-ze9peb\",rN3j5g1cc:\"framer-v-mr3bch\",x7ZlL2OmK:\"framer-v-jk9ybk\",xIjao21rP:\"framer-v-1ghiar8\"};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160};const transition2={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160};const transition3={damping:60,delay:.5,mass:1,stiffness:360,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:12};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"LzIT9dF6D\",\"Mobile Landscape\":\"x7ZlL2OmK\",\"phone 2\":\"xIjao21rP\",Desktop:\"IbUoqqpd_\",Tablet:\"rN3j5g1cc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IbUoqqpd_\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"njtTl6oLh\",data:Work,type:\"Collection\"},select:[{collection:\"njtTl6oLh\",name:\"dIhd3HSHm\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"CuiMKBAWI\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"OpuXxI2J6\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"Ozb4JFq0T\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"UMopuGV6J\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"bVi7QoMTH\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"rgkJw6D68\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"JpT03BJ6c\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"zQR2efsGx\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"CJy4QgiRB\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"Gcx144iM3\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"O3CYunezB\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"tuxPXdPZj\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"fLwvKqTII\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"BHfqJyQKo\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"mV52JOL0a\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"Z3rQMsIpR\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"pdS4A8cmE\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"MJTjbE6iF\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"chwxNMW41\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"NXPX8DgAQ\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"a_7v4mGqU\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"p29IUYHFC\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"xpXh6eXZR\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"P49_2u1m4\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"DMkYbd2qW\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"oFvd3ZFTg\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"KrrnlCTwy\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"eWiRZdBrS\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"VTjT1yQvY\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"SmYcJAFMM\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"VOyr7pn6I\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"VFUTiLN1B\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"QDcvEd0Bo\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"pQSu7K2e2\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"Dxa5FLnEj\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"nWygZzoBo\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"h61sytAyw\",type:\"Identifier\"},{collection:\"njtTl6oLh\",name:\"hbynXTf9L\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"njtTl6oLh\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,bVi7QoMTH=getFromCurrentRouteData(\"bVi7QoMTH\")??\"\",dIhd3HSHm=getFromCurrentRouteData(\"dIhd3HSHm\")??\"\",UMopuGV6J=getFromCurrentRouteData(\"UMopuGV6J\")??\"\",rgkJw6D68=getFromCurrentRouteData(\"rgkJw6D68\")??\"\",JpT03BJ6c=getFromCurrentRouteData(\"JpT03BJ6c\")??\"\",zQR2efsGx=getFromCurrentRouteData(\"zQR2efsGx\")??\"\",CJy4QgiRB=getFromCurrentRouteData(\"CJy4QgiRB\")??\"\",Gcx144iM3=getFromCurrentRouteData(\"Gcx144iM3\")??\"\",CuiMKBAWI=getFromCurrentRouteData(\"CuiMKBAWI\")??\"\",OpuXxI2J6=getFromCurrentRouteData(\"OpuXxI2J6\")??\"\",pQSu7K2e2=getFromCurrentRouteData(\"pQSu7K2e2\")??\"\",Ozb4JFq0T=getFromCurrentRouteData(\"Ozb4JFq0T\"),tuxPXdPZj=getFromCurrentRouteData(\"tuxPXdPZj\")??\"\",O3CYunezB=getFromCurrentRouteData(\"O3CYunezB\"),fLwvKqTII=getFromCurrentRouteData(\"fLwvKqTII\")??\"\",BHfqJyQKo=getFromCurrentRouteData(\"BHfqJyQKo\")??\"\",mV52JOL0a=getFromCurrentRouteData(\"mV52JOL0a\"),Z3rQMsIpR=getFromCurrentRouteData(\"Z3rQMsIpR\"),pdS4A8cmE=getFromCurrentRouteData(\"pdS4A8cmE\"),MJTjbE6iF=getFromCurrentRouteData(\"MJTjbE6iF\"),chwxNMW41=getFromCurrentRouteData(\"chwxNMW41\"),NXPX8DgAQ=getFromCurrentRouteData(\"NXPX8DgAQ\"),VTjT1yQvY=getFromCurrentRouteData(\"VTjT1yQvY\"),SmYcJAFMM=getFromCurrentRouteData(\"SmYcJAFMM\"),VOyr7pn6I=getFromCurrentRouteData(\"VOyr7pn6I\"),h61sytAyw=getFromCurrentRouteData(\"h61sytAyw\"),Dxa5FLnEj=getFromCurrentRouteData(\"Dxa5FLnEj\"),nWygZzoBo=getFromCurrentRouteData(\"nWygZzoBo\"),hbynXTf9L=getFromCurrentRouteData(\"hbynXTf9L\"),xpXh6eXZR=getFromCurrentRouteData(\"xpXh6eXZR\"),p29IUYHFC=getFromCurrentRouteData(\"p29IUYHFC\"),QDcvEd0Bo=getFromCurrentRouteData(\"QDcvEd0Bo\"),VFUTiLN1B=getFromCurrentRouteData(\"VFUTiLN1B\"),a_7v4mGqU=getFromCurrentRouteData(\"a_7v4mGqU\"),P49_2u1m4=getFromCurrentRouteData(\"P49_2u1m4\"),DMkYbd2qW=getFromCurrentRouteData(\"DMkYbd2qW\"),oFvd3ZFTg=getFromCurrentRouteData(\"oFvd3ZFTg\"),KrrnlCTwy=getFromCurrentRouteData(\"KrrnlCTwy\"),eWiRZdBrS=getFromCurrentRouteData(\"eWiRZdBrS\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(pQSu7K2e2);const isDisplayed=value=>{if(!isBrowser())return true;if(baseVariant===\"xIjao21rP\")return false;return value;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xIjao21rP\")return false;return true;};const visible1=isSet(MJTjbE6iF);const visible2=isSet(chwxNMW41);const visible3=isSet(NXPX8DgAQ);const visible4=isSet(VTjT1yQvY);const visible5=isSet(SmYcJAFMM);const visible6=isSet(VOyr7pn6I);const visible7=isSet(h61sytAyw);const visible8=isSet(nWygZzoBo);const visible9=isSet(hbynXTf9L);const visible10=isSet(QDcvEd0Bo);const visible11=isSet(a_7v4mGqU);const visible12=isSet(P49_2u1m4);const visible13=isSet(eWiRZdBrS);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"rN3j5g1cc\",\"xIjao21rP\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"rN3j5g1cc\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"xIjao21rP\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IbUoqqpd_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-70o4f9\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8besa\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qjxoze\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o6s3hy\",\"data-framer-name\":\"Headline\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ct4khx\",\"data-styles-preset\":\"gOjLDejyR\",children:\"March 2024\"})}),className:\"framer-16gncn8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:bVi7QoMTH,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1boo37q\",\"data-framer-appear-id\":\"1boo37q\",\"data-framer-name\":\"Text\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rN3j5g1cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\"},children:\"Monoloom\"})}),fonts:[\"FS;Work Sans-bold\"]},x7ZlL2OmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\"},children:\"Monoloom\"})}),fonts:[\"FS;Work Sans-bold\"]},xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\"},children:\"Monoloom\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8lhn24\",\"data-styles-preset\":\"J87mP72kt\",children:\"DESIGN STUDIO\"})}),className:\"framer-1lpodpe\",fonts:[\"Inter\"],text:dIhd3HSHm,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-6b2bfe\",\"data-framer-appear-id\":\"6b2bfe\",\"data-framer-name\":\"Description\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1op7lu7\",\"data-styles-preset\":\"lkGN_zauX\",children:\"Lumora helped Monoloom create a brand for Gen Z, focused on delivering high-quality, standout streetwear at an affordable price in India. The challenge was making it bold and distinct.\"})}),className:\"framer-1uaegst\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:UMopuGV6J,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1fwkpr9\",\"data-framer-appear-id\":\"1fwkpr9\",\"data-framer-name\":\"Info\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fnuy5n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fcolmj\",\"data-framer-name\":\"Role\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"CLIENT\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mjddad\",\"data-styles-preset\":\"UFKtawFni\",children:\"CLIENT\"})}),className:\"framer-1fohg9x\",\"data-framer-name\":\"Role:\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"Siddharth Nair\"})}),className:\"framer-zcjxrq\",\"data-framer-name\":\"UI/UX Designer\",fonts:[\"Inter\"],text:rgkJw6D68,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h626lm\",\"data-framer-name\":\"Breaker\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"59.0001\" x2=\"0.499997\" y2=\"0.000122092\" stroke=\"#DDDDDD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hkqfuo\",\"data-framer-name\":\"Service\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kv33l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"SERVICE\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mjddad\",\"data-styles-preset\":\"UFKtawFni\",children:\"SERVICE\"})}),className:\"framer-xuozir\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b059hv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"Brand Identity\"})}),className:\"framer-1p6fzb7\",\"data-framer-name\":\"Service 1\",fonts:[\"Inter\"],text:JpT03BJ6c,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"Brand Collateral\"})}),className:\"framer-lbudbx\",\"data-framer-name\":\"Service 3\",fonts:[\"Inter\"],text:zQR2efsGx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"Social Media\"})}),className:\"framer-tr9wth\",\"data-framer-name\":\"Service 2\",fonts:[\"Inter\"],text:CJy4QgiRB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-98b0e3d4-a49c-42d6-9030-6ba747112ebc, rgb(0, 0, 0))\"},children:\"UI/UX Designer\"})}),className:\"framer-d53inc\",\"data-framer-name\":\"Service 4\",fonts:[\"GF;DM Sans-500\"],text:Gcx144iM3,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xxdncs\",\"data-framer-name\":\"Breaker\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"59.0001\" x2=\"0.499997\" y2=\"0.000122092\" stroke=\"#DDDDDD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wcdyj\",\"data-framer-name\":\"Industry\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"INDUSTRY\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mjddad\",\"data-styles-preset\":\"UFKtawFni\",children:\"INDUSTRY\"})}),className:\"framer-kkeacb\",\"data-framer-name\":\"Industry:\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"Clothing\"})}),className:\"framer-bn0g4j\",\"data-framer-name\":\"Health & Fitness\",fonts:[\"Inter\"],text:CuiMKBAWI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-189foco\",\"data-framer-name\":\"Breaker\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"59.0001\" x2=\"0.499997\" y2=\"0.000122092\" stroke=\"#DDDDDD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-37cfln\",\"data-framer-name\":\"Duration\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"DURATION\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mjddad\",\"data-styles-preset\":\"UFKtawFni\",children:\"DURATION\"})}),className:\"framer-l5qqlh\",\"data-framer-name\":\"Duration:\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-127z78q\",\"data-styles-preset\":\"yUkt8vJem\",children:\"5 Weeks\"})}),className:\"framer-12cdhg3\",\"data-framer-name\":\"16 weeks\",fonts:[\"Inter\"],text:OpuXxI2J6,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed(visible)&&/*#__PURE__*/_jsx(SVG,{className:cx(\"framer-2vbzcj\",\"hidden-1ghiar8\",!visible&&\"hidden-70o4f9\",!visible&&\"hidden-ze9peb\",!visible&&\"hidden-mr3bch\",!visible&&\"hidden-jk9ybk\"),\"data-framer-name\":\"Breaker\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"61\" viewBox=\"-1 -1 3 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"59.0001\" x2=\"0.499997\" y2=\"0.000122092\" stroke=\"#DDDDDD\"/>\\n</svg>\\n',withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-g0c3xm\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:pQSu7K2e2,implicitPathVariables:undefined},{href:pQSu7K2e2,implicitPathVariables:undefined},{href:pQSu7K2e2,implicitPathVariables:undefined},{href:pQSu7K2e2,implicitPathVariables:undefined},{href:pQSu7K2e2,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{height:30,y:(componentViewport?.y||0)+0+161+0+255+10+0},rN3j5g1cc:{y:(componentViewport?.y||0)+0+191+0+248+10+0},x7ZlL2OmK:{y:(componentViewport?.y||0)+0+95+0+229+10+0},xIjao21rP:{y:(componentViewport?.y||0)+0+139+0+196+10+155+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+196+0+287+10+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f8o8xk-container\",nodeId:\"LQpvwBLzM\",rendersWithMotion:true,scopeId:\"njtTl6oLh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{IxBPf3dKS:resolvedLinks[1],variant:\"SGgQ42Za_\"},rN3j5g1cc:{IxBPf3dKS:resolvedLinks[2],variant:\"SGgQ42Za_\"},x7ZlL2OmK:{IxBPf3dKS:resolvedLinks[3],variant:\"KCbc8bP2O\"},xIjao21rP:{IxBPf3dKS:resolvedLinks[4],variant:\"KCbc8bP2O\"}},children:/*#__PURE__*/_jsx(Button2,{Eyq3ZwfYq:\"View Site\",F96b9S4NI:false,height:\"100%\",id:\"LQpvwBLzM\",IxBPf3dKS:resolvedLinks[0],layoutId:\"LQpvwBLzM\",Q7JyvRfd6:true,style:{height:\"100%\"},uErOa7o4Q:false,variant:\"BaqKcj8Mi\",vOBikIB4L:false,width:\"100%\",XiuHxhXfL:addImageAlt({pixelHeight:65,pixelWidth:64,src:\"https://framerusercontent.com/images/xZRxBSvhu9Ukiuv37om0l4Rss.png\"},\"\")})})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+19.6691),pixelHeight:575,pixelWidth:751,sizes:\"27px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42),pixelHeight:575,pixelWidth:751,sizes:\"11px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:303}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42),pixelHeight:575,pixelWidth:751,sizes:\"17px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42),pixelHeight:575,pixelWidth:751,sizes:\"35px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-gbba2h\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:166},transformTemplate:transformTemplate1})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+45.9073),pixelHeight:575,pixelWidth:751,sizes:\"30px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:-61}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48.1266),pixelHeight:575,pixelWidth:751,sizes:\"21px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:120}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+4.1784),pixelHeight:575,pixelWidth:751,sizes:\"19px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:4}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40.529),pixelHeight:575,pixelWidth:751,sizes:\"35px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-muoaod hidden-1ghiar8\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:129},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+18.7268),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12.4899),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+14.6859),pixelHeight:972,pixelWidth:1038,sizes:\"10px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-1.7259),pixelHeight:972,pixelWidth:1038,sizes:\"12px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},style:{rotate:374}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+23.5065),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-gxte4d\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:278}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+36.6987),pixelHeight:575,pixelWidth:751,sizes:\"27px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25.4746),pixelHeight:575,pixelWidth:751,sizes:\"27px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32.5377),pixelHeight:575,pixelWidth:751,sizes:\"13px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:360}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40.6778),pixelHeight:575,pixelWidth:751,sizes:\"13px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+45.3004),pixelHeight:575,pixelWidth:751,sizes:\"27px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-xa3v4o\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:151},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+69.7776),pixelHeight:899,pixelWidth:742,sizes:\"15px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:140}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88.2),pixelHeight:899,pixelWidth:742,sizes:\"16px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:132}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60.4021),pixelHeight:899,pixelWidth:742,sizes:\"15px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40.9145),pixelHeight:899,pixelWidth:742,sizes:\"10px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:-15}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+87.2878),pixelHeight:899,pixelWidth:742,sizes:\"26px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1jtyadi\",style:{rotate:49}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+29.037),pixelHeight:899,pixelWidth:742,sizes:\"15px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10.9916),pixelHeight:899,pixelWidth:742,sizes:\"23px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15.1881),pixelHeight:899,pixelWidth:742,sizes:\"23px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+14.5663),pixelHeight:899,pixelWidth:742,sizes:\"13px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:225}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+22.5431),pixelHeight:899,pixelWidth:742,sizes:\"23px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1t32xf7\",style:{rotate:145}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+128.8501),pixelHeight:899,pixelWidth:742,sizes:\"17px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:130}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55.2413),pixelHeight:899,pixelWidth:742,sizes:\"17px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+.8417),pixelHeight:899,pixelWidth:742,sizes:\"14px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:239}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+62.78),pixelHeight:899,pixelWidth:742,sizes:\"9px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+153.9727),pixelHeight:899,pixelWidth:742,sizes:\"17px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1tk0svs\",style:{rotate:49}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+26.9629),pixelHeight:972,pixelWidth:1038,sizes:\"23px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12.0818),pixelHeight:972,pixelWidth:1038,sizes:\"11px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34.8719),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+21.5491),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+44.4458),pixelHeight:972,pixelWidth:1038,sizes:\"32px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-1h6fa78\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:278}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+101.907),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+76.9596),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+94.6179),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32.3635),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+121.0259),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-17jml28\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:375}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+27.2206),pixelHeight:899,pixelWidth:742,sizes:\"12px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+19.3205),pixelHeight:899,pixelWidth:742,sizes:\"12px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24.9123),pixelHeight:899,pixelWidth:742,sizes:\"12px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+15.3091),pixelHeight:899,pixelWidth:742,sizes:\"12px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+33.2749),pixelHeight:899,pixelWidth:742,sizes:\"12px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1i73vfe\",style:{rotate:148}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+85.0924),pixelHeight:972,pixelWidth:1038,sizes:\"15px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7.7804),pixelHeight:972,pixelWidth:1038,sizes:\"21px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},style:{rotate:350}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+11.1834),pixelHeight:972,pixelWidth:1038,sizes:\"11px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+2.6657),pixelHeight:972,pixelWidth:1038,sizes:\"13px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+103.6009),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-16kdxoe\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:278}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+17.2777),pixelHeight:899,pixelWidth:742,sizes:\"20px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+13.4629),pixelHeight:899,pixelWidth:742,sizes:\"14px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:231}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12.0176),pixelHeight:899,pixelWidth:742,sizes:\"11px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30.4669),pixelHeight:899,pixelWidth:742,sizes:\"7px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},style:{rotate:420}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25.8755),pixelHeight:899,pixelWidth:742,sizes:\"32px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1buadz9\",style:{rotate:148}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+59.1665),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+57.27),pixelHeight:972,pixelWidth:1038,sizes:\"19px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},style:{rotate:137}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+28.5327),pixelHeight:972,pixelWidth:1038,sizes:\"8px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7.9789),pixelHeight:972,pixelWidth:1038,sizes:\"12px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+128.0153),pixelHeight:972,pixelWidth:1038,sizes:\"16px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-10vdndz\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:185}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x7ZlL2OmK:{y:15},xIjao21rP:{y:20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3hqsr1-container\",\"data-framer-name\":\"Menu\",layoutScroll:true,name:\"Menu\",nodeId:\"nycnDMnUX\",scopeId:\"njtTl6oLh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rN3j5g1cc:{variant:\"hDnscfORv\"},x7ZlL2OmK:{variant:\"hDnscfORv\"},xIjao21rP:{variant:\"gYlMP_g1P\"}},children:/*#__PURE__*/_jsx(MEnu,{height:\"100%\",id:\"nycnDMnUX\",layoutId:\"nycnDMnUX\",name:\"Menu\",variant:\"zCcvysgo1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jlz2t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+651.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Ozb4JFq0T)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+694.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Ozb4JFq0T)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+559.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Ozb4JFq0T)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+580+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Ozb4JFq0T)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+718.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Ozb4JFq0T)},className:\"framer-hege6\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10gt6rb\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19agxjq\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsx(\"aside\",{className:\"framer-9yotzi\",\"data-framer-name\":\"Sidebar\",children:/*#__PURE__*/_jsxs(MotionHeaderWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1ydfeei\",\"data-framer-appear-id\":\"1ydfeei\",\"data-framer-name\":\"Header\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kfz4wa\",\"data-framer-name\":\"Shape\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 15.471 0 C 15.803 0 16.071 0.269 16.071 0.6 L 16.071 6.401 C 16.071 7.061 16.981 7.237 17.228 6.626 L 19.401 1.247 C 19.46 1.1 19.576 0.982 19.723 0.92 C 19.869 0.858 20.034 0.856 20.182 0.916 L 21.056 1.269 C 21.363 1.393 21.512 1.743 21.388 2.05 L 19.071 7.784 C 18.826 8.39 19.589 8.895 20.052 8.433 L 24.425 4.06 C 24.537 3.948 24.69 3.884 24.849 3.884 C 25.008 3.884 25.161 3.948 25.273 4.06 L 25.94 4.727 C 26.174 4.961 26.174 5.341 25.94 5.575 L 22.013 9.503 C 21.544 9.971 22.07 10.742 22.677 10.477 L 27.767 8.253 C 28.07 8.12 28.424 8.259 28.557 8.562 L 28.934 9.426 C 28.998 9.572 29.001 9.737 28.943 9.886 C 28.885 10.034 28.77 10.153 28.625 10.216 L 22.76 12.779 C 22.164 13.039 22.35 13.929 23 13.929 L 29.4 13.929 C 29.731 13.929 30 14.197 30 14.529 L 30 15.471 C 30 15.803 29.731 16.071 29.4 16.071 L 23 16.071 C 22.35 16.071 22.164 16.961 22.76 17.221 L 28.625 19.784 C 28.928 19.916 29.067 20.27 28.934 20.573 L 28.557 21.437 C 28.493 21.583 28.374 21.698 28.226 21.756 C 28.077 21.814 27.912 21.811 27.767 21.747 L 22.677 19.524 C 22.07 19.258 21.544 20.029 22.013 20.498 L 25.94 24.425 C 26.052 24.537 26.116 24.69 26.116 24.849 C 26.116 25.008 26.052 25.161 25.94 25.273 L 25.273 25.94 C 25.161 26.052 25.008 26.116 24.849 26.116 C 24.69 26.116 24.537 26.052 24.425 25.94 L 20.052 21.567 C 19.589 21.105 18.826 21.61 19.071 22.216 L 21.388 27.95 C 21.512 28.257 21.363 28.607 21.056 28.731 L 20.182 29.084 C 19.875 29.209 19.525 29.06 19.401 28.753 L 17.228 23.374 C 16.981 22.763 16.071 22.939 16.071 23.599 L 16.071 29.4 C 16.071 29.731 15.803 30 15.471 30 L 14.529 30 C 14.197 30 13.929 29.731 13.929 29.4 L 13.929 23.599 C 13.929 22.939 13.019 22.763 12.772 23.374 L 10.599 28.753 C 10.54 28.9 10.424 29.018 10.277 29.08 C 10.131 29.143 9.966 29.144 9.818 29.084 L 8.944 28.731 C 8.637 28.607 8.488 28.257 8.612 27.95 L 10.929 22.216 C 11.174 21.61 10.411 21.105 9.948 21.567 L 5.576 25.94 C 5.463 26.052 5.31 26.116 5.151 26.116 C 4.992 26.116 4.839 26.052 4.727 25.94 L 4.06 25.273 C 3.948 25.161 3.884 25.008 3.884 24.849 C 3.884 24.69 3.948 24.537 4.06 24.425 L 7.987 20.497 C 8.456 20.029 7.93 19.258 7.323 19.524 L 2.233 21.747 C 2.088 21.811 1.923 21.814 1.774 21.756 C 1.626 21.698 1.507 21.583 1.443 21.437 L 1.066 20.573 C 1.002 20.428 0.999 20.262 1.057 20.114 C 1.115 19.966 1.23 19.847 1.376 19.784 L 7.24 17.221 C 7.836 16.961 7.65 16.071 7 16.071 L 0.6 16.071 C 0.269 16.071 0 15.803 0 15.471 L 0 14.529 C 0 14.197 0.269 13.929 0.6 13.929 L 7 13.929 C 7.65 13.929 7.836 13.039 7.24 12.779 L 1.375 10.216 C 1.23 10.153 1.115 10.034 1.057 9.886 C 0.999 9.737 1.002 9.572 1.066 9.426 L 1.443 8.562 C 1.576 8.259 1.93 8.12 2.233 8.253 L 7.323 10.476 C 7.93 10.742 8.456 9.971 7.987 9.502 L 4.06 5.576 C 3.948 5.463 3.884 5.31 3.884 5.151 C 3.884 4.992 3.948 4.839 4.06 4.727 L 4.727 4.06 C 4.839 3.948 4.992 3.884 5.151 3.884 C 5.31 3.884 5.463 3.948 5.575 4.06 L 9.948 8.433 C 10.411 8.896 11.174 8.39 10.929 7.784 L 8.612 2.05 C 8.488 1.743 8.637 1.393 8.944 1.269 L 9.818 0.916 C 10.125 0.791 10.475 0.94 10.599 1.247 L 12.772 6.626 C 13.019 7.237 13.929 7.061 13.929 6.401 L 13.929 0.6 C 13.929 0.269 14.197 0 14.529 0 Z M 15 21.429 C 18.55 21.429 21.429 18.55 21.429 15 C 21.429 11.45 18.55 8.571 15 8.571 C 11.45 8.571 8.571 11.45 8.571 15 C 8.571 18.55 11.45 21.429 15 21.429 Z\" fill=\"#333333\"></path></svg>',svgContentId:11989244570,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8lhn24\",\"data-styles-preset\":\"J87mP72kt\",style:{\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"About\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8lhn24\",\"data-styles-preset\":\"J87mP72kt\",style:{\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"Brand\"})]}),className:\"framer-jm7eal\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"vol6S0v5d\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tuxPXdPZj,className:\"framer-xzhb74\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-q2dp6j\",img:\"framer-styles-preset-zcippk\",p:\"framer-styles-preset-1891lfs\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hf0o3k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1651.8+150+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 120px) / 2, 1px)`,...toResponsiveImage(O3CYunezB)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1094.8+50+0+0+0+0),...toResponsiveImage(O3CYunezB)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1559.8+0+0+70+0+0),...toResponsiveImage(O3CYunezB)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+853+0+0+0+455.6+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(O3CYunezB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1718.8+150+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 911px, 1px)`,...toResponsiveImage(O3CYunezB)},className:\"framer-wjiehn\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-q48kp9\",\"data-framer-name\":\"Text Area\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvou68\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1v6vz\",\"data-framer-name\":\"Subtitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Challenge & Research\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Challenge & Research\"})}),className:\"framer-1invrnd\",\"data-framer-name\":\"Text\",fonts:[\"FS;Work Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yf89at\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our challenge is to create a brand that balances quality and affordability while inspiring self-expression. We aim to build a cohesive, culturally relevant identity that resonates deeply, fosters loyalty, and empowers individuals to confidently showcase their unique selves.\"})})},rN3j5g1cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our challenge is to create a brand that balances quality and affordability while inspiring self-expression. We aim to build a cohesive, culturally relevant identity that resonates deeply, fosters loyalty, and empowers individuals to confidently showcase their unique selves.\"})})},x7ZlL2OmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",children:\"Our challenge is to create a brand that balances quality and affordability while inspiring self-expression. We aim to build a cohesive, culturally relevant identity that resonates deeply, fosters loyalty, and empowers individuals to confidently showcase their unique selves.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n3eb30\",\"data-styles-preset\":\"zj5JsH6pd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Research is the cornerstone of innovation and progress, involving the systematic investigation of questions, problems, or phenomena to uncover new knowledge or insights. It enables us to validate theories, develop solutions, and deepen our understanding of the world.\"})}),className:\"framer-1s3z7jt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:fLwvKqTII,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v52ho5\",\"data-framer-name\":\"Seperator\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3o4gwy\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-36vgme\",\"data-framer-name\":\"Subtitle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Solution & Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-transform\":\"uppercase\"},children:\"Solution & Design\"})}),className:\"framer-bnda1b\",\"data-framer-name\":\"Text\",fonts:[\"FS;Work Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14q4jax\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Brutalist design's bold and impactful visuals can reflect the growing awareness and confidence of young Indian consumers. It conveys a solid and independent brand voice. The raw and unpolished nature of brutalist design complements the brand's streetwear aesthetic. It reinforces the idea of individuality and self-expression often associated with street style. Brutalist design's emphasis on functionality and clean lines can subtly convey the message of quality and well-made clothing Monoloom offers.\"})})},rN3j5g1cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Brutalist design's bold and impactful visuals can reflect the growing awareness and confidence of young Indian consumers. It conveys a solid and independent brand voice. The raw and unpolished nature of brutalist design complements the brand's streetwear aesthetic. It reinforces the idea of individuality and self-expression often associated with street style. Brutalist design's emphasis on functionality and clean lines can subtly convey the message of quality and well-made clothing Monoloom offers.\"})})},x7ZlL2OmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1891lfs\",\"data-styles-preset\":\"BVDWc98rc\",style:{\"--framer-text-alignment\":\"left\"},children:\"Brutalist design's bold and impactful visuals can reflect the growing awareness and confidence of young Indian consumers. It conveys a solid and independent brand voice. The raw and unpolished nature of brutalist design complements the brand's streetwear aesthetic. It reinforces the idea of individuality and self-expression often associated with street style. Brutalist design's emphasis on functionality and clean lines can subtly convey the message of quality and well-made clothing Monoloom offers.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n3eb30\",\"data-styles-preset\":\"zj5JsH6pd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Research is the cornerstone of innovation and progress, involving the systematic investigation of questions, problems, or phenomena to uncover new knowledge or insights. It enables us to validate theories, develop solutions, and deepen our understanding of the world.\"})}),className:\"framer-1qhf2ht\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:BHfqJyQKo,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nw1one\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2770.8+50+0),pixelHeight:1224,pixelWidth:1380,sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(mV52JOL0a),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2033.4+0+0),pixelHeight:1224,pixelWidth:1380,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(mV52JOL0a),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2578.4+50+0),pixelHeight:1224,pixelWidth:1380,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(mV52JOL0a),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2234.6+0+0),pixelHeight:1224,pixelWidth:1380,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(mV52JOL0a),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2960.8+100+0),pixelHeight:1224,pixelWidth:1380,sizes:\"1312px\",...toResponsiveImage(mV52JOL0a),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-2a7m4\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0a53f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3770.8+75),pixelHeight:1136,pixelWidth:2168,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Z3rQMsIpR),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2785.4+150),pixelHeight:1136,pixelWidth:2168,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Z3rQMsIpR)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3231.4+100),pixelHeight:1136,pixelWidth:2168,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Z3rQMsIpR),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2592.6+50+0),pixelHeight:1136,pixelWidth:2168,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Z3rQMsIpR),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3663.8+150),pixelHeight:1136,pixelWidth:2168,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Z3rQMsIpR)},className:\"framer-11y0dcd\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brwih\",\"data-framer-name\":\"Logo Analyzer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4770.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(pdS4A8cmE),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3358.4+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(pdS4A8cmE),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3746.4+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(pdS4A8cmE)}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2909.6+0+-1.1706),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(pdS4A8cmE),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4813.8+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(pdS4A8cmE)},className:\"framer-9rkcgu\"})})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d3018f\",\"data-framer-name\":\"The Primary Logo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6pguxc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x7ZlL2OmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"The Primary Logo\"})})},xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"The Primary Logo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"The Primary Logo\"})}),className:\"framer-1lx8mrd\",fonts:[\"FS;Work Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xtv8zb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9120.05+100+114.8+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(MJTjbE6iF)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3924.1407+100+114.8+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(MJTjbE6iF)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4746.4+100+85+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(MJTjbE6iF)}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3255.6+100+81.5+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(MJTjbE6iF),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5813.8+100+114.8+0+0),sizes:\"1170px\",...toResponsiveImage(MJTjbE6iF)},className:\"framer-a1avll\"})})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10pj2he\",\"data-framer-name\":\"Secondary Logo\",children:[visible3&&/*#__PURE__*/_jsx(\"aside\",{className:\"framer-1r4bbzm\",\"data-framer-name\":\"Logo Mark Title\",children:/*#__PURE__*/_jsxs(MotionHeaderWithOptimizedAppearEffect,{animate:animation8,className:\"framer-11hgpn1\",\"data-framer-appear-id\":\"11hgpn1\",\"data-framer-name\":\"Header\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u0rnny\",\"data-framer-name\":\"Shape\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 15.471 0 C 15.803 0 16.071 0.269 16.071 0.6 L 16.071 6.401 C 16.071 7.061 16.981 7.237 17.228 6.626 L 19.401 1.247 C 19.46 1.1 19.576 0.982 19.723 0.92 C 19.869 0.858 20.034 0.856 20.182 0.916 L 21.056 1.269 C 21.363 1.393 21.512 1.743 21.388 2.05 L 19.071 7.784 C 18.826 8.39 19.589 8.895 20.052 8.433 L 24.425 4.06 C 24.537 3.948 24.69 3.884 24.849 3.884 C 25.008 3.884 25.161 3.948 25.273 4.06 L 25.94 4.727 C 26.174 4.961 26.174 5.341 25.94 5.575 L 22.013 9.503 C 21.544 9.971 22.07 10.742 22.677 10.477 L 27.767 8.253 C 28.07 8.12 28.424 8.259 28.557 8.562 L 28.934 9.426 C 28.998 9.572 29.001 9.737 28.943 9.886 C 28.885 10.034 28.77 10.153 28.625 10.216 L 22.76 12.779 C 22.164 13.039 22.35 13.929 23 13.929 L 29.4 13.929 C 29.731 13.929 30 14.197 30 14.529 L 30 15.471 C 30 15.803 29.731 16.071 29.4 16.071 L 23 16.071 C 22.35 16.071 22.164 16.961 22.76 17.221 L 28.625 19.784 C 28.928 19.916 29.067 20.27 28.934 20.573 L 28.557 21.437 C 28.493 21.583 28.374 21.698 28.226 21.756 C 28.077 21.814 27.912 21.811 27.767 21.747 L 22.677 19.524 C 22.07 19.258 21.544 20.029 22.013 20.498 L 25.94 24.425 C 26.052 24.537 26.116 24.69 26.116 24.849 C 26.116 25.008 26.052 25.161 25.94 25.273 L 25.273 25.94 C 25.161 26.052 25.008 26.116 24.849 26.116 C 24.69 26.116 24.537 26.052 24.425 25.94 L 20.052 21.567 C 19.589 21.105 18.826 21.61 19.071 22.216 L 21.388 27.95 C 21.512 28.257 21.363 28.607 21.056 28.731 L 20.182 29.084 C 19.875 29.209 19.525 29.06 19.401 28.753 L 17.228 23.374 C 16.981 22.763 16.071 22.939 16.071 23.599 L 16.071 29.4 C 16.071 29.731 15.803 30 15.471 30 L 14.529 30 C 14.197 30 13.929 29.731 13.929 29.4 L 13.929 23.599 C 13.929 22.939 13.019 22.763 12.772 23.374 L 10.599 28.753 C 10.54 28.9 10.424 29.018 10.277 29.08 C 10.131 29.143 9.966 29.144 9.818 29.084 L 8.944 28.731 C 8.637 28.607 8.488 28.257 8.612 27.95 L 10.929 22.216 C 11.174 21.61 10.411 21.105 9.948 21.567 L 5.576 25.94 C 5.463 26.052 5.31 26.116 5.151 26.116 C 4.992 26.116 4.839 26.052 4.727 25.94 L 4.06 25.273 C 3.948 25.161 3.884 25.008 3.884 24.849 C 3.884 24.69 3.948 24.537 4.06 24.425 L 7.987 20.497 C 8.456 20.029 7.93 19.258 7.323 19.524 L 2.233 21.747 C 2.088 21.811 1.923 21.814 1.774 21.756 C 1.626 21.698 1.507 21.583 1.443 21.437 L 1.066 20.573 C 1.002 20.428 0.999 20.262 1.057 20.114 C 1.115 19.966 1.23 19.847 1.376 19.784 L 7.24 17.221 C 7.836 16.961 7.65 16.071 7 16.071 L 0.6 16.071 C 0.269 16.071 0 15.803 0 15.471 L 0 14.529 C 0 14.197 0.269 13.929 0.6 13.929 L 7 13.929 C 7.65 13.929 7.836 13.039 7.24 12.779 L 1.375 10.216 C 1.23 10.153 1.115 10.034 1.057 9.886 C 0.999 9.737 1.002 9.572 1.066 9.426 L 1.443 8.562 C 1.576 8.259 1.93 8.12 2.233 8.253 L 7.323 10.476 C 7.93 10.742 8.456 9.971 7.987 9.502 L 4.06 5.576 C 3.948 5.463 3.884 5.31 3.884 5.151 C 3.884 4.992 3.948 4.839 4.06 4.727 L 4.727 4.06 C 4.839 3.948 4.992 3.884 5.151 3.884 C 5.31 3.884 5.463 3.948 5.575 4.06 L 9.948 8.433 C 10.411 8.896 11.174 8.39 10.929 7.784 L 8.612 2.05 C 8.488 1.743 8.637 1.393 8.944 1.269 L 9.818 0.916 C 10.125 0.791 10.475 0.94 10.599 1.247 L 12.772 6.626 C 13.019 7.237 13.929 7.061 13.929 6.401 L 13.929 0.6 C 13.929 0.269 14.197 0 14.529 0 Z M 15 21.429 C 18.55 21.429 21.429 18.55 21.429 15 C 21.429 11.45 18.55 8.571 15 8.571 C 11.45 8.571 8.571 11.45 8.571 15 C 8.571 18.55 11.45 21.429 15 21.429 Z\" fill=\"#333333\"></path></svg>',svgContentId:11989244570,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 183, 238)\"},children:\"The Secondary Logo\"})})},rN3j5g1cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(147, 183, 238)\"},children:\"The Secondary Logo\"})})},x7ZlL2OmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 183, 238)\"},children:\"The Secondary Logo\"})})},xIjao21rP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(147, 183, 238)\"},children:\"The Secondary Logo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(147, 184, 238)\"},children:\"The Secondary Logo\"})}),className:\"framer-frg5m9\",fonts:[\"FS;Work Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gm36w7\",\"data-framer-name\":\"The Mark\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mi1qjw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10047.85+50+-207.6+0+0+0+0),sizes:\"697px\",...toResponsiveImage(chwxNMW41),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6808.9407+100+159+0+0+0+0),sizes:\"561px\",...toResponsiveImage(chwxNMW41),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5269.4+100+145.5+0+0+0+0),sizes:\"561px\",...toResponsiveImage(chwxNMW41),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3755.1+50+189+0+0+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(chwxNMW41),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6741.6+100+0+0+0+0),sizes:\"561px\",...toResponsiveImage(chwxNMW41),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-mebcob\"})})})})]}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yqda95\",\"data-framer-name\":\"The logo Mark\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t2hzcv\",\"data-framer-name\":\"The Mark\",children:[visible3&&/*#__PURE__*/_jsx(\"aside\",{className:\"framer-mollgw\",\"data-framer-name\":\"Logo Mark Title\",children:/*#__PURE__*/_jsxs(MotionHeaderWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1suyp2d\",\"data-framer-appear-id\":\"1suyp2d\",\"data-framer-name\":\"Header\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7vpr03\",\"data-framer-name\":\"Shape\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 15.471 0 C 15.803 0 16.071 0.269 16.071 0.6 L 16.071 6.401 C 16.071 7.061 16.981 7.237 17.228 6.626 L 19.401 1.247 C 19.46 1.1 19.576 0.982 19.723 0.92 C 19.869 0.858 20.034 0.856 20.182 0.916 L 21.056 1.269 C 21.363 1.393 21.512 1.743 21.388 2.05 L 19.071 7.784 C 18.826 8.39 19.589 8.895 20.052 8.433 L 24.425 4.06 C 24.537 3.948 24.69 3.884 24.849 3.884 C 25.008 3.884 25.161 3.948 25.273 4.06 L 25.94 4.727 C 26.174 4.961 26.174 5.341 25.94 5.575 L 22.013 9.503 C 21.544 9.971 22.07 10.742 22.677 10.477 L 27.767 8.253 C 28.07 8.12 28.424 8.259 28.557 8.562 L 28.934 9.426 C 28.998 9.572 29.001 9.737 28.943 9.886 C 28.885 10.034 28.77 10.153 28.625 10.216 L 22.76 12.779 C 22.164 13.039 22.35 13.929 23 13.929 L 29.4 13.929 C 29.731 13.929 30 14.197 30 14.529 L 30 15.471 C 30 15.803 29.731 16.071 29.4 16.071 L 23 16.071 C 22.35 16.071 22.164 16.961 22.76 17.221 L 28.625 19.784 C 28.928 19.916 29.067 20.27 28.934 20.573 L 28.557 21.437 C 28.493 21.583 28.374 21.698 28.226 21.756 C 28.077 21.814 27.912 21.811 27.767 21.747 L 22.677 19.524 C 22.07 19.258 21.544 20.029 22.013 20.498 L 25.94 24.425 C 26.052 24.537 26.116 24.69 26.116 24.849 C 26.116 25.008 26.052 25.161 25.94 25.273 L 25.273 25.94 C 25.161 26.052 25.008 26.116 24.849 26.116 C 24.69 26.116 24.537 26.052 24.425 25.94 L 20.052 21.567 C 19.589 21.105 18.826 21.61 19.071 22.216 L 21.388 27.95 C 21.512 28.257 21.363 28.607 21.056 28.731 L 20.182 29.084 C 19.875 29.209 19.525 29.06 19.401 28.753 L 17.228 23.374 C 16.981 22.763 16.071 22.939 16.071 23.599 L 16.071 29.4 C 16.071 29.731 15.803 30 15.471 30 L 14.529 30 C 14.197 30 13.929 29.731 13.929 29.4 L 13.929 23.599 C 13.929 22.939 13.019 22.763 12.772 23.374 L 10.599 28.753 C 10.54 28.9 10.424 29.018 10.277 29.08 C 10.131 29.143 9.966 29.144 9.818 29.084 L 8.944 28.731 C 8.637 28.607 8.488 28.257 8.612 27.95 L 10.929 22.216 C 11.174 21.61 10.411 21.105 9.948 21.567 L 5.576 25.94 C 5.463 26.052 5.31 26.116 5.151 26.116 C 4.992 26.116 4.839 26.052 4.727 25.94 L 4.06 25.273 C 3.948 25.161 3.884 25.008 3.884 24.849 C 3.884 24.69 3.948 24.537 4.06 24.425 L 7.987 20.497 C 8.456 20.029 7.93 19.258 7.323 19.524 L 2.233 21.747 C 2.088 21.811 1.923 21.814 1.774 21.756 C 1.626 21.698 1.507 21.583 1.443 21.437 L 1.066 20.573 C 1.002 20.428 0.999 20.262 1.057 20.114 C 1.115 19.966 1.23 19.847 1.376 19.784 L 7.24 17.221 C 7.836 16.961 7.65 16.071 7 16.071 L 0.6 16.071 C 0.269 16.071 0 15.803 0 15.471 L 0 14.529 C 0 14.197 0.269 13.929 0.6 13.929 L 7 13.929 C 7.65 13.929 7.836 13.039 7.24 12.779 L 1.375 10.216 C 1.23 10.153 1.115 10.034 1.057 9.886 C 0.999 9.737 1.002 9.572 1.066 9.426 L 1.443 8.562 C 1.576 8.259 1.93 8.12 2.233 8.253 L 7.323 10.476 C 7.93 10.742 8.456 9.971 7.987 9.502 L 4.06 5.576 C 3.948 5.463 3.884 5.31 3.884 5.151 C 3.884 4.992 3.948 4.839 4.06 4.727 L 4.727 4.06 C 4.839 3.948 4.992 3.884 5.151 3.884 C 5.31 3.884 5.463 3.948 5.575 4.06 L 9.948 8.433 C 10.411 8.896 11.174 8.39 10.929 7.784 L 8.612 2.05 C 8.488 1.743 8.637 1.393 8.944 1.269 L 9.818 0.916 C 10.125 0.791 10.475 0.94 10.599 1.247 L 12.772 6.626 C 13.019 7.237 13.929 7.061 13.929 6.401 L 13.929 0.6 C 13.929 0.269 14.197 0 14.529 0 Z M 15 21.429 C 18.55 21.429 21.429 18.55 21.429 15 C 21.429 11.45 18.55 8.571 15 8.571 C 11.45 8.571 8.571 11.45 8.571 15 C 8.571 18.55 11.45 21.429 15 21.429 Z\" fill=\"#333333\"></path></svg>',svgContentId:11989244570,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rN3j5g1cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"The Logo Mark\"})}),fonts:[\"FS;Work Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8lhn24\",\"data-styles-preset\":\"J87mP72kt\",style:{\"--framer-text-color\":\"rgb(147, 182, 238)\"},children:\"The Logo Mark\"})}),className:\"framer-joke1x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-q8bdo8\",\"data-framer-appear-id\":\"q8bdo8\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10097.85+100+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(NXPX8DgAQ),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7008.9407+50+0+0+420+0+0),sizes:\"763px\",...toResponsiveImage(NXPX8DgAQ),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5469.4+100+0+0+214.8+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(NXPX8DgAQ),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3805.1+0+0+0+184.8+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(NXPX8DgAQ),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6941.6+100+0+273.5138+0+0),sizes:\"1212px\",...toResponsiveImage(NXPX8DgAQ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1g4a5iz\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxjdoi\",\"data-framer-name\":\"FULL SCREEN\",children:[visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lbtexp\",\"data-framer-name\":\"Video showcase\",children:visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yr53wo-container\",isModuleExternal:true,nodeId:\"T0nut_S2K\",scopeId:\"njtTl6oLh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rN3j5g1cc:{style:{width:\"100%\"}},xIjao21rP:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"T0nut_S2K\",isMixedBorderRadius:false,layoutId:\"T0nut_S2K\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:VTjT1yQvY,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n127yt\",\"data-framer-name\":\"COLOR & TYPE\",children:visible6&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+-320+-319.375),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(VOyr7pn6I),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+-190+-191),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(VOyr7pn6I),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+-456.9733+-445.1038),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(VOyr7pn6I),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+-165.7462+-113.7441),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(VOyr7pn6I),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+-500+-500),sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(VOyr7pn6I),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1kvpnhh\",\"data-framer-name\":\"COLOR & TYPE\"})})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k14ais\",\"data-framer-name\":\"Brand image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+-320+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(SmYcJAFMM)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+-190+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(SmYcJAFMM)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+-456.9733+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(SmYcJAFMM),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+-65.7462+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(SmYcJAFMM)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+-500+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(SmYcJAFMM)},className:\"framer-wkran1\",\"data-framer-name\":\"Brand image\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zma2nn\",\"data-framer-name\":\"Brand image 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+318.75+.625),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+192+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+433.2344+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+161.742+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+500+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)},className:\"framer-1xz7lp9\",\"data-framer-name\":\"Brand image 2\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivlggs-container\",isModuleExternal:true,nodeId:\"iUtMpB4EK\",scopeId:\"njtTl6oLh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iUtMpB4EK\",isMixedBorderRadius:false,layoutId:\"iUtMpB4EK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:h61sytAyw,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-al0h8q\",\"data-framer-name\":\"Brand image 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+958.75+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+572+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+1347.181+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+493.2344+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+1500+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(Dxa5FLnEj)},className:\"framer-1dz8bla\",\"data-framer-name\":\"Brand image 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+958.75+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(nWygZzoBo)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+572+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(nWygZzoBo)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+1347.181+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(nWygZzoBo)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+493.2344+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(nWygZzoBo)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+1500+0),sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,...toResponsiveImage(nWygZzoBo)},className:\"framer-16sstjo\",\"data-framer-name\":\"Brand image 3\"})})]}),visible9&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1176lus\",\"data-framer-name\":\"Brand image 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+1597.5+0),pixelHeight:2336,pixelWidth:1870,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png\",srcSet:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png 1870w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+952+0),pixelHeight:2336,pixelWidth:1870,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png\",srcSet:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png 1870w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+2261.1276+0),pixelHeight:2336,pixelWidth:1870,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png\",srcSet:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png 1870w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+824.7268+0),pixelHeight:2336,pixelWidth:1870,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png\",srcSet:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png 1870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+2500+0),pixelHeight:2336,pixelWidth:1870,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png\",srcSet:\"https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/fkN7EK3xoHLpfNm8Sa6piD0AYM.png 1870w\"},className:\"framer-13aq40w\",\"data-framer-name\":\"Brand image 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+1597.5+0),pixelHeight:6153,pixelWidth:4923,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png\",srcSet:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=4096 3277w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png 4923w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+952+0),pixelHeight:6153,pixelWidth:4923,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png\",srcSet:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=4096 3277w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png 4923w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+2261.1276+0),pixelHeight:6153,pixelWidth:4923,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png\",srcSet:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=4096 3277w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png 4923w\"}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+824.7268+0),pixelHeight:6153,pixelWidth:4923,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png\",srcSet:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=4096 3277w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png 4923w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+2500+0),pixelHeight:6153,pixelWidth:4923,positionX:\"center\",positionY:\"bottom\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png\",srcSet:\"https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png?scale-down-to=4096 3277w,https://framerusercontent.com/images/oFE6XI1AYQrOjRvppeGrwnPFRyk.png 4923w\"},className:\"framer-f1ud7c\",\"data-framer-name\":\"Brand image 2\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xt7zru\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w6geqv\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xgseg4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+2236.25+100+0+0+0+0),pixelHeight:1626,pixelWidth:1972,sizes:`max(${componentViewport?.width||\"100vw\"} - 448px, 1px)`,...toResponsiveImage(xpXh6eXZR)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+1332+100+0+0+0+0),pixelHeight:1626,pixelWidth:1972,sizes:`max(${componentViewport?.width||\"100vw\"} - 348px, 1px)`,...toResponsiveImage(xpXh6eXZR)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+3175.0742+100+0+0+0+0),pixelHeight:1626,pixelWidth:1972,sizes:`max(${componentViewport?.width||\"100vw\"} - 277px, 1px)`,...toResponsiveImage(xpXh6eXZR)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+1156.2192+0+0+0+0+0+0),pixelHeight:1626,pixelWidth:1972,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(xpXh6eXZR)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+3500+100+0+0+0+0),pixelHeight:1626,pixelWidth:1972,sizes:`max(${componentViewport?.width||\"100vw\"} - 720px, 1px)`,...toResponsiveImage(xpXh6eXZR)},className:\"framer-pj75y1\"})})}),/*#__PURE__*/_jsx(\"aside\",{className:\"framer-e9qhj5\",\"data-framer-name\":\"Sidebar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+2236.25+100+0+0+0+0),pixelHeight:2114,pixelWidth:1126,sizes:\"338px\",...toResponsiveImage(p29IUYHFC)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+1332+100+0+0+0+0),pixelHeight:2114,pixelWidth:1126,sizes:\"298px\",...toResponsiveImage(p29IUYHFC)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+3175.0742+100+0+0+0+0),pixelHeight:2114,pixelWidth:1126,sizes:\"255px\",...toResponsiveImage(p29IUYHFC)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+1156.2192+0+0+0+499+0+0),pixelHeight:2114,pixelWidth:1126,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(p29IUYHFC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+3500+100+0+0+0+0),pixelHeight:2114,pixelWidth:1126,sizes:\"370px\",...toResponsiveImage(p29IUYHFC)},className:\"framer-1oazj60\"})})})]})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5770.8+0+2988.25),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VFUTiLN1B),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4647.9407+0+1882),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VFUTiLN1B)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6222.4+0+3710.0742),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VFUTiLN1B)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4077.1+0+2156.2192),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VFUTiLN1B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7694.6+0+4253),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VFUTiLN1B)},className:\"framer-dcjhj5\",\"data-framer-name\":\"MOCKUP VIDEO\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9gcfj\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-peshux-container\",isModuleExternal:true,nodeId:\"ninYgS11A\",scopeId:\"njtTl6oLh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,topLeftRadius:15,topRightRadius:15},rN3j5g1cc:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10},x7ZlL2OmK:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:36,bottomLeftRadius:36,bottomRightRadius:36,controls:true,height:\"100%\",id:\"ninYgS11A\",isMixedBorderRadius:false,layoutId:\"ninYgS11A\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:true,srcFile:QDcvEd0Bo,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:36,topRightRadius:36,volume:25,width:\"100%\"})})})})})})})]}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13cegr7\",\"data-framer-name\":\"Brand Patterns\",children:visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10197.85+-306.5),pixelHeight:1178,pixelWidth:2162,sizes:`max((${componentViewport?.width||\"100vw\"} - 10px) / 0, 1px)`,...toResponsiveImage(a_7v4mGqU),...{positionX:\"center\",positionY:\"center\"}}},rN3j5g1cc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7445.9407+-306.5),pixelHeight:1178,pixelWidth:2162,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(a_7v4mGqU),...{positionX:\"center\",positionY:\"center\"}}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9904.5009+-237.5),pixelHeight:1178,pixelWidth:2162,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(a_7v4mGqU),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6303.573+0+-164.6919),pixelHeight:1178,pixelWidth:2162,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(a_7v4mGqU),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12733.6+-306.5),pixelHeight:1178,pixelWidth:2162,sizes:\"1170px\",...toResponsiveImage(a_7v4mGqU),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-6nx5sg\"})})}),visible12&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtrwro\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hpbg4c\",children:visible12&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10297.85+50+0+0),pixelHeight:1170,pixelWidth:2068,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(P49_2u1m4)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7495.9407+80+0+0),pixelHeight:1170,pixelWidth:2068,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(P49_2u1m4)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10004.5009+50+0+0),pixelHeight:1170,pixelWidth:2068,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(P49_2u1m4),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6403.573+0+0+0+0),pixelHeight:1170,pixelWidth:2068,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(P49_2u1m4),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12833.6+100+0+0),pixelHeight:1170,pixelWidth:2068,sizes:\"1421px\",...toResponsiveImage(P49_2u1m4)},className:\"framer-14o97wz\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9gy6w\",\"data-framer-name\":\"3 Mock ups\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14nfsip\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11044.85+150+0+0),pixelHeight:2670,pixelWidth:4e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,...toResponsiveImage(DMkYbd2qW)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7655.9407+150+0+0+0),pixelHeight:2670,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(DMkYbd2qW)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11104.5009+100+0+0+0),pixelHeight:2670,pixelWidth:4e3,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(DMkYbd2qW)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6403.573+100+0+0+0),pixelHeight:2670,pixelWidth:4e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(DMkYbd2qW)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13083.6+100+0+0),pixelHeight:2670,pixelWidth:4e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 400px) / 3, 1px)`,...toResponsiveImage(DMkYbd2qW)},className:\"framer-wsq8et\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htmpn0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11044.85+150+0+0),pixelHeight:1130,pixelWidth:754,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,...toResponsiveImage(oFvd3ZFTg)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7655.9407+150+414+0+0),pixelHeight:1130,pixelWidth:754,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(oFvd3ZFTg)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11104.5009+100+395+0+0),pixelHeight:1130,pixelWidth:754,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(oFvd3ZFTg)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6403.573+100+355+0+0),pixelHeight:1130,pixelWidth:754,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(oFvd3ZFTg)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13083.6+100+0+0),pixelHeight:1130,pixelWidth:754,sizes:`max((${componentViewport?.width||\"100vw\"} - 400px) / 3, 1px)`,...toResponsiveImage(oFvd3ZFTg)},className:\"framer-1onn82z\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mnr6iw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11044.85+150+0+0),pixelHeight:1103,pixelWidth:735,sizes:`max((${componentViewport?.width||\"100vw\"} - 140px) / 3, 1px)`,...toResponsiveImage(KrrnlCTwy)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7655.9407+150+860+0+0),pixelHeight:1103,pixelWidth:735,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(KrrnlCTwy)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11104.5009+100+790+0+0),pixelHeight:1103,pixelWidth:735,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(KrrnlCTwy)}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6403.573+100+710+0+0),pixelHeight:1103,pixelWidth:735,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(KrrnlCTwy)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13083.6+100+0+0),pixelHeight:1103,pixelWidth:735,sizes:`max((${componentViewport?.width||\"100vw\"} - 400px) / 3, 1px)`,...toResponsiveImage(KrrnlCTwy)},className:\"framer-bbzayy\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npoyj4\",children:visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11798.85+18.125),pixelHeight:1494,pixelWidth:2664,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(eWiRZdBrS)}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9330.9407+0),pixelHeight:1494,pixelWidth:2664,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(eWiRZdBrS)}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12407.5009+0),pixelHeight:1494,pixelWidth:2664,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(eWiRZdBrS),...{positionX:\"center\",positionY:\"center\"}}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7568.573+50+0),pixelHeight:1494,pixelWidth:2664,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(eWiRZdBrS)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13986.6+0),pixelHeight:1494,pixelWidth:2664,sizes:`max((${componentViewport?.width||\"100vw\"} + 10px) / 0, 1px)`,...toResponsiveImage(eWiRZdBrS)},className:\"framer-n7wspa\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+90.9257),pixelHeight:575,pixelWidth:751,sizes:\"26px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42.2136),pixelHeight:575,pixelWidth:751,sizes:\"12px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:-28}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+159.1014),pixelHeight:575,pixelWidth:751,sizes:\"38px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-1nv6a0y hidden-mr3bch hidden-1ghiar8\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:-87},transformTemplate:transformTemplate2})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40.0119),pixelHeight:575,pixelWidth:751,sizes:\"21px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:575,pixelWidth:751,src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-15f2oko hidden-70o4f9 hidden-ze9peb hidden-jk9ybk hidden-1ghiar8\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:297},transformTemplate:transformTemplate2})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64.9338),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:972,pixelWidth:1038,src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-3k7b71 hidden-70o4f9 hidden-ze9peb hidden-mr3bch hidden-jk9ybk\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:375}})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+26.9629),pixelHeight:972,pixelWidth:1038,sizes:\"23px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12.0818),pixelHeight:972,pixelWidth:1038,sizes:\"11px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34.8719),pixelHeight:972,pixelWidth:1038,sizes:\"7px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+14.6145),pixelHeight:972,pixelWidth:1038,sizes:\"32px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-1skh0gr hidden-1ghiar8\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:278}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LzIT9dF6D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+47.8332),pixelHeight:575,pixelWidth:751,sizes:\"27px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},rN3j5g1cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6.4859),pixelHeight:575,pixelWidth:751,sizes:\"35px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}},x7ZlL2OmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+61.0654),pixelHeight:575,pixelWidth:751,sizes:\"11px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},style:{rotate:303}},xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8.2348),pixelHeight:575,pixelWidth:751,sizes:\"17px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+17.5002),pixelHeight:575,pixelWidth:751,sizes:\"35px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-omq61i\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:109},transformTemplate:transformTemplate2})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8.2348),pixelHeight:575,pixelWidth:751,sizes:\"17px\",src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:575,pixelWidth:751,src:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png\",srcSet:\"https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ugLooYuRTW9GsFvtPvSQYFkNyKU.png 751w\"},className:\"framer-120eyef hidden-70o4f9 hidden-ze9peb hidden-mr3bch hidden-jk9ybk\",\"data-framer-name\":\"Rectangle 29\",style:{rotate:211},transformTemplate:transformTemplate2})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3.3674),pixelHeight:972,pixelWidth:1038,sizes:\"9px\",src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:972,pixelWidth:1038,src:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png\",srcSet:\"https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zmk1IJzFdurzSvuqzmddTT4fdoU.png 1038w\"},className:\"framer-1slalyq hidden-70o4f9 hidden-ze9peb hidden-mr3bch hidden-jk9ybk\",\"data-framer-name\":\"Rectangle 28\",style:{rotate:374}})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xIjao21rP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+6.0776),pixelHeight:899,pixelWidth:742,sizes:\"7px\",src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:115,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:40,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:899,pixelWidth:742,src:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png\",srcSet:\"https://framerusercontent.com/images/7kpPFUGB5Dlvv9YnsrnGMQzww.png 742w\"},className:\"framer-1y5aujw hidden-70o4f9 hidden-ze9peb hidden-mr3bch hidden-jk9ybk\",style:{rotate:519}})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8H7FO.framer-1gdt6mn, .framer-8H7FO .framer-1gdt6mn { display: block; }\",\".framer-8H7FO.framer-70o4f9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-8H7FO .framer-a8besa { background: linear-gradient(180deg, rgba(96, 147, 247, 0.55) 0%, rgba(227, 240, 255, 0) 100%); flex: none; height: 196px; overflow: hidden; position: relative; width: 100%; z-index: 0; }\",\".framer-8H7FO .framer-qjxoze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-o6s3hy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; max-width: 300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-16gncn8, .framer-8H7FO .framer-1uaegst { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8H7FO .framer-1boo37q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8H7FO .framer-1lpodpe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 134px; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-8H7FO .framer-6b2bfe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8H7FO .framer-1fwkpr9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8H7FO .framer-1fnuy5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8H7FO .framer-1fcolmj, .framer-8H7FO .framer-hkqfuo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8H7FO .framer-1fohg9x, .framer-8H7FO .framer-zcjxrq, .framer-8H7FO .framer-xuozir, .framer-8H7FO .framer-1p6fzb7, .framer-8H7FO .framer-lbudbx, .framer-8H7FO .framer-tr9wth, .framer-8H7FO .framer-d53inc, .framer-8H7FO .framer-kkeacb, .framer-8H7FO .framer-bn0g4j, .framer-8H7FO .framer-l5qqlh, .framer-8H7FO .framer-12cdhg3 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8H7FO .framer-1h626lm, .framer-8H7FO .framer-xxdncs, .framer-8H7FO .framer-189foco, .framer-8H7FO .framer-2vbzcj { flex: none; height: 61px; position: relative; width: 3px; }\",\".framer-8H7FO .framer-7kv33l { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-8H7FO .framer-1b059hv { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-8H7FO .framer-17wcdyj, .framer-8H7FO .framer-37cfln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8H7FO .framer-g0c3xm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8H7FO .framer-1f8o8xk-container { flex: none; height: 35px; position: relative; width: auto; }\",\".framer-8H7FO .framer-gbba2h { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 22%; position: absolute; top: 42px; transform: translateX(-50%); width: 35px; z-index: 0; }\",\".framer-8H7FO .framer-muoaod { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 86%; position: absolute; top: 0%; transform: translate(-50%, -50%); width: 35px; z-index: 0; }\",\".framer-8H7FO .framer-gxte4d { flex: none; height: 15px; left: calc(13.22751322751325% - 16px / 2); position: absolute; top: calc(0.24118663826026257% - 15px / 2); width: 16px; z-index: 0; }\",\".framer-8H7FO .framer-xa3v4o { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 69%; position: absolute; top: 0%; transform: translate(-50%, -50%); width: 27px; z-index: 0; }\",\".framer-8H7FO .framer-1jtyadi { flex: none; height: 28px; left: calc(14.616402116402138% - 26px / 2); overflow: hidden; position: absolute; top: calc(0.7878763516501408% - 28px / 2); width: 26px; z-index: 1; }\",\".framer-8H7FO .framer-1t32xf7 { flex: none; height: 24px; left: calc(77.51322751322753% - 23px / 2); overflow: hidden; position: absolute; top: calc(0.26869682042098053% - 24px / 2); width: 23px; z-index: 1; }\",\".framer-8H7FO .framer-1tk0svs { flex: none; height: 18px; left: calc(96.23015873015875% - 17px / 2); overflow: hidden; position: absolute; top: calc(1.2676978194219795% - 18px / 2); width: 17px; z-index: 1; }\",\".framer-8H7FO .framer-1h6fa78 { flex: none; height: 31px; left: calc(95.43650793650797% - 32px / 2); position: absolute; top: calc(0.4662941673031536% - 31px / 2); width: 32px; z-index: 1; }\",\".framer-8H7FO .framer-17jml28 { flex: none; height: 6px; left: calc(68.7830687830688% - 7px / 2); position: absolute; top: calc(0.9647465530409837% - 6px / 2); width: 7px; z-index: 1; }\",\".framer-8H7FO .framer-1i73vfe { flex: none; height: 12px; left: calc(35.71428571428574% - 12px / 2); overflow: hidden; position: absolute; top: calc(0.30550307512966% - 12px / 2); width: 12px; z-index: 1; }\",\".framer-8H7FO .framer-16kdxoe { flex: none; height: 16px; left: calc(90.14550264550267% - 16px / 2); position: absolute; top: calc(0.8680974198215798% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-8H7FO .framer-1buadz9 { flex: none; height: 33px; left: calc(6.1507936507936725% - 32px / 2); overflow: hidden; position: absolute; top: calc(0.32962173895568403% - 33px / 2); width: 32px; z-index: 1; }\",\".framer-8H7FO .framer-10vdndz { flex: none; height: 15px; left: calc(8.994708994709017% - 16px / 2); position: absolute; top: calc(1.054118295497628% - 15px / 2); width: 16px; z-index: 1; }\",\".framer-8H7FO .framer-3hqsr1-container { flex: none; height: auto; left: 50%; position: fixed; top: 35px; transform: translateX(-50%); width: auto; z-index: 5; }\",\".framer-8H7FO .framer-1jlz2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-hege6, .framer-8H7FO .framer-11y0dcd, .framer-8H7FO .framer-9rkcgu, .framer-8H7FO .framer-1kvpnhh, .framer-8H7FO .framer-wkran1, .framer-8H7FO .framer-1xz7lp9, .framer-8H7FO .framer-1dz8bla, .framer-8H7FO .framer-16sstjo, .framer-8H7FO .framer-13aq40w, .framer-8H7FO .framer-f1ud7c, .framer-8H7FO .framer-n7wspa { flex: 1 0 0px; height: 100vh; overflow: hidden; position: relative; width: 1px; }\",\".framer-8H7FO .framer-10gt6rb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-19agxjq, .framer-8H7FO .framer-1w6geqv { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-9yotzi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 561px; z-index: 1; }\",\".framer-8H7FO .framer-1ydfeei { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8H7FO .framer-1kfz4wa, .framer-8H7FO .framer-1u0rnny, .framer-8H7FO .framer-7vpr03 { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-8H7FO .framer-jm7eal, .framer-8H7FO .framer-1lx8mrd { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-8H7FO .framer-xzhb74 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 430px; word-break: break-word; word-wrap: break-word; }\",\".framer-8H7FO .framer-1hf0o3k { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 5px 5px 7px 2px rgba(250, 176, 40, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-wjiehn { flex: none; height: 615px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8H7FO .framer-q48kp9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 1480px; overflow: visible; padding: 60px 30px 60px 30px; position: relative; width: 100%; z-index: 3; }\",\".framer-8H7FO .framer-1qvou68, .framer-8H7FO .framer-3o4gwy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1r1v6vz, .framer-8H7FO .framer-36vgme { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-8H7FO .framer-1invrnd, .framer-8H7FO .framer-bnda1b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8H7FO .framer-1yf89at, .framer-8H7FO .framer-14q4jax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 51%; z-index: 1; }\",\".framer-8H7FO .framer-1s3z7jt, .framer-8H7FO .framer-1qhf2ht { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8H7FO .framer-v52ho5 { background-color: var(--token-d789d8ea-713b-4b0f-a89f-dcb670a3b6b0, #161616); flex: none; gap: 10px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8H7FO .framer-nw1one { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-2a7m4 { flex: none; height: 603px; overflow: hidden; position: relative; width: 1312px; }\",\".framer-8H7FO .framer-h0a53f { 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: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1brwih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1d3018f, .framer-8H7FO .framer-xt7zru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-6pguxc { 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 0px 40px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-xtv8zb { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 0px 0px 32px 20px rgba(250, 176, 40, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-a1avll { box-shadow: 0px 0px 32px 30px rgba(250, 176, 40, 0.25); flex: none; height: 613px; overflow: hidden; position: relative; width: 1170px; }\",\".framer-8H7FO .framer-10pj2he { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 150px 100px 150px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1r4bbzm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 49.5vh; justify-content: space-between; left: 0px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 651px; z-index: 1; }\",\".framer-8H7FO .framer-11hgpn1, .framer-8H7FO .framer-1suyp2d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8H7FO .framer-frg5m9 { --framer-paragraph-spacing: 0px; flex: none; height: 371px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8H7FO .framer-gm36w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8H7FO .framer-mi1qjw { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 553px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-mebcob { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 561px; }\",\".framer-8H7FO .framer-yqda95 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 150px 100px 150px; position: relative; width: 1512px; }\",\".framer-8H7FO .framer-t2hzcv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8H7FO .framer-mollgw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 49%; justify-content: space-between; left: 0px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 651px; z-index: 1; }\",\".framer-8H7FO .framer-joke1x { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8H7FO .framer-q8bdo8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 553px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8H7FO .framer-1g4a5iz, .framer-8H7FO .framer-pj75y1, .framer-8H7FO .framer-1oazj60 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1wxjdoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-lbtexp, .framer-8H7FO .framer-1n127yt { 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-8H7FO .framer-yr53wo-container { flex: 1 0 0px; height: 95.125vh; position: relative; width: 1px; }\",\".framer-8H7FO .framer-k14ais, .framer-8H7FO .framer-zma2nn, .framer-8H7FO .framer-al0h8q, .framer-8H7FO .framer-1176lus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1ivlggs-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; }\",\".framer-8H7FO .framer-xgseg4 { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 5px 5px 7px 2px rgba(250, 176, 40, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 553px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-e9qhj5 { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 5px 5px 7px 2px rgba(250, 176, 40, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 552px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-dcjhj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1286px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-v9gcfj { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; 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: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-peshux-container { flex: none; height: 800px; position: relative; width: 1421px; }\",\".framer-8H7FO .framer-13cegr7 { 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 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-6nx5sg { flex: none; height: 613px; overflow: hidden; position: relative; width: 1170px; }\",\".framer-8H7FO .framer-mtrwro { 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: 100px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1hpbg4c { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 5px 5px 7px 2px rgba(250, 176, 40, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1421px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-14o97wz { flex: none; height: 835px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1x9gy6w { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 903px; justify-content: flex-start; overflow: visible; padding: 100px 150px 100px 150px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-14nfsip, .framer-8H7FO .framer-1htmpn0, .framer-8H7FO .framer-1mnr6iw { align-content: center; align-items: center; border-bottom-left-radius: 43px; border-bottom-right-radius: 43px; border-top-left-radius: 43px; border-top-right-radius: 43px; box-shadow: 0px 0px 20px 8px rgba(250, 176, 40, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8H7FO .framer-wsq8et, .framer-8H7FO .framer-1onn82z, .framer-8H7FO .framer-bbzayy { flex: none; height: 696px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1npoyj4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8H7FO .framer-1nv6a0y { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 3%; position: absolute; top: 1%; transform: translate(-50%, -50%); width: 38px; z-index: 0; }\",\".framer-8H7FO .framer-15f2oko { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 12%; position: absolute; top: 1%; transform: translate(-50%, -50%); width: 21px; z-index: 0; }\",\".framer-8H7FO .framer-3k7b71 { flex: none; height: 6px; left: calc(4.266666666666689% - 7px / 2); position: absolute; top: calc(0.9739506840844313% - 6px / 2); width: 7px; z-index: 1; }\",\".framer-8H7FO .framer-1skh0gr { flex: none; height: 31px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(0.2342485101106013% - 31px / 2); width: 32px; z-index: 1; }\",\".framer-8H7FO .framer-omq61i { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 34%; position: absolute; top: 0%; transform: translate(-50%, -50%); width: 35px; z-index: 0; }\",\".framer-8H7FO .framer-120eyef { aspect-ratio: 1.306282722513089 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 65%; position: absolute; top: 0%; transform: translate(-50%, -50%); width: 17px; z-index: 0; }\",\".framer-8H7FO .framer-1slalyq { flex: none; height: 8px; left: calc(83.20000000000002% - 9px / 2); position: absolute; top: calc(0.10562450488515555% - 8px / 2); width: 9px; z-index: 0; }\",\".framer-8H7FO .framer-1y5aujw { flex: none; height: 7px; left: calc(96.53333333333336% - 7px / 2); overflow: hidden; position: absolute; top: calc(0.13731185635069554% - 7px / 2); width: 7px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-8H7FO[data-border=\"true\"]::after, .framer-8H7FO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1024px) and (max-width: 1511px) { .framer-8H7FO.framer-70o4f9 { width: 1024px; } .framer-8H7FO .framer-a8besa { height: 161px; order: 0; } .framer-8H7FO .framer-qjxoze { order: 1; } .framer-8H7FO .framer-1lpodpe { height: 102px; } .framer-8H7FO .framer-1fnuy5n { gap: 28px; } .framer-8H7FO .framer-1f8o8xk-container { height: 30px; } .framer-8H7FO .framer-gbba2h { height: var(--framer-aspect-ratio-supported, 21px); left: 33%; order: 2; top: 20px; width: 27px; } .framer-8H7FO .framer-muoaod { height: var(--framer-aspect-ratio-supported, 23px); left: 88%; order: 3; top: 1%; width: 30px; } .framer-8H7FO .framer-gxte4d { order: 4; } .framer-8H7FO .framer-xa3v4o { order: 5; } .framer-8H7FO .framer-1jtyadi { height: 16px; left: calc(14.648437500000021% - 15px / 2); order: 6; top: calc(0.7152588555858532% - 16px / 2); width: 15px; } .framer-8H7FO .framer-1t32xf7 { height: 16px; left: calc(81.25000000000003% - 15px / 2); order: 7; top: calc(0.3405994550408941% - 16px / 2); width: 15px; } .framer-8H7FO .framer-1tk0svs { order: 8; } .framer-8H7FO .framer-1h6fa78 { height: 22px; left: calc(96.19140625000003% - 23px / 2); order: 9; top: calc(0.34911444141691594% - 22px / 2); width: 23px; } .framer-8H7FO .framer-17jml28 { order: 10; } .framer-8H7FO .framer-1i73vfe { order: 11; } .framer-8H7FO .framer-16kdxoe { height: 15px; left: calc(78.32031250000003% - 15px / 2); order: 12; top: calc(0.8514986376022021% - 15px / 2); width: 15px; } .framer-8H7FO .framer-1buadz9 { height: 21px; left: calc(6.347656250000022% - 20px / 2); order: 13; top: calc(0.2554495912806762% - 21px / 2); width: 20px; } .framer-8H7FO .framer-10vdndz { left: calc(2.636718750000022% - 16px / 2); order: 14; top: calc(0.6130790190735917% - 15px / 2); } .framer-8H7FO .framer-3hqsr1-container { order: 15; } .framer-8H7FO .framer-1jlz2t { order: 16; } .framer-8H7FO .framer-10gt6rb { order: 17; } .framer-8H7FO .framer-19agxjq { gap: 20px; padding: 0px 50px 0px 50px; } .framer-8H7FO .framer-9yotzi { flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; } .framer-8H7FO .framer-xzhb74, .framer-8H7FO .framer-a1avll { width: 100%; } .framer-8H7FO .framer-wjiehn { height: 492px; } .framer-8H7FO .framer-q48kp9 { order: 18; padding: 60px 30px 24px 30px; } .framer-8H7FO .framer-nw1one { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 100vh; order: 19; padding: 50px 50px 100px 50px; width: 100%; will-change: unset; } .framer-8H7FO .framer-2a7m4 { height: 100vh; width: 100%; } .framer-8H7FO .framer-h0a53f { height: 100vh; order: 20; } .framer-8H7FO .framer-1brwih { order: 21; } .framer-8H7FO .framer-1d3018f { order: 23; padding: 100px 30px 100px 30px; } .framer-8H7FO .framer-xtv8zb { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; width: 100%; } .framer-8H7FO .framer-10pj2he { align-content: center; align-items: center; flex-direction: column; justify-content: center; order: 24; padding: 50px 0px 0px 0px; } .framer-8H7FO .framer-1r4bbzm { align-content: center; align-items: center; gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-11hgpn1 { justify-content: center; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-1u0rnny { order: 0; } .framer-8H7FO .framer-frg5m9 { height: auto; order: 1; overflow: visible; white-space: pre; width: auto; } .framer-8H7FO .framer-mi1qjw { height: 603px; } .framer-8H7FO .framer-mebcob { width: 697px; } .framer-8H7FO .framer-yqda95 { order: 25; padding: 100px 0px 0px 0px; width: 100%; } .framer-8H7FO .framer-mollgw { height: 49%; width: 491px; } .framer-8H7FO .framer-1suyp2d { position: relative; top: unset; } .framer-8H7FO .framer-q8bdo8 { height: min-content; } .framer-8H7FO .framer-1wxjdoi { order: 22; } .framer-8H7FO .framer-yr53wo-container { height: 64.5vh; order: 0; } .framer-8H7FO .framer-1kvpnhh, .framer-8H7FO .framer-wkran1, .framer-8H7FO .framer-1xz7lp9, .framer-8H7FO .framer-1dz8bla, .framer-8H7FO .framer-16sstjo, .framer-8H7FO .framer-13aq40w, .framer-8H7FO .framer-f1ud7c { height: 63.87500000000001vh; } .framer-8H7FO .framer-1ivlggs-container { height: 64vh; } .framer-8H7FO .framer-xt7zru { padding: 100px 30px 100px 30px; } .framer-8H7FO .framer-1w6geqv { padding: 0px; } .framer-8H7FO .framer-xgseg4 { align-self: stretch; height: auto; } .framer-8H7FO .framer-e9qhj5 { width: 338px; } .framer-8H7FO .framer-dcjhj5 { height: 681px; } .framer-8H7FO .framer-peshux-container { height: 448px; width: 795px; } .framer-8H7FO .framer-13cegr7 { order: 26; padding: 0px 0px 100px 20px; } .framer-8H7FO .framer-6nx5sg { flex: 1 0 0px; width: 1px; } .framer-8H7FO .framer-mtrwro { order: 27; padding: 50px 30px 100px 30px; } .framer-8H7FO .framer-1hpbg4c { flex: 1 0 0px; height: 597px; width: 1px; } .framer-8H7FO .framer-14o97wz { height: 614px; } .framer-8H7FO .framer-1x9gy6w { gap: 20px; height: min-content; order: 28; padding: 150px 50px 250px 50px; } .framer-8H7FO .framer-wsq8et, .framer-8H7FO .framer-1onn82z { height: 354px; } .framer-8H7FO .framer-bbzayy { height: 344px; } .framer-8H7FO .framer-1npoyj4 { height: 100vh; order: 29; } .framer-8H7FO .framer-n7wspa { height: 86.375vh; } .framer-8H7FO .framer-1nv6a0y { height: var(--framer-aspect-ratio-supported, 20px); left: 8%; order: 30; top: 1%; width: 26px; } .framer-8H7FO .framer-1skh0gr { height: 22px; left: calc(96.19140625000003% - 23px / 2); order: 33; top: calc(0.34911444141691594% - 22px / 2); width: 23px; } .framer-8H7FO .framer-omq61i { height: var(--framer-aspect-ratio-supported, 21px); left: 23%; order: 34; top: 1%; width: 27px; }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-8H7FO.framer-70o4f9 { width: 768px; } .framer-8H7FO .framer-a8besa { height: 191px; order: 0; } .framer-8H7FO .framer-qjxoze { order: 2; } .framer-8H7FO .framer-1lpodpe { height: 95px; } .framer-8H7FO .framer-6b2bfe { padding: 0px 50px 0px 50px; } .framer-8H7FO .framer-1fwkpr9 { gap: 20px; padding: 10px 0px 100px 0px; } .framer-8H7FO .framer-1fnuy5n { gap: 20px; } .framer-8H7FO .framer-gbba2h { order: 3; } .framer-8H7FO .framer-muoaod { height: var(--framer-aspect-ratio-supported, 16px); left: 88%; order: 4; top: 1%; width: 21px; } .framer-8H7FO .framer-gxte4d { order: 5; } .framer-8H7FO .framer-xa3v4o { order: 6; } .framer-8H7FO .framer-1jtyadi { height: 17px; left: calc(12.760416666666687% - 16px / 2); order: 1; top: calc(1.1667278586872494% - 17px / 2); width: 16px; } .framer-8H7FO .framer-1t32xf7 { left: calc(80.85937500000003% - 23px / 2); order: 7; top: calc(0.2774038265410413% - 24px / 2); } .framer-8H7FO .framer-1tk0svs { left: calc(96.61458333333336% - 17px / 2); order: 8; top: calc(0.7750989270999283% - 18px / 2); } .framer-8H7FO .framer-1h6fa78 { height: 11px; left: calc(94.92187500000003% - 11px / 2); order: 9; top: calc(0.21213233794315445% - 11px / 2); width: 11px; } .framer-8H7FO .framer-17jml28 { order: 10; } .framer-8H7FO .framer-1i73vfe { order: 11; } .framer-8H7FO .framer-16kdxoe { height: 21px; left: calc(50.13020833333336% - 21px / 2); order: 12; top: calc(0.22056120573461357% - 21px / 2); width: 21px; } .framer-8H7FO .framer-1buadz9 { height: 15px; left: calc(3.125000000000022% - 14px / 2); order: 13; top: calc(0.2529270183168337% - 15px / 2); width: 14px; } .framer-8H7FO .framer-10vdndz { height: 18px; left: calc(4.817708333333356% - 19px / 2); order: 14; top: calc(0.799575735324136% - 18px / 2); width: 19px; } .framer-8H7FO .framer-3hqsr1-container { order: 15; } .framer-8H7FO .framer-1jlz2t { height: min-content; order: 16; } .framer-8H7FO .framer-hege6 { height: 400px; } .framer-8H7FO .framer-10gt6rb { order: 17; padding: 50px 15px 0px 15px; } .framer-8H7FO .framer-19agxjq { gap: 10px; padding: 0px 20px 0px 20px; } .framer-8H7FO .framer-9yotzi { left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-1ydfeei { padding: 0px 15px 0px 0px; width: min-content; } .framer-8H7FO .framer-xzhb74 { width: 360px; } .framer-8H7FO .framer-wjiehn { height: 326px; } .framer-8H7FO .framer-q48kp9 { order: 18; } .framer-8H7FO .framer-1r1v6vz, .framer-8H7FO .framer-36vgme { flex: none; max-width: unset; width: min-content; } .framer-8H7FO .framer-1invrnd, .framer-8H7FO .framer-bnda1b { white-space: pre; width: auto; } .framer-8H7FO .framer-14q4jax { width: 67%; } .framer-8H7FO .framer-nw1one { order: 19; padding: 0px; width: 100%; } .framer-8H7FO .framer-2a7m4 { height: 752px; width: 100%; } .framer-8H7FO .framer-h0a53f { order: 20; } .framer-8H7FO .framer-11y0dcd { height: 423px; } .framer-8H7FO .framer-1brwih { height: min-content; order: 21; padding: 0px; } .framer-8H7FO .framer-9rkcgu { height: 56.574074074074076vh; } .framer-8H7FO .framer-1d3018f { order: 22; padding: 100px 20px 100px 20px; } .framer-8H7FO .framer-xtv8zb { width: 100%; } .framer-8H7FO .framer-a1avll { height: 409px; width: 100%; } .framer-8H7FO .framer-10pj2he { align-content: center; align-items: center; flex-direction: column; order: 24; padding: 100px 0px 100px 0px; } .framer-8H7FO .framer-1r4bbzm { gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-11hgpn1 { width: 651px; } .framer-8H7FO .framer-frg5m9 { height: auto; overflow: visible; white-space: pre; width: auto; } .framer-8H7FO .framer-yqda95 { align-content: center; align-items: center; flex-direction: column; order: 25; padding: 50px 0px 0px 0px; width: 100%; } .framer-8H7FO .framer-t2hzcv { flex: none; order: 0; width: 763px; } .framer-8H7FO .framer-mollgw { align-content: center; align-items: center; gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-1suyp2d { align-content: center; align-items: center; width: min-content; } .framer-8H7FO .framer-joke1x { width: 374px; } .framer-8H7FO .framer-q8bdo8 { height: min-content; } .framer-8H7FO .framer-1g4a5iz { flex: none; height: 387px; } .framer-8H7FO .framer-1wxjdoi { order: 23; } .framer-8H7FO .framer-yr53wo-container { height: auto; } .framer-8H7FO .framer-1kvpnhh, .framer-8H7FO .framer-wkran1 { height: 382px; } .framer-8H7FO .framer-1xz7lp9, .framer-8H7FO .framer-1ivlggs-container, .framer-8H7FO .framer-1dz8bla, .framer-8H7FO .framer-16sstjo, .framer-8H7FO .framer-13aq40w, .framer-8H7FO .framer-f1ud7c { height: 38vh; } .framer-8H7FO .framer-1w6geqv { padding: 0px; } .framer-8H7FO .framer-xgseg4 { align-self: stretch; height: auto; } .framer-8H7FO .framer-pj75y1 { flex: none; height: 348px; } .framer-8H7FO .framer-e9qhj5 { height: 350px; width: 298px; } .framer-8H7FO .framer-dcjhj5 { height: 469px; } .framer-8H7FO .framer-peshux-container { height: 367px; width: 651px; } .framer-8H7FO .framer-13cegr7 { order: 26; padding: 0px 0px 50px 0px; } .framer-8H7FO .framer-6nx5sg { flex: 1 0 0px; width: 1px; } .framer-8H7FO .framer-mtrwro { order: 27; padding: 80px 0px 80px 0px; } .framer-8H7FO .framer-1hpbg4c { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; flex: 1 0 0px; width: 1px; will-change: unset; } .framer-8H7FO .framer-14o97wz { height: 483px; } .framer-8H7FO .framer-1x9gy6w { flex-direction: column; gap: 20px; height: min-content; order: 28; padding: 150px 20px 200px 20px; } .framer-8H7FO .framer-14nfsip, .framer-8H7FO .framer-1htmpn0, .framer-8H7FO .framer-1mnr6iw { flex: none; width: 100%; } .framer-8H7FO .framer-wsq8et { height: 394px; } .framer-8H7FO .framer-1onn82z { height: 426px; } .framer-8H7FO .framer-bbzayy { height: 465px; } .framer-8H7FO .framer-1npoyj4 { order: 29; } .framer-8H7FO .framer-n7wspa { height: 428px; } .framer-8H7FO .framer-15f2oko { order: 31; } .framer-8H7FO .framer-1skh0gr { height: 11px; left: calc(94.92187500000003% - 11px / 2); order: 33; top: calc(0.21213233794315445% - 11px / 2); width: 11px; } .framer-8H7FO .framer-omq61i { order: 34; }}\",\"@media (min-width: 600px) and (max-width: 767px) { .framer-8H7FO.framer-70o4f9 { width: 600px; } .framer-8H7FO .framer-a8besa { height: 95px; } .framer-8H7FO .framer-1boo37q { z-index: 0; } .framer-8H7FO .framer-1lpodpe { height: 76px; } .framer-8H7FO .framer-6b2bfe { padding: 0px 40px 0px 40px; } .framer-8H7FO .framer-1fwkpr9, .framer-8H7FO .framer-1fnuy5n { gap: 10px; } .framer-8H7FO .framer-gbba2h { height: var(--framer-aspect-ratio-supported, 8px); left: 95%; width: 11px; } .framer-8H7FO .framer-muoaod { height: var(--framer-aspect-ratio-supported, 15px); left: 75%; top: 0%; width: 19px; } .framer-8H7FO .framer-gxte4d { height: 9px; left: calc(13.833333333333355% - 10px / 2); top: calc(0.18961253091510877% - 9px / 2); width: 10px; } .framer-8H7FO .framer-xa3v4o { height: var(--framer-aspect-ratio-supported, 10px); left: 91%; top: 0%; width: 13px; } .framer-8H7FO .framer-1jtyadi { height: 16px; left: calc(4.833333333333355% - 15px / 2); top: calc(0.6760098928277222% - 16px / 2); width: 15px; } .framer-8H7FO .framer-1tk0svs { height: 15px; left: calc(91.66666666666669% - 14px / 2); top: calc(0.08244023083266853% - 15px / 2); width: 14px; } .framer-8H7FO .framer-1h6fa78, .framer-8H7FO .framer-1skh0gr { height: 7px; left: calc(97.66666666666669% - 7px / 2); top: calc(0.37922506183019533% - 7px / 2); width: 7px; } .framer-8H7FO .framer-16kdxoe { height: 11px; left: calc(86.00000000000001% - 11px / 2); top: calc(0.16488046166531486% - 11px / 2); width: 11px; } .framer-8H7FO .framer-1buadz9 { height: 11px; left: calc(6.000000000000022% - 11px / 2); top: calc(0.1731244847485795% - 11px / 2); width: 11px; } .framer-8H7FO .framer-10vdndz { height: 8px; left: calc(1.5000000000000222% - 8px / 2); top: calc(0.3215169002473429% - 8px / 2); width: 8px; } .framer-8H7FO .framer-3hqsr1-container { left: 50%; top: 15px; } .framer-8H7FO .framer-1jlz2t { height: min-content; } .framer-8H7FO .framer-10gt6rb { padding: 0px; } .framer-8H7FO .framer-19agxjq { gap: 0px; padding: 70px 20px 50px 20px; } .framer-8H7FO .framer-9yotzi { justify-content: flex-start; left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-1ydfeei { padding: 0px 15px 10px 10px; width: min-content; } .framer-8H7FO .framer-xzhb74 { width: 228px; } .framer-8H7FO .framer-wjiehn { height: 313px; } .framer-8H7FO .framer-nw1one { padding: 50px 0px 0px 0px; width: 100%; } .framer-8H7FO .framer-2a7m4, .framer-8H7FO .framer-mebcob { width: 100%; } .framer-8H7FO .framer-h0a53f { height: 515px; padding: 100px 0px 50px 0px; } .framer-8H7FO .framer-11y0dcd { height: 100%; } .framer-8H7FO .framer-1brwih { height: min-content; padding: 0px; } .framer-8H7FO .framer-1d3018f { padding: 100px 0px 0px 0px; } .framer-8H7FO .framer-6pguxc { padding: 0px 0px 30px 0px; } .framer-8H7FO .framer-xtv8zb { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; width: 100%; will-change: unset; } .framer-8H7FO .framer-a1avll { height: 338px; width: 100%; } .framer-8H7FO .framer-10pj2he { align-content: center; align-items: center; flex-direction: column; padding: 100px 0px 100px 0px; } .framer-8H7FO .framer-1r4bbzm { align-content: center; align-items: center; gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: 100%; } .framer-8H7FO .framer-11hgpn1 { align-content: center; align-items: center; justify-content: center; position: relative; top: unset; width: 570px; } .framer-8H7FO .framer-frg5m9 { height: auto; overflow: visible; white-space: pre; width: auto; } .framer-8H7FO .framer-mi1qjw { width: 561px; } .framer-8H7FO .framer-yqda95 { align-content: center; align-items: center; flex-direction: column; justify-content: center; padding: 100px 0px 100px 0px; width: 100%; } .framer-8H7FO .framer-t2hzcv { flex: none; order: 0; width: 100%; } .framer-8H7FO .framer-mollgw { gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-1suyp2d { position: relative; top: unset; width: min-content; } .framer-8H7FO .framer-joke1x { overflow: visible; white-space: pre; width: auto; } .framer-8H7FO .framer-1kvpnhh, .framer-8H7FO .framer-wkran1 { height: 89.02077151335311vh; } .framer-8H7FO .framer-1xz7lp9, .framer-8H7FO .framer-1dz8bla, .framer-8H7FO .framer-16sstjo, .framer-8H7FO .framer-13aq40w, .framer-8H7FO .framer-f1ud7c { height: 91.3946587537092vh; } .framer-8H7FO .framer-1ivlggs-container { height: 91vh; } .framer-8H7FO .framer-1w6geqv { gap: 10px; padding: 0px 20px 0px 20px; } .framer-8H7FO .framer-xgseg4 { align-self: stretch; height: auto; } .framer-8H7FO .framer-pj75y1 { flex: none; height: 335px; } .framer-8H7FO .framer-e9qhj5 { height: min-content; width: 227px; } .framer-8H7FO .framer-1oazj60 { flex: none; height: 335px; width: 255px; } .framer-8H7FO .framer-dcjhj5 { height: 429px; } .framer-8H7FO .framer-peshux-container { height: 278px; width: 493px; } .framer-8H7FO .framer-6nx5sg { flex: 1 0 0px; height: 475px; width: 1px; } .framer-8H7FO .framer-mtrwro { padding: 50px 0px 50px 0px; } .framer-8H7FO .framer-1hpbg4c { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; flex: 1 0 0px; height: 100vh; width: 1px; will-change: unset; } .framer-8H7FO .framer-14o97wz { height: 342px; } .framer-8H7FO .framer-1x9gy6w { flex-direction: column; height: 1303px; padding: 100px 0px 100px 0px; } .framer-8H7FO .framer-14nfsip, .framer-8H7FO .framer-1htmpn0, .framer-8H7FO .framer-1mnr6iw { flex: none; width: 100%; } .framer-8H7FO .framer-wsq8et, .framer-8H7FO .framer-1onn82z, .framer-8H7FO .framer-bbzayy { height: 345px; } .framer-8H7FO .framer-1npoyj4 { padding: 0px 0px 50px 0px; } .framer-8H7FO .framer-n7wspa { height: 337px; } .framer-8H7FO .framer-1nv6a0y { height: var(--framer-aspect-ratio-supported, 9px); left: 8%; top: 0%; width: 12px; } .framer-8H7FO .framer-omq61i { height: var(--framer-aspect-ratio-supported, 8px); left: 95%; top: 1%; width: 11px; }}\",\"@media (max-width: 599px) { .framer-8H7FO.framer-70o4f9 { width: 375px; } .framer-8H7FO .framer-a8besa { height: 139px; } .framer-8H7FO .framer-1lpodpe { height: 43px; } .framer-8H7FO .framer-6b2bfe { padding: 0px 30px 0px 30px; } .framer-8H7FO .framer-1fwkpr9 { align-content: center; align-items: center; flex-direction: column; gap: 20px; padding: 10px 0px 45px 0px; } .framer-8H7FO .framer-1fnuy5n { gap: 10px; } .framer-8H7FO .framer-17wcdyj { flex-wrap: wrap; } .framer-8H7FO .framer-gbba2h { height: var(--framer-aspect-ratio-supported, 13px); left: 21%; width: 17px; } .framer-8H7FO .framer-gxte4d { height: 11px; left: calc(14.66666666666669% - 12px / 2); top: calc(0.05410837133804493% - 11px / 2); width: 12px; } .framer-8H7FO .framer-xa3v4o { height: var(--framer-aspect-ratio-supported, 10px); left: 92%; top: 1%; width: 13px; } .framer-8H7FO .framer-1jtyadi { height: 11px; left: calc(12.533333333333355% - 10px / 2); top: calc(0.6654343807763623% - 11px / 2); width: 10px; } .framer-8H7FO .framer-1t32xf7 { height: 14px; left: calc(74.66666666666669% - 13px / 2); top: calc(0.30919069336015204% - 14px / 2); width: 13px; } .framer-8H7FO .framer-1tk0svs { height: 10px; left: calc(96.2666666666667% - 9px / 2); top: calc(0.971745444943249% - 10px / 2); width: 9px; } .framer-8H7FO .framer-1h6fa78 { height: 7px; left: calc(92.26666666666668% - 7px / 2); top: calc(0.3591233166094756% - 7px / 2); width: 7px; } .framer-8H7FO .framer-17jml28 { left: calc(80.80000000000003% - 7px / 2); top: calc(0.5069976234486623% - 6px / 2); } .framer-8H7FO .framer-16kdxoe { height: 13px; left: calc(47.20000000000002% - 13px / 2); top: calc(0.1314060446780774% - 13px / 2); width: 13px; } .framer-8H7FO .framer-1buadz9 { height: 7px; left: calc(5.600000000000023% - 7px / 2); top: calc(0.48697534204222676% - 7px / 2); width: 7px; } .framer-8H7FO .framer-10vdndz { height: 11px; left: calc(5.066666666666689% - 12px / 2); top: calc(0.19324418335010335% - 11px / 2); width: 12px; } .framer-8H7FO .framer-3hqsr1-container { left: 50%; top: 20px; } .framer-8H7FO .framer-1jlz2t { height: min-content; } .framer-8H7FO .framer-hege6 { height: 273px; } .framer-8H7FO .framer-10gt6rb, .framer-8H7FO .framer-xt7zru { padding: 0px; } .framer-8H7FO .framer-19agxjq { flex-direction: column; gap: 20px; padding: 0px 20px 0px 20px; } .framer-8H7FO .framer-9yotzi { left: unset; position: relative; top: unset; width: 100%; } .framer-8H7FO .framer-xzhb74, .framer-8H7FO .framer-1yf89at, .framer-8H7FO .framer-14q4jax, .framer-8H7FO .framer-mebcob { width: 100%; } .framer-8H7FO .framer-1hf0o3k, .framer-8H7FO .framer-1r1v6vz, .framer-8H7FO .framer-36vgme, .framer-8H7FO .framer-t2hzcv, .framer-8H7FO .framer-14nfsip, .framer-8H7FO .framer-1htmpn0, .framer-8H7FO .framer-1mnr6iw { flex: none; width: 100%; } .framer-8H7FO .framer-wjiehn { height: 389px; } .framer-8H7FO .framer-1qvou68, .framer-8H7FO .framer-3o4gwy { flex-direction: column; gap: 10px; justify-content: center; } .framer-8H7FO .framer-1s3z7jt { width: 325px; } .framer-8H7FO .framer-nw1one { padding: 0px; width: 100%; } .framer-8H7FO .framer-2a7m4 { height: 358px; width: 100%; } .framer-8H7FO .framer-h0a53f, .framer-8H7FO .framer-1npoyj4 { flex-direction: column; padding: 50px 0px 50px 0px; } .framer-8H7FO .framer-11y0dcd { flex: none; height: 217px; width: 100%; } .framer-8H7FO .framer-1brwih { flex-direction: column; height: 346px; padding: 0px; } .framer-8H7FO .framer-9rkcgu { flex: none; height: 34.834123222748815vh; width: 100%; } .framer-8H7FO .framer-xtv8zb, .framer-8H7FO .framer-1hpbg4c { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; width: 100%; will-change: unset; } .framer-8H7FO .framer-a1avll { height: 218px; width: 100%; } .framer-8H7FO .framer-10pj2he { flex-direction: column; padding: 50px 0px 0px 0px; } .framer-8H7FO .framer-1r4bbzm { gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-8H7FO .framer-11hgpn1 { padding: 0px 30px 0px 30px; position: relative; top: unset; } .framer-8H7FO .framer-frg5m9 { height: 144px; } .framer-8H7FO .framer-gm36w7 { padding: 0px 20px 0px 20px; width: 100%; } .framer-8H7FO .framer-mi1qjw { height: 386px; width: 100%; } .framer-8H7FO .framer-yqda95 { flex-direction: column; padding: 0px; width: 100%; } .framer-8H7FO .framer-mollgw { gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: 100%; } .framer-8H7FO .framer-1suyp2d { padding: 30px 30px 0px 30px; position: relative; top: unset; } .framer-8H7FO .framer-joke1x { overflow: visible; white-space: pre; width: auto; } .framer-8H7FO .framer-q8bdo8 { height: min-content; padding: 0px 50px 0px 50px; } .framer-8H7FO .framer-1g4a5iz { flex: none; height: 272px; order: 0; } .framer-8H7FO .framer-yr53wo-container { height: auto; } .framer-8H7FO .framer-1n127yt, .framer-8H7FO .framer-zma2nn, .framer-8H7FO .framer-al0h8q, .framer-8H7FO .framer-1176lus { padding: 0px 0px 100px 0px; } .framer-8H7FO .framer-1kvpnhh, .framer-8H7FO .framer-wkran1 { height: 22.748815165876778vh; } .framer-8H7FO .framer-1xz7lp9, .framer-8H7FO .framer-1dz8bla, .framer-8H7FO .framer-16sstjo, .framer-8H7FO .framer-13aq40w, .framer-8H7FO .framer-f1ud7c { height: 23.149236192714454vh; } .framer-8H7FO .framer-1ivlggs-container { height: 23vh; } .framer-8H7FO .framer-1w6geqv { flex-direction: column; height: 100vh; padding: 0px 30px 120px 30px; } .framer-8H7FO .framer-xgseg4 { height: 1px; width: 100%; } .framer-8H7FO .framer-e9qhj5 { height: min-content; width: 100%; } .framer-8H7FO .framer-1oazj60 { flex: none; height: 381px; } .framer-8H7FO .framer-dcjhj5 { height: 236px; } .framer-8H7FO .framer-v9gcfj { --border-bottom-width: 1px; --border-left-width: 1px; --border-right-width: 1px; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; order: 0; width: 318px; } .framer-8H7FO .framer-peshux-container { height: 178px; width: 375px; } .framer-8H7FO .framer-13cegr7 { flex-direction: column; } .framer-8H7FO .framer-6nx5sg { height: 32.93838862559242vh; width: 100%; } .framer-8H7FO .framer-mtrwro { flex-direction: column; padding: 0px; } .framer-8H7FO .framer-14o97wz { height: 304px; } .framer-8H7FO .framer-1x9gy6w { flex-direction: column; height: min-content; padding: 100px 30px 50px 30px; } .framer-8H7FO .framer-wsq8et, .framer-8H7FO .framer-1onn82z, .framer-8H7FO .framer-bbzayy { height: 305px; } .framer-8H7FO .framer-n7wspa { flex: none; height: 228px; width: 100%; } .framer-8H7FO .framer-omq61i { height: var(--framer-aspect-ratio-supported, 13px); left: 33%; top: 0%; width: 17px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12752\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LzIT9dF6D\":{\"layout\":[\"fixed\",\"auto\"]},\"rN3j5g1cc\":{\"layout\":[\"fixed\",\"auto\"]},\"x7ZlL2OmK\":{\"layout\":[\"fixed\",\"auto\"]},\"xIjao21rP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramernjtTl6oLh=withCSS(Component,css,\"framer-8H7FO\");export default FramernjtTl6oLh;FramernjtTl6oLh.displayName=\"Work\";FramernjtTl6oLh.defaultProps={height:12752,width:1512};addFonts(FramernjtTl6oLh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FE5DMCVO7676XBZO76R6BBLVYNJTAGNN/ZSUXML62VYR72Y4ABFYVQUJXTHDK7YJ2/LIFXYPK76URT3NB4B4JNO3Y23DJLOWJ3.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VA23FCGWQ2ZGKFEM75LQVBDIR5XCXJI3/V5QYJZB23L2PDOZTWQY5F3I5R2B3UGCD/XUL6BSI7XTIWXDHGTQPLNOWHZU5CTO77.woff2\",weight:\"600\"}]},...Button2Fonts,...MEnuFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...componentPresets.fonts?.[\"vol6S0v5d\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"vol6S0v5d\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernjtTl6oLh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"12752\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LzIT9dF6D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rN3j5g1cc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x7ZlL2OmK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xIjao21rP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1512\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}