{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/exnjFfqPVZXjeNMua7qh/VaZU1LwRYnEs2jPg4qpc/qF1rPGyPu.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/tqrLC7FdWnbrTBu4Jbjx/xAsV4D3kJS5KXk2kRGw6/EvMPvjkuO.js", "ssg:https://framerusercontent.com/modules/636skVTuLgAEhxeKV7zW/9tcIif1k69aADC5pPqWK/as8CFvHIb.js", "ssg:https://framerusercontent.com/modules/htHwC4vpEoboecDmk1MV/ZGEaSkEuYpUGBbjmVMR4/CZ96QCI_V.js", "ssg:https://framerusercontent.com/modules/tKRSeRqqG28XNnc8C8cH/cqB0V4Je3kGhenISWkUk/Zlrt2Tzwr.js", "ssg:https://framerusercontent.com/modules/mp0A81O312C8FpWYXLY9/kN5T3Lm5IqDrtks95jUq/jmhoDxLSf.js", "ssg:https://framerusercontent.com/modules/HP7EP3nRZqy6f9UrOHxh/Km0mdXSpEecqJ4KnBfpq/ApFZ0evyo.js", "ssg:https://framerusercontent.com/modules/MQWFMmKa8iuNf2jhu4Vr/dIRxbjwsPdsdNIS72Dao/JapLcaaY7.js", "ssg:https://framerusercontent.com/modules/kTtWQ3cJbxB0BzfjHeXy/puyJWcgNLHiuiDhEqx6G/V6m6OEtpr.js", "ssg:https://framerusercontent.com/modules/1lKL4X6MiQ2LKnfy78PJ/7m8leWUjh8V7qT9FVVEJ/EVKFa7Kxf.js", "ssg:https://framerusercontent.com/modules/qqRQR7PNeM04xIDhVx5V/WYLEvbMr5KqINhtXClJc/jF5oHa9QM.js", "ssg:https://framerusercontent.com/modules/tBOglAb3wlUoBJemW8ib/22DXSq1JqOAY30JxDB8H/myLV0DuAR.js", "ssg:https://framerusercontent.com/modules/kRndexBczUGAZjRp5Bz8/T4lUMmakOrnI7MjT1UA6/DM0pIiYm6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as o,cx as i,Image as d,useLocaleInfo as s,useVariantState as m,withCSS as n}from\"framer\";import{LayoutGroup as l,motion as p,MotionConfigContext as f}from\"framer-motion\";import*as u from\"react\";let y=[\"ImEi6PjDn\",\"exsKPrxTp\",\"M0t0grOF6\",\"yERmuL08l\",\"vZamyttoR\",\"AnKogmQvf\",\"OS7AzClgs\",\"pX66JCaED\"],b=\"framer-qWZCt\",g={AnKogmQvf:\"framer-v-edxt79\",exsKPrxTp:\"framer-v-ituw2b\",ImEi6PjDn:\"framer-v-159bm99\",M0t0grOF6:\"framer-v-18720yi\",OS7AzClgs:\"framer-v-qjse2p\",pX66JCaED:\"framer-v-18k4bqn\",vZamyttoR:\"framer-v-pkdtos\",yERmuL08l:\"framer-v-1ba1kr5\"};function v(e,...r){let a={};return null==r||r.forEach(r=>r&&Object.assign(a,e[r])),a;}let R={default:{duration:0,type:\"tween\"}},c=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,h=({value:r,children:a})=>{let t=u.useContext(f),o=null!=r?r:t.transition,i=u.useMemo(()=>({...t,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(f.Provider,{value:i,children:a});},C={1:\"ImEi6PjDn\",2:\"exsKPrxTp\",3:\"M0t0grOF6\",4:\"yERmuL08l\",5:\"vZamyttoR\",6:\"AnKogmQvf\",7:\"OS7AzClgs\",8:\"pX66JCaED\"},x=({height:e,id:r,image1:a,image2:t,image3:o,image4:i,image5:d,image6:s,image7:m,image8:n,width:l,...p})=>{var f,u;return{...p,CQuyllWoH:null!=t?t:p.CQuyllWoH,CVqnpV02V:null!=d?d:p.CVqnpV02V,E1VYOkQbB:null!=o?o:p.E1VYOkQbB,fo7liKqhn:null!=i?i:p.fo7liKqhn,ga3pCLb7N:null!=a?a:p.ga3pCLb7N,Hbt1_Qqr7:null!=n?n:p.Hbt1_Qqr7,NOOYR5UCo:null!=s?s:p.NOOYR5UCo,oVr0ArdS6:null!=m?m:p.oVr0ArdS6,variant:null!==(u=null!==(f=C[p.variant])&&void 0!==f?f:p.variant)&&void 0!==u?u:\"ImEi6PjDn\"};},I=(e,r)=>r.join(\"-\")+e.layoutDependency,q=/*#__PURE__*/u.forwardRef(function(a,t){let{activeLocale:o}=s(),{style:n,className:f,layoutId:b,variant:C,ga3pCLb7N:q,CQuyllWoH:w,E1VYOkQbB:L,fo7liKqhn:E,CVqnpV02V:T,NOOYR5UCo:D,oVr0ArdS6:O,Hbt1_Qqr7:Z,...B}=x(a),{baseVariant:z,classNames:A,gestureVariant:N,setGestureState:P,setVariant:K,transition:Q,variants:k}=m({cycleOrder:y,defaultVariant:\"ImEi6PjDn\",transitions:R,variant:C,variantClassNames:g}),V=I(a,k),W=u.useRef(null),S=u.useId();return /*#__PURE__*/e(l,{id:null!=b?b:S,children:/*#__PURE__*/e(p.div,{initial:C,animate:k,onHoverStart:()=>P({isHovered:!0}),onHoverEnd:()=>P({isHovered:!1}),onTapStart:()=>P({isPressed:!0}),onTap:()=>P({isPressed:!1}),onTapCancel:()=>P({isPressed:!1}),className:i(\"framer-qWZCt\",...[],A),style:{display:\"contents\"},children:/*#__PURE__*/e(h,{value:Q,children:/*#__PURE__*/r(p.div,{...B,className:i(\"framer-159bm99\",f),\"data-framer-name\":\"1\",layoutDependency:V,layoutId:\"ImEi6PjDn\",ref:null!=t?t:W,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...n},...v({AnKogmQvf:{\"data-framer-name\":\"6\"},exsKPrxTp:{\"data-framer-name\":\"2\"},M0t0grOF6:{\"data-framer-name\":\"3\"},OS7AzClgs:{\"data-framer-name\":\"7\"},pX66JCaED:{\"data-framer-name\":\"8\"},vZamyttoR:{\"data-framer-name\":\"5\"},yERmuL08l:{\"data-framer-name\":\"4\"}},z,N),children:[/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(q)},className:\"framer-qmg1sn\",\"data-framer-name\":\"1\",layoutDependency:V,layoutId:\"onQE5Jpgf\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},variants:{AnKogmQvf:{opacity:0},exsKPrxTp:{opacity:0},M0t0grOF6:{opacity:0},OS7AzClgs:{opacity:0},pX66JCaED:{opacity:0},vZamyttoR:{opacity:0},yERmuL08l:{opacity:0}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(w)},className:\"framer-xqlb8p\",\"data-framer-name\":\"2\",layoutDependency:V,layoutId:\"ALAEOM3L7\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{exsKPrxTp:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(L)},className:\"framer-1b8s4vb\",\"data-framer-name\":\"3\",layoutDependency:V,layoutId:\"sHCoudYoZ\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{M0t0grOF6:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(E)},className:\"framer-ndd1wb\",\"data-framer-name\":\"4\",layoutDependency:V,layoutId:\"G1zKDxN3J\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{yERmuL08l:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(T)},className:\"framer-1xy5u6k\",\"data-framer-name\":\"5\",layoutDependency:V,layoutId:\"gCwra414t\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{vZamyttoR:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(D)},className:\"framer-lwdg6m\",\"data-framer-name\":\"6\",layoutDependency:V,layoutId:\"ccXroSqYz\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{AnKogmQvf:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(O)},className:\"framer-1126zuv\",\"data-framer-name\":\"7\",layoutDependency:V,layoutId:\"s6SBJUAZH\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{OS7AzClgs:{opacity:1}}}),/*#__PURE__*/e(d,{background:{alt:\"\",fit:\"fill\",sizes:\"min(656px, 100vw)\",...c(Z)},className:\"framer-1btf811\",\"data-framer-name\":\"8\",layoutDependency:V,layoutId:\"XwQn_MlyD\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:0},variants:{pX66JCaED:{opacity:1}}})]})})})});}),w=['.framer-qWZCt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qWZCt .framer-1dnw2dr { display: block; }\",\".framer-qWZCt .framer-159bm99 { height: 368px; overflow: hidden; position: relative; width: 656px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qWZCt .framer-qmg1sn, .framer-qWZCt .framer-xqlb8p, .framer-qWZCt .framer-1b8s4vb, .framer-qWZCt .framer-ndd1wb, .framer-qWZCt .framer-1xy5u6k, .framer-qWZCt .framer-lwdg6m, .framer-qWZCt .framer-1126zuv, .framer-qWZCt .framer-1btf811 { bottom: 0px; flex: none; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; }\"],L=n(q,w,\"framer-qWZCt\");export default L;L.displayName=\"Gallery/Images\",L.defaultProps={height:368,width:656},t(L,{variant:{options:[\"ImEi6PjDn\",\"exsKPrxTp\",\"M0t0grOF6\",\"yERmuL08l\",\"vZamyttoR\",\"AnKogmQvf\",\"OS7AzClgs\",\"pX66JCaED\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"],title:\"Variant\",type:o.Enum},ga3pCLb7N:{title:\"Image 1\",type:o.ResponsiveImage},CQuyllWoH:{title:\"Image 2\",type:o.ResponsiveImage},E1VYOkQbB:{title:\"Image 3\",type:o.ResponsiveImage},fo7liKqhn:{title:\"Image 4\",type:o.ResponsiveImage},CVqnpV02V:{title:\"Image 5\",type:o.ResponsiveImage},NOOYR5UCo:{title:\"Image 6\",type:o.ResponsiveImage},oVr0ArdS6:{title:\"Image 7\",type:o.ResponsiveImage},Hbt1_Qqr7:{title:\"Image 8\",type:o.ResponsiveImage}}),a(L,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqF1rPGyPu\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ga3pCLb7N\\\":\\\"image1\\\",\\\"CQuyllWoH\\\":\\\"image2\\\",\\\"E1VYOkQbB\\\":\\\"image3\\\",\\\"fo7liKqhn\\\":\\\"image4\\\",\\\"CVqnpV02V\\\":\\\"image5\\\",\\\"NOOYR5UCo\\\":\\\"image6\\\",\\\"oVr0ArdS6\\\":\\\"image7\\\",\\\"Hbt1_Qqr7\\\":\\\"image8\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"368\",\"framerIntrinsicWidth\":\"656\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"exsKPrxTp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M0t0grOF6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yERmuL08l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vZamyttoR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AnKogmQvf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OS7AzClgs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pX66JCaED\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qF1rPGyPu.map", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as o,cx as i,Image as n,useActiveVariantCallback as l,useLocaleInfo as s,useVariantState as d,withCSS as m}from\"framer\";import{LayoutGroup as u,motion as p,MotionConfigContext as f}from\"framer-motion\";import*as c from\"react\";let h={JSBRhZ05q:{hover:!0}},v=[\"kGqWZo08u\",\"JSBRhZ05q\"],w=\"framer-vWUw1\",b={JSBRhZ05q:\"framer-v-12o467w\",kGqWZo08u:\"framer-v-10hsbsc\"};function y(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let g={default:{delay:0,duration:.25,ease:[.44,0,.56,1],type:\"tween\"}},R=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,B=({value:r,children:t})=>{let a=c.useContext(f),o=null!=r?r:a.transition,i=c.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(f.Provider,{value:i,children:t});},q={Active:\"kGqWZo08u\",Inactive:\"JSBRhZ05q\"},x=({border:e,height:r,id:t,image:a,tap:o,width:i,...n})=>{var l,s,d,m;return{...n,Na8yZDTE3:null!=o?o:n.Na8yZDTE3,qorJ6sE5a:null!==(l=null!=e?e:n.qorJ6sE5a)&&void 0!==l?l:\"rgb(255, 255, 255)\",variant:null!==(d=null!==(s=q[n.variant])&&void 0!==s?s:n.variant)&&void 0!==d?d:\"kGqWZo08u\",ztRBQIg9r:null!==(m=null!=a?a:n.ztRBQIg9r)&&void 0!==m?m:{src:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=512 512w, https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp 1456w\"}};},Z=(e,r)=>r.join(\"-\")+e.layoutDependency,j=/*#__PURE__*/c.forwardRef(function(t,a){let{activeLocale:o}=s(),{style:m,className:f,layoutId:w,variant:q,ztRBQIg9r:j,Na8yZDTE3:W,qorJ6sE5a:J,...N}=x(t),{baseVariant:S,classNames:k,gestureVariant:I,setGestureState:T,setVariant:z,transition:E,variants:A}=d({cycleOrder:v,defaultVariant:\"kGqWZo08u\",enabledGestures:h,transitions:g,variant:q,variantClassNames:b}),L=Z(t,A),{activeVariantCallback:U,delay:G}=l(S),D=U(async(...e)=>{if(W){let r=await W(...e);if(!1===r)return!1;}}),O=c.useRef(null),F=c.useId();return /*#__PURE__*/e(u,{id:null!=w?w:F,children:/*#__PURE__*/e(p.div,{initial:q,animate:A,onHoverStart:()=>T({isHovered:!0}),onHoverEnd:()=>T({isHovered:!1}),onTapStart:()=>T({isPressed:!0}),onTap:()=>T({isPressed:!1}),onTapCancel:()=>T({isPressed:!1}),className:i(\"framer-vWUw1\",...[],k),style:{display:\"contents\"},children:/*#__PURE__*/e(B,{value:E,children:/*#__PURE__*/r(p.div,{...N,className:i(\"framer-10hsbsc\",f),\"data-framer-name\":\"Active\",\"data-highlight\":!0,layoutDependency:L,layoutId:\"kGqWZo08u\",onTap:D,ref:null!=a?a:O,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:1,...m},variants:{\"JSBRhZ05q-hover\":{opacity:.8},JSBRhZ05q:{opacity:.4}},...y({\"JSBRhZ05q-hover\":{\"data-framer-name\":void 0},JSBRhZ05q:{\"data-framer-name\":\"Inactive\"}},S,I),children:[/*#__PURE__*/e(p.div,{className:\"framer-1kwqkx5\",\"data-framer-name\":\"Border\",layoutDependency:L,layoutId:\"JWiUs4_s_\",style:{backgroundColor:J,opacity:0},variants:{JSBRhZ05q:{opacity:.2}}}),/*#__PURE__*/e(n,{background:{alt:\"\",fit:\"fill\",sizes:\"80px\",...R(j)},className:\"framer-1ame7u7\",\"data-framer-name\":\"Image\",layoutDependency:L,layoutId:\"RjsMvp5Bq\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})]})})})});}),W=['.framer-vWUw1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vWUw1 .framer-3os7mm { display: block; }\",\".framer-vWUw1 .framer-10hsbsc { cursor: pointer; height: 46px; overflow: hidden; position: relative; width: 82px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vWUw1 .framer-1kwqkx5 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-vWUw1 .framer-1ame7u7 { flex: none; height: 44px; left: calc(50.00000000000002% - 80px / 2); overflow: visible; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 44px / 2); width: 80px; }\"],J=m(j,W,\"framer-vWUw1\");export default J;J.displayName=\"Gallery/Navigation Item\",J.defaultProps={height:46,width:82},a(J,{variant:{options:[\"kGqWZo08u\",\"JSBRhZ05q\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:o.Enum},ztRBQIg9r:{__defaultAssetReference:\"data:framer/asset-reference,lmFollwwBANyjurh7LnOrwRjzY.webp?originalFilename=blue-1.webp&preferredSize=auto\",title:\"Image\",type:o.ResponsiveImage},Na8yZDTE3:{title:\"Tap\",type:o.EventHandler},qorJ6sE5a:{defaultValue:\"rgb(255, 255, 255)\",title:\"Border\",type:o.Color}}),t(J,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEvMPvjkuO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"46\",\"framerVariables\":\"{\\\"ztRBQIg9r\\\":\\\"image\\\",\\\"Na8yZDTE3\\\":\\\"tap\\\",\\\"qorJ6sE5a\\\":\\\"border\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JSBRhZ05q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dt5DBic_o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"82\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EvMPvjkuO.map", "// Generated by Framer (018ad06)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";import GalleryNavigationItem from\"https://framerusercontent.com/modules/tqrLC7FdWnbrTBu4Jbjx/xAsV4D3kJS5KXk2kRGw6/EvMPvjkuO.js\";const GalleryNavigationItemFonts=getFonts(GalleryNavigationItem);const SVGFonts=getFonts(SVG);const cycleOrder=[\"FGpOnRU_N\",\"jvnvuDGCS\",\"AlEY69yNC\",\"hOASqGPCv\",\"q2Vxci1G5\",\"dagyYVaWL\",\"eLG0nTmCO\",\"OU2UXHrRd\"];const serializationHash=\"framer-XH8mW\";const variantClassNames={AlEY69yNC:\"framer-v-rzgm0b\",dagyYVaWL:\"framer-v-190c1n5\",eLG0nTmCO:\"framer-v-1hsnljb\",FGpOnRU_N:\"framer-v-1y7x9f8\",hOASqGPCv:\"framer-v-6aljie\",jvnvuDGCS:\"framer-v-7k138g\",OU2UXHrRd:\"framer-v-13kndbc\",q2Vxci1G5:\"framer-v-lwv4u4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:650,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1\":\"FGpOnRU_N\",\"2\":\"jvnvuDGCS\",\"3\":\"AlEY69yNC\",\"4\":\"hOASqGPCv\",\"5\":\"q2Vxci1G5\",\"6\":\"dagyYVaWL\",\"7\":\"eLG0nTmCO\",\"8\":\"OU2UXHrRd\"};const getProps=({_1,_2,_3,_4,_5,_6,_7,_8,background,height,id,image1,image2,image3,image4,image5,image6,image7,image8,selector,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,cx33mnUE3:(_ref=image2!==null&&image2!==void 0?image2:props.cx33mnUE3)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp 1456w\"},FfrO1KV0Q:_3!==null&&_3!==void 0?_3:props.FfrO1KV0Q,FX_YoCLJm:(_ref1=image1!==null&&image1!==void 0?image1:props.FX_YoCLJm)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp 1456w\"},g8ToaZVmj:image3!==null&&image3!==void 0?image3:props.g8ToaZVmj,guL96G44I:_7!==null&&_7!==void 0?_7:props.guL96G44I,IqDVb43PR:(_ref2=selector!==null&&selector!==void 0?selector:props.IqDVb43PR)!==null&&_ref2!==void 0?_ref2:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",jR68EO0KP:_4!==null&&_4!==void 0?_4:props.jR68EO0KP,kV0neR1DF:image8!==null&&image8!==void 0?image8:props.kV0neR1DF,moyOFAv_J:_6!==null&&_6!==void 0?_6:props.moyOFAv_J,MvhWGEEJw:_8!==null&&_8!==void 0?_8:props.MvhWGEEJw,qO9woDsIE:image4!==null&&image4!==void 0?image4:props.qO9woDsIE,qX5aJY0_l:_1!==null&&_1!==void 0?_1:props.qX5aJY0_l,RthHlBIYj:_2!==null&&_2!==void 0?_2:props.RthHlBIYj,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"FGpOnRU_N\",XLzMbvsC3:(_ref4=background!==null&&background!==void 0?background:props.XLzMbvsC3)!==null&&_ref4!==void 0?_ref4:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",y0fX7xmZq:image5!==null&&image5!==void 0?image5:props.y0fX7xmZq,YjoLglh7W:image7!==null&&image7!==void 0?image7:props.YjoLglh7W,YLJ1H6SSA:_5!==null&&_5!==void 0?_5:props.YLJ1H6SSA,ZrKNCUwGg:image6!==null&&image6!==void 0?image6:props.ZrKNCUwGg};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,moyOFAv_J,guL96G44I,MvhWGEEJw,XLzMbvsC3,IqDVb43PR,FX_YoCLJm,cx33mnUE3,g8ToaZVmj,qO9woDsIE,y0fX7xmZq,ZrKNCUwGg,YjoLglh7W,kV0neR1DF,qX5aJY0_l,RthHlBIYj,FfrO1KV0Q,jR68EO0KP,YLJ1H6SSA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FGpOnRU_N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Na8yZDTE3148n0zw=activeVariantCallback(async(...args)=>{if(qX5aJY0_l){const res=await qX5aJY0_l(...args);if(res===false)return false;}setVariant(\"FGpOnRU_N\");});const Na8yZDTE3zf4p3b=activeVariantCallback(async(...args)=>{if(RthHlBIYj){const res=await RthHlBIYj(...args);if(res===false)return false;}setVariant(\"jvnvuDGCS\");});const Na8yZDTE31grguig=activeVariantCallback(async(...args)=>{if(FfrO1KV0Q){const res=await FfrO1KV0Q(...args);if(res===false)return false;}setVariant(\"AlEY69yNC\");});const Na8yZDTE3dxsg45=activeVariantCallback(async(...args)=>{if(jR68EO0KP){const res=await jR68EO0KP(...args);if(res===false)return false;}setVariant(\"hOASqGPCv\");});const Na8yZDTE3uyf6m7=activeVariantCallback(async(...args)=>{if(YLJ1H6SSA){const res=await YLJ1H6SSA(...args);if(res===false)return false;}setVariant(\"q2Vxci1G5\");});const Na8yZDTE3xidlbj=activeVariantCallback(async(...args)=>{if(moyOFAv_J){const res=await moyOFAv_J(...args);if(res===false)return false;}setVariant(\"dagyYVaWL\");});const Na8yZDTE37mjirn=activeVariantCallback(async(...args)=>{if(guL96G44I){const res=await guL96G44I(...args);if(res===false)return false;}setVariant(\"eLG0nTmCO\");});const Na8yZDTE3bouxft=activeVariantCallback(async(...args)=>{if(MvhWGEEJw){const res=await MvhWGEEJw(...args);if(res===false)return false;}setVariant(\"OU2UXHrRd\");});const ref1=React.useRef(null);const visible=isSet(g8ToaZVmj);const visible1=isSet(qO9woDsIE);const visible2=isSet(y0fX7xmZq);const visible3=isSet(ZrKNCUwGg);const visible4=isSet(YjoLglh7W);const visible5=isSet(kV0neR1DF);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1y7x9f8\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"FGpOnRU_N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:XLzMbvsC3,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({AlEY69yNC:{\"data-framer-name\":\"3\"},dagyYVaWL:{\"data-framer-name\":\"6\"},eLG0nTmCO:{\"data-framer-name\":\"7\"},hOASqGPCv:{\"data-framer-name\":\"4\"},jvnvuDGCS:{\"data-framer-name\":\"2\"},OU2UXHrRd:{\"data-framer-name\":\"8\"},q2Vxci1G5:{\"data-framer-name\":\"5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9s7jg-container\",layoutDependency:layoutDependency,layoutId:\"xcxxKabVT-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"xcxxKabVT\",layoutId:\"xcxxKabVT\",Na8yZDTE3:Na8yZDTE3148n0zw,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"kGqWZo08u\",width:\"100%\",ztRBQIg9r:toResponsiveImage(FX_YoCLJm),...addPropertyOverrides({AlEY69yNC:{variant:\"JSBRhZ05q\"},dagyYVaWL:{variant:\"JSBRhZ05q\"},eLG0nTmCO:{variant:\"JSBRhZ05q\"},hOASqGPCv:{variant:\"JSBRhZ05q\"},jvnvuDGCS:{variant:\"JSBRhZ05q\"},OU2UXHrRd:{variant:\"JSBRhZ05q\"},q2Vxci1G5:{variant:\"JSBRhZ05q\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lp6yyz-container\",layoutDependency:layoutDependency,layoutId:\"Kt84URntc-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"Kt84URntc\",layoutId:\"Kt84URntc\",Na8yZDTE3:Na8yZDTE3zf4p3b,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(cx33mnUE3),...addPropertyOverrides({jvnvuDGCS:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpy5wa-container\",layoutDependency:layoutDependency,layoutId:\"hrbxXZ8az-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"hrbxXZ8az\",layoutId:\"hrbxXZ8az\",Na8yZDTE3:Na8yZDTE31grguig,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(g8ToaZVmj),...addPropertyOverrides({AlEY69yNC:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sf6idl-container\",layoutDependency:layoutDependency,layoutId:\"lxdZxiIN7-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"lxdZxiIN7\",layoutId:\"lxdZxiIN7\",Na8yZDTE3:Na8yZDTE3dxsg45,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(qO9woDsIE),...addPropertyOverrides({hOASqGPCv:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bprvaw-container\",layoutDependency:layoutDependency,layoutId:\"s08QOvlG0-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"s08QOvlG0\",layoutId:\"s08QOvlG0\",Na8yZDTE3:Na8yZDTE3uyf6m7,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(y0fX7xmZq),...addPropertyOverrides({q2Vxci1G5:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17q1c5f-container\",layoutDependency:layoutDependency,layoutId:\"fHSx6ZcsT-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"fHSx6ZcsT\",layoutId:\"fHSx6ZcsT\",Na8yZDTE3:Na8yZDTE3xidlbj,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(ZrKNCUwGg),...addPropertyOverrides({dagyYVaWL:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yq4j0j-container\",layoutDependency:layoutDependency,layoutId:\"gmwe4T8x5-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"gmwe4T8x5\",layoutId:\"gmwe4T8x5\",Na8yZDTE3:Na8yZDTE37mjirn,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(YjoLglh7W),...addPropertyOverrides({eLG0nTmCO:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3coayb-container\",layoutDependency:layoutDependency,layoutId:\"HE9CeCyom-container\",children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"HE9CeCyom\",layoutId:\"HE9CeCyom\",Na8yZDTE3:Na8yZDTE3bouxft,qorJ6sE5a:IqDVb43PR,style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(kV0neR1DF),...addPropertyOverrides({OU2UXHrRd:{variant:\"kGqWZo08u\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gtlubx\",\"data-framer-name\":\"Selector\",layoutDependency:layoutDependency,layoutId:\"kz5nJggPI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i1f5yo\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"SD6Aa0dtV\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xj9sw3-container\",layoutDependency:layoutDependency,layoutId:\"Bo4FufO5P-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:IqDVb43PR,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"86\" height=\"50\" viewBox=\"0 0 86 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.96341 0H76.0366C81.5731 0 86 4.48832 86 9.94983V40.0502C86 45.5117 81.5731 50 76.0366 50H9.96342C4.42691 50 0 45.5117 0 40.0502V9.94983C0 4.48832 4.42691 0 9.96341 0ZM9.96341 1.92308C5.54024 1.92308 1.95455 5.51678 1.95455 9.94983V40.0502C1.95455 44.4832 5.54024 48.0769 9.96342 48.0769H76.0366C80.4598 48.0769 84.0455 44.4832 84.0455 40.0502V9.94983C84.0455 5.51678 80.4598 1.92308 76.0366 1.92308H9.96341Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"Bo4FufO5P\",layoutId:\"Bo4FufO5P\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t2lswa-container\",layoutDependency:layoutDependency,layoutId:\"M37M4d2e9-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"M37M4d2e9\",layoutId:\"M37M4d2e9\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(cx33mnUE3)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ydcwl9-container\",layoutDependency:layoutDependency,layoutId:\"KLM8P2nWh-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"KLM8P2nWh\",layoutId:\"KLM8P2nWh\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(g8ToaZVmj)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16t7vfx-container\",layoutDependency:layoutDependency,layoutId:\"jnfWKuhqF-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"jnfWKuhqF\",layoutId:\"jnfWKuhqF\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(qO9woDsIE)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qr74f3-container\",layoutDependency:layoutDependency,layoutId:\"XMFWoi153-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"XMFWoi153\",layoutId:\"XMFWoi153\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(y0fX7xmZq)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kb3yq-container\",layoutDependency:layoutDependency,layoutId:\"jz9PBIVbY-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"jz9PBIVbY\",layoutId:\"jz9PBIVbY\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(ZrKNCUwGg)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ark879-container\",layoutDependency:layoutDependency,layoutId:\"GmEcdaQQS-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"GmEcdaQQS\",layoutId:\"GmEcdaQQS\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(YjoLglh7W)})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxszz0-container\",layoutDependency:layoutDependency,layoutId:\"YHT8GXIb3-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(GalleryNavigationItem,{height:\"100%\",id:\"YHT8GXIb3\",layoutId:\"YHT8GXIb3\",qorJ6sE5a:\"rgb(255, 255, 255)\",style:{height:\"100%\",width:\"100%\"},variant:\"JSBRhZ05q\",width:\"100%\",ztRBQIg9r:toResponsiveImage(kV0neR1DF)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XH8mW.framer-1avnxha, .framer-XH8mW .framer-1avnxha { display: block; }\",\".framer-XH8mW.framer-1y7x9f8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 380px; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-XH8mW .framer-1m9s7jg-container, .framer-XH8mW .framer-lp6yyz-container, .framer-XH8mW .framer-1cpy5wa-container, .framer-XH8mW .framer-1sf6idl-container, .framer-XH8mW .framer-bprvaw-container, .framer-XH8mW .framer-17q1c5f-container, .framer-XH8mW .framer-1yq4j0j-container, .framer-XH8mW .framer-3coayb-container { flex: none; height: 46px; position: relative; width: 82px; }\",\".framer-XH8mW .framer-1gtlubx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 52px; justify-content: flex-start; left: 0px; overflow: visible; padding: 8px; pointer-events: none; position: absolute; right: 0px; top: calc(50.00000000000002% - 52px / 2); z-index: 2; }\",\".framer-XH8mW .framer-1i1f5yo { flex: none; height: 52px; overflow: visible; pointer-events: none; position: relative; width: 82px; }\",\".framer-XH8mW .framer-1xj9sw3-container { flex: none; height: 50px; left: calc(50.00000000000002% - 86px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 86px; z-index: 1; }\",\".framer-XH8mW .framer-1t2lswa-container, .framer-XH8mW .framer-ydcwl9-container, .framer-XH8mW .framer-16t7vfx-container, .framer-XH8mW .framer-qr74f3-container, .framer-XH8mW .framer-kb3yq-container, .framer-XH8mW .framer-ark879-container, .framer-XH8mW .framer-sxszz0-container { flex: none; height: 46px; pointer-events: none; position: relative; width: 82px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XH8mW.framer-1y7x9f8, .framer-XH8mW .framer-1gtlubx { gap: 0px; } .framer-XH8mW.framer-1y7x9f8 > *, .framer-XH8mW .framer-1gtlubx > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-XH8mW.framer-1y7x9f8 > :first-child, .framer-XH8mW .framer-1gtlubx > :first-child { margin-left: 0px; } .framer-XH8mW.framer-1y7x9f8 > :last-child, .framer-XH8mW .framer-1gtlubx > :last-child { margin-right: 0px; } }\",\".framer-XH8mW.framer-v-7k138g .framer-1i1f5yo, .framer-XH8mW.framer-v-rzgm0b .framer-ydcwl9-container, .framer-XH8mW.framer-v-6aljie .framer-ydcwl9-container, .framer-XH8mW.framer-v-lwv4u4 .framer-ydcwl9-container, .framer-XH8mW.framer-v-190c1n5 .framer-ydcwl9-container, .framer-XH8mW.framer-v-1hsnljb .framer-ydcwl9-container, .framer-XH8mW.framer-v-13kndbc .framer-ydcwl9-container { order: 1; }\",\".framer-XH8mW.framer-v-7k138g .framer-1t2lswa-container, .framer-XH8mW.framer-v-rzgm0b .framer-1t2lswa-container, .framer-XH8mW.framer-v-6aljie .framer-1t2lswa-container, .framer-XH8mW.framer-v-lwv4u4 .framer-1t2lswa-container, .framer-XH8mW.framer-v-190c1n5 .framer-1t2lswa-container, .framer-XH8mW.framer-v-1hsnljb .framer-1t2lswa-container, .framer-XH8mW.framer-v-13kndbc .framer-1t2lswa-container { order: 0; }\",\".framer-XH8mW.framer-v-7k138g .framer-ydcwl9-container, .framer-XH8mW.framer-v-rzgm0b .framer-1i1f5yo, .framer-XH8mW.framer-v-6aljie .framer-16t7vfx-container, .framer-XH8mW.framer-v-lwv4u4 .framer-16t7vfx-container, .framer-XH8mW.framer-v-190c1n5 .framer-16t7vfx-container, .framer-XH8mW.framer-v-1hsnljb .framer-16t7vfx-container, .framer-XH8mW.framer-v-13kndbc .framer-16t7vfx-container { order: 2; }\",\".framer-XH8mW.framer-v-7k138g .framer-16t7vfx-container, .framer-XH8mW.framer-v-rzgm0b .framer-16t7vfx-container, .framer-XH8mW.framer-v-6aljie .framer-1i1f5yo, .framer-XH8mW.framer-v-lwv4u4 .framer-qr74f3-container, .framer-XH8mW.framer-v-190c1n5 .framer-qr74f3-container, .framer-XH8mW.framer-v-1hsnljb .framer-qr74f3-container, .framer-XH8mW.framer-v-13kndbc .framer-qr74f3-container { order: 3; }\",\".framer-XH8mW.framer-v-7k138g .framer-qr74f3-container, .framer-XH8mW.framer-v-rzgm0b .framer-qr74f3-container, .framer-XH8mW.framer-v-6aljie .framer-qr74f3-container, .framer-XH8mW.framer-v-lwv4u4 .framer-1i1f5yo, .framer-XH8mW.framer-v-190c1n5 .framer-kb3yq-container, .framer-XH8mW.framer-v-1hsnljb .framer-kb3yq-container, .framer-XH8mW.framer-v-13kndbc .framer-kb3yq-container { order: 4; }\",\".framer-XH8mW.framer-v-7k138g .framer-kb3yq-container, .framer-XH8mW.framer-v-rzgm0b .framer-kb3yq-container, .framer-XH8mW.framer-v-6aljie .framer-kb3yq-container, .framer-XH8mW.framer-v-lwv4u4 .framer-kb3yq-container, .framer-XH8mW.framer-v-190c1n5 .framer-1i1f5yo, .framer-XH8mW.framer-v-1hsnljb .framer-ark879-container, .framer-XH8mW.framer-v-13kndbc .framer-ark879-container { order: 5; }\",\".framer-XH8mW.framer-v-7k138g .framer-ark879-container, .framer-XH8mW.framer-v-rzgm0b .framer-ark879-container, .framer-XH8mW.framer-v-6aljie .framer-ark879-container, .framer-XH8mW.framer-v-lwv4u4 .framer-ark879-container, .framer-XH8mW.framer-v-190c1n5 .framer-ark879-container, .framer-XH8mW.framer-v-1hsnljb .framer-1i1f5yo, .framer-XH8mW.framer-v-13kndbc .framer-sxszz0-container { order: 6; }\",\".framer-XH8mW.framer-v-7k138g .framer-sxszz0-container, .framer-XH8mW.framer-v-rzgm0b .framer-sxszz0-container, .framer-XH8mW.framer-v-6aljie .framer-sxszz0-container, .framer-XH8mW.framer-v-lwv4u4 .framer-sxszz0-container, .framer-XH8mW.framer-v-190c1n5 .framer-sxszz0-container, .framer-XH8mW.framer-v-1hsnljb .framer-sxszz0-container, .framer-XH8mW.framer-v-13kndbc .framer-1i1f5yo { order: 7; }\",\".framer-XH8mW.framer-v-lwv4u4.framer-1y7x9f8, .framer-XH8mW.framer-v-lwv4u4 .framer-1gtlubx, .framer-XH8mW.framer-v-190c1n5.framer-1y7x9f8, .framer-XH8mW.framer-v-190c1n5 .framer-1gtlubx, .framer-XH8mW.framer-v-1hsnljb.framer-1y7x9f8, .framer-XH8mW.framer-v-1hsnljb .framer-1gtlubx, .framer-XH8mW.framer-v-13kndbc.framer-1y7x9f8, .framer-XH8mW.framer-v-13kndbc .framer-1gtlubx { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 184\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"jvnvuDGCS\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"AlEY69yNC\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"hOASqGPCv\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"q2Vxci1G5\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"dagyYVaWL\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"eLG0nTmCO\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]},\"OU2UXHrRd\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"380px\",null,null]}}}\n * @framerVariables {\"moyOFAv_J\":\"_6\",\"guL96G44I\":\"_7\",\"MvhWGEEJw\":\"_8\",\"XLzMbvsC3\":\"background\",\"IqDVb43PR\":\"selector\",\"FX_YoCLJm\":\"image1\",\"cx33mnUE3\":\"image2\",\"g8ToaZVmj\":\"image3\",\"qO9woDsIE\":\"image4\",\"y0fX7xmZq\":\"image5\",\"ZrKNCUwGg\":\"image6\",\"YjoLglh7W\":\"image7\",\"kV0neR1DF\":\"image8\",\"qX5aJY0_l\":\"_1\",\"RthHlBIYj\":\"_2\",\"FfrO1KV0Q\":\"_3\",\"jR68EO0KP\":\"_4\",\"YLJ1H6SSA\":\"_5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameras8CFvHIb=withCSS(Component,css,\"framer-XH8mW\");export default Frameras8CFvHIb;Frameras8CFvHIb.displayName=\"Gallery/Navigation\";Frameras8CFvHIb.defaultProps={height:62,width:184};addPropertyControls(Frameras8CFvHIb,{variant:{options:[\"FGpOnRU_N\",\"jvnvuDGCS\",\"AlEY69yNC\",\"hOASqGPCv\",\"q2Vxci1G5\",\"dagyYVaWL\",\"eLG0nTmCO\",\"OU2UXHrRd\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"],title:\"Variant\",type:ControlType.Enum},moyOFAv_J:{title:\"6\",type:ControlType.EventHandler},guL96G44I:{title:\"7\",type:ControlType.EventHandler},MvhWGEEJw:{title:\"8\",type:ControlType.EventHandler},XLzMbvsC3:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Background\",type:ControlType.Color},IqDVb43PR:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Selector\",type:ControlType.Color},FX_YoCLJm:{__defaultAssetReference:\"data:framer/asset-reference,lmFollwwBANyjurh7LnOrwRjzY.webp?originalFilename=blue-1.webp&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},cx33mnUE3:{__defaultAssetReference:\"data:framer/asset-reference,sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?originalFilename=orange-1.webp&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},g8ToaZVmj:{title:\"Image 3\",type:ControlType.ResponsiveImage},qO9woDsIE:{title:\"Image 4\",type:ControlType.ResponsiveImage},y0fX7xmZq:{title:\"Image 5\",type:ControlType.ResponsiveImage},ZrKNCUwGg:{title:\"Image 6\",type:ControlType.ResponsiveImage},YjoLglh7W:{title:\"Image 7\",type:ControlType.ResponsiveImage},kV0neR1DF:{title:\"Image 8\",type:ControlType.ResponsiveImage},qX5aJY0_l:{title:\"1\",type:ControlType.EventHandler},RthHlBIYj:{title:\"2\",type:ControlType.EventHandler},FfrO1KV0Q:{title:\"3\",type:ControlType.EventHandler},jR68EO0KP:{title:\"4\",type:ControlType.EventHandler},YLJ1H6SSA:{title:\"5\",type:ControlType.EventHandler}});addFonts(Frameras8CFvHIb,[{explicitInter:true,fonts:[]},...GalleryNavigationItemFonts,...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameras8CFvHIb\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"jvnvuDGCS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"AlEY69yNC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"hOASqGPCv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"q2Vxci1G5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"dagyYVaWL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"eLG0nTmCO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]},\\\"OU2UXHrRd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"380px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"184\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"62\",\"framerVariables\":\"{\\\"moyOFAv_J\\\":\\\"_6\\\",\\\"guL96G44I\\\":\\\"_7\\\",\\\"MvhWGEEJw\\\":\\\"_8\\\",\\\"XLzMbvsC3\\\":\\\"background\\\",\\\"IqDVb43PR\\\":\\\"selector\\\",\\\"FX_YoCLJm\\\":\\\"image1\\\",\\\"cx33mnUE3\\\":\\\"image2\\\",\\\"g8ToaZVmj\\\":\\\"image3\\\",\\\"qO9woDsIE\\\":\\\"image4\\\",\\\"y0fX7xmZq\\\":\\\"image5\\\",\\\"ZrKNCUwGg\\\":\\\"image6\\\",\\\"YjoLglh7W\\\":\\\"image7\\\",\\\"kV0neR1DF\\\":\\\"image8\\\",\\\"qX5aJY0_l\\\":\\\"_1\\\",\\\"RthHlBIYj\\\":\\\"_2\\\",\\\"FfrO1KV0Q\\\":\\\"_3\\\",\\\"jR68EO0KP\\\":\\\"_4\\\",\\\"YLJ1H6SSA\\\":\\\"_5\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./as8CFvHIb.map", "// Generated by Framer (c747e62)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import GalleryImages from\"https://framerusercontent.com/modules/exnjFfqPVZXjeNMua7qh/VaZU1LwRYnEs2jPg4qpc/qF1rPGyPu.js\";import GalleryNavigation from\"https://framerusercontent.com/modules/636skVTuLgAEhxeKV7zW/9tcIif1k69aADC5pPqWK/as8CFvHIb.js\";const GalleryImagesFonts=getFonts(GalleryImages);const GalleryNavigationFonts=getFonts(GalleryNavigation);const cycleOrder=[\"RVqjnpLma\",\"Tmv3x1_Ip\",\"Fw0lQ2qfR\",\"gnSE478zF\",\"mZa2vunxY\",\"OahkDnIzq\",\"Bu7DWw25f\",\"px7mJP9eL\"];const serializationHash=\"framer-ylOty\";const variantClassNames={Bu7DWw25f:\"framer-v-1jci50u\",Fw0lQ2qfR:\"framer-v-131u9ag\",gnSE478zF:\"framer-v-9qn1v3\",mZa2vunxY:\"framer-v-1am59u5\",OahkDnIzq:\"framer-v-nm213r\",px7mJP9eL:\"framer-v-13s4425\",RVqjnpLma:\"framer-v-198w0jp\",Tmv3x1_Ip:\"framer-v-qgkoxk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:650,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1\":\"RVqjnpLma\",\"2\":\"Tmv3x1_Ip\",\"3\":\"Fw0lQ2qfR\",\"4\":\"gnSE478zF\",\"5\":\"mZa2vunxY\",\"6\":\"OahkDnIzq\",\"7\":\"Bu7DWw25f\",\"8\":\"px7mJP9eL\"};const getProps=({background,height,id,image1,image2,image3,image4,image5,image6,image7,image8,selector,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,AB57wm4vu:image5!==null&&image5!==void 0?image5:props.AB57wm4vu,aQnc30A6N:(_ref=selector!==null&&selector!==void 0?selector:props.aQnc30A6N)!==null&&_ref!==void 0?_ref:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",DSJNh7kE4:(_ref1=image2!==null&&image2!==void 0?image2:props.DSJNh7kE4)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp 1456w\"},iVBKtZsnr:image6!==null&&image6!==void 0?image6:props.iVBKtZsnr,Jz5mRKP8b:image3!==null&&image3!==void 0?image3:props.Jz5mRKP8b,L3eYtamgf:(_ref2=background!==null&&background!==void 0?background:props.L3eYtamgf)!==null&&_ref2!==void 0?_ref2:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",LqdxvB4A5:image7!==null&&image7!==void 0?image7:props.LqdxvB4A5,NFYUL81vf:(_ref3=image1!==null&&image1!==void 0?image1:props.NFYUL81vf)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/lmFollwwBANyjurh7LnOrwRjzY.webp 1456w\"},RROWsrtui:image4!==null&&image4!==void 0?image4:props.RROWsrtui,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"RVqjnpLma\",Vc2MsyiJ4:image8!==null&&image8!==void 0?image8:props.Vc2MsyiJ4};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,L3eYtamgf,aQnc30A6N,NFYUL81vf,DSJNh7kE4,Jz5mRKP8b,RROWsrtui,AB57wm4vu,iVBKtZsnr,LqdxvB4A5,Vc2MsyiJ4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RVqjnpLma\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const moyOFAv_Jq81irf=activeVariantCallback(async(...args)=>{setVariant(\"OahkDnIzq\");});const guL96G44I2ip5wd=activeVariantCallback(async(...args)=>{setVariant(\"Bu7DWw25f\");});const MvhWGEEJw1lj6x83=activeVariantCallback(async(...args)=>{setVariant(\"px7mJP9eL\");});const qX5aJY0_l1hjql21=activeVariantCallback(async(...args)=>{setVariant(\"RVqjnpLma\");});const RthHlBIYjla27x9=activeVariantCallback(async(...args)=>{setVariant(\"Tmv3x1_Ip\");});const FfrO1KV0Q1hv129l=activeVariantCallback(async(...args)=>{setVariant(\"Fw0lQ2qfR\");});const jR68EO0KP1nwu3gb=activeVariantCallback(async(...args)=>{setVariant(\"gnSE478zF\");});const YLJ1H6SSA1lhas0r=activeVariantCallback(async(...args)=>{setVariant(\"mZa2vunxY\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-198w0jp\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"RVqjnpLma\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({Bu7DWw25f:{\"data-framer-name\":\"7\"},Fw0lQ2qfR:{\"data-framer-name\":\"3\"},gnSE478zF:{\"data-framer-name\":\"4\"},mZa2vunxY:{\"data-framer-name\":\"5\"},OahkDnIzq:{\"data-framer-name\":\"6\"},px7mJP9eL:{\"data-framer-name\":\"8\"},Tmv3x1_Ip:{\"data-framer-name\":\"2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rllmxz-container\",layoutDependency:layoutDependency,layoutId:\"NAL07kg0I-container\",children:/*#__PURE__*/_jsx(GalleryImages,{CQuyllWoH:toResponsiveImage(DSJNh7kE4),CVqnpV02V:toResponsiveImage(AB57wm4vu),E1VYOkQbB:toResponsiveImage(Jz5mRKP8b),fo7liKqhn:toResponsiveImage(RROWsrtui),ga3pCLb7N:toResponsiveImage(NFYUL81vf),Hbt1_Qqr7:toResponsiveImage(Vc2MsyiJ4),height:\"100%\",id:\"NAL07kg0I\",layoutId:\"NAL07kg0I\",NOOYR5UCo:toResponsiveImage(iVBKtZsnr),oVr0ArdS6:toResponsiveImage(LqdxvB4A5),style:{height:\"100%\",width:\"100%\"},variant:\"ImEi6PjDn\",width:\"100%\",...addPropertyOverrides({Bu7DWw25f:{variant:\"OS7AzClgs\"},Fw0lQ2qfR:{variant:\"M0t0grOF6\"},gnSE478zF:{variant:\"yERmuL08l\"},mZa2vunxY:{variant:\"vZamyttoR\"},OahkDnIzq:{variant:\"AnKogmQvf\"},px7mJP9eL:{variant:\"pX66JCaED\"},Tmv3x1_Ip:{variant:\"exsKPrxTp\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-148hxsp\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"muirQtlSX\",style:{backgroundColor:aQnc30A6N,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:.1}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16tw9es-container\",layoutDependency:layoutDependency,layoutId:\"rsoKdflux-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(GalleryNavigation,{cx33mnUE3:toResponsiveImage(DSJNh7kE4),FfrO1KV0Q:FfrO1KV0Q1hv129l,FX_YoCLJm:toResponsiveImage(NFYUL81vf),g8ToaZVmj:toResponsiveImage(Jz5mRKP8b),guL96G44I:guL96G44I2ip5wd,height:\"100%\",id:\"rsoKdflux\",IqDVb43PR:aQnc30A6N,jR68EO0KP:jR68EO0KP1nwu3gb,kV0neR1DF:toResponsiveImage(Vc2MsyiJ4),layoutId:\"rsoKdflux\",moyOFAv_J:moyOFAv_Jq81irf,MvhWGEEJw:MvhWGEEJw1lj6x83,qO9woDsIE:toResponsiveImage(RROWsrtui),qX5aJY0_l:qX5aJY0_l1hjql21,RthHlBIYj:RthHlBIYjla27x9,variant:\"FGpOnRU_N\",width:\"100%\",XLzMbvsC3:L3eYtamgf,y0fX7xmZq:toResponsiveImage(AB57wm4vu),YjoLglh7W:toResponsiveImage(LqdxvB4A5),YLJ1H6SSA:YLJ1H6SSA1lhas0r,ZrKNCUwGg:toResponsiveImage(iVBKtZsnr),...addPropertyOverrides({Bu7DWw25f:{variant:\"eLG0nTmCO\"},Fw0lQ2qfR:{variant:\"AlEY69yNC\"},gnSE478zF:{variant:\"hOASqGPCv\"},mZa2vunxY:{variant:\"q2Vxci1G5\"},OahkDnIzq:{variant:\"dagyYVaWL\"},px7mJP9eL:{variant:\"OU2UXHrRd\"},Tmv3x1_Ip:{variant:\"jvnvuDGCS\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ylOty.framer-oowxej, .framer-ylOty .framer-oowxej { display: block; }\",\".framer-ylOty.framer-198w0jp { height: 368px; overflow: visible; position: relative; width: 656px; }\",\".framer-ylOty .framer-rllmxz-container { bottom: 1px; flex: none; left: 1px; position: absolute; right: 1px; top: 1px; z-index: 1; }\",\".framer-ylOty .framer-148hxsp { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ylOty .framer-16tw9es-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 368\n * @framerIntrinsicWidth 656\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Tmv3x1_Ip\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fw0lQ2qfR\":{\"layout\":[\"fixed\",\"fixed\"]},\"gnSE478zF\":{\"layout\":[\"fixed\",\"fixed\"]},\"mZa2vunxY\":{\"layout\":[\"fixed\",\"fixed\"]},\"OahkDnIzq\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bu7DWw25f\":{\"layout\":[\"fixed\",\"fixed\"]},\"px7mJP9eL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"L3eYtamgf\":\"background\",\"aQnc30A6N\":\"selector\",\"NFYUL81vf\":\"image1\",\"DSJNh7kE4\":\"image2\",\"Jz5mRKP8b\":\"image3\",\"RROWsrtui\":\"image4\",\"AB57wm4vu\":\"image5\",\"iVBKtZsnr\":\"image6\",\"LqdxvB4A5\":\"image7\",\"Vc2MsyiJ4\":\"image8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCZ96QCI_V=withCSS(Component,css,\"framer-ylOty\");export default FramerCZ96QCI_V;FramerCZ96QCI_V.displayName=\"Gallery/Gallery\";FramerCZ96QCI_V.defaultProps={height:368,width:656};addPropertyControls(FramerCZ96QCI_V,{variant:{options:[\"RVqjnpLma\",\"Tmv3x1_Ip\",\"Fw0lQ2qfR\",\"gnSE478zF\",\"mZa2vunxY\",\"OahkDnIzq\",\"Bu7DWw25f\",\"px7mJP9eL\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"],title:\"Variant\",type:ControlType.Enum},L3eYtamgf:{defaultValue:'var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {\"name\":\"12\"} */',title:\"Background\",type:ControlType.Color},aQnc30A6N:{defaultValue:'var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {\"name\":\"1\"} */',title:\"Selector\",type:ControlType.Color},NFYUL81vf:{__defaultAssetReference:\"data:framer/asset-reference,lmFollwwBANyjurh7LnOrwRjzY.webp?originalFilename=blue-1.webp&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},DSJNh7kE4:{__defaultAssetReference:\"data:framer/asset-reference,sQNMTjOuH5HwpdcYsQ1Mini7TGk.webp?originalFilename=orange-1.webp&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},Jz5mRKP8b:{title:\"Image 3\",type:ControlType.ResponsiveImage},RROWsrtui:{title:\"Image 4\",type:ControlType.ResponsiveImage},AB57wm4vu:{title:\"Image 5\",type:ControlType.ResponsiveImage},iVBKtZsnr:{title:\"Image 6\",type:ControlType.ResponsiveImage},LqdxvB4A5:{title:\"Image 7\",type:ControlType.ResponsiveImage},Vc2MsyiJ4:{title:\"Image 8\",type:ControlType.ResponsiveImage}});addFonts(FramerCZ96QCI_V,[{explicitInter:true,fonts:[]},...GalleryImagesFonts,...GalleryNavigationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCZ96QCI_V\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"656\",\"framerIntrinsicHeight\":\"368\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Tmv3x1_Ip\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fw0lQ2qfR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gnSE478zF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mZa2vunxY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OahkDnIzq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bu7DWw25f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"px7mJP9eL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"L3eYtamgf\\\":\\\"background\\\",\\\"aQnc30A6N\\\":\\\"selector\\\",\\\"NFYUL81vf\\\":\\\"image1\\\",\\\"DSJNh7kE4\\\":\\\"image2\\\",\\\"Jz5mRKP8b\\\":\\\"image3\\\",\\\"RROWsrtui\\\":\\\"image4\\\",\\\"AB57wm4vu\\\":\\\"image5\\\",\\\"iVBKtZsnr\\\":\\\"image6\\\",\\\"LqdxvB4A5\\\":\\\"image7\\\",\\\"Vc2MsyiJ4\\\":\\\"image8\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CZ96QCI_V.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-500\",\"GF;Inter Tight-700\",\"GF;Inter Tight-700italic\",\"GF;Inter Tight-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5SgqoUPvi5.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5SgqoUPvi5.woff2\",weight:\"500\"}]}];export const css=['.framer-5HExb .framer-styles-preset-900ltp:not(.rich-text-wrapper), .framer-5HExb .framer-styles-preset-900ltp.rich-text-wrapper p { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-5HExb\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c747e62)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,Link,PathVariablesContext,RichText,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Projects from\"https://framerusercontent.com/modules/8gOjKC0PrwIA5K0wgIU9/29J81EYpsgxKN2g9JJMd/vHeab_GFB.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tKRSeRqqG28XNnc8C8cH/cqB0V4Je3kGhenISWkUk/Zlrt2Tzwr.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"ZEo5yu3qc\",\"o2Kee5m_R\"];const serializationHash=\"framer-btQgG\";const variantClassNames={o2Kee5m_R:\"framer-v-1cqbocp\",ZEo5yu3qc:\"framer-v-t1uu0l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Section Next Project - Mobile\":\"o2Kee5m_R\",\"Section Next Project\":\"ZEo5yu3qc\"};const getProps=({cursor,filterNextProject,height,id,pebble,width,...props})=>{return{...props,d6gdBh6aQ:cursor??props.d6gdBh6aQ,h43C2fyK5:pebble??props.h43C2fyK5??\"https://framerusercontent.com/assets/CNfpOAPHd07A4D3I3pwVDyo.mp4\",JaIyrNOsl:filterNextProject??props.JaIyrNOsl??1,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZEo5yu3qc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,JaIyrNOsl,d6gdBh6aQ,h43C2fyK5,iC9pVt3ffyGTlcynBJ,Q41ega8iuyGTlcynBJ,XYH4vRTJSyGTlcynBJ,c2HaqtzgByGTlcynBJ,FnwgSIUrAyGTlcynBJ,vjUtPirXkyGTlcynBJ,idyGTlcynBJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZEo5yu3qc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t1uu0l\",className,classNames),\"data-framer-name\":\"Section Next Project\",layoutDependency:layoutDependency,layoutId:\"ZEo5yu3qc\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({o2Kee5m_R:{\"data-framer-name\":\"Section Next Project - Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9mld2h\",layoutDependency:layoutDependency,layoutId:\"yGTlcynBJ\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"iC9pVt3ff\",type:\"Identifier\"},{name:\"Q41ega8iu\",type:\"Identifier\"},{name:\"XYH4vRTJS\",type:\"Identifier\"},{name:\"c2HaqtzgB\",type:\"Identifier\"},{name:\"FnwgSIUrA\",type:\"Identifier\"},{name:\"vjUtPirXk\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:JaIyrNOsl},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({iC9pVt3ff:iC9pVt3ffyGTlcynBJ,Q41ega8iu:Q41ega8iuyGTlcynBJ,XYH4vRTJS:XYH4vRTJSyGTlcynBJ,c2HaqtzgB:c2HaqtzgByGTlcynBJ,FnwgSIUrA:FnwgSIUrAyGTlcynBJ,vjUtPirXk:vjUtPirXkyGTlcynBJ,id:idyGTlcynBJ},i)=>{const visible=isSet(Q41ega8iuyGTlcynBJ);const visible1=isSet(c2HaqtzgByGTlcynBJ);return /*#__PURE__*/_jsx(LayoutGroup,{id:`yGTlcynBJ-${idyGTlcynBJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffyGTlcynBJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffyGTlcynBJ},webPageId:\"DM0pIiYm6\"},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1p2ifss framer-16c6wuy\",layoutDependency:layoutDependency,layoutId:\"SkSjCq9p2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u0770o\",\"data-framer-cursor\":d6gdBh6aQ,\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"X6W0qT_mB\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dzf7w-container\",layoutDependency:layoutDependency,layoutId:\"ZBXwBYa9X-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZBXwBYa9X\",isMixedBorderRadius:false,layoutId:\"ZBXwBYa9X\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(XYH4vRTJSyGTlcynBJ),posterEnabled:true,srcFile:h43C2fyK5,srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(c2HaqtzgByGTlcynBJ)},className:\"framer-pbqv17\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ht1sjWena\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xx4ukx\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Hy9mK5liX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-900ltp\",\"data-styles-preset\":\"Zlrt2Tzwr\",children:\"Title\"})}),className:\"framer-1xh8w5z\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hJFb9BYnw\",text:FnwgSIUrAyGTlcynBJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-900ltp\",\"data-styles-preset\":\"Zlrt2Tzwr\",children:\"Sub Title\"})}),className:\"framer-17pe4q4\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HT9uBJ_h9\",style:{opacity:.5},text:vjUtPirXkyGTlcynBJ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idyGTlcynBJ);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-btQgG.framer-16c6wuy, .framer-btQgG .framer-16c6wuy { display: block; }\",\".framer-btQgG.framer-t1uu0l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 15px 15px 15px; position: relative; width: 1200px; }\",\".framer-btQgG .framer-9mld2h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-btQgG .framer-1p2ifss { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-btQgG .framer-1u0770o { align-content: center; align-items: center; aspect-ratio: 2.3877551020408165 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 490px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-btQgG .framer-dzf7w-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-btQgG .framer-pbqv17 { flex: none; height: 100%; position: relative; width: 100%; z-index: 5; }\",\".framer-btQgG .framer-xx4ukx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-btQgG .framer-1xh8w5z, .framer-btQgG .framer-17pe4q4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btQgG.framer-t1uu0l, .framer-btQgG .framer-9mld2h, .framer-btQgG .framer-1p2ifss, .framer-btQgG .framer-1u0770o, .framer-btQgG .framer-xx4ukx { gap: 0px; } .framer-btQgG.framer-t1uu0l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-btQgG.framer-t1uu0l > :first-child { margin-left: 0px; } .framer-btQgG.framer-t1uu0l > :last-child { margin-right: 0px; } .framer-btQgG .framer-9mld2h > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-btQgG .framer-9mld2h > :first-child, .framer-btQgG .framer-1p2ifss > :first-child, .framer-btQgG .framer-1u0770o > :first-child, .framer-btQgG .framer-xx4ukx > :first-child { margin-top: 0px; } .framer-btQgG .framer-9mld2h > :last-child, .framer-btQgG .framer-1p2ifss > :last-child, .framer-btQgG .framer-1u0770o > :last-child, .framer-btQgG .framer-xx4ukx > :last-child { margin-bottom: 0px; } .framer-btQgG .framer-1p2ifss > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-btQgG .framer-1u0770o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-btQgG .framer-xx4ukx > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } }\",\".framer-btQgG.framer-v-1cqbocp.framer-t1uu0l { width: 390px; }\",\".framer-btQgG.framer-v-1cqbocp .framer-1u0770o { aspect-ratio: 0.7346938775510204 / 1; }\",\".framer-btQgG.framer-v-1cqbocp .framer-pbqv17 { aspect-ratio: 0.7346938775510204 / 1; height: var(--framer-aspect-ratio-supported, 272px); }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 576\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"o2Kee5m_R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JaIyrNOsl\":\"filterNextProject\",\"d6gdBh6aQ\":\"cursor\",\"h43C2fyK5\":\"pebble\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjmhoDxLSf=withCSS(Component,css,\"framer-btQgG\");export default FramerjmhoDxLSf;FramerjmhoDxLSf.displayName=\"Section Next Project\";FramerjmhoDxLSf.defaultProps={height:576,width:1200};addPropertyControls(FramerjmhoDxLSf,{variant:{options:[\"ZEo5yu3qc\",\"o2Kee5m_R\"],optionTitles:[\"Section Next Project\",\"Section Next Project - Mobile\"],title:\"Variant\",type:ControlType.Enum},JaIyrNOsl:{defaultValue:1,title:\"Filter Next Project\",type:ControlType.Number},d6gdBh6aQ:{title:\"Cursor\",type:ControlType.CustomCursor},h43C2fyK5:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,CNfpOAPHd07A4D3I3pwVDyo.mp4?originalFilename=pebble_project+page_video_1.mp4\",description:undefined,hidden:undefined,title:\"pebble\"}});addFonts(FramerjmhoDxLSf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjmhoDxLSf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"JaIyrNOsl\\\":\\\"filterNextProject\\\",\\\"d6gdBh6aQ\\\":\\\"cursor\\\",\\\"h43C2fyK5\\\":\\\"pebble\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o2Kee5m_R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"576\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"GVIuOTF7T\",\"gAwNHHm4w\",\"H0C50iy0B\",\"u4tFBrbuc\",\"HPHVG7lGo\",\"UFi4g1SBr\",\"avKIifjKI\",\"BzhPt5q_V\",\"ocOSaqt6p\",\"BHv1jJtGs\",\"pSwcU_DlB\",\"GaInvK4Sq\",\"r72am2QwB\",\"d15Z_3b_m\",\"hxXhKp10D\",\"sah9L1fEL\",\"WZCvRHHjq\",\"EFiaHreRF\",\"zKsHnqEe2\",\"WFGbjGzLj\",\"IXIATyqnh\",\"JGCbpgtuw\",\"VZUW9Bv8S\",\"LGXiWeF4p\"];const serializationHash=\"framer-80fsR\";const variantClassNames={avKIifjKI:\"framer-v-u31ors\",BHv1jJtGs:\"framer-v-vyyylm\",BzhPt5q_V:\"framer-v-2ijgzt\",d15Z_3b_m:\"framer-v-1aqbev1\",EFiaHreRF:\"framer-v-aimf85\",GaInvK4Sq:\"framer-v-7ndzkh\",gAwNHHm4w:\"framer-v-1yghlv0\",GVIuOTF7T:\"framer-v-kf6eh9\",H0C50iy0B:\"framer-v-mhijdk\",HPHVG7lGo:\"framer-v-3oxyzv\",hxXhKp10D:\"framer-v-1xx6j3y\",IXIATyqnh:\"framer-v-ihkzb7\",JGCbpgtuw:\"framer-v-1kyqmzq\",LGXiWeF4p:\"framer-v-zabp4n\",ocOSaqt6p:\"framer-v-15onsgh\",pSwcU_DlB:\"framer-v-ove0al\",r72am2QwB:\"framer-v-1ck8jyr\",sah9L1fEL:\"framer-v-1cftrkd\",u4tFBrbuc:\"framer-v-9ic7mu\",UFi4g1SBr:\"framer-v-1a7rur4\",VZUW9Bv8S:\"framer-v-1ezwh8l\",WFGbjGzLj:\"framer-v-63t6th\",WZCvRHHjq:\"framer-v-fq4rbq\",zKsHnqEe2:\"framer-v-4z3xe5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1-Active\":\"WZCvRHHjq\",\"1-Hover\":\"ocOSaqt6p\",\"1\":\"GVIuOTF7T\",\"2-Active\":\"EFiaHreRF\",\"2-Hover\":\"BHv1jJtGs\",\"2\":\"gAwNHHm4w\",\"3-Active\":\"zKsHnqEe2\",\"3-Hover\":\"sah9L1fEL\",\"3\":\"BzhPt5q_V\",\"4-Active\":\"WFGbjGzLj\",\"4-Hover\":\"pSwcU_DlB\",\"4\":\"H0C50iy0B\",\"5-Active\":\"IXIATyqnh\",\"5-Hover\":\"GaInvK4Sq\",\"5\":\"u4tFBrbuc\",\"6-Active\":\"JGCbpgtuw\",\"6-Hover\":\"r72am2QwB\",\"6\":\"HPHVG7lGo\",\"7-Active\":\"VZUW9Bv8S\",\"7-Hover\":\"d15Z_3b_m\",\"7\":\"UFi4g1SBr\",\"8-Active\":\"LGXiWeF4p\",\"8-Hover\":\"hxXhKp10D\",\"8\":\"avKIifjKI\"};const getProps=({height,id,image1,image2,image3,image4,image5,image6,image7,image8,link1,link2,link3,link4,link5,link6,link7,link8,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8;return{...props,begDU6hgI:link2!==null&&link2!==void 0?link2:props.begDU6hgI,BhBPSHWK9:link1!==null&&link1!==void 0?link1:props.BhBPSHWK9,BmNwCFuAX:link3!==null&&link3!==void 0?link3:props.BmNwCFuAX,bV6UaDCEp:(_ref=image8!==null&&image8!==void 0?image8:props.bV6UaDCEp)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg 5568w\"},ChHWugZD5:(_ref1=image6!==null&&image6!==void 0?image6:props.ChHWugZD5)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NWLIJCPEGioPhMBITq0znTzGLc.jpg 5400w\"},j7ojbQhEi:(_ref2=image1!==null&&image1!==void 0?image1:props.j7ojbQhEi)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg 3872w\"},k3fl1FuvP:(_ref3=image2!==null&&image2!==void 0?image2:props.k3fl1FuvP)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg 5184w\"},kBDfnFqbs:link6!==null&&link6!==void 0?link6:props.kBDfnFqbs,lNKVu2a0C:(_ref4=image5!==null&&image5!==void 0?image5:props.lNKVu2a0C)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg 6000w\"},N4suFAX8X:(_ref5=image3!==null&&image3!==void 0?image3:props.N4suFAX8X)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg 3872w\"},n9fN6Oif9:link4!==null&&link4!==void 0?link4:props.n9fN6Oif9,nSqDw_wLW:link5!==null&&link5!==void 0?link5:props.nSqDw_wLW,Rq4Llee07:(_ref6=image4!==null&&image4!==void 0?image4:props.Rq4Llee07)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg 5585w\"},variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"GVIuOTF7T\",vgdqzswtn:link7!==null&&link7!==void 0?link7:props.vgdqzswtn,WcnEGkY6N:(_ref8=image7!==null&&image7!==void 0?image7:props.WcnEGkY6N)!==null&&_ref8!==void 0?_ref8:{src:\"https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4qxYA1nvS14QU9qcOnjr0XTfI.jpg 5625w\"},xbM7x37V8:link8!==null&&link8!==void 0?link8:props.xbM7x37V8};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BhBPSHWK9,begDU6hgI,BmNwCFuAX,n9fN6Oif9,nSqDw_wLW,kBDfnFqbs,vgdqzswtn,xbM7x37V8,j7ojbQhEi,k3fl1FuvP,N4suFAX8X,Rq4Llee07,lNKVu2a0C,ChHWugZD5,WcnEGkY6N,bV6UaDCEp,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GVIuOTF7T\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1da2b9s=activeVariantCallback(async(...args)=>{setVariant(\"ocOSaqt6p\");});const onMouseEnter1ypqd69=activeVariantCallback(async(...args)=>{setVariant(\"BHv1jJtGs\");});const onMouseEnterc9m1bq=activeVariantCallback(async(...args)=>{setVariant(\"pSwcU_DlB\");});const onMouseEnterbcc7wp=activeVariantCallback(async(...args)=>{setVariant(\"GaInvK4Sq\");});const onMouseEnter1di8gnp=activeVariantCallback(async(...args)=>{setVariant(\"r72am2QwB\");});const onMouseEnter9lk7xq=activeVariantCallback(async(...args)=>{setVariant(\"d15Z_3b_m\");});const onMouseEnter1r63r70=activeVariantCallback(async(...args)=>{setVariant(\"hxXhKp10D\");});const onMouseEnter1nk3b67=activeVariantCallback(async(...args)=>{setVariant(\"sah9L1fEL\");});const onMouseLeave1pcl1jx=activeVariantCallback(async(...args)=>{setVariant(\"GVIuOTF7T\");});const onMouseLeave3zhxn5=activeVariantCallback(async(...args)=>{setVariant(\"gAwNHHm4w\");});const onMouseLeave1ngkse9=activeVariantCallback(async(...args)=>{setVariant(\"H0C50iy0B\");});const onMouseLeave3053uq=activeVariantCallback(async(...args)=>{setVariant(\"u4tFBrbuc\");});const onMouseLeave144jayu=activeVariantCallback(async(...args)=>{setVariant(\"HPHVG7lGo\");});const onMouseLeaven7kvud=activeVariantCallback(async(...args)=>{setVariant(\"UFi4g1SBr\");});const onMouseLeave10vn9t0=activeVariantCallback(async(...args)=>{setVariant(\"avKIifjKI\");});const onMouseLeave9s8152=activeVariantCallback(async(...args)=>{setVariant(\"BzhPt5q_V\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:BhBPSHWK9,smoothScroll:true,...addPropertyOverrides({avKIifjKI:{href:xbM7x37V8},BHv1jJtGs:{href:begDU6hgI},BzhPt5q_V:{href:BmNwCFuAX},d15Z_3b_m:{href:vgdqzswtn},EFiaHreRF:{href:begDU6hgI},GaInvK4Sq:{href:nSqDw_wLW},gAwNHHm4w:{href:begDU6hgI},H0C50iy0B:{href:n9fN6Oif9},HPHVG7lGo:{href:kBDfnFqbs},hxXhKp10D:{href:xbM7x37V8},IXIATyqnh:{href:nSqDw_wLW},JGCbpgtuw:{href:kBDfnFqbs},LGXiWeF4p:{href:xbM7x37V8},pSwcU_DlB:{href:n9fN6Oif9},r72am2QwB:{href:kBDfnFqbs},sah9L1fEL:{href:BmNwCFuAX},u4tFBrbuc:{href:nSqDw_wLW},UFi4g1SBr:{href:vgdqzswtn},VZUW9Bv8S:{href:vgdqzswtn},WFGbjGzLj:{href:n9fN6Oif9},zKsHnqEe2:{href:BmNwCFuAX}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-kf6eh9\",className,classNames)} framer-19ydhrt`,\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GVIuOTF7T\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1da2b9s,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({avKIifjKI:{\"data-framer-name\":\"8\",onMouseEnter:onMouseEnter1r63r70},BHv1jJtGs:{\"data-framer-name\":\"2-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave3zhxn5},BzhPt5q_V:{\"data-framer-name\":\"3\",onMouseEnter:onMouseEnter1nk3b67},d15Z_3b_m:{\"data-framer-name\":\"7-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeaven7kvud},EFiaHreRF:{\"data-framer-name\":\"2-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},GaInvK4Sq:{\"data-framer-name\":\"5-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave3053uq},gAwNHHm4w:{\"data-framer-name\":\"2\",onMouseEnter:onMouseEnter1ypqd69},H0C50iy0B:{\"data-framer-name\":\"4\",onMouseEnter:onMouseEnterc9m1bq},HPHVG7lGo:{\"data-framer-name\":\"6\",onMouseEnter:onMouseEnter1di8gnp},hxXhKp10D:{\"data-framer-name\":\"8-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave10vn9t0},IXIATyqnh:{\"data-framer-name\":\"5-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},JGCbpgtuw:{\"data-framer-name\":\"6-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},LGXiWeF4p:{\"data-framer-name\":\"8-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},ocOSaqt6p:{\"data-framer-name\":\"1-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1pcl1jx},pSwcU_DlB:{\"data-framer-name\":\"4-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1ngkse9},r72am2QwB:{\"data-framer-name\":\"6-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave144jayu},sah9L1fEL:{\"data-framer-name\":\"3-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave9s8152},u4tFBrbuc:{\"data-framer-name\":\"5\",onMouseEnter:onMouseEnterbcc7wp},UFi4g1SBr:{\"data-framer-name\":\"7\",onMouseEnter:onMouseEnter9lk7xq},VZUW9Bv8S:{\"data-framer-name\":\"7-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},WFGbjGzLj:{\"data-framer-name\":\"4-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},WZCvRHHjq:{\"data-framer-name\":\"1-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},zKsHnqEe2:{\"data-framer-name\":\"3-Active\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(j7ojbQhEi)},className:\"framer-1m8qkr9\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"i8PkvIaJk\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:.25},variants:{BHv1jJtGs:{opacity:1},d15Z_3b_m:{opacity:1},EFiaHreRF:{opacity:1},GaInvK4Sq:{opacity:1},hxXhKp10D:{opacity:1},IXIATyqnh:{opacity:1},JGCbpgtuw:{opacity:1},LGXiWeF4p:{opacity:1},ocOSaqt6p:{opacity:1},pSwcU_DlB:{opacity:1},r72am2QwB:{opacity:1},sah9L1fEL:{opacity:1},VZUW9Bv8S:{opacity:1},WFGbjGzLj:{opacity:1},WZCvRHHjq:{opacity:1},zKsHnqEe2:{opacity:1}},...addPropertyOverrides({avKIifjKI:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(bV6UaDCEp)}},BHv1jJtGs:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(k3fl1FuvP)}},BzhPt5q_V:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N4suFAX8X)}},d15Z_3b_m:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(WcnEGkY6N)}},EFiaHreRF:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(k3fl1FuvP)}},GaInvK4Sq:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(lNKVu2a0C)}},gAwNHHm4w:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(k3fl1FuvP)}},H0C50iy0B:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(Rq4Llee07)}},HPHVG7lGo:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(ChHWugZD5)}},hxXhKp10D:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(bV6UaDCEp)}},IXIATyqnh:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(lNKVu2a0C)}},JGCbpgtuw:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(ChHWugZD5)}},LGXiWeF4p:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(bV6UaDCEp)}},pSwcU_DlB:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(Rq4Llee07)}},r72am2QwB:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(ChHWugZD5)}},sah9L1fEL:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N4suFAX8X)}},u4tFBrbuc:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(lNKVu2a0C)}},UFi4g1SBr:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(WcnEGkY6N)}},VZUW9Bv8S:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(WcnEGkY6N)}},WFGbjGzLj:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(Rq4Llee07)}},zKsHnqEe2:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N4suFAX8X)}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-80fsR.framer-19ydhrt, .framer-80fsR .framer-19ydhrt { display: block; }\",\".framer-80fsR.framer-kf6eh9 { align-content: center; align-items: center; cursor: zoom-in; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 90px; }\",\".framer-80fsR .framer-1m8qkr9 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80fsR.framer-kf6eh9 { gap: 0px; } .framer-80fsR.framer-kf6eh9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-80fsR.framer-kf6eh9 > :first-child { margin-left: 0px; } .framer-80fsR.framer-kf6eh9 > :last-child { margin-right: 0px; } }\",\".framer-80fsR.framer-v-2ijgzt.framer-kf6eh9, .framer-80fsR.framer-v-1cftrkd.framer-kf6eh9, .framer-80fsR.framer-v-4z3xe5.framer-kf6eh9 { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80fsR.framer-v-2ijgzt.framer-kf6eh9 { gap: 0px; } .framer-80fsR.framer-v-2ijgzt.framer-kf6eh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-80fsR.framer-v-2ijgzt.framer-kf6eh9 > :first-child { margin-top: 0px; } .framer-80fsR.framer-v-2ijgzt.framer-kf6eh9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80fsR.framer-v-1cftrkd.framer-kf6eh9 { gap: 0px; } .framer-80fsR.framer-v-1cftrkd.framer-kf6eh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-80fsR.framer-v-1cftrkd.framer-kf6eh9 > :first-child { margin-top: 0px; } .framer-80fsR.framer-v-1cftrkd.framer-kf6eh9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80fsR.framer-v-4z3xe5.framer-kf6eh9 { gap: 0px; } .framer-80fsR.framer-v-4z3xe5.framer-kf6eh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-80fsR.framer-v-4z3xe5.framer-kf6eh9 > :first-child { margin-top: 0px; } .framer-80fsR.framer-v-4z3xe5.framer-kf6eh9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gAwNHHm4w\":{\"layout\":[\"fixed\",\"auto\"]},\"H0C50iy0B\":{\"layout\":[\"fixed\",\"auto\"]},\"u4tFBrbuc\":{\"layout\":[\"fixed\",\"auto\"]},\"HPHVG7lGo\":{\"layout\":[\"fixed\",\"auto\"]},\"UFi4g1SBr\":{\"layout\":[\"fixed\",\"auto\"]},\"avKIifjKI\":{\"layout\":[\"fixed\",\"auto\"]},\"BzhPt5q_V\":{\"layout\":[\"fixed\",\"auto\"]},\"ocOSaqt6p\":{\"layout\":[\"fixed\",\"auto\"]},\"BHv1jJtGs\":{\"layout\":[\"fixed\",\"auto\"]},\"pSwcU_DlB\":{\"layout\":[\"fixed\",\"auto\"]},\"GaInvK4Sq\":{\"layout\":[\"fixed\",\"auto\"]},\"r72am2QwB\":{\"layout\":[\"fixed\",\"auto\"]},\"d15Z_3b_m\":{\"layout\":[\"fixed\",\"auto\"]},\"hxXhKp10D\":{\"layout\":[\"fixed\",\"auto\"]},\"sah9L1fEL\":{\"layout\":[\"fixed\",\"auto\"]},\"WZCvRHHjq\":{\"layout\":[\"fixed\",\"auto\"]},\"EFiaHreRF\":{\"layout\":[\"fixed\",\"auto\"]},\"zKsHnqEe2\":{\"layout\":[\"fixed\",\"auto\"]},\"WFGbjGzLj\":{\"layout\":[\"fixed\",\"auto\"]},\"IXIATyqnh\":{\"layout\":[\"fixed\",\"auto\"]},\"JGCbpgtuw\":{\"layout\":[\"fixed\",\"auto\"]},\"VZUW9Bv8S\":{\"layout\":[\"fixed\",\"auto\"]},\"LGXiWeF4p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BhBPSHWK9\":\"link1\",\"begDU6hgI\":\"link2\",\"BmNwCFuAX\":\"link3\",\"n9fN6Oif9\":\"link4\",\"nSqDw_wLW\":\"link5\",\"kBDfnFqbs\":\"link6\",\"vgdqzswtn\":\"link7\",\"xbM7x37V8\":\"link8\",\"j7ojbQhEi\":\"image1\",\"k3fl1FuvP\":\"image2\",\"N4suFAX8X\":\"image3\",\"Rq4Llee07\":\"image4\",\"lNKVu2a0C\":\"image5\",\"ChHWugZD5\":\"image6\",\"WcnEGkY6N\":\"image7\",\"bV6UaDCEp\":\"image8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerApFZ0evyo=withCSS(Component,css,\"framer-80fsR\");export default FramerApFZ0evyo;FramerApFZ0evyo.displayName=\"Sidebar-Image - Main\";FramerApFZ0evyo.defaultProps={height:60,width:90};addPropertyControls(FramerApFZ0evyo,{variant:{options:[\"GVIuOTF7T\",\"gAwNHHm4w\",\"H0C50iy0B\",\"u4tFBrbuc\",\"HPHVG7lGo\",\"UFi4g1SBr\",\"avKIifjKI\",\"BzhPt5q_V\",\"ocOSaqt6p\",\"BHv1jJtGs\",\"pSwcU_DlB\",\"GaInvK4Sq\",\"r72am2QwB\",\"d15Z_3b_m\",\"hxXhKp10D\",\"sah9L1fEL\",\"WZCvRHHjq\",\"EFiaHreRF\",\"zKsHnqEe2\",\"WFGbjGzLj\",\"IXIATyqnh\",\"JGCbpgtuw\",\"VZUW9Bv8S\",\"LGXiWeF4p\"],optionTitles:[\"1\",\"2\",\"4\",\"5\",\"6\",\"7\",\"8\",\"3\",\"1-Hover\",\"2-Hover\",\"4-Hover\",\"5-Hover\",\"6-Hover\",\"7-Hover\",\"8-Hover\",\"3-Hover\",\"1-Active\",\"2-Active\",\"3-Active\",\"4-Active\",\"5-Active\",\"6-Active\",\"7-Active\",\"8-Active\"],title:\"Variant\",type:ControlType.Enum},BhBPSHWK9:{title:\"Link 1\",type:ControlType.Link},begDU6hgI:{title:\"Link 2\",type:ControlType.Link},BmNwCFuAX:{title:\"Link 3\",type:ControlType.Link},n9fN6Oif9:{title:\"Link 4\",type:ControlType.Link},nSqDw_wLW:{title:\"Link 5\",type:ControlType.Link},kBDfnFqbs:{title:\"Link 6\",type:ControlType.Link},vgdqzswtn:{title:\"Link 7\",type:ControlType.Link},xbM7x37V8:{title:\"Link 8\",type:ControlType.Link},j7ojbQhEi:{__defaultAssetReference:\"data:framer/asset-reference,Nq4UmqELzNaZtZHSJugqpp0iqcE.jpg?originalFilename=photo-1621440318464-72633426377b%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxOVW1iZXIlMjAxfGVufDB8fHx8MTcwODI1NjU2OXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},k3fl1FuvP:{__defaultAssetReference:\"data:framer/asset-reference,FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?originalFilename=photo-1567254790685-6b6d6abe4689%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxOdW1iZXIlMjAyfGVufDB8fHx8MTcwODI1NjU4N3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},N4suFAX8X:{__defaultAssetReference:\"data:framer/asset-reference,nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?originalFilename=photo-1621440318357-3e3c94221a1c%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxOdW1iZXIlMjAzfGVufDB8fHx8MTcwODI1NjYwM3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},Rq4Llee07:{__defaultAssetReference:\"data:framer/asset-reference,hj4gYlOrhgqFn8dPncUX0vBKE0Q.jpg?originalFilename=photo-1523286877159-d9636545890c%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw4fHxOdW1iZXIlMjA0fGVufDB8fHx8MTcwODI1NjYxOHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},lNKVu2a0C:{__defaultAssetReference:\"data:framer/asset-reference,66WhuR7TjECUrNuUvVZDWhujLz4.jpg?originalFilename=photo-1582731489394-51b65c9fcb04%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxOdW1iZXIlMjA1fGVufDB8fHx8MTcwODI1NTgwOHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage},ChHWugZD5:{__defaultAssetReference:\"data:framer/asset-reference,NWLIJCPEGioPhMBITq0znTzGLc.jpg?originalFilename=photo-1484335629320-0e089b87a106%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxOdW1iZXIlMjA2fGVufDB8fHx8MTcwODI1NjY2NHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 6\",type:ControlType.ResponsiveImage},WcnEGkY6N:{__defaultAssetReference:\"data:framer/asset-reference,4qxYA1nvS14QU9qcOnjr0XTfI.jpg?originalFilename=photo-1571577275698-54f36820ee9b%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxOdW1iZXIlMjA3fGVufDB8fHx8MTcwODI1NTcxMHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 7\",type:ControlType.ResponsiveImage},bV6UaDCEp:{__defaultAssetReference:\"data:framer/asset-reference,dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?originalFilename=photo-1634775182403-539616de4ed7%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzfHxOdW1iZXIlMjA4fGVufDB8fHx8MTcwODI1NTc5MHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 8\",type:ControlType.ResponsiveImage}});addFonts(FramerApFZ0evyo,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerApFZ0evyo\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"90\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gAwNHHm4w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H0C50iy0B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u4tFBrbuc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HPHVG7lGo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UFi4g1SBr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"avKIifjKI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BzhPt5q_V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ocOSaqt6p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BHv1jJtGs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pSwcU_DlB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GaInvK4Sq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r72am2QwB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d15Z_3b_m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hxXhKp10D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sah9L1fEL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WZCvRHHjq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EFiaHreRF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zKsHnqEe2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WFGbjGzLj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IXIATyqnh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JGCbpgtuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VZUW9Bv8S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LGXiWeF4p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"BhBPSHWK9\\\":\\\"link1\\\",\\\"begDU6hgI\\\":\\\"link2\\\",\\\"BmNwCFuAX\\\":\\\"link3\\\",\\\"n9fN6Oif9\\\":\\\"link4\\\",\\\"nSqDw_wLW\\\":\\\"link5\\\",\\\"kBDfnFqbs\\\":\\\"link6\\\",\\\"vgdqzswtn\\\":\\\"link7\\\",\\\"xbM7x37V8\\\":\\\"link8\\\",\\\"j7ojbQhEi\\\":\\\"image1\\\",\\\"k3fl1FuvP\\\":\\\"image2\\\",\\\"N4suFAX8X\\\":\\\"image3\\\",\\\"Rq4Llee07\\\":\\\"image4\\\",\\\"lNKVu2a0C\\\":\\\"image5\\\",\\\"ChHWugZD5\\\":\\\"image6\\\",\\\"WcnEGkY6N\\\":\\\"image7\\\",\\\"bV6UaDCEp\\\":\\\"image8\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ApFZ0evyo.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"o5MyJbgal\",\"MirqRK_xf\",\"CciMvH7z2\",\"qyHnGO8Rn\",\"ZAZjzjluB\",\"VIZrRDVdD\",\"mNSgnAEto\",\"BrWhnXc58\",\"lYVDfiXgP\",\"oBOjLz664\",\"kes8qzWLU\",\"Ju1Mg27XF\",\"T1UK6hJAR\",\"p4zrNAFFM\",\"yaM3syHK9\",\"D7vV7dNmr\",\"Qv9qlInMQ\",\"h9EyhLBPp\",\"HliCe1AHJ\",\"qSHlAFIpQ\",\"AeRUqMWJy\",\"PZWkR6h14\",\"LuhPYdYpv\",\"LDIVstInX\"];const serializationHash=\"framer-BtTC8\";const variantClassNames={AeRUqMWJy:\"framer-v-1nz5rd2\",BrWhnXc58:\"framer-v-mh19g9\",CciMvH7z2:\"framer-v-11ehx4w\",D7vV7dNmr:\"framer-v-6ei89y\",h9EyhLBPp:\"framer-v-12df30g\",HliCe1AHJ:\"framer-v-261vdj\",Ju1Mg27XF:\"framer-v-6es8lf\",kes8qzWLU:\"framer-v-ywu32m\",LDIVstInX:\"framer-v-c6y64t\",LuhPYdYpv:\"framer-v-bhx3ut\",lYVDfiXgP:\"framer-v-eqiyg7\",MirqRK_xf:\"framer-v-1sj5cl6\",mNSgnAEto:\"framer-v-1gm6hho\",o5MyJbgal:\"framer-v-1n9v976\",oBOjLz664:\"framer-v-afg21w\",p4zrNAFFM:\"framer-v-jks5lk\",PZWkR6h14:\"framer-v-2oq2l0\",qSHlAFIpQ:\"framer-v-enousu\",Qv9qlInMQ:\"framer-v-e4wn91\",qyHnGO8Rn:\"framer-v-svx77y\",T1UK6hJAR:\"framer-v-q5xnn6\",VIZrRDVdD:\"framer-v-1f1c5tl\",yaM3syHK9:\"framer-v-j035tg\",ZAZjzjluB:\"framer-v-160xh0b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1-Active\":\"Qv9qlInMQ\",\"1-Hover\":\"lYVDfiXgP\",\"1\":\"o5MyJbgal\",\"2-Active\":\"h9EyhLBPp\",\"2-Hover\":\"oBOjLz664\",\"2\":\"MirqRK_xf\",\"3-Active\":\"HliCe1AHJ\",\"3-Hover\":\"D7vV7dNmr\",\"3\":\"BrWhnXc58\",\"4-Active\":\"qSHlAFIpQ\",\"4-Hover\":\"kes8qzWLU\",\"4\":\"CciMvH7z2\",\"5-Active\":\"AeRUqMWJy\",\"5-Hover\":\"Ju1Mg27XF\",\"5\":\"qyHnGO8Rn\",\"6-Active\":\"PZWkR6h14\",\"6-Hover\":\"T1UK6hJAR\",\"6\":\"ZAZjzjluB\",\"7-Active\":\"LuhPYdYpv\",\"7-Hover\":\"p4zrNAFFM\",\"7\":\"VIZrRDVdD\",\"8-Active\":\"LDIVstInX\",\"8-Hover\":\"yaM3syHK9\",\"8\":\"mNSgnAEto\"};const getProps=({height,id,image1,image2,image3,image4,image5,image6,image7,image8,link1,link2,link3,link4,link5,link6,link7,link8,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,begDU6hgI:link2!==null&&link2!==void 0?link2:props.begDU6hgI,BhBPSHWK9:link1!==null&&link1!==void 0?link1:props.BhBPSHWK9,BmNwCFuAX:link3!==null&&link3!==void 0?link3:props.BmNwCFuAX,DiUHL5kRE:image2!==null&&image2!==void 0?image2:props.DiUHL5kRE,DwUD18Unz:image7!==null&&image7!==void 0?image7:props.DwUD18Unz,ifdILHMtR:image1!==null&&image1!==void 0?image1:props.ifdILHMtR,kBDfnFqbs:link6!==null&&link6!==void 0?link6:props.kBDfnFqbs,N176Jr1rA:image8!==null&&image8!==void 0?image8:props.N176Jr1rA,n9fN6Oif9:link4!==null&&link4!==void 0?link4:props.n9fN6Oif9,nSqDw_wLW:link5!==null&&link5!==void 0?link5:props.nSqDw_wLW,pwzVtMx9E:image5!==null&&image5!==void 0?image5:props.pwzVtMx9E,RUYWpY56r:image4!==null&&image4!==void 0?image4:props.RUYWpY56r,sN18Ww0tb:image6!==null&&image6!==void 0?image6:props.sN18Ww0tb,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"o5MyJbgal\",vgdqzswtn:link7!==null&&link7!==void 0?link7:props.vgdqzswtn,xbM7x37V8:link8!==null&&link8!==void 0?link8:props.xbM7x37V8,YrLQpV1yP:image3!==null&&image3!==void 0?image3:props.YrLQpV1yP};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BhBPSHWK9,begDU6hgI,BmNwCFuAX,n9fN6Oif9,nSqDw_wLW,kBDfnFqbs,vgdqzswtn,xbM7x37V8,DiUHL5kRE,YrLQpV1yP,RUYWpY56r,pwzVtMx9E,sN18Ww0tb,DwUD18Unz,N176Jr1rA,ifdILHMtR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o5MyJbgal\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterkrmq9d=activeVariantCallback(async(...args)=>{setVariant(\"lYVDfiXgP\");});const onMouseEnter1fz1xcn=activeVariantCallback(async(...args)=>{setVariant(\"oBOjLz664\");});const onMouseEnter1qoboy8=activeVariantCallback(async(...args)=>{setVariant(\"kes8qzWLU\");});const onMouseEnterk0l7z8=activeVariantCallback(async(...args)=>{setVariant(\"Ju1Mg27XF\");});const onMouseEnter1m883sp=activeVariantCallback(async(...args)=>{setVariant(\"T1UK6hJAR\");});const onMouseEnterhqjapz=activeVariantCallback(async(...args)=>{setVariant(\"p4zrNAFFM\");});const onMouseEnterqx5ada=activeVariantCallback(async(...args)=>{setVariant(\"yaM3syHK9\");});const onMouseEnter9hhn53=activeVariantCallback(async(...args)=>{setVariant(\"D7vV7dNmr\");});const onMouseLeave157tjnd=activeVariantCallback(async(...args)=>{setVariant(\"o5MyJbgal\");});const onMouseLeave1xck46c=activeVariantCallback(async(...args)=>{setVariant(\"MirqRK_xf\");});const onMouseLeaveps02w=activeVariantCallback(async(...args)=>{setVariant(\"CciMvH7z2\");});const onMouseLeave4o5lh0=activeVariantCallback(async(...args)=>{setVariant(\"qyHnGO8Rn\");});const onMouseLeavekri4au=activeVariantCallback(async(...args)=>{setVariant(\"ZAZjzjluB\");});const onMouseLeave1jddr2x=activeVariantCallback(async(...args)=>{setVariant(\"VIZrRDVdD\");});const onMouseLeave1npve5d=activeVariantCallback(async(...args)=>{setVariant(\"mNSgnAEto\");});const onMouseLeave1okntmv=activeVariantCallback(async(...args)=>{setVariant(\"BrWhnXc58\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:BhBPSHWK9,smoothScroll:true,...addPropertyOverrides({AeRUqMWJy:{href:nSqDw_wLW},BrWhnXc58:{href:BmNwCFuAX},CciMvH7z2:{href:n9fN6Oif9},D7vV7dNmr:{href:BmNwCFuAX},h9EyhLBPp:{href:begDU6hgI},HliCe1AHJ:{href:BmNwCFuAX},Ju1Mg27XF:{href:nSqDw_wLW},kes8qzWLU:{href:n9fN6Oif9},LDIVstInX:{href:xbM7x37V8},LuhPYdYpv:{href:vgdqzswtn},MirqRK_xf:{href:begDU6hgI},mNSgnAEto:{href:xbM7x37V8},oBOjLz664:{href:begDU6hgI},p4zrNAFFM:{href:vgdqzswtn},PZWkR6h14:{href:kBDfnFqbs},qSHlAFIpQ:{href:n9fN6Oif9},qyHnGO8Rn:{href:nSqDw_wLW},T1UK6hJAR:{href:kBDfnFqbs},VIZrRDVdD:{href:vgdqzswtn},yaM3syHK9:{href:xbM7x37V8},ZAZjzjluB:{href:kBDfnFqbs}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1n9v976\",className,classNames)} framer-b3gvfl`,\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"o5MyJbgal\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterkrmq9d,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AeRUqMWJy:{\"data-framer-name\":\"5-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},BrWhnXc58:{\"data-framer-name\":\"3\",onMouseEnter:onMouseEnter9hhn53},CciMvH7z2:{\"data-framer-name\":\"4\",onMouseEnter:onMouseEnter1qoboy8},D7vV7dNmr:{\"data-framer-name\":\"3-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1okntmv},h9EyhLBPp:{\"data-framer-name\":\"2-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},HliCe1AHJ:{\"data-framer-name\":\"3-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},Ju1Mg27XF:{\"data-framer-name\":\"5-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave4o5lh0},kes8qzWLU:{\"data-framer-name\":\"4-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveps02w},LDIVstInX:{\"data-framer-name\":\"8-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},LuhPYdYpv:{\"data-framer-name\":\"7-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},lYVDfiXgP:{\"data-framer-name\":\"1-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave157tjnd},MirqRK_xf:{\"data-framer-name\":\"2\",onMouseEnter:onMouseEnter1fz1xcn},mNSgnAEto:{\"data-framer-name\":\"8\",onMouseEnter:onMouseEnterqx5ada},oBOjLz664:{\"data-framer-name\":\"2-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1xck46c},p4zrNAFFM:{\"data-framer-name\":\"7-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1jddr2x},PZWkR6h14:{\"data-framer-name\":\"6-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},qSHlAFIpQ:{\"data-framer-name\":\"4-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},Qv9qlInMQ:{\"data-framer-name\":\"1-Active\",\"data-highlight\":undefined,onMouseEnter:undefined},qyHnGO8Rn:{\"data-framer-name\":\"5\",onMouseEnter:onMouseEnterk0l7z8},T1UK6hJAR:{\"data-framer-name\":\"6-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeavekri4au},VIZrRDVdD:{\"data-framer-name\":\"7\",onMouseEnter:onMouseEnterhqjapz},yaM3syHK9:{\"data-framer-name\":\"8-Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1npve5d},ZAZjzjluB:{\"data-framer-name\":\"6\",onMouseEnter:onMouseEnter1m883sp}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(ifdILHMtR)},className:\"framer-j17rtp\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"qTIHzGEmM\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:1},variants:{BrWhnXc58:{opacity:.25},CciMvH7z2:{opacity:.25},MirqRK_xf:{opacity:.25},mNSgnAEto:{opacity:.25},qyHnGO8Rn:{opacity:.25},VIZrRDVdD:{opacity:.25},ZAZjzjluB:{opacity:.25}},...addPropertyOverrides({AeRUqMWJy:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(pwzVtMx9E)}},BrWhnXc58:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(YrLQpV1yP)}},CciMvH7z2:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(RUYWpY56r)}},D7vV7dNmr:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(YrLQpV1yP)}},h9EyhLBPp:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DiUHL5kRE)}},HliCe1AHJ:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(YrLQpV1yP)}},Ju1Mg27XF:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(pwzVtMx9E)}},kes8qzWLU:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(RUYWpY56r)}},LDIVstInX:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N176Jr1rA)}},LuhPYdYpv:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DwUD18Unz)}},MirqRK_xf:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DiUHL5kRE)}},mNSgnAEto:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N176Jr1rA)}},oBOjLz664:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DiUHL5kRE)}},p4zrNAFFM:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DwUD18Unz)}},PZWkR6h14:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(sN18Ww0tb)}},qSHlAFIpQ:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(RUYWpY56r)}},qyHnGO8Rn:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(pwzVtMx9E)}},T1UK6hJAR:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(sN18Ww0tb)}},VIZrRDVdD:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(DwUD18Unz)}},yaM3syHK9:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(N176Jr1rA)}},ZAZjzjluB:{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",...toResponsiveImage(sN18Ww0tb)}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BtTC8.framer-b3gvfl, .framer-BtTC8 .framer-b3gvfl { display: block; }\",\".framer-BtTC8.framer-1n9v976 { align-content: center; align-items: center; cursor: zoom-in; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 90px; }\",\".framer-BtTC8 .framer-j17rtp { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BtTC8.framer-1n9v976 { gap: 0px; } .framer-BtTC8.framer-1n9v976 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BtTC8.framer-1n9v976 > :first-child { margin-left: 0px; } .framer-BtTC8.framer-1n9v976 > :last-child { margin-right: 0px; } }\",\".framer-BtTC8.framer-v-mh19g9.framer-1n9v976, .framer-BtTC8.framer-v-6ei89y.framer-1n9v976, .framer-BtTC8.framer-v-261vdj.framer-1n9v976 { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BtTC8.framer-v-mh19g9.framer-1n9v976 { gap: 0px; } .framer-BtTC8.framer-v-mh19g9.framer-1n9v976 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BtTC8.framer-v-mh19g9.framer-1n9v976 > :first-child { margin-top: 0px; } .framer-BtTC8.framer-v-mh19g9.framer-1n9v976 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BtTC8.framer-v-6ei89y.framer-1n9v976 { gap: 0px; } .framer-BtTC8.framer-v-6ei89y.framer-1n9v976 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BtTC8.framer-v-6ei89y.framer-1n9v976 > :first-child { margin-top: 0px; } .framer-BtTC8.framer-v-6ei89y.framer-1n9v976 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BtTC8.framer-v-261vdj.framer-1n9v976 { gap: 0px; } .framer-BtTC8.framer-v-261vdj.framer-1n9v976 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BtTC8.framer-v-261vdj.framer-1n9v976 > :first-child { margin-top: 0px; } .framer-BtTC8.framer-v-261vdj.framer-1n9v976 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MirqRK_xf\":{\"layout\":[\"fixed\",\"auto\"]},\"CciMvH7z2\":{\"layout\":[\"fixed\",\"auto\"]},\"qyHnGO8Rn\":{\"layout\":[\"fixed\",\"auto\"]},\"ZAZjzjluB\":{\"layout\":[\"fixed\",\"auto\"]},\"VIZrRDVdD\":{\"layout\":[\"fixed\",\"auto\"]},\"mNSgnAEto\":{\"layout\":[\"fixed\",\"auto\"]},\"BrWhnXc58\":{\"layout\":[\"fixed\",\"auto\"]},\"lYVDfiXgP\":{\"layout\":[\"fixed\",\"auto\"]},\"oBOjLz664\":{\"layout\":[\"fixed\",\"auto\"]},\"kes8qzWLU\":{\"layout\":[\"fixed\",\"auto\"]},\"Ju1Mg27XF\":{\"layout\":[\"fixed\",\"auto\"]},\"T1UK6hJAR\":{\"layout\":[\"fixed\",\"auto\"]},\"p4zrNAFFM\":{\"layout\":[\"fixed\",\"auto\"]},\"yaM3syHK9\":{\"layout\":[\"fixed\",\"auto\"]},\"D7vV7dNmr\":{\"layout\":[\"fixed\",\"auto\"]},\"Qv9qlInMQ\":{\"layout\":[\"fixed\",\"auto\"]},\"h9EyhLBPp\":{\"layout\":[\"fixed\",\"auto\"]},\"HliCe1AHJ\":{\"layout\":[\"fixed\",\"auto\"]},\"qSHlAFIpQ\":{\"layout\":[\"fixed\",\"auto\"]},\"AeRUqMWJy\":{\"layout\":[\"fixed\",\"auto\"]},\"PZWkR6h14\":{\"layout\":[\"fixed\",\"auto\"]},\"LuhPYdYpv\":{\"layout\":[\"fixed\",\"auto\"]},\"LDIVstInX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BhBPSHWK9\":\"link1\",\"begDU6hgI\":\"link2\",\"BmNwCFuAX\":\"link3\",\"n9fN6Oif9\":\"link4\",\"nSqDw_wLW\":\"link5\",\"kBDfnFqbs\":\"link6\",\"vgdqzswtn\":\"link7\",\"xbM7x37V8\":\"link8\",\"DiUHL5kRE\":\"image2\",\"YrLQpV1yP\":\"image3\",\"RUYWpY56r\":\"image4\",\"pwzVtMx9E\":\"image5\",\"sN18Ww0tb\":\"image6\",\"DwUD18Unz\":\"image7\",\"N176Jr1rA\":\"image8\",\"ifdILHMtR\":\"image1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJapLcaaY7=withCSS(Component,css,\"framer-BtTC8\");export default FramerJapLcaaY7;FramerJapLcaaY7.displayName=\"Sidebar-Image - Active Scroll Tracker\";FramerJapLcaaY7.defaultProps={height:60,width:90};addPropertyControls(FramerJapLcaaY7,{variant:{options:[\"o5MyJbgal\",\"MirqRK_xf\",\"CciMvH7z2\",\"qyHnGO8Rn\",\"ZAZjzjluB\",\"VIZrRDVdD\",\"mNSgnAEto\",\"BrWhnXc58\",\"lYVDfiXgP\",\"oBOjLz664\",\"kes8qzWLU\",\"Ju1Mg27XF\",\"T1UK6hJAR\",\"p4zrNAFFM\",\"yaM3syHK9\",\"D7vV7dNmr\",\"Qv9qlInMQ\",\"h9EyhLBPp\",\"HliCe1AHJ\",\"qSHlAFIpQ\",\"AeRUqMWJy\",\"PZWkR6h14\",\"LuhPYdYpv\",\"LDIVstInX\"],optionTitles:[\"1\",\"2\",\"4\",\"5\",\"6\",\"7\",\"8\",\"3\",\"1-Hover\",\"2-Hover\",\"4-Hover\",\"5-Hover\",\"6-Hover\",\"7-Hover\",\"8-Hover\",\"3-Hover\",\"1-Active\",\"2-Active\",\"3-Active\",\"4-Active\",\"5-Active\",\"6-Active\",\"7-Active\",\"8-Active\"],title:\"Variant\",type:ControlType.Enum},BhBPSHWK9:{title:\"Link 1\",type:ControlType.Link},begDU6hgI:{title:\"Link 2\",type:ControlType.Link},BmNwCFuAX:{title:\"Link 3\",type:ControlType.Link},n9fN6Oif9:{title:\"Link 4\",type:ControlType.Link},nSqDw_wLW:{title:\"Link 5\",type:ControlType.Link},kBDfnFqbs:{title:\"Link 6\",type:ControlType.Link},vgdqzswtn:{title:\"Link 7\",type:ControlType.Link},xbM7x37V8:{title:\"Link 8\",type:ControlType.Link},DiUHL5kRE:{title:\"Image 2\",type:ControlType.ResponsiveImage},YrLQpV1yP:{title:\"Image 3\",type:ControlType.ResponsiveImage},RUYWpY56r:{title:\"Image 4\",type:ControlType.ResponsiveImage},pwzVtMx9E:{title:\"Image 5\",type:ControlType.ResponsiveImage},sN18Ww0tb:{title:\"Image 6\",type:ControlType.ResponsiveImage},DwUD18Unz:{title:\"Image 7\",type:ControlType.ResponsiveImage},N176Jr1rA:{title:\"Image 8\",type:ControlType.ResponsiveImage},ifdILHMtR:{title:\"Image 1\",type:ControlType.ResponsiveImage}});addFonts(FramerJapLcaaY7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJapLcaaY7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MirqRK_xf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CciMvH7z2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qyHnGO8Rn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZAZjzjluB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VIZrRDVdD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mNSgnAEto\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BrWhnXc58\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lYVDfiXgP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oBOjLz664\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kes8qzWLU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ju1Mg27XF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T1UK6hJAR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4zrNAFFM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yaM3syHK9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D7vV7dNmr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qv9qlInMQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h9EyhLBPp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HliCe1AHJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qSHlAFIpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AeRUqMWJy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PZWkR6h14\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LuhPYdYpv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LDIVstInX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\",\"framerVariables\":\"{\\\"BhBPSHWK9\\\":\\\"link1\\\",\\\"begDU6hgI\\\":\\\"link2\\\",\\\"BmNwCFuAX\\\":\\\"link3\\\",\\\"n9fN6Oif9\\\":\\\"link4\\\",\\\"nSqDw_wLW\\\":\\\"link5\\\",\\\"kBDfnFqbs\\\":\\\"link6\\\",\\\"vgdqzswtn\\\":\\\"link7\\\",\\\"xbM7x37V8\\\":\\\"link8\\\",\\\"DiUHL5kRE\\\":\\\"image2\\\",\\\"YrLQpV1yP\\\":\\\"image3\\\",\\\"RUYWpY56r\\\":\\\"image4\\\",\\\"pwzVtMx9E\\\":\\\"image5\\\",\\\"sN18Ww0tb\\\":\\\"image6\\\",\\\"DwUD18Unz\\\":\\\"image7\\\",\\\"N176Jr1rA\\\":\\\"image8\\\",\\\"ifdILHMtR\\\":\\\"image1\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JapLcaaY7.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SidebarImage from\"https://framerusercontent.com/modules/HP7EP3nRZqy6f9UrOHxh/Km0mdXSpEecqJ4KnBfpq/ApFZ0evyo.js\";import SidebarImageCopy from\"https://framerusercontent.com/modules/MQWFMmKa8iuNf2jhu4Vr/dIRxbjwsPdsdNIS72Dao/JapLcaaY7.js\";const SidebarImageFonts=getFonts(SidebarImage);const SidebarImageCopyFonts=getFonts(SidebarImageCopy);const cycleOrder=[\"hdSRrLzH3\",\"EbGISiw2V\",\"eHszBQVLX\",\"WTKuVlCrB\",\"DZc_N97Nv\",\"WEDAflASb\",\"XbNRWB165\"];const serializationHash=\"framer-OjTfv\";const variantClassNames={DZc_N97Nv:\"framer-v-4ke73v\",EbGISiw2V:\"framer-v-1wp98iu\",eHszBQVLX:\"framer-v-1w6yo7\",hdSRrLzH3:\"framer-v-15yqr2s\",WEDAflASb:\"framer-v-2hko30\",WTKuVlCrB:\"framer-v-tgayg0\",XbNRWB165:\"framer-v-1jquw58\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1\":\"hdSRrLzH3\",\"2\":\"EbGISiw2V\",\"3\":\"eHszBQVLX\",\"4\":\"WTKuVlCrB\",\"5\":\"DZc_N97Nv\",\"6\":\"WEDAflASb\",\"7\":\"XbNRWB165\"};const getProps=({height,id,image1,image2,image3,image4,image5,image6,image7,image8,link1,link2,link3,link4,link5,link6,link7,link8,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6,_ref7,_ref8;return{...props,Awq5CXnuP:(_ref=image4!==null&&image4!==void 0?image4:props.Awq5CXnuP)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/h93pjCR9RpNzeQpDZLSTZt2M.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h93pjCR9RpNzeQpDZLSTZt2M.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/h93pjCR9RpNzeQpDZLSTZt2M.jpg?scale-down-to=2048 1535w,https://framerusercontent.com/images/h93pjCR9RpNzeQpDZLSTZt2M.jpg 2306w\"},C2kwoOZOk:link6!==null&&link6!==void 0?link6:props.C2kwoOZOk,Eus8RH2hm:(_ref1=image3!==null&&image3!==void 0?image3:props.Eus8RH2hm)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nhnQbQL1fLdYPhzGD0JOJ7Js.jpg 3872w\"},kf1HR_gwZ:link5!==null&&link5!==void 0?link5:props.kf1HR_gwZ,m0W7GfpR7:link7!==null&&link7!==void 0?link7:props.m0W7GfpR7,mFzvkvvTc:(_ref2=image7!==null&&image7!==void 0?image7:props.mFzvkvvTc)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg 5184w\"},MkQnYL0Nd:link1!==null&&link1!==void 0?link1:props.MkQnYL0Nd,NTkvas3Az:(_ref3=image5!==null&&image5!==void 0?image5:props.NTkvas3Az)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg 6000w\"},pijLNztmR:link8!==null&&link8!==void 0?link8:props.pijLNztmR,pItUBiV1b:link3!==null&&link3!==void 0?link3:props.pItUBiV1b,pWzxKkwxb:(_ref4=image6!==null&&image6!==void 0?image6:props.pWzxKkwxb)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg 3120w\"},variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"hdSRrLzH3\",vdNB4M2dk:(_ref6=image1!==null&&image1!==void 0?image1:props.vdNB4M2dk)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/em1M4PSs9KzLTrQJu2y8ddSlJas.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/em1M4PSs9KzLTrQJu2y8ddSlJas.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/em1M4PSs9KzLTrQJu2y8ddSlJas.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/em1M4PSs9KzLTrQJu2y8ddSlJas.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/em1M4PSs9KzLTrQJu2y8ddSlJas.jpg 4032w\"},VMbrU7bwb:link4!==null&&link4!==void 0?link4:props.VMbrU7bwb,vXqNeGyts:(_ref7=image2!==null&&image2!==void 0?image2:props.vXqNeGyts)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/FDlKTf6OwG7gvNNfsCim2R3CMg.jpg 5184w\"},wRz7ILNUW:link2!==null&&link2!==void 0?link2:props.wRz7ILNUW,ZO50_B3mW:(_ref8=image8!==null&&image8!==void 0?image8:props.ZO50_B3mW)!==null&&_ref8!==void 0?_ref8:{src:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg 5568w\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,MkQnYL0Nd,wRz7ILNUW,pItUBiV1b,VMbrU7bwb,kf1HR_gwZ,C2kwoOZOk,m0W7GfpR7,pijLNztmR,vdNB4M2dk,vXqNeGyts,Eus8RH2hm,Awq5CXnuP,NTkvas3Az,pWzxKkwxb,mFzvkvvTc,ZO50_B3mW,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hdSRrLzH3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15yqr2s\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"hdSRrLzH3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DZc_N97Nv:{\"data-framer-name\":\"5\"},EbGISiw2V:{\"data-framer-name\":\"2\"},eHszBQVLX:{\"data-framer-name\":\"3\"},WEDAflASb:{\"data-framer-name\":\"6\"},WTKuVlCrB:{\"data-framer-name\":\"4\"},XbNRWB165:{\"data-framer-name\":\"7\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uykife\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"Z7lsZqY15\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nm8i9q\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"miCQFqD72\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pgs3lx-container\",layoutDependency:layoutDependency,layoutId:\"v4fRgjmfH-container\",children:/*#__PURE__*/_jsx(SidebarImage,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,bV6UaDCEp:toResponsiveImage(ZO50_B3mW),ChHWugZD5:toResponsiveImage(pWzxKkwxb),height:\"100%\",id:\"v4fRgjmfH\",j7ojbQhEi:toResponsiveImage(vdNB4M2dk),k3fl1FuvP:toResponsiveImage(vXqNeGyts),kBDfnFqbs:C2kwoOZOk,layoutId:\"v4fRgjmfH\",lNKVu2a0C:toResponsiveImage(NTkvas3Az),N4suFAX8X:toResponsiveImage(Eus8RH2hm),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,Rq4Llee07:toResponsiveImage(Awq5CXnuP),style:{width:\"100%\"},variant:\"WZCvRHHjq\",vgdqzswtn:m0W7GfpR7,WcnEGkY6N:toResponsiveImage(mFzvkvvTc),width:\"100%\",xbM7x37V8:pijLNztmR,...addPropertyOverrides({DZc_N97Nv:{variant:\"GVIuOTF7T\"},EbGISiw2V:{variant:\"GVIuOTF7T\"},eHszBQVLX:{variant:\"GVIuOTF7T\"},WEDAflASb:{variant:\"GVIuOTF7T\"},WTKuVlCrB:{variant:\"GVIuOTF7T\"},XbNRWB165:{variant:\"GVIuOTF7T\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjs9n9\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"cmNgZ1Uqo\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y57spc-container\",layoutDependency:layoutDependency,layoutId:\"F7VAjGygP-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"F7VAjGygP\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"F7VAjGygP\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"MirqRK_xf\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({EbGISiw2V:{variant:\"h9EyhLBPp\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3kuxdy\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"q5sZWMPja\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b29ybk-container\",layoutDependency:layoutDependency,layoutId:\"wYEmOEjqy-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"wYEmOEjqy\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"wYEmOEjqy\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"BrWhnXc58\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({eHszBQVLX:{variant:\"HliCe1AHJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gqjbjy\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"NxNCsqYN5\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ujn83-container\",layoutDependency:layoutDependency,layoutId:\"WD2cbc7Mj-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"WD2cbc7Mj\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"WD2cbc7Mj\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"CciMvH7z2\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({EbGISiw2V:{DiUHL5kRE:undefined,DwUD18Unz:addImageAlt({src:\"https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg 5184w\"},\"\"),N176Jr1rA:addImageAlt({src:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg 5568w\"},\"\"),pwzVtMx9E:addImageAlt({src:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/66WhuR7TjECUrNuUvVZDWhujLz4.jpg 6000w\"},\"\"),sN18Ww0tb:addImageAlt({src:\"https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg 3120w\"},\"\"),YrLQpV1yP:undefined},WTKuVlCrB:{variant:\"qSHlAFIpQ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-61bfrb\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"gFkaxPXfH\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1djgad2-container\",layoutDependency:layoutDependency,layoutId:\"cxuaP8P39-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"cxuaP8P39\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"cxuaP8P39\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"qyHnGO8Rn\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({DZc_N97Nv:{variant:\"AeRUqMWJy\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vk76wg\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"qWdJ8Lx8r\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ypqmzr-container\",layoutDependency:layoutDependency,layoutId:\"u1LPprs8W-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"u1LPprs8W\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"u1LPprs8W\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"ZAZjzjluB\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({WEDAflASb:{variant:\"PZWkR6h14\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nju4c8\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"TXzteUKnv\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bqm2nw-container\",layoutDependency:layoutDependency,layoutId:\"B7vYKBJ3F-container\",children:/*#__PURE__*/_jsx(SidebarImageCopy,{begDU6hgI:wRz7ILNUW,BhBPSHWK9:MkQnYL0Nd,BmNwCFuAX:pItUBiV1b,DiUHL5kRE:toResponsiveImage(vXqNeGyts),DwUD18Unz:toResponsiveImage(mFzvkvvTc),height:\"100%\",id:\"B7vYKBJ3F\",ifdILHMtR:toResponsiveImage(vdNB4M2dk),kBDfnFqbs:C2kwoOZOk,layoutId:\"B7vYKBJ3F\",N176Jr1rA:toResponsiveImage(ZO50_B3mW),n9fN6Oif9:VMbrU7bwb,nSqDw_wLW:kf1HR_gwZ,pwzVtMx9E:toResponsiveImage(NTkvas3Az),RUYWpY56r:toResponsiveImage(Awq5CXnuP),sN18Ww0tb:toResponsiveImage(pWzxKkwxb),style:{width:\"100%\"},variant:\"VIZrRDVdD\",vgdqzswtn:m0W7GfpR7,width:\"100%\",xbM7x37V8:pijLNztmR,YrLQpV1yP:toResponsiveImage(Eus8RH2hm),...addPropertyOverrides({XbNRWB165:{variant:\"LuhPYdYpv\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OjTfv.framer-14gl9be, .framer-OjTfv .framer-14gl9be { display: block; }\",\".framer-OjTfv.framer-15yqr2s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-OjTfv .framer-1uykife { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 80px; }\",\".framer-OjTfv .framer-nm8i9q, .framer-OjTfv .framer-1gqjbjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-OjTfv .framer-pgs3lx-container, .framer-OjTfv .framer-1y57spc-container, .framer-OjTfv .framer-1b29ybk-container, .framer-OjTfv .framer-4ujn83-container, .framer-OjTfv .framer-1djgad2-container, .framer-OjTfv .framer-ypqmzr-container, .framer-OjTfv .framer-bqm2nw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-OjTfv .framer-1pjs9n9, .framer-OjTfv .framer-1vk76wg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-OjTfv .framer-3kuxdy, .framer-OjTfv .framer-61bfrb, .framer-OjTfv .framer-1nju4c8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OjTfv.framer-15yqr2s, .framer-OjTfv .framer-1uykife, .framer-OjTfv .framer-nm8i9q, .framer-OjTfv .framer-1pjs9n9, .framer-OjTfv .framer-3kuxdy, .framer-OjTfv .framer-1gqjbjy, .framer-OjTfv .framer-61bfrb, .framer-OjTfv .framer-1vk76wg, .framer-OjTfv .framer-1nju4c8 { gap: 0px; } .framer-OjTfv.framer-15yqr2s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OjTfv.framer-15yqr2s > :first-child, .framer-OjTfv .framer-1uykife > :first-child { margin-top: 0px; } .framer-OjTfv.framer-15yqr2s > :last-child, .framer-OjTfv .framer-1uykife > :last-child { margin-bottom: 0px; } .framer-OjTfv .framer-1uykife > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-OjTfv .framer-nm8i9q > *, .framer-OjTfv .framer-1pjs9n9 > *, .framer-OjTfv .framer-3kuxdy > *, .framer-OjTfv .framer-1gqjbjy > *, .framer-OjTfv .framer-61bfrb > *, .framer-OjTfv .framer-1vk76wg > *, .framer-OjTfv .framer-1nju4c8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OjTfv .framer-nm8i9q > :first-child, .framer-OjTfv .framer-1pjs9n9 > :first-child, .framer-OjTfv .framer-3kuxdy > :first-child, .framer-OjTfv .framer-1gqjbjy > :first-child, .framer-OjTfv .framer-61bfrb > :first-child, .framer-OjTfv .framer-1vk76wg > :first-child, .framer-OjTfv .framer-1nju4c8 > :first-child { margin-left: 0px; } .framer-OjTfv .framer-nm8i9q > :last-child, .framer-OjTfv .framer-1pjs9n9 > :last-child, .framer-OjTfv .framer-3kuxdy > :last-child, .framer-OjTfv .framer-1gqjbjy > :last-child, .framer-OjTfv .framer-61bfrb > :last-child, .framer-OjTfv .framer-1vk76wg > :last-child, .framer-OjTfv .framer-1nju4c8 > :last-child { margin-right: 0px; } }\",\".framer-OjTfv.framer-v-1wp98iu .framer-1pjs9n9, .framer-OjTfv.framer-v-1w6yo7 .framer-3kuxdy, .framer-OjTfv.framer-v-4ke73v .framer-61bfrb, .framer-OjTfv.framer-v-2hko30 .framer-1vk76wg, .framer-OjTfv.framer-v-1jquw58 .framer-1nju4c8 { justify-content: flex-start; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EbGISiw2V\":{\"layout\":[\"auto\",\"auto\"]},\"eHszBQVLX\":{\"layout\":[\"auto\",\"auto\"]},\"WTKuVlCrB\":{\"layout\":[\"auto\",\"auto\"]},\"DZc_N97Nv\":{\"layout\":[\"auto\",\"auto\"]},\"WEDAflASb\":{\"layout\":[\"auto\",\"auto\"]},\"XbNRWB165\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"MkQnYL0Nd\":\"link1\",\"wRz7ILNUW\":\"link2\",\"pItUBiV1b\":\"link3\",\"VMbrU7bwb\":\"link4\",\"kf1HR_gwZ\":\"link5\",\"C2kwoOZOk\":\"link6\",\"m0W7GfpR7\":\"link7\",\"pijLNztmR\":\"link8\",\"vdNB4M2dk\":\"image1\",\"vXqNeGyts\":\"image2\",\"Eus8RH2hm\":\"image3\",\"Awq5CXnuP\":\"image4\",\"NTkvas3Az\":\"image5\",\"pWzxKkwxb\":\"image6\",\"mFzvkvvTc\":\"image7\",\"ZO50_B3mW\":\"image8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV6m6OEtpr=withCSS(Component,css,\"framer-OjTfv\");export default FramerV6m6OEtpr;FramerV6m6OEtpr.displayName=\"Sidebar Sticky - Project Page\";FramerV6m6OEtpr.defaultProps={height:498,width:80};addPropertyControls(FramerV6m6OEtpr,{variant:{options:[\"hdSRrLzH3\",\"EbGISiw2V\",\"eHszBQVLX\",\"WTKuVlCrB\",\"DZc_N97Nv\",\"WEDAflASb\",\"XbNRWB165\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\"],title:\"Variant\",type:ControlType.Enum},MkQnYL0Nd:{title:\"Link-1\",type:ControlType.Link},wRz7ILNUW:{title:\"Link-2\",type:ControlType.Link},pItUBiV1b:{title:\"Link-3\",type:ControlType.Link},VMbrU7bwb:{title:\"Link-4\",type:ControlType.Link},kf1HR_gwZ:{title:\"Link-5\",type:ControlType.Link},C2kwoOZOk:{title:\"Link-6\",type:ControlType.Link},m0W7GfpR7:{title:\"Link-7\",type:ControlType.Link},pijLNztmR:{title:\"Link-8\",type:ControlType.Link},vdNB4M2dk:{__defaultAssetReference:\"data:framer/asset-reference,em1M4PSs9KzLTrQJu2y8ddSlJas.jpg?originalFilename=photo-1578850390049-d5915d788268%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw5fHxudW1iZXIlMjAxfGVufDB8fHx8MTcwODI1NTU0Nnww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},vXqNeGyts:{__defaultAssetReference:\"data:framer/asset-reference,FDlKTf6OwG7gvNNfsCim2R3CMg.jpg?originalFilename=photo-1567254790685-6b6d6abe4689%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxOdW1iZXIlMjAyfGVufDB8fHx8MTcwODI1NjU4N3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},Eus8RH2hm:{__defaultAssetReference:\"data:framer/asset-reference,nhnQbQL1fLdYPhzGD0JOJ7Js.jpg?originalFilename=photo-1621440318357-3e3c94221a1c%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxOdW1iZXIlMjAzfGVufDB8fHx8MTcwODI1NjYwM3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},Awq5CXnuP:{__defaultAssetReference:\"data:framer/asset-reference,h93pjCR9RpNzeQpDZLSTZt2M.jpg?originalFilename=photo-1620645514399-2cd0fe1de8ad%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzfHxOdW1iZXIlMjA0fGVufDB8fHx8MTcxMTAwNzY4MXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},NTkvas3Az:{__defaultAssetReference:\"data:framer/asset-reference,66WhuR7TjECUrNuUvVZDWhujLz4.jpg?originalFilename=photo-1582731489394-51b65c9fcb04%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxOdW1iZXIlMjA1fGVufDB8fHx8MTcwODI1NTgwOHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage},pWzxKkwxb:{__defaultAssetReference:\"data:framer/asset-reference,OFnpvQVzyEh4U41Xgn7CnNEQK4.jpg?originalFilename=photo-1640684518379-b1cae1002131%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw5fHxudW1iZXIlMjA2fGVufDB8fHx8MTcwODI1NTUyMnww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 6\",type:ControlType.ResponsiveImage},mFzvkvvTc:{__defaultAssetReference:\"data:framer/asset-reference,4uY9qKQwAvFeJwjDZ3kcrb0HWU.jpg?originalFilename=photo-1611757346987-12757bddff13%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxudW1iZXIlMjA3fGVufDB8fHx8MTcwODI1NTczN3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 7\",type:ControlType.ResponsiveImage},ZO50_B3mW:{__defaultAssetReference:\"data:framer/asset-reference,dgKVb9XXNbEjvnQbI6HJgrRG9mM.jpg?originalFilename=photo-1634775182403-539616de4ed7%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzfHxOdW1iZXIlMjA4fGVufDB8fHx8MTcwODI1NTc5MHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 8\",type:ControlType.ResponsiveImage}});addFonts(FramerV6m6OEtpr,[{explicitInter:true,fonts:[]},...SidebarImageFonts,...SidebarImageCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV6m6OEtpr\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"MkQnYL0Nd\\\":\\\"link1\\\",\\\"wRz7ILNUW\\\":\\\"link2\\\",\\\"pItUBiV1b\\\":\\\"link3\\\",\\\"VMbrU7bwb\\\":\\\"link4\\\",\\\"kf1HR_gwZ\\\":\\\"link5\\\",\\\"C2kwoOZOk\\\":\\\"link6\\\",\\\"m0W7GfpR7\\\":\\\"link7\\\",\\\"pijLNztmR\\\":\\\"link8\\\",\\\"vdNB4M2dk\\\":\\\"image1\\\",\\\"vXqNeGyts\\\":\\\"image2\\\",\\\"Eus8RH2hm\\\":\\\"image3\\\",\\\"Awq5CXnuP\\\":\\\"image4\\\",\\\"NTkvas3Az\\\":\\\"image5\\\",\\\"pWzxKkwxb\\\":\\\"image6\\\",\\\"mFzvkvvTc\\\":\\\"image7\\\",\\\"ZO50_B3mW\\\":\\\"image8\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"498\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"80\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EbGISiw2V\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eHszBQVLX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WTKuVlCrB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DZc_N97Nv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WEDAflASb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XbNRWB165\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-500\",\"GF;Inter Tight-600\",\"GF;Inter Tight-600italic\",\"GF;Inter Tight-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5SgqoUPvi5.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5SgqoUPvi5.woff2\",weight:\"500\"}]}];export const css=['.framer-73tYQ .framer-styles-preset-16yyh7f:not(.rich-text-wrapper), .framer-73tYQ .framer-styles-preset-16yyh7f.rich-text-wrapper p { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --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-weight: 500; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 2px; --framer-text-alignment: start; --framer-text-color: rgba(0, 0, 0, 0.5); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-73tYQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Chivo Mono-regular\",\"GF;Chivo Mono-700\",\"GF;Chivo Mono-700italic\",\"GF;Chivo Mono-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Chivo Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fQKphL03l4.woff2\",weight:\"400\"},{family:\"Chivo Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivomono/v9/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfQKphL03l4.woff2\",weight:\"700\"},{family:\"Chivo Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJlp1ml4imo.woff2\",weight:\"700\"},{family:\"Chivo Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/chivomono/v9/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJlp1ml4imo.woff2\",weight:\"400\"}]}];export const css=['.framer-b2sFU .framer-styles-preset-1qf6un2:not(.rich-text-wrapper), .framer-b2sFU .framer-styles-preset-1qf6un2.rich-text-wrapper h2 { --framer-font-family: \"Chivo Mono\", monospace; --framer-font-family-bold: \"Chivo Mono\", monospace; --framer-font-family-bold-italic: \"Chivo Mono\", monospace; --framer-font-family-italic: \"Chivo Mono\", monospace; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-b2sFU\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-500\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.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://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-mVOmk .framer-styles-preset-r73wpb:not(.rich-text-wrapper), .framer-mVOmk .framer-styles-preset-r73wpb.rich-text-wrapper h1 { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0px; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-mVOmk\";\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 (e39ee10)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import BeforeAfter from\"https://framerusercontent.com/modules/xA5EJzoZghyNuPLwaZOV/uDly2HIHvyWuUNb8RMMD/Before_After_Image_Slider.js\";import Footer from\"#framer/local/canvasComponent/CPt2kErNr/CPt2kErNr.js\";import GalleryGallery from\"#framer/local/canvasComponent/CZ96QCI_V/CZ96QCI_V.js\";import Navigation from\"#framer/local/canvasComponent/F0lbt84nG/F0lbt84nG.js\";import ProjectCard from\"#framer/local/canvasComponent/i1G3Avwhm/i1G3Avwhm.js\";import SectionNextProject from\"#framer/local/canvasComponent/jmhoDxLSf/jmhoDxLSf.js\";import NavigationMobile from\"#framer/local/canvasComponent/u1SJOgfjQ/u1SJOgfjQ.js\";import LineAnimation from\"#framer/local/canvasComponent/v4ueDjO1q/v4ueDjO1q.js\";import SidebarStickyProjectPage from\"#framer/local/canvasComponent/V6m6OEtpr/V6m6OEtpr.js\";import NavigationMobileContent from\"#framer/local/canvasComponent/VU08sXh8p/VU08sXh8p.js\";import ButtonCursor from\"#framer/local/canvasComponent/XIi5zadS8/XIi5zadS8.js\";import FramerButton from\"#framer/local/codeFile/J2916x8/FramerButton.js\";import Projects from\"#framer/local/collection/vHeab_GFB/vHeab_GFB.js\";import*as sharedStyle5 from\"#framer/local/css/Dj5NjhXCw/Dj5NjhXCw.js\";import*as sharedStyle3 from\"#framer/local/css/EVKFa7Kxf/EVKFa7Kxf.js\";import*as sharedStyle7 from\"#framer/local/css/jF5oHa9QM/jF5oHa9QM.js\";import*as sharedStyle4 from\"#framer/local/css/KTBTxoS4a/KTBTxoS4a.js\";import*as sharedStyle2 from\"#framer/local/css/MxpARFqyv/MxpARFqyv.js\";import*as sharedStyle from\"#framer/local/css/myLV0DuAR/myLV0DuAR.js\";import*as sharedStyle6 from\"#framer/local/css/Sh7QRdGdp/Sh7QRdGdp.js\";import*as sharedStyle8 from\"#framer/local/css/UXc30Nmwf/UXc30Nmwf.js\";import*as sharedStyle1 from\"#framer/local/css/Zlrt2Tzwr/Zlrt2Tzwr.js\";import metadataProvider from\"#framer/local/webPageMetadata/DM0pIiYm6/DM0pIiYm6.js\";const FramerButtonFonts=getFonts(FramerButton);const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const LineAnimationFonts=getFonts(LineAnimation);const LineAnimationWithVariantAppearEffect=withVariantAppearEffect(LineAnimation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SidebarStickyProjectPageFonts=getFonts(SidebarStickyProjectPage);const SidebarStickyProjectPageWithVariantAppearEffect=withVariantAppearEffect(SidebarStickyProjectPage);const YouTubeFonts=getFonts(YouTube);const ProjectCardFonts=getFonts(ProjectCard);const BeforeAfterFonts=getFonts(BeforeAfter);const GalleryGalleryFonts=getFonts(GalleryGallery);const SectionNextProjectFonts=getFonts(SectionNextProject);const FooterFonts=getFonts(Footer);const NavigationMobileFonts=getFonts(NavigationMobile);const NavigationMobileContentFonts=getFonts(NavigationMobileContent);const ButtonCursorFonts=getFonts(ButtonCursor);const cycleOrder=[\"GDtLbbd2l\",\"E0qmMgmpW\",\"ZgcpmiHck\"];const breakpoints={E0qmMgmpW:\"(min-width: 810px) and (max-width: 1199px)\",GDtLbbd2l:\"(min-width: 1200px)\",ZgcpmiHck:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BqF8O\";const variantClassNames={E0qmMgmpW:\"framer-v-xo028q\",GDtLbbd2l:\"framer-v-1eaejtm\",ZgcpmiHck:\"framer-v-19kljla\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-64};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const negate=value=>{return!value;};const transition3={delay:.1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.2,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation5={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.4,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.5,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={delay:.6,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:.7,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={delay:.8,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={delay:.9,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const transition12={delay:1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation12={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const transition13={delay:1.1,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const convertFromBoolean=(value,activeLocale,{iC9pVt3ff})=>{if(value){return{hash:\":JXWxeL5R3\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"};}else{return undefined;}};const convertFromBoolean1=(value,activeLocale)=>{if(value){return undefined;}else{return undefined;}};const transition14={delay:1.2,duration:2,ease:[.23,.98,.56,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"GDtLbbd2l\",Phone:\"ZgcpmiHck\",Tablet:\"E0qmMgmpW\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"GDtLbbd2l\"};};const cursor={component:ButtonCursor,variant:\"En7jXLghg\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"default\",data:Projects,type:\"Collection\"},select:[{collection:\"default\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"default\",name:\"cU7Mofpfj\",type:\"Identifier\"},{collection:\"default\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"default\",name:\"vjUtPirXk\",type:\"Identifier\"},{collection:\"default\",name:\"W7tYi1tzk\",type:\"Identifier\"},{collection:\"default\",name:\"tElZ_uTcT\",type:\"Identifier\"},{collection:\"default\",name:\"VUU_nQE3X\",type:\"Identifier\"},{collection:\"default\",name:\"LzeFCdiJj\",type:\"Identifier\"},{collection:\"default\",name:\"TyxS73x7O\",type:\"Identifier\"},{collection:\"default\",name:\"vO0Cvxftv\",type:\"Identifier\"},{collection:\"default\",name:\"uNKxhajOC\",type:\"Identifier\"},{collection:\"default\",name:\"Q41ega8iu\",type:\"Identifier\"},{collection:\"default\",name:\"XYH4vRTJS\",type:\"Identifier\"},{collection:\"default\",name:\"c2HaqtzgB\",type:\"Identifier\"},{collection:\"default\",name:\"iCDUa9cHV\",type:\"Identifier\"},{collection:\"default\",name:\"WVIZgJIv7\",type:\"Identifier\"},{collection:\"default\",name:\"zgL6ISdJ6\",type:\"Identifier\"},{collection:\"default\",name:\"UUJ0Y28HX\",type:\"Identifier\"},{collection:\"default\",name:\"qYLSEOUwK\",type:\"Identifier\"},{collection:\"default\",name:\"RMMcAH9k_\",type:\"Identifier\"},{collection:\"default\",name:\"NPZz5yatu\",type:\"Identifier\"},{collection:\"default\",name:\"ZwA8fWTEX\",type:\"Identifier\"},{collection:\"default\",name:\"ORffhsntQ\",type:\"Identifier\"},{collection:\"default\",name:\"nQqO0se6B\",type:\"Identifier\"},{collection:\"default\",name:\"LUZxUffdQ\",type:\"Identifier\"},{collection:\"default\",name:\"wxrfk7Lv0\",type:\"Identifier\"},{collection:\"default\",name:\"Zwevxwd5w\",type:\"Identifier\"},{collection:\"default\",name:\"wNHzcyw_n\",type:\"Identifier\"},{collection:\"default\",name:\"mqUIcZ9Op\",type:\"Identifier\"},{collection:\"default\",name:\"hHxkUUAlo\",type:\"Identifier\"},{collection:\"default\",name:\"auDdI5o1l\",type:\"Identifier\"},{collection:\"default\",name:\"YQAwnerBP\",type:\"Identifier\"},{collection:\"default\",name:\"w4NHOMDBb\",type:\"Identifier\"},{collection:\"default\",name:\"Y22eNO09B\",type:\"Identifier\"},{collection:\"default\",name:\"AKGteye1f\",type:\"Identifier\"},{collection:\"default\",name:\"QXMh4tNPo\",type:\"Identifier\"},{collection:\"default\",name:\"c2tx7h67S\",type:\"Identifier\"},{collection:\"default\",name:\"pnfUEjT0R\",type:\"Identifier\"},{collection:\"default\",name:\"m8qZeNFcT\",type:\"Identifier\"},{collection:\"default\",name:\"Z_YrvyHHz\",type:\"Identifier\"},{collection:\"default\",name:\"peEfBakNw\",type:\"Identifier\"},{collection:\"default\",name:\"eLSAx9f2l\",type:\"Identifier\"},{collection:\"default\",name:\"NUm0ox3aE\",type:\"Identifier\"},{collection:\"default\",name:\"qUHm_Wger\",type:\"Identifier\"},{collection:\"default\",name:\"Ltt1aSaEQ\",type:\"Identifier\"},{collection:\"default\",name:\"FhLgWDlp5\",type:\"Identifier\"},{collection:\"default\",name:\"DmGq8EOaH\",type:\"Identifier\"},{collection:\"default\",name:\"Kp8pGCkca\",type:\"Identifier\"},{collection:\"default\",name:\"sv0Pe5agi\",type:\"Identifier\"},{collection:\"default\",name:\"g7Ws3fl9F\",type:\"Identifier\"},{collection:\"default\",name:\"crKZWTMvH\",type:\"Identifier\"},{collection:\"default\",name:\"ojgr5c869\",type:\"Identifier\"},{collection:\"default\",name:\"gf24E4iD0\",type:\"Identifier\"},{collection:\"default\",name:\"o3dtxV7yG\",type:\"Identifier\"},{collection:\"default\",name:\"Xu1LQuV6x\",type:\"Identifier\"},{collection:\"default\",name:\"xkJGD6ooI\",type:\"Identifier\"},{collection:\"default\",name:\"frh81oXZ0\",type:\"Identifier\"},{collection:\"default\",name:\"zIP0E2zCl\",type:\"Identifier\"},{collection:\"default\",name:\"Z5dZS31f3\",type:\"Identifier\"},{collection:\"default\",name:\"IO_cNR1PB\",type:\"Identifier\"},{collection:\"default\",name:\"jioz0r8G6\",type:\"Identifier\"},{collection:\"default\",name:\"nylaGqWyt\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,XYH4vRTJS=getFromCurrentRouteData(\"XYH4vRTJS\"),Q41ega8iu=getFromCurrentRouteData(\"Q41ega8iu\"),cU7Mofpfj=getFromCurrentRouteData(\"cU7Mofpfj\"),c2HaqtzgB=getFromCurrentRouteData(\"c2HaqtzgB\"),FnwgSIUrA=getFromCurrentRouteData(\"FnwgSIUrA\"),vjUtPirXk=getFromCurrentRouteData(\"vjUtPirXk\"),tElZ_uTcT=getFromCurrentRouteData(\"tElZ_uTcT\"),vO0Cvxftv=getFromCurrentRouteData(\"vO0Cvxftv\"),uNKxhajOC=getFromCurrentRouteData(\"uNKxhajOC\"),VUU_nQE3X=getFromCurrentRouteData(\"VUU_nQE3X\"),LzeFCdiJj=getFromCurrentRouteData(\"LzeFCdiJj\"),TyxS73x7O=getFromCurrentRouteData(\"TyxS73x7O\"),iC9pVt3ff=getFromCurrentRouteData(\"iC9pVt3ff\"),Zwevxwd5w=getFromCurrentRouteData(\"Zwevxwd5w\"),w4NHOMDBb=getFromCurrentRouteData(\"w4NHOMDBb\"),iCDUa9cHV=getFromCurrentRouteData(\"iCDUa9cHV\"),UUJ0Y28HX=getFromCurrentRouteData(\"UUJ0Y28HX\"),NPZz5yatu=getFromCurrentRouteData(\"NPZz5yatu\"),ORffhsntQ=getFromCurrentRouteData(\"ORffhsntQ\"),nQqO0se6B=getFromCurrentRouteData(\"nQqO0se6B\"),LUZxUffdQ=getFromCurrentRouteData(\"LUZxUffdQ\"),wNHzcyw_n=getFromCurrentRouteData(\"wNHzcyw_n\"),Z5dZS31f3=getFromCurrentRouteData(\"Z5dZS31f3\"),IO_cNR1PB=getFromCurrentRouteData(\"IO_cNR1PB\"),frh81oXZ0=getFromCurrentRouteData(\"frh81oXZ0\"),zIP0E2zCl=getFromCurrentRouteData(\"zIP0E2zCl\"),jioz0r8G6=getFromCurrentRouteData(\"jioz0r8G6\"),nylaGqWyt=getFromCurrentRouteData(\"nylaGqWyt\"),WVIZgJIv7=getFromCurrentRouteData(\"WVIZgJIv7\"),qYLSEOUwK=getFromCurrentRouteData(\"qYLSEOUwK\"),zgL6ISdJ6=getFromCurrentRouteData(\"zgL6ISdJ6\"),RMMcAH9k_=getFromCurrentRouteData(\"RMMcAH9k_\"),idRiVlBy788,iC9pVt3ffRiVlBy788,idmnq2yk1tT,iC9pVt3ffmnq2yk1tT,idkJTJSvDqJ,iC9pVt3ffkJTJSvDqJ,ZwA8fWTEX=getFromCurrentRouteData(\"ZwA8fWTEX\"),hHxkUUAlo=getFromCurrentRouteData(\"hHxkUUAlo\"),wxrfk7Lv0=getFromCurrentRouteData(\"wxrfk7Lv0\"),mqUIcZ9Op=getFromCurrentRouteData(\"mqUIcZ9Op\"),YQAwnerBP=getFromCurrentRouteData(\"YQAwnerBP\"),auDdI5o1l=getFromCurrentRouteData(\"auDdI5o1l\"),Y22eNO09B=getFromCurrentRouteData(\"Y22eNO09B\"),AKGteye1f=getFromCurrentRouteData(\"AKGteye1f\"),QXMh4tNPo=getFromCurrentRouteData(\"QXMh4tNPo\"),c2tx7h67S=getFromCurrentRouteData(\"c2tx7h67S\"),m8qZeNFcT=getFromCurrentRouteData(\"m8qZeNFcT\"),pnfUEjT0R=getFromCurrentRouteData(\"pnfUEjT0R\"),eLSAx9f2l=getFromCurrentRouteData(\"eLSAx9f2l\"),Z_YrvyHHz=getFromCurrentRouteData(\"Z_YrvyHHz\"),peEfBakNw=getFromCurrentRouteData(\"peEfBakNw\"),qUHm_Wger=getFromCurrentRouteData(\"qUHm_Wger\"),NUm0ox3aE=getFromCurrentRouteData(\"NUm0ox3aE\"),FhLgWDlp5=getFromCurrentRouteData(\"FhLgWDlp5\"),Ltt1aSaEQ=getFromCurrentRouteData(\"Ltt1aSaEQ\"),DmGq8EOaH=getFromCurrentRouteData(\"DmGq8EOaH\"),Kp8pGCkca=getFromCurrentRouteData(\"Kp8pGCkca\"),g7Ws3fl9F=getFromCurrentRouteData(\"g7Ws3fl9F\"),sv0Pe5agi=getFromCurrentRouteData(\"sv0Pe5agi\"),crKZWTMvH=getFromCurrentRouteData(\"crKZWTMvH\"),gf24E4iD0=getFromCurrentRouteData(\"gf24E4iD0\"),o3dtxV7yG=getFromCurrentRouteData(\"o3dtxV7yG\"),Xu1LQuV6x=getFromCurrentRouteData(\"Xu1LQuV6x\"),ojgr5c869=getFromCurrentRouteData(\"ojgr5c869\"),W7tYi1tzk=getFromCurrentRouteData(\"W7tYi1tzk\"),xkJGD6ooI=getFromCurrentRouteData(\"xkJGD6ooI\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-BqF8O`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-BqF8O`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const zbJfHkIuuwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const rqyFSIajf1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"E0qmMgmpW\",\"ZgcpmiHck\"].includes(baseVariant))return false;return true;};const visible=isSet(Q41ega8iu);const visible1=negate(isSet(Q41ega8iu));const visible2=isSet(vO0Cvxftv);const visible3=isSet(uNKxhajOC);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ZgcpmiHck\")return false;return true;};const router=useRouter();const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const id=useRouteElementId(\"jtKiSdSri\");const visible4=isSet(Z5dZS31f3);const visible5=negate(isSet(Z5dZS31f3));const visible6=negate(isSet(IO_cNR1PB));const id1=useRouteElementId(\"AIm_JV_jw\");const visible7=isSet(frh81oXZ0);const visible8=isSet(zIP0E2zCl);const visible9=isSet(jioz0r8G6);const visible10=isSet(nylaGqWyt);const visible11=isSet(IO_cNR1PB);const id2=useRouteElementId(\"DH1cszUzw\");const ref8=React.useRef(null);const id3=useRouteElementId(\"fnuWU8loe\");const ref9=React.useRef(null);const id4=useRouteElementId(\"tczsOjkNR\");const ref10=React.useRef(null);const visible12=negate(isSet(nylaGqWyt));const id5=useRouteElementId(\"VGjMSxkhg\");const id6=useRouteElementId(\"tqW_GWdPp\");const ref11=React.useRef(null);const id7=useRouteElementId(\"A_Ie23APl\");const id8=useRouteElementId(\"sDDxRLNC_\");const ref12=React.useRef(null);const id9=useRouteElementId(\"jmRu8joDo\");const ref13=React.useRef(null);const id10=useRouteElementId(\"Y0DYuDRpU\");const id11=useRouteElementId(\"cfpoYdnPn\");const id12=useRouteElementId(\"e3aWRwvGa\");const ref14=React.useRef(null);const id13=useRouteElementId(\"KdQzo2Mmt\");const ref15=React.useRef(null);const id14=useRouteElementId(\"XNwJnANJQ\");const ref16=React.useRef(null);const id15=useRouteElementId(\"eG_UdZvSs\");const ref17=React.useRef(null);const id16=useRouteElementId(\"YhKvSWmu6\");const ref18=React.useRef(null);const id17=useRouteElementId(\"P7QrZ0Yfz\");const ref19=React.useRef(null);const id18=useRouteElementId(\"qS6SAAlew\");const ref20=React.useRef(null);const id19=useRouteElementId(\"YG3FDxmJx\");const ref21=React.useRef(null);const id20=useRouteElementId(\"e7y89OZVQ\");const ref22=React.useRef(null);const id21=useRouteElementId(\"C_ongoYYO\");const ref23=React.useRef(null);const id22=useRouteElementId(\"teUoKzRuN\");const ref24=React.useRef(null);const id23=useRouteElementId(\"Cmatr3UmL\");const ref25=React.useRef(null);const id24=useRouteElementId(\"O9CZ21Kh7\");const ref26=React.useRef(null);const id25=useRouteElementId(\"PLZcxNgHS\");const ref27=React.useRef(null);const id26=useRouteElementId(\"qPL1tJJ4P\");const ref28=React.useRef(null);const id27=useRouteElementId(\"fQCs2IwUq\");const ref29=React.useRef(null);const id28=useRouteElementId(\"Lbqf_2mgg\");const ref30=React.useRef(null);const id29=useRouteElementId(\"XnZCEQiLH\");const ref31=React.useRef(null);const id30=useRouteElementId(\"epGv2VpK6\");const ref32=React.useRef(null);const id31=useRouteElementId(\"w7iYLDNYp\");const ref33=React.useRef(null);const id32=useRouteElementId(\"f048L7yzM\");const ref34=React.useRef(null);const id33=useRouteElementId(\"j9bgSWMmh\");const ref35=React.useRef(null);const id34=useRouteElementId(\"Mz_RwEla9\");const ref36=React.useRef(null);const id35=useRouteElementId(\"ljQX9fPcy\");const ref37=React.useRef(null);const id36=useRouteElementId(\"rxcjl3ZsU\");const ref38=React.useRef(null);const id37=useRouteElementId(\"tj8zlTH0t\");const ref39=React.useRef(null);const id38=useRouteElementId(\"JXWxeL5R3\");const ref40=React.useRef(null);const id39=useRouteElementId(\"UJnnRTn5d\");const ref41=React.useRef(null);const id40=useRouteElementId(\"o3Yw34Qfd\");const ref42=React.useRef(null);const id41=useRouteElementId(\"krQOfIfC8\");const ref43=React.useRef(null);const id42=useRouteElementId(\"FBqOZrd3X\");const ref44=React.useRef(null);const id43=useRouteElementId(\"S9q6Fzy95\");const ref45=React.useRef(null);const id44=useRouteElementId(\"y7hmnFjHT\");const ref46=React.useRef(null);const id45=useRouteElementId(\"AZw0KpUFc\");const ref47=React.useRef(null);const visible13=isSet(eLSAx9f2l);const id46=useRouteElementId(\"kln_IaFCJ\");const ref48=React.useRef(null);const id47=useRouteElementId(\"aXelv3Yp6\");const ref49=React.useRef(null);const id48=useRouteElementId(\"Kllh3fHhd\");const ref50=React.useRef(null);const id49=useRouteElementId(\"J6Zd76w6D\");const ref51=React.useRef(null);const id50=useRouteElementId(\"XuRjyRQxJ\");const ref52=React.useRef(null);const id51=useRouteElementId(\"Tly0Aibwz\");const ref53=React.useRef(null);const id52=useRouteElementId(\"OHkNwz_t_\");const ref54=React.useRef(null);const id53=useRouteElementId(\"ZPpJP5lAD\");const ref55=React.useRef(null);const id54=useRouteElementId(\"LZJAOtPpN\");const ref56=React.useRef(null);const id55=useRouteElementId(\"xDVzAVmp_\");const ref57=React.useRef(null);const id56=useRouteElementId(\"vxU0l5ZqX\");const ref58=React.useRef(null);const id57=useRouteElementId(\"D52qp7TQf\");const ref59=React.useRef(null);const id58=useRouteElementId(\"qSt0U9Q0j\");const ref60=React.useRef(null);const id59=useRouteElementId(\"TPsAigxnI\");const ref61=React.useRef(null);const id60=useRouteElementId(\"HdtvIsEwY\");const ref62=React.useRef(null);const id61=useRouteElementId(\"IxCS_fkNC\");const ref63=React.useRef(null);const id62=useRouteElementId(\"U44Pbr5CM\");const ref64=React.useRef(null);const id63=useRouteElementId(\"U5r3CDhOO\");const ref65=React.useRef(null);const id64=useRouteElementId(\"qUTemi68U\");const ref66=React.useRef(null);const id65=useRouteElementId(\"aP_imuxr3\");const ref67=React.useRef(null);const id66=useRouteElementId(\"N2l0Ll6Jl\");const ref68=React.useRef(null);const id67=useRouteElementId(\"cY4WRqBoI\");const ref69=React.useRef(null);const id68=useRouteElementId(\"dGXvO6KDk\");const ref70=React.useRef(null);const id69=useRouteElementId(\"K34Y7LTrY\");const ref71=React.useRef(null);const id70=useRouteElementId(\"hFywmKSHp\");const ref72=React.useRef(null);const id71=useRouteElementId(\"LyGun_zwL\");const ref73=React.useRef(null);const id72=useRouteElementId(\"NWXVDCPVI\");const ref74=React.useRef(null);const id73=useRouteElementId(\"TKx6L8hFu\");const ref75=React.useRef(null);const id74=useRouteElementId(\"e75AnEPtQ\");const ref76=React.useRef(null);const id75=useRouteElementId(\"XHZXemsuy\");const ref77=React.useRef(null);const id76=useRouteElementId(\"XYpaG_qMH\");const ref78=React.useRef(null);const id77=useRouteElementId(\"w5bPFx2Al\");const ref79=React.useRef(null);const id78=useRouteElementId(\"sz6u7wTm6\");const ref80=React.useRef(null);const id79=useRouteElementId(\"CiAcoxGSK\");const ref81=React.useRef(null);const id80=useRouteElementId(\"jhmeIffYb\");const ref82=React.useRef(null);const id81=useRouteElementId(\"jRVjQhplK\");const ref83=React.useRef(null);const id82=useRouteElementId(\"KPA54JEQb\");const ref84=React.useRef(null);const id83=useRouteElementId(\"OJqaZLWjr\");const ref85=React.useRef(null);const id84=useRouteElementId(\"SsnQ5CKd2\");const ref86=React.useRef(null);const id85=useRouteElementId(\"xFKMyw5TV\");const ref87=React.useRef(null);const id86=useRouteElementId(\"VVWKUK_pE\");const ref88=React.useRef(null);const id87=useRouteElementId(\"KdnOd3UhR\");const ref89=React.useRef(null);const id88=useRouteElementId(\"ccy9Kg5uL\");const ref90=React.useRef(null);const id89=useRouteElementId(\"vkN00VB9q\");const ref91=React.useRef(null);const id90=useRouteElementId(\"So0mNS9Uc\");const ref92=React.useRef(null);const id91=useRouteElementId(\"j0JPI0HRV\");const ref93=React.useRef(null);const id92=useRouteElementId(\"fBNKa7vCW\");const ref94=React.useRef(null);const id93=useRouteElementId(\"O5rgi59zS\");const ref95=React.useRef(null);const id94=useRouteElementId(\"S0WJ5cWer\");const ref96=React.useRef(null);const id95=useRouteElementId(\"dcKZnRjyM\");const ref97=React.useRef(null);const id96=useRouteElementId(\"ROaOog_ra\");const ref98=React.useRef(null);const id97=useRouteElementId(\"JzxHMzGtH\");const ref99=React.useRef(null);const id98=useRouteElementId(\"XwhyYG1hQ\");const ref100=React.useRef(null);const id99=useRouteElementId(\"Dj47QoQaw\");const ref101=React.useRef(null);const id100=useRouteElementId(\"E44wctx1m\");const ref102=React.useRef(null);const id101=useRouteElementId(\"YLH2UggxU\");const ref103=React.useRef(null);const id102=useRouteElementId(\"xiyasMw30\");const ref104=React.useRef(null);const id103=useRouteElementId(\"EqgmS2Q95\");const ref105=React.useRef(null);const id104=useRouteElementId(\"dQMG6Vl7H\");const ref106=React.useRef(null);const id105=useRouteElementId(\"VE4uXu47G\");const ref107=React.useRef(null);const id106=useRouteElementId(\"X9S7A5QET\");const ref108=React.useRef(null);const id107=useRouteElementId(\"vlYs8pAPn\");const ref109=React.useRef(null);const id108=useRouteElementId(\"s09S8eD79\");const ref110=React.useRef(null);const id109=useRouteElementId(\"buA68i4js\");const ref111=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"E0qmMgmpW\",\"ZgcpmiHck\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({ix1x4d:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GDtLbbd2l\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1eaejtm\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5wvwrt-container\",\"data-framer-name\":\"FramerButton (delete this)\",name:\"FramerButton (delete this)\",children:/*#__PURE__*/_jsx(FramerButton,{height:\"100%\",id:\"FEOIzgUh4\",layoutId:\"FEOIzgUh4\",name:\"FramerButton (delete this)\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-adoqaz-container hidden-xo028q hidden-19kljla\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Q7uBFGlp6\",layoutId:\"Q7uBFGlp6\",neFC64Pbk:\"M323Heccq\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-wsqo7\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3456,intrinsicWidth:5184},className:\"framer-15i51lo\",\"data-framer-name\":\"Section Header\",name:\"Section Header\",children:/*#__PURE__*/_jsxs(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",sizes:\"calc(100vw - 30px)\",...toResponsiveImage(XYH4vRTJS)},className:\"framer-1iwb5jt\",\"data-framer-appear-id\":\"1iwb5jt\",\"data-framer-name\":\"Content Wrapper\",initial:animation2,name:\"Content Wrapper\",optimized:true,style:{transformPerspective:1200},children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3bflmy-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Lv89b1hMw\",isMixedBorderRadius:false,layoutId:\"Lv89b1hMw\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(XYH4vRTJS),posterEnabled:true,srcFile:cU7Mofpfj,srcType:\"Upload\",srcUrl:\"https://ena-supply.b-cdn.net/In%20House/Comp%201.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2832,intrinsicWidth:4240,pixelHeight:2832,pixelWidth:4240,sizes:\"calc(100vw - 30px)\",...toResponsiveImage(c2HaqtzgB)},className:\"framer-1te67st\",\"data-framer-name\":\"Thumbnail\",name:\"Thumbnail\"})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1y4efly\",\"data-framer-name\":\"Section Details\",name:\"Section Details\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-1l0icb9-container\",\"data-framer-appear-id\":\"1l0icb9\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(LineAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Ya80mLiZ2\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ACUjCIFDT\",height:\"100%\",id:\"GJjP3BvPH\",layoutId:\"GJjP3BvPH\",nhvtjR0LA:\"rgba(0, 0, 0, 0.1)\",style:{height:\"100%\",width:\"100%\"},variant:\"ACUjCIFDT\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kh2c5i\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uaggly\",\"data-framer-name\":\"Left Content\",name:\"Left Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6m6lwq\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-r73wpb\",\"data-styles-preset\":\"myLV0DuAR\",children:\"EcoScape Elegance\"})}),className:\"framer-1lyq7yh\",\"data-framer-appear-id\":\"1lyq7yh\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:FnwgSIUrA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-900ltp\",\"data-styles-preset\":\"Zlrt2Tzwr\",children:\"Sustainable Luxury Resorts\"})}),className:\"framer-90gvyc\",\"data-framer-appear-id\":\"90gvyc\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:vjUtPirXk,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfvvg0\",\"data-framer-name\":\"Right Content\",name:\"Right Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aqqz66\",\"data-framer-name\":\"Details\",name:\"Details\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Intro\"})}),className:\"framer-3hhbim\",\"data-framer-appear-id\":\"3hhbim\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:tElZ_uTcT,className:\"framer-1f36yzm\",\"data-framer-appear-id\":\"1f36yzm\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-9e7a2o\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgdixk\",\"data-framer-name\":\"about\",name:\"about\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"About\"})}),className:\"framer-ru8fmn\",\"data-framer-appear-id\":\"ru8fmn\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygj9k4\",\"data-framer-name\":\"Tag Wrapper\",name:\"Tag Wrapper\",children:[visible2&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-x3nd23\",\"data-framer-appear-id\":\"x3nd23\",\"data-framer-name\":\"Tag\",initial:animation2,name:\"Tag\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-99fd3d43-127b-46cf-9ab2-a2f72c95504a, rgb(128, 128, 128))\"},children:\"Food\"})}),className:\"framer-1srca2h\",\"data-framer-name\":\"Film\",fonts:[\"GF;Inter Tight-regular\"],name:\"Film\",text:vO0Cvxftv,verticalAlignment:\"center\",withExternalLayout:true})}),visible3&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-sx10vi\",\"data-framer-appear-id\":\"sx10vi\",\"data-framer-name\":\"Tag\",initial:animation2,name:\"Tag\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-99fd3d43-127b-46cf-9ab2-a2f72c95504a, rgb(128, 128, 128))\"},children:\"Transport\"})}),className:\"framer-1r0tuzw\",\"data-framer-name\":\"Film\",fonts:[\"GF;Inter Tight-regular\"],name:\"Film\",text:uNKxhajOC,verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqxewn\",\"data-framer-name\":\"duration\",name:\"duration\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Duration\"})}),className:\"framer-l7x4qd\",\"data-framer-appear-id\":\"l7x4qd\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1383uaa\",\"data-styles-preset\":\"Dj5NjhXCw\",children:\"2025\"})}),className:\"framer-hqiv9\",\"data-framer-appear-id\":\"hqiv9\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:VUU_nQE3X,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cxeqi\",\"data-framer-name\":\"collaboration\",name:\"collaboration\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"collaboration\"})}),className:\"framer-dfwt1z\",\"data-framer-appear-id\":\"dfwt1z\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1383uaa\",\"data-styles-preset\":\"Dj5NjhXCw\",children:\"2025\"})}),className:\"framer-1ua6wt4\",\"data-framer-appear-id\":\"1ua6wt4\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:LzeFCdiJj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bxp05c\",\"data-framer-name\":\"team\",name:\"team\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Team\"})}),className:\"framer-12p3l34\",\"data-framer-appear-id\":\"12p3l34\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1383uaa\",\"data-styles-preset\":\"Dj5NjhXCw\",children:\"2025\"})}),className:\"framer-11b2anl\",\"data-framer-appear-id\":\"11b2anl\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},text:TyxS73x7O,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-jx0221\",\"data-framer-name\":\"Section Gallery\",name:\"Section Gallery\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nf45no hidden-19kljla\",\"data-framer-name\":\"Sticky\",name:\"Sticky\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":jtKiSdSri\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":AIm_JV_jw\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":VGjMSxkhg\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":A_Ie23APl\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":Y0DYuDRpU\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":cfpoYdnPn\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":jtKiSdSri\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":AIm_JV_jw\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":VGjMSxkhg\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":A_Ie23APl\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":Y0DYuDRpU\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined},{href:{hash:\":cfpoYdnPn\",pathVariables:{iC9pVt3ff},webPageId:\"DM0pIiYm6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation13,className:\"framer-9g4hje-container\",\"data-framer-appear-id\":\"9g4hje\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{C2kwoOZOk:resolvedLinks[11],kf1HR_gwZ:resolvedLinks[10],MkQnYL0Nd:resolvedLinks[6],pItUBiV1b:resolvedLinks[8],VMbrU7bwb:resolvedLinks[9],wRz7ILNUW:resolvedLinks[7]}},children:/*#__PURE__*/_jsx(SidebarStickyProjectPageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:20,ref:ref2,target:\"hdSRrLzH3\"},{offset:20,ref:ref3,target:\"EbGISiw2V\"},{offset:20,ref:ref4,target:\"eHszBQVLX\"},{offset:20,ref:ref5,target:\"WTKuVlCrB\"},{offset:20,ref:ref6,target:\"DZc_N97Nv\"},{offset:20,ref:ref7,target:\"WEDAflASb\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,Awq5CXnuP:toResponsiveImage(ORffhsntQ),C2kwoOZOk:resolvedLinks[5],Eus8RH2hm:toResponsiveImage(NPZz5yatu),height:\"100%\",id:\"LTTnJfJ3k\",kf1HR_gwZ:resolvedLinks[4],layoutId:\"LTTnJfJ3k\",m0W7GfpR7:convertFromBoolean(isSet(Zwevxwd5w),activeLocale,{iC9pVt3ff}),mFzvkvvTc:toResponsiveImage(Zwevxwd5w),MkQnYL0Nd:resolvedLinks[0],NTkvas3Az:toResponsiveImage(nQqO0se6B),pijLNztmR:convertFromBoolean1(isSet(w4NHOMDBb),activeLocale),pItUBiV1b:resolvedLinks[2],pWzxKkwxb:toResponsiveImage(LUZxUffdQ),variant:\"hdSRrLzH3\",vdNB4M2dk:toResponsiveImage(iCDUa9cHV),VMbrU7bwb:resolvedLinks[3],vXqNeGyts:toResponsiveImage(UUJ0Y28HX),width:\"100%\",wRz7ILNUW:resolvedLinks[1],ZO50_B3mW:toResponsiveImage(wNHzcyw_n)})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wcnqzw\",\"data-framer-name\":\"Images\",name:\"Images\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-146slmo\",\"data-framer-name\":\"1\",id:id,name:\"1\",ref:ref2,children:[visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vadip-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xAValWcic\",isMixedBorderRadius:false,layoutId:\"xAValWcic\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(iCDUa9cHV),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/V5SECTOfSVlSydXYyZ39efwbsk.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(iCDUa9cHV)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation14,background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(iCDUa9cHV)},className:\"framer-1oeuc9s\",\"data-framer-appear-id\":\"1oeuc9s\",\"data-framer-name\":\"IMG\",initial:animation2,name:\"IMG\",optimized:true,style:{transformPerspective:1200}})})]}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0j5a5\",\"data-framer-name\":\"2\",id:id1,name:\"2\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ii1an\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(UUJ0Y28HX)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(UUJ0Y28HX)},className:\"framer-1ktoc5f\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qabvvo\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-978ih6\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Facts\"})}),className:\"framer-1dc18b6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ilf922\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Trend\"})}),className:\"framer-1cbi42x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17uk5zy\",\"data-framer-name\":\"nora text\",name:\"nora text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Background\"})}),className:\"framer-kfs8w3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bswmhm\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Introduction\"})}),className:\"framer-1hyna0l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t9dorp\",\"data-framer-name\":\"xb original\",name:\"xb original\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Introduction\"})}),className:\"framer-j6snv6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cmvw4\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:WVIZgJIv7,className:\"framer-12l4z12\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-9e7a2o\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible10&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s2ksx1\",\"data-framer-name\":\"xb original\",name:\"xb original\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",style:{\"--framer-text-color\":\"var(--token-374dcbc9-e460-4a2c-80e0-95eec4766f30, rgb(255, 184, 1))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xbloom.com/pages/xbloom-original\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zapyvm\",\"data-styles-preset\":\"KTBTxoS4a\",children:\"To website for more details\"})})})}),className:\"framer-4bj7ob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rsuc5w\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:visible9&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",style:{\"--framer-text-color\":\"var(--token-374dcbc9-e460-4a2c-80e0-95eec4766f30, rgb(255, 184, 1))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://xbloom.com/pages/xbloom-studio\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zapyvm\",\"data-styles-preset\":\"KTBTxoS4a\",children:\"To website for more details\"})})})}),className:\"framer-sdunqs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lasrv8\",\"data-framer-name\":\"2.1 dimsum\",id:id2,name:\"2.1 dimsum\",ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yupm00\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(UUJ0Y28HX)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(UUJ0Y28HX)},className:\"framer-b1rz7d\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4isba\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2920,pixelWidth:1946,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png\",srcSet:\"https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png?scale-down-to=2048 1364w,https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png 1946w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2920,pixelWidth:1946,src:\"https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png\",srcSet:\"https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png?scale-down-to=2048 1364w,https://framerusercontent.com/images/k2fPxHbTZmhDul4WFQlkG8KBQc.png 1946w\"},className:\"framer-16fdexi\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kilujj\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lju80b\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Facts\"})}),className:\"framer-8w0eda\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-eil7xf\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Trend\"})}),className:\"framer-chusnq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mi31l1\",\"data-framer-name\":\"nora text\",name:\"nora text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Background\"})}),className:\"framer-s6h9tn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15mlh7y\",\"data-framer-name\":\"dimsum text\",name:\"dimsum text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Background\"})}),className:\"framer-lfc2hh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60igog\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:WVIZgJIv7,className:\"framer-1rghgk4\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-9e7a2o\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1buksih\",\"data-framer-name\":\"2.1 pebble\",id:id3,name:\"2.1 pebble\",ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwxyn8\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bbo9p4\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"challenge\"})}),className:\"framer-1dgek0k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bx9p03\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"Remote work creates great new opportunities, but to make the most of it, you need to be sure people are using the best device for their role or location. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"However, hybrid workers often find it difficult to unplug from work and even tend to work overtime. This work-life imbalance can cause physical & mental chronic stress, reduce productivity and impact social relationships with friends and family.  \"})]}),className:\"framer-kq1gov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9a1w6\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1105,pixelWidth:927,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png\",srcSet:\"https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png?scale-down-to=1024 859w,https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png 927w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1105,pixelWidth:927,src:\"https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png\",srcSet:\"https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png?scale-down-to=1024 859w,https://framerusercontent.com/images/h5iZxEMJfnFGK8emsphfCJJX32Q.png 927w\"},className:\"framer-13icyam\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17yhztz\",\"data-framer-name\":\"2.2 pebble\",id:id4,name:\"2.2 pebble\",ref:ref10,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sw46rz\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(qYLSEOUwK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(qYLSEOUwK)},className:\"framer-uj1uwu\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0riq5\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oyin84\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Why Cisco?\"})}),className:\"framer-kle93c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mlewt1\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zgL6ISdJ6,className:\"framer-1wxlsbv\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12k9rzr\",\"data-framer-name\":\"3\",id:id5,name:\"3\",ref:ref4,children:[visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cvb7a-container\",\"data-framer-name\":\"xb j15 video\",name:\"xb j15 video\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"teXWsOnLr\",isMixedBorderRadius:false,layoutId:\"teXWsOnLr\",loop:true,muted:true,name:\"xb j15 video\",objectFit:\"cover\",playing:true,poster:toImageSrc(NPZz5yatu),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/UcCsYf6MWHKY17eadLItbCG8co.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mv3t5t-container\",\"data-framer-name\":\"cuda\",name:\"cuda\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"G0fgaeU5P\",isMixedBorderRadius:false,layoutId:\"G0fgaeU5P\",loop:true,muted:true,name:\"cuda\",objectFit:\"cover\",playing:true,poster:toImageSrc(NPZz5yatu),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/dC0wq4fsDFCfCUoHcU4Orf3MfhQ.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2itw6-container\",\"data-framer-name\":\"pebble\",name:\"pebble\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ImeV5_0xK\",isMixedBorderRadius:false,isRed:false,layoutId:\"ImeV5_0xK\",name:\"pebble\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:RMMcAH9k_,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((max(100vw - 30px, 1px) + 10px) / 0, 1px)\",...toResponsiveImage(NPZz5yatu)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(NPZz5yatu)},className:\"framer-29m5kr\",\"data-framer-name\":\"nora\",name:\"nora\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((max(100vw - 30px, 1px) + 10px) / 0, 1px)\",...toResponsiveImage(NPZz5yatu)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(NPZz5yatu)},className:\"framer-ru05m2\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j57aou\",\"data-framer-name\":\"3.1 nora\",id:id6,name:\"3.1 nora\",ref:ref11,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1952l\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z7bkx7\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Final design\"})}),className:\"framer-1fnav5x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g8salz\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1609bxe\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:'Electrolux Nora is a wearable device which allows every family member in the multigenerational home to create their own private and comfortable \"personal bubble\" while still being around their loved ones.'})}),className:\"framer-y6xfm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-oihfx6\",\"data-framer-name\":\"4\",id:id7,name:\"4\",ref:ref5,children:visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(ORffhsntQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(ORffhsntQ)},className:\"framer-1jv1sje\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fetjs\",\"data-framer-name\":\"4.1 cuda\",id:id8,name:\"4.1 cuda\",ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c5etwj\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-o3bvzj\",\"data-framer-appear-id\":\"o3bvzj\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"id\",type:\"Identifier\"},{collection:\"default\",name:\"iC9pVt3ff\",type:\"Identifier\"}],where:{left:{name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:8},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"id\":idRiVlBy788,\"iC9pVt3ff\":iC9pVt3ffRiVlBy788},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`RiVlBy788-${idRiVlBy788}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffRiVlBy788},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{width:\"max((max(100vw - 30px, 1px) - 20px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8tfhk8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{variant:\"ZLdMNNxHr\"},ZgcpmiHck:{variant:\"ZLdMNNxHr\"}},children:/*#__PURE__*/_jsx(ProjectCard,{AJe245PrV:\"\",cLXwso1Qj:\"\",G6jOVhH3d:addImageAlt({src:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png\",srcSet:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png?scale-down-to=1024 760w,https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png 1168w\"},\"\"),height:\"100%\",id:\"ZZVIxOXOo\",layoutId:\"ZZVIxOXOo\",style:{height:\"100%\",width:\"100%\"},variant:\"FODzcMfXy\",width:\"100%\",z1FT6OEWp:\"\"})})})})})})},idRiVlBy788);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7y7fjd\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-endtnw\",\"data-framer-appear-id\":\"endtnw\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"id\",type:\"Identifier\"},{collection:\"default\",name:\"iC9pVt3ff\",type:\"Identifier\"}],where:{left:{name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:8},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"id\":idmnq2yk1tT,\"iC9pVt3ff\":iC9pVt3ffmnq2yk1tT},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`mnq2yk1tT-${idmnq2yk1tT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffmnq2yk1tT},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{width:\"max((max(100vw - 30px, 1px) - 20px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxai7r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{variant:\"xX9flGwd_\"},ZgcpmiHck:{variant:\"xX9flGwd_\"}},children:/*#__PURE__*/_jsx(ProjectCard,{AJe245PrV:\"\",cLXwso1Qj:\"\",G6jOVhH3d:addImageAlt({src:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png\",srcSet:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png?scale-down-to=1024 760w,https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png 1168w\"},\"\"),height:\"100%\",id:\"PFGxIz3bd\",layoutId:\"PFGxIz3bd\",style:{height:\"100%\",width:\"100%\"},variant:\"TmrYuv11z\",width:\"100%\",z1FT6OEWp:\"\"})})})})})})},idmnq2yk1tT);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yz0jod\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-2kwie\",\"data-framer-appear-id\":\"2kwie\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"id\",type:\"Identifier\"},{collection:\"default\",name:\"iC9pVt3ff\",type:\"Identifier\"}],where:{left:{name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:8},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"id\":idkJTJSvDqJ,\"iC9pVt3ff\":iC9pVt3ffkJTJSvDqJ},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`kJTJSvDqJ-${idkJTJSvDqJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffkJTJSvDqJ},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{width:\"max((max(100vw - 30px, 1px) - 20px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j9aad2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{variant:\"Kd8fYV4li\"},ZgcpmiHck:{variant:\"Kd8fYV4li\"}},children:/*#__PURE__*/_jsx(ProjectCard,{AJe245PrV:\"\",cLXwso1Qj:\"\",G6jOVhH3d:addImageAlt({src:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png\",srcSet:\"https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png?scale-down-to=1024 760w,https://framerusercontent.com/images/cdzDYyQ4n8B65eCXe67g4MPGrHQ.png 1168w\"},\"\"),height:\"100%\",id:\"sgpxafccd\",layoutId:\"sgpxafccd\",style:{height:\"100%\",width:\"100%\"},variant:\"WFwFleEyl\",width:\"100%\",z1FT6OEWp:\"\"})})})})})})},idkJTJSvDqJ);})})})})})})]}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p5ypkw\",\"data-framer-name\":\"4.1 nora\",id:id9,name:\"4.1 nora\",ref:ref13,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(nQqO0se6B)},className:\"framer-o7j95c\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2u68p\",\"data-framer-name\":\"5\",id:id10,name:\"5\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15spej6\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((max(100vw - 30px, 1px) - 10px) / 2, 1px)\",...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(nQqO0se6B)},className:\"framer-a4g8fd\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1163eth\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((max(100vw - 30px, 1px) - 10px) / 2, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-92ogud\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x8zrja\",\"data-framer-name\":\"6\",id:id11,name:\"6\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xclppi\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19i810v\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Foldable hoodie\"})}),className:\"framer-13305jq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sgcj2j\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Final design\"})}),className:\"framer-irv1kg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eciglt\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"challenge\"})}),className:\"framer-1ufuavv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16z1d7p\",\"data-framer-name\":\"dimsum text\",name:\"dimsum text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design Porcess\"})}),className:\"framer-1yoybud\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ybhxr\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Process\"})}),className:\"framer-1ppftq7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-guzrri\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZwA8fWTEX,className:\"framer-1jghp64\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-9e7a2o\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-emokts\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:visible9&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",style:{\"--framer-text-color\":\"var(--token-374dcbc9-e460-4a2c-80e0-95eec4766f30, rgb(255, 184, 1))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/xbloom_coffee/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zapyvm\",\"data-styles-preset\":\"KTBTxoS4a\",children:\"To instagram\"})})})}),className:\"framer-15mt6n1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vd6bnz\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(nQqO0se6B)},className:\"framer-19uyc5k\",\"data-framer-name\":\"xb studio\",name:\"xb studio\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(nQqO0se6B)},className:\"framer-1h251qx\",\"data-framer-name\":\"dimsum image\",name:\"dimsum image\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(nQqO0se6B)},className:\"framer-1hdxc0p\",\"data-framer-name\":\"cuda image\",name:\"cuda image\"})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v63lmm-container\",\"data-framer-name\":\"nora video\",name:\"nora video\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rtgTQpzm5\",isMixedBorderRadius:false,layoutId:\"rtgTQpzm5\",loop:true,muted:true,name:\"nora video\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/v2Tr3meIiJylhPHfZOs3EzqMwjw.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/O6W11s1G6o3o1sotbK4PpIaGsNs.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Zwevxwd5w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Zwevxwd5w)},className:\"framer-tcis34\",\"data-framer-name\":\"nora image\",name:\"nora image\"})})]})]}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mr5y3e\",\"data-framer-name\":\"6.1 dimsum\",id:id12,name:\"6.1 dimsum\",ref:ref14,children:visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-ij97cd\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11mu1f3\",\"data-framer-name\":\"6.2 dimsum\",id:id13,name:\"6.2 dimsum\",ref:ref15,children:visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Zwevxwd5w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Zwevxwd5w)},className:\"framer-16tqyz9\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdstc7\",\"data-framer-name\":\"7\",id:id14,name:\"7\",ref:ref16,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jpqsu9\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1my2jjg-container\",\"data-framer-name\":\"xbloom ori\",name:\"xbloom ori\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Pu_THVfp3\",isMixedBorderRadius:false,layoutId:\"Pu_THVfp3\",loop:true,muted:true,name:\"xbloom ori\",objectFit:\"cover\",playing:true,poster:toImageSrc(nQqO0se6B),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/lPJvgSG73Q9vvS1pR6nPxUGcCZA.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(hHxkUUAlo)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(hHxkUUAlo)},className:\"framer-1hnvi9h\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lcgenf-container\",\"data-framer-name\":\"pebble\",name:\"pebble\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fSrxsCmfr\",isMixedBorderRadius:false,layoutId:\"fSrxsCmfr\",loop:true,muted:true,name:\"pebble\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/xR2xiJ42ZZVn7qi4kWBCkL8RlZw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(wNHzcyw_n)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(wNHzcyw_n)},className:\"framer-1q3r0yb\",\"data-framer-name\":\"nora\",name:\"nora\"})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1453wbh-container\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"var(--token-bf966309-2582-4df8-98f4-f091ce81e703, rgb(19, 20, 21))\",customHandle:true,customLabel:true,handle:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0zif6\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9a7nq4\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hygy2m\",\"data-framer-name\":\"SVG\",layout:\"position\",name:\"SVG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.958 6.042 L 17.917 10 L 13.958 13.958 M 6.042 6.042 L 2.083 10 L 6.042 13.958 M 2.5 10 L 17.5 10\" fill=\"transparent\" stroke-width=\"1.67\" stroke=\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {&quot;name&quot;:&quot;1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11121634361,withExternalLayout:true})})})],height:\"100%\",id:\"BVyaVHzAv\",label:{after:\"After\",before:\"Before\",position:\"top\",x:24,y:24},layoutId:\"BVyaVHzAv\",left:toResponsiveImage(LUZxUffdQ),leftLabel:[],line:{color:\"var(--token-6caa153b-31c9-4eaa-bd6e-82180b70617c, rgb(51, 55, 58))\",width:1},name:\"xb studio\",position:50,radius:0,right:addImageAlt({src:\"https://framerusercontent.com/images/0VC0J0VSRALPFz6o66klNjSXM.png\",srcSet:\"https://framerusercontent.com/images/0VC0J0VSRALPFz6o66klNjSXM.png 768w\"},\"\"),rightLabel:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgwiht\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pd44yk\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Active Noise Cancelling\"})}),className:\"framer-3m7npc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qk8nod\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Different modes\"})}),className:\"framer-1s12uny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cmyegg\",\"data-framer-name\":\"dimsum text\",name:\"dimsum text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"FINAL DESIGN\"})}),className:\"framer-284moe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2d9rqp\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wxrfk7Lv0,className:\"framer-gkpwdb\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13d39x9\",\"data-framer-name\":\"7.1 pebble\",id:id15,name:\"7.1 pebble\",ref:ref17,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5rcau\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(wNHzcyw_n)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(wNHzcyw_n)},className:\"framer-h8vet7\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sfl55m\",\"data-framer-name\":\"7.2 pebble\",id:id16,name:\"7.2 pebble\",ref:ref18,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rpnuer-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"p6Kr8t8cs\",isMixedBorderRadius:false,layoutId:\"p6Kr8t8cs\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/poUNCrblW0Hq1N7MlA2QzM4aqiI.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f9d2x\",\"data-framer-name\":\"8\",id:id17,name:\"8\",ref:ref19,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fuu95\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13auhgg\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Infrared heating pad\"})}),className:\"framer-1hk4jow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tk8t4n\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Work-life switch\"})}),className:\"framer-b4p2t9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7bjz1\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:mqUIcZ9Op,className:\"framer-2gbjiy\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kwqhs5\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-kxi73z\",\"data-framer-name\":\"xb ori\",name:\"xb ori\"})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Zwevxwd5w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Zwevxwd5w)},className:\"framer-1awbpgg\",\"data-framer-name\":\"xb studio\",name:\"xb studio\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(w4NHOMDBb)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(w4NHOMDBb)},className:\"framer-127y38c\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fohs8a-container\",\"data-framer-name\":\"pebble\",name:\"pebble\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Sl43FyeYQ\",isMixedBorderRadius:false,layoutId:\"Sl43FyeYQ\",loop:true,muted:true,name:\"pebble\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GakIfbuVUjVSp9Fo3qahVqEvY78.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(hHxkUUAlo)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(hHxkUUAlo)},className:\"framer-19xphwv\",\"data-framer-name\":\"nora\",name:\"nora\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfrfzb\",\"data-framer-name\":\"8.1 cuda\",id:id18,name:\"8.1 cuda\",ref:ref20,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vps881\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tdlmje-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xE5wEy130\",isMixedBorderRadius:false,layoutId:\"xE5wEy130\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/FwlwMaHAPJypkwur7BHHmhdtSU.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ujXcztFKpfWtDZj6SlsjWXLCNSY.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9f520-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"x13BHH8kr\",isMixedBorderRadius:false,layoutId:\"x13BHH8kr\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GakIfbuVUjVSp9Fo3qahVqEvY78.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(hHxkUUAlo)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(hHxkUUAlo)},className:\"framer-1q4b6th\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gojxxl\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l7lhsj\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Infrared heating pad\"})}),className:\"framer-uvkg7r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1uxpk\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Work-life switch\"})}),className:\"framer-1lssoba\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zfzltm\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"chance\"})}),className:\"framer-153re6h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16155wb\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"But things are going to change. Mines in China have started to apply underground 5G networks to enhance the transmission speed and bandwidth. The warning time for disaster has been extended from 4 minutes to a maximum of 2 hours.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"So my project focused on providing a hands-on product solution and system for real-time emergency notification and evacuation navigation by leveraging the underground 5G networks and the disaster prediction technology that are becoming more and more available.\"})]}),className:\"framer-abjghi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m98pnn\",\"data-framer-name\":\"8.2 cuda\",id:id19,name:\"8.2 cuda\",ref:ref21,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9rtj1m\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1620,pixelWidth:2876,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png\",srcSet:\"https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=512 512w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png 2876w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1620,pixelWidth:2876,src:\"https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png\",srcSet:\"https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=512 512w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OeaRjA8jkp0Kp9Vr1b2QEpXqhpM.png 2876w\"},className:\"framer-lxt1se\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-izwyj7-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"AJy_glJtA\",isMixedBorderRadius:false,layoutId:\"AJy_glJtA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/GakIfbuVUjVSp9Fo3qahVqEvY78.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(hHxkUUAlo)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(hHxkUUAlo)},className:\"framer-778wmb\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydm6h4\",\"data-framer-name\":\"8.3 cuda\",id:id20,name:\"8.3 cuda\",ref:ref22,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-162qu1y\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p81esh-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"YQFHae4Uq\",isMixedBorderRadius:false,isRed:true,layoutId:\"YQFHae4Uq\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/oy-LwWr80tk\",width:\"100%\"})})})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b3r8kn\",\"data-framer-name\":\"8.3 cuda\",id:id21,name:\"8.3 cuda\",ref:ref23,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o0dxhc\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-1r5bfth\"})})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-w41cv9\",\"data-framer-name\":\"8.1 pebble\",id:id22,name:\"8.1 pebble\",ref:ref24,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1h3ao\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jsyok9-container\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"var(--token-bf966309-2582-4df8-98f4-f091ce81e703, rgb(19, 20, 21))\",customHandle:true,customLabel:true,handle:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0zif6\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9a7nq4\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hygy2m\",\"data-framer-name\":\"SVG\",layout:\"position\",name:\"SVG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.958 6.042 L 17.917 10 L 13.958 13.958 M 6.042 6.042 L 2.083 10 L 6.042 13.958 M 2.5 10 L 17.5 10\" fill=\"transparent\" stroke-width=\"1.67\" stroke=\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {&quot;name&quot;:&quot;1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11121634361,withExternalLayout:true})})})],height:\"100%\",id:\"KTPreYDpF\",label:{after:\"After\",before:\"Before\",position:\"top\",x:24,y:24},layoutId:\"KTPreYDpF\",left:addImageAlt({src:\"https://framerusercontent.com/images/FDdODdYuzekRofwWdvuKdtugxUo.png\",srcSet:\"https://framerusercontent.com/images/FDdODdYuzekRofwWdvuKdtugxUo.png?scale-down-to=512 512w,https://framerusercontent.com/images/FDdODdYuzekRofwWdvuKdtugxUo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDdODdYuzekRofwWdvuKdtugxUo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FDdODdYuzekRofwWdvuKdtugxUo.png 2560w\"},\"\"),leftLabel:[],line:{color:\"var(--token-6caa153b-31c9-4eaa-bd6e-82180b70617c, rgb(51, 55, 58))\",width:1},position:50,radius:0,right:addImageAlt({src:\"https://framerusercontent.com/images/xJhHfxHgXTntcorpndxbtY9qeY.png\",srcSet:\"https://framerusercontent.com/images/xJhHfxHgXTntcorpndxbtY9qeY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xJhHfxHgXTntcorpndxbtY9qeY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xJhHfxHgXTntcorpndxbtY9qeY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xJhHfxHgXTntcorpndxbtY9qeY.png 2560w\"},\"\"),rightLabel:[],style:{width:\"100%\"},width:\"100%\"})})})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjx89g\",\"data-framer-name\":\"8.2 pebble\",id:id23,name:\"8.2 pebble\",ref:ref25,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ifdeb-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UoJT2zfGr\",isMixedBorderRadius:false,layoutId:\"UoJT2zfGr\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/6vJSevUeeqlKe3fCPZGbQu8II.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lx0h3a\",\"data-framer-name\":\"8.3.1 detail pebble\",id:id24,name:\"8.3.1 detail pebble\",ref:ref26,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cb0ljc\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8n1u0b\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Designed to blend in\"})}),className:\"framer-1cie5xm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0fv5a\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qrhfzj\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"Pebble is designed to blend seamlessly into the home environment. The CMF forms an intricate balance between comfort and sophistication. Its small footprint ensures multiple use cases around your home.\"})}),className:\"framer-1vlbjq8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kg7la9\",\"data-framer-name\":\"8.3 pebble\",id:id25,name:\"8.3 pebble\",ref:ref27,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1600,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png\",srcSet:\"https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1600,pixelWidth:2560,src:\"https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png\",srcSet:\"https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wOyebwvPhwEnlvF5SVgkoKIuOOw.png 2560w\"},className:\"framer-cyi1eq\",\"data-framer-name\":\"speaker_pebble\",name:\"speaker_pebble\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1moydod\",\"data-framer-name\":\"8.4.1 detail pebble\",id:id26,name:\"8.4.1 detail pebble\",ref:ref28,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e75cv3\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19q4yzt\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Contactless experience\"})}),className:\"framer-51fnst\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i127ir\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x3wcaf\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"You can command simple functions like playing a video or switching off a timer through gesture control when your hands are occupied. Additionally, voice control offers a deeper level of interaction to enhance the contactless experience.\"})}),className:\"framer-1vt8d0e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w532zg\",\"data-framer-name\":\"8.4 pebble\",id:id27,name:\"8.4 pebble\",ref:ref29,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png\",srcSet:\"https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png\",srcSet:\"https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8uYRJmxrJEhS4dIzdqfFABiTSAo.png 3840w\"},className:\"framer-wbkjeh\",\"data-framer-name\":\"kitchen_pebble\",name:\"kitchen_pebble\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1ko15\",\"data-framer-name\":\"8.5.1 detail pebble\",id:id28,name:\"8.5.1 detail pebble\",ref:ref30,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fowkm5\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ir97n\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Smart Webex assistance\"})}),className:\"framer-1hcorx4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3borcd\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-we2t6j\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"The screen gently rises to notify you of upcoming meetings. You can then choose to attend sessions on your workstation or Pebble, resulting in the screen rising to its maximum to start the video conference.\"})}),className:\"framer-624q4l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ho2dj8\",\"data-framer-name\":\"8.5 pebble\",id:id29,name:\"8.5 pebble\",ref:ref31,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qqnjvx-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"peX7WddsJ\",isMixedBorderRadius:false,layoutId:\"peX7WddsJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ULpP4TjznypddpOqOK9hFoAyfFs.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fw7z16\",\"data-framer-name\":\"9.1 nora\",id:id30,name:\"9.1 nora\",ref:ref32,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i6n81g\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(YQAwnerBP)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(YQAwnerBP)},className:\"framer-1ulj5ez\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tod38r\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12hadsu\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Easy cleaning and repair\"})}),className:\"framer-qgpfxc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16vj5dc\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Cooling\"})}),className:\"framer-11hqm2m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11cbkt5\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:auDdI5o1l,className:\"framer-9v9xfu\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dc2w7m\",\"data-framer-name\":\"9.1 pebble\",id:id31,name:\"9.1 pebble\",ref:ref33,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wgbcgc\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(YQAwnerBP)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(YQAwnerBP)},className:\"framer-w7cpla\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8t9ud\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-irrjm6\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Easy cleaning and repair\"})}),className:\"framer-12sh5eo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ty0wl\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Cooling\"})}),className:\"framer-rs2d44\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tg88cl\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:auDdI5o1l,className:\"framer-u5mxed\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iuanjk\",\"data-framer-name\":\"9.1 dimsum\",id:id32,name:\"9.1 dimsum\",ref:ref34,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehil2l\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(YQAwnerBP)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(YQAwnerBP)},className:\"framer-1lbn5fg\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dnwdqg\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m3lowy\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Easy cleaning and repair\"})}),className:\"framer-1s12oxj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwikv2\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Cooling\"})}),className:\"framer-ejy357\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-94xuv2\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:auDdI5o1l,className:\"framer-13f01ml\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1mffv\",\"data-framer-name\":\"9.1 dimsum\",id:id33,name:\"9.1 dimsum\",ref:ref35,children:visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:4167,pixelWidth:7472,sizes:\"max((max(100vw - 30px, 1px) + 10px) / 0, 1px)\",src:\"https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png\",srcSet:\"https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=512 512w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png 7472w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:4167,pixelWidth:7472,src:\"https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png\",srcSet:\"https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=512 512w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/05OlmPLQNjRYGXbG9S8Ed7Iz7Yw.png 7472w\"},className:\"framer-1rwdltz\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-urm7mp\",\"data-framer-name\":\"9.2 dimsum\",id:id34,name:\"9.2 dimsum\",ref:ref36,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14uouqi\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-toy9e4\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Active Noise Cancelling\"})}),className:\"framer-19pslw6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywxl4r\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Different modes\"})}),className:\"framer-10x1jcq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m6jze5\",\"data-framer-name\":\"dimsum text\",name:\"dimsum text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Cardboard rapid prototype\"})}),className:\"framer-1a20hyq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojtxqr\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"To better feel and evaluate the volume and proportion of the design in the real environment, a full-scale prototype was made based on the 7 mm thickness cardboard via laser cutting.\"})}),className:\"framer-m5510o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knd9z0\",\"data-framer-name\":\"9.1 cuda\",id:id35,name:\"9.1 cuda\",ref:ref37,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqb7va\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-134gi6x\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Easy cleaning and repair\"})}),className:\"framer-1g3rr3q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nc3dw5\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Cooling\"})}),className:\"framer-4pccz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-x41h6k\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Final design\"})}),className:\"framer-16f762c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k6gmfc\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"CUDA is a holistic safety system building on developing 5G networks in underground mines, to the benefit of both miners and the safety responsible, by facilitating the information, communication, and evacuation navigation needed in case of an emergency.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"It consists of two types of products: an ergonomic and easy-to-mount helmet-worn headlight unit for emergency notification, LED navigation and a powerful work light for every miner; as well as a handheld advanced gas detector unit for safety inspectors on-site in the mine. Both are connected to the information centre above ground via 5G, where data from the existing tunnel monitoring sensors and stationary cameras are gathered and analysed by an AI-assisted system.\"})]}),className:\"framer-1urcr6q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vw1gzg\",\"data-framer-name\":\"video cuda\",name:\"video cuda\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y16k6-container\",\"data-framer-name\":\"cuda video\",name:\"cuda video\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SB5Wqeuhl\",isMixedBorderRadius:false,layoutId:\"SB5Wqeuhl\",loop:true,muted:true,name:\"cuda video\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/xPRK51c0LOx136EOKWZokJzQ0.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ko93ou\",\"data-framer-name\":\"9.1.1 cuda\",id:id36,name:\"9.1.1 cuda\",ref:ref38,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1563,pixelWidth:2084,sizes:\"max((max(100vw - 30px, 1px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png\",srcSet:\"https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png 2084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1563,pixelWidth:2084,src:\"https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png\",srcSet:\"https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kb2GklC9qzpAOhYFQ5AL1TamY0.png 2084w\"},className:\"framer-1t3zr7b\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1563,pixelWidth:2084,sizes:\"max((max(100vw - 30px, 1px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png\",srcSet:\"https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png 2084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1563,pixelWidth:2084,src:\"https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png\",srcSet:\"https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DOvYBTK4d5pLGi9nqpW6rT0QP8.png 2084w\"},className:\"framer-1728z83\"})})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11p564l\",\"data-framer-name\":\"9.2 cuda\",id:id37,name:\"9.2 cuda\",ref:ref39,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1377,pixelWidth:2449,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png\",srcSet:\"https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png 2449w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1377,pixelWidth:2449,src:\"https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png\",srcSet:\"https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0rGD9AALoq7Uu1ieuSdxjWfUZc.png 2449w\"},className:\"framer-1gu6thk\"})})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fuzk5n\",\"data-framer-name\":\"10.1 dimsum\",id:id38,name:\"10.1 dimsum\",ref:ref40,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztn3w7\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png\",srcSet:\"https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=512 512w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png\",srcSet:\"https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=512 512w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/agF1a3Gkqux6Kg0RSQf6xB7fFno.png 3840w\"},className:\"framer-1hn8u3m\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-1rdpzwi\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-87pbr\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cspmqc\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png\",srcSet:\"https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png\",srcSet:\"https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mJ7hINydIbBzBeFc6KjUCTGniCg.png 3840w\"},className:\"framer-1zq0kv\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"},className:\"framer-tb4xvf\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(w4NHOMDBb)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(w4NHOMDBb)},className:\"framer-szk3xz\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yzwwkz\",\"data-framer-name\":\"10.1 dimsum\",id:id39,name:\"10.1 dimsum\",ref:ref41,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bg5h2m\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png\",srcSet:\"https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png\",srcSet:\"https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0VgmUzhVZV1nVH7ksOZ7WKZlk.png 3840w\"},className:\"framer-wa573r\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-osdx1i\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-fuuwhv\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7fpvg\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png\",srcSet:\"https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png\",srcSet:\"https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CBZ4AHElwvH7CXbIdSSulea86Ag.png 3840w\"},className:\"framer-13slvov\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"},className:\"framer-1n1xjxm\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(w4NHOMDBb)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(w4NHOMDBb)},className:\"framer-tzsbk1\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orokjh\",\"data-framer-name\":\"10\",id:id40,name:\"10\",ref:ref42,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqm1yb\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Zwevxwd5w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Zwevxwd5w)},className:\"framer-10q4cud\",\"data-framer-name\":\"xb ori\",name:\"xb ori\"})}),visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1200,pixelWidth:1200,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg\",srcSet:\"https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg\",srcSet:\"https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vwSaB1HaQRo82Fkx2HWQgRqmU.jpg 1200w\"},className:\"framer-16t53o7\",\"data-framer-name\":\"xb studio\",name:\"xb studio\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2945,pixelWidth:2136,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg\",srcSet:\"https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg?scale-down-to=1024 742w,https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg?scale-down-to=2048 1485w,https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg 2136w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2945,pixelWidth:2136,src:\"https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg\",srcSet:\"https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg?scale-down-to=1024 742w,https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg?scale-down-to=2048 1485w,https://framerusercontent.com/images/r0fh9Df6dKFsE9QIC1O6Mr3Wp0.jpg 2136w\"},className:\"framer-17th18e\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-witkfk\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-101w84i\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bai0c\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1550,pixelWidth:1387,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png\",srcSet:\"https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png?scale-down-to=1024 916w,https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png 1387w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1550,pixelWidth:1387,src:\"https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png\",srcSet:\"https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png?scale-down-to=1024 916w,https://framerusercontent.com/images/qvpvaSEaYufsoaYvLuqqwZVc.png 1387w\"},className:\"framer-wacodh\",\"data-framer-name\":\"xb ori\",name:\"xb ori\"})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jwoc4l-container\",\"data-framer-name\":\"xb studio\",name:\"xb studio\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZdK_OxDeI\",isMixedBorderRadius:false,layoutId:\"ZdK_OxDeI\",loop:true,muted:true,name:\"xb studio\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/60bLKCXOnGPoOFwUtVI48PEfBKo.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1377,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg\",srcSet:\"https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg 1377w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1080,pixelWidth:1377,src:\"https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg\",srcSet:\"https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEunbbG78YK2yHnXGsXi15QyjQM.jpg 1377w\"},className:\"framer-bkr1ji\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"},className:\"framer-gfmn3d\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(w4NHOMDBb)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(w4NHOMDBb)},className:\"framer-on4s4k\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c8fbi2\",\"data-framer-name\":\"11\",id:id41,name:\"11\",ref:ref43,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vfr1dw-container\",children:/*#__PURE__*/_jsx(GalleryGallery,{aQnc30A6N:\"rgb(255, 255, 255)\",DSJNh7kE4:toResponsiveImage(AKGteye1f),height:\"100%\",id:\"jvewbgRc9\",Jz5mRKP8b:toResponsiveImage(QXMh4tNPo),L3eYtamgf:\"rgba(255, 255, 255, 0)\",layoutId:\"jvewbgRc9\",NFYUL81vf:toResponsiveImage(Y22eNO09B),RROWsrtui:toResponsiveImage(c2tx7h67S),style:{height:\"100%\",width:\"100%\"},variant:\"RVqjnpLma\",width:\"100%\"})})})})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2u50j\",\"data-framer-name\":\"12.1 dimsum\",id:id42,name:\"12.1 dimsum\",ref:ref44,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ax6cld\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1643,pixelWidth:2162,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png\",srcSet:\"https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=512 512w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png 2162w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1643,pixelWidth:2162,src:\"https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png\",srcSet:\"https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=512 512w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vPCMPUiwyda1aFk5PLtoIVU63ns.png 2162w\"},className:\"framer-1g5mccy\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2265,pixelWidth:1855,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png\",srcSet:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=1024 838w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=2048 1677w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png 1855w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2265,pixelWidth:1855,src:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png\",srcSet:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=1024 838w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=2048 1677w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png 1855w\"},className:\"framer-1wa1s0m\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r49feg-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"RnyPgpUwZ\",isMixedBorderRadius:false,layoutId:\"RnyPgpUwZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-12jm0cv\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8p8589\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y0m1ra\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-z2fcoz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-f5xdvs\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-1nvomos\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n9ehor\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Real-time Emergency notification\"})}),className:\"framer-hc0s88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19i27rn\",\"data-framer-name\":\"dimsum text\",name:\"dimsum text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Final model\"})}),className:\"framer-1rgwrqi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1admd9o\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"After the cardboard prototype, to evaluate the Dimsum pony chair in ergonomics and CMF perspectives, we decided to make a full-scale 3D printed model with polishing and painting.\"})}),className:\"framer-1f5jlqz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhfp6u\",\"data-framer-name\":\"12.2 dimsum\",id:id43,name:\"12.2 dimsum\",ref:ref45,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2sgape\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1784,pixelWidth:1e3,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png\",srcSet:\"https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png?scale-down-to=1024 573w,https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1784,pixelWidth:1e3,src:\"https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png\",srcSet:\"https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png?scale-down-to=1024 573w,https://framerusercontent.com/images/R9zx6nDSRWtXJNyQDPt54JmEM.png 1000w\"},className:\"framer-1wunb08\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-18np1co\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-17say0f\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kftshh\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2676,pixelWidth:1500,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png\",srcSet:\"https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png?scale-down-to=1024 573w,https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png?scale-down-to=2048 1147w,https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2676,pixelWidth:1500,src:\"https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png\",srcSet:\"https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png?scale-down-to=1024 573w,https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png?scale-down-to=2048 1147w,https://framerusercontent.com/images/Zk37zeVFymRIZaIfpPwOorWfYQ.png 1500w\"},className:\"framer-1gkfquo\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-6y2bov\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-16gz2rv\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-83w3pe\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1500,pixelWidth:2530,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png\",srcSet:\"https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png 2530w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1500,pixelWidth:2530,src:\"https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png\",srcSet:\"https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Yc0Sh8NORzrMrY6g4zWQ4jLk7BU.png 2530w\"},className:\"framer-1yih2xj\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png\",srcSet:\"https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nJJEHHbM0U2YGurKTUeUUFBPAk.png 1732w\"},className:\"framer-zidb0q\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(w4NHOMDBb)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(w4NHOMDBb)},className:\"framer-1lvi0sf\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible11&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jw11yd\",\"data-framer-name\":\"12.3 dimsum\",id:id44,name:\"12.3 dimsum\",ref:ref46,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jted0q\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1500,pixelWidth:2676,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png\",srcSet:\"https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png 2676w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1500,pixelWidth:2676,src:\"https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png\",srcSet:\"https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UcXcd1zM0A8gw2a3XNfQNvxBt0.png 2676w\"},className:\"framer-1266j4r\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1732,pixelWidth:1732,src:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png\",srcSet:\"https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/84PPypWVEDEXdG5uiiyhX6F8Z3k.png 1732w\"},className:\"framer-1gl34bp\",\"data-framer-name\":\"pebble frame\",name:\"pebble frame\"})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(LUZxUffdQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(LUZxUffdQ)},className:\"framer-tsw25o\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14loiy5\",\"data-framer-name\":\"12\",id:id45,name:\"12\",ref:ref47,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cnvwp7\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15epj9w\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-26974m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1amzmq5\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-36v0lz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ia3ki\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Real-time Emergency notification\"})}),className:\"framer-jylpqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j5aoi8\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:pnfUEjT0R,className:\"framer-mavcp6\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fz0wtr\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible9&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1212,pixelWidth:960,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png\",srcSet:\"https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png?scale-down-to=1024 811w,https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1212,pixelWidth:960,src:\"https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png\",srcSet:\"https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png?scale-down-to=1024 811w,https://framerusercontent.com/images/hIugLMtDzZ0Pw16kTHTZGbOb5LQ.png 960w\"},className:\"framer-1n3clos\",\"data-framer-name\":\"xb studio\",name:\"xb studio\"})}),visible11&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3568,pixelWidth:2e3,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png\",srcSet:\"https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png?scale-down-to=1024 573w,https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png?scale-down-to=2048 1147w,https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:3568,pixelWidth:2e3,src:\"https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png\",srcSet:\"https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png?scale-down-to=1024 573w,https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png?scale-down-to=2048 1147w,https://framerusercontent.com/images/AFF3zthMJ1bWo4mwC9iw4Zle7g.png 2000w\"},className:\"framer-1dtdavt\",\"data-framer-name\":\"dimsum\",name:\"dimsum\"})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2265,pixelWidth:1855,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png\",srcSet:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=1024 838w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=2048 1677w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png 1855w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2265,pixelWidth:1855,src:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png\",srcSet:\"https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=1024 838w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png?scale-down-to=2048 1677w,https://framerusercontent.com/images/mU2xKvfOOSp5LDauPAIMXy2kA.png 1855w\"},className:\"framer-1k7ixmc\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bufjq1-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QHisSbpd5\",isMixedBorderRadius:false,layoutId:\"QHisSbpd5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-18202r4\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible13&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-elj15m\",\"data-framer-name\":\"13\",id:id46,name:\"13\",ref:ref48,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kamb82-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NSpBOq3pf\",isMixedBorderRadius:false,layoutId:\"NSpBOq3pf\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(eLSAx9f2l),posterEnabled:true,srcFile:peEfBakNw,srcType:\"Upload\",srcUrl:Z_YrvyHHz,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-327k2r\",\"data-framer-name\":\"14\",id:id47,name:\"14\",ref:ref49,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fxu09x\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(qUHm_Wger)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(qUHm_Wger)},className:\"framer-joyvb5\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpn71u\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7mxla\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NUm0ox3aE,className:\"framer-1ups1rc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i21z8o\",\"data-framer-name\":\"15\",id:id48,name:\"15\",ref:ref50,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(FhLgWDlp5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(FhLgWDlp5)},className:\"framer-g9fe1n\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ewh545\",\"data-framer-name\":\"15.1 cuda\",id:id49,name:\"15.1 cuda\",ref:ref51,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4i276-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"HQDy1ZoQB\",isMixedBorderRadius:false,layoutId:\"HQDy1ZoQB\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/iTufOcflrbrogB4cGHCow6FFx4.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/JsJIhjaPaetlyVgCZhgNQpSO50.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rvoxw\",\"data-framer-name\":\"15.2 cuda\",id:id50,name:\"15.2 cuda\",ref:ref52,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1522,pixelWidth:2768,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png\",srcSet:\"https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png 2768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1522,pixelWidth:2768,src:\"https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png\",srcSet:\"https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mxLFfNC7q2ztv9deuyf81MZuM.png 2768w\"},className:\"framer-6vwy9z\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9ydkl\",\"data-framer-name\":\"15.3 cuda\",id:id51,name:\"15.3 cuda\",ref:ref53,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1522,pixelWidth:2768,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png\",srcSet:\"https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png 2768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1522,pixelWidth:2768,src:\"https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png\",srcSet:\"https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=512 512w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yFh1XEY41W5TLav2YknsohHA.png 2768w\"},className:\"framer-il8o1t\"})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i97zwk\",\"data-framer-name\":\"15.4 cuda\",id:id52,name:\"15.4 cuda\",ref:ref54,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tzo23r\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1671,pixelWidth:1481,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png\",srcSet:\"https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png?scale-down-to=1024 907w,https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png 1481w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1671,pixelWidth:1481,src:\"https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png\",srcSet:\"https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png?scale-down-to=1024 907w,https://framerusercontent.com/images/fvMMVJFGAlpNLvetzBLWwBN6G8.png 1481w\"},className:\"framer-1draqx6\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15amksk-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"r0kh5LKl_\",isMixedBorderRadius:false,layoutId:\"r0kh5LKl_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-9kfdlf\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4wl2i\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qjwxh\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-2agos4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ymbcvs\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-1vonal0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3c0a0d\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Real-time Intuitive evacuation navigation\"})}),className:\"framer-1ypgep1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dj0ml\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NUm0ox3aE,className:\"framer-1y18awc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zaemkb\",\"data-framer-name\":\"15.5 cuda\",id:id53,name:\"15.5 cuda\",ref:ref55,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png\",srcSet:\"https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png 2984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,src:\"https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png\",srcSet:\"https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=512 512w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WvUX5Pm8wrFDMvD5XK2v4tZwEBo.png 2984w\"},className:\"framer-f2209g\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19t3r9i\",\"data-framer-name\":\"15.6 cuda\",id:id54,name:\"15.6 cuda\",ref:ref56,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnogc0-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Hn2lW5pc_\",isMixedBorderRadius:false,layoutId:\"Hn2lW5pc_\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/fzy1lWQsREjM1e238jQY93KF4aI.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/igAYNc9Nh0jcKFQxIO29GtIXXgU.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64ei5r\",\"data-framer-name\":\"15.7 cuda\",id:id55,name:\"15.7 cuda\",ref:ref57,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cytxks\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ivfddf\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-13z2rah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-thxof4\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-1ov89me\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-h20v2b\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"potential disaster source determination & share\"})}),className:\"framer-1j96cvv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fpp7oz\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"For safety inspector, they are equipped with intelligent gas detector units to enhance their workflow. The new generation gas detector, with an uncooled Optical Gas Imaging camera, allows safety inspectors to quickly and accurately locate any potential gas leak source from a safe distance (5-10 meters) and share real-time location and visual image data with the information centre for AI-powered quicker decision-making and immediate response.\"})}),className:\"framer-1m07l8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n7ap44\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2456,pixelWidth:1786,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png\",srcSet:\"https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png?scale-down-to=1024 744w,https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png?scale-down-to=2048 1489w,https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png 1786w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2456,pixelWidth:1786,src:\"https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png\",srcSet:\"https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png?scale-down-to=1024 744w,https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png?scale-down-to=2048 1489w,https://framerusercontent.com/images/Ce0ZvypKUwpf7hB73jfnPq2Bu7A.png 1786w\"},className:\"framer-1kxbmmu\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11m9rdg-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hVY3jNyLw\",isMixedBorderRadius:false,layoutId:\"hVY3jNyLw\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-5k7a5\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ljdqow\",\"data-framer-name\":\"15.8 cuda\",id:id56,name:\"15.8 cuda\",ref:ref58,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png\",srcSet:\"https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png 2984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,src:\"https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png\",srcSet:\"https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nzRIRX8mKHRRPH7Iq2gMuXNX56Q.png 2984w\"},className:\"framer-3jp1f6\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o4dm88\",\"data-framer-name\":\"15.8.1 cuda\",id:id57,name:\"15.8.1 cuda\",ref:ref59,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn97cl\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wykpn6-container\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"var(--token-bf966309-2582-4df8-98f4-f091ce81e703, rgb(19, 20, 21))\",customHandle:true,customLabel:true,handle:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0zif6\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9a7nq4\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hygy2m\",\"data-framer-name\":\"SVG\",layout:\"position\",name:\"SVG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.958 6.042 L 17.917 10 L 13.958 13.958 M 6.042 6.042 L 2.083 10 L 6.042 13.958 M 2.5 10 L 17.5 10\" fill=\"transparent\" stroke-width=\"1.67\" stroke=\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {&quot;name&quot;:&quot;1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11121634361,withExternalLayout:true})})})],height:\"100%\",id:\"k1ljFd49_\",label:{after:\"After\",before:\"Before\",position:\"top\",x:24,y:24},layoutId:\"k1ljFd49_\",left:addImageAlt({src:\"https://framerusercontent.com/images/iJIQySeJqpUiI7I1PS9t2FMn0.png\",srcSet:\"https://framerusercontent.com/images/iJIQySeJqpUiI7I1PS9t2FMn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/iJIQySeJqpUiI7I1PS9t2FMn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iJIQySeJqpUiI7I1PS9t2FMn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iJIQySeJqpUiI7I1PS9t2FMn0.png 3730w\"},\"\"),leftLabel:[],line:{color:\"var(--token-6caa153b-31c9-4eaa-bd6e-82180b70617c, rgb(51, 55, 58))\",width:1},position:50,radius:0,right:addImageAlt({src:\"https://framerusercontent.com/images/sp8mg9M4o9Mv7a0yu2V2Dvk9y0.png\",srcSet:\"https://framerusercontent.com/images/sp8mg9M4o9Mv7a0yu2V2Dvk9y0.png?scale-down-to=512 512w,https://framerusercontent.com/images/sp8mg9M4o9Mv7a0yu2V2Dvk9y0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sp8mg9M4o9Mv7a0yu2V2Dvk9y0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sp8mg9M4o9Mv7a0yu2V2Dvk9y0.png 3730w\"},\"\"),rightLabel:[],style:{width:\"100%\"},width:\"100%\"})})})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wk6hdc\",\"data-framer-name\":\"15.9 cuda\",id:id58,name:\"15.9 cuda\",ref:ref60,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ng676d\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dgp2zc\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-1gpaelz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-e1y3sf\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-1ryhen\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0rita\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Uncooled optical Gas imaging camera\"})}),className:\"framer-px8ikb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbzp33\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"OGI is a type of infrared thermal camera, which can be used underground with certain power limitations. Compared with the cooled OGI cameras, the uncooled OGI cameras are more compact, with lower cost and power consumption. Making it a more cost-effective OGI solution in the underground mines. To activate the OGI camera module, the safety inspector needs to slide the cover manually, which can prevent mechanical failure during an emergency. During detection, the OGI camera can automatically capture the leaking gas pattern in real time and overlay it on the visible image, which allows safety inspector to switch between different colour patterns and thermography modes.\"})}),className:\"framer-m29u7o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbqz9i\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15qu0z4-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"MCaBkjlvn\",isMixedBorderRadius:false,layoutId:\"MCaBkjlvn\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/ZNd2UiRr3AM1o1kiyP9OzVOCFI.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/emLBN0tW71rtNPlwx1Wyq8Be5bg.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i8km4o-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"F7kydeBZU\",isMixedBorderRadius:false,layoutId:\"F7kydeBZU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-h011ns\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fon2fi\",\"data-framer-name\":\"15.10 cuda\",id:id59,name:\"15.10 cuda\",ref:ref61,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bzlbae\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ee8wj5-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"TIGVCA6_1\",isMixedBorderRadius:false,layoutId:\"TIGVCA6_1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fngmjf0ZDgLbsymV4XKgG2Ds.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-la8cop-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"U6eqNY71Q\",isMixedBorderRadius:false,layoutId:\"U6eqNY71Q\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1l33ha\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldvftw\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:1315,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png\",srcSet:\"https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png?scale-down-to=1024 935w,https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png 1315w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:1315,src:\"https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png\",srcSet:\"https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png?scale-down-to=1024 935w,https://framerusercontent.com/images/Uh1vJKauX4wn7XPdGQlclreLxI.png 1315w\"},className:\"framer-1r3fy7o\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wqlvfm-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nw7Vdyn3N\",isMixedBorderRadius:false,layoutId:\"nw7Vdyn3N\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1m92012\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cpo9v1\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ha882\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-1970grw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xbv0pi\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-mki2q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16oh28c\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"real-time gas level monitoring\"})}),className:\"framer-2lh2ne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ltdzk0\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0mining environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0underground\\xa0mining environments.\"})}),className:\"framer-1g6cgtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbqv7f\",\"data-framer-name\":\"15.11 cuda\",id:id60,name:\"15.11 cuda\",ref:ref62,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2198,pixelWidth:3730,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png\",srcSet:\"https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=512 512w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png 3730w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2198,pixelWidth:3730,src:\"https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png\",srcSet:\"https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=512 512w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hz4SSjDAupHI108RtEmu1vXxn20.png 3730w\"},className:\"framer-1wizirb\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ccph4h\",\"data-framer-name\":\"15.12.1 cuda\",id:id61,name:\"15.12.1 cuda\",ref:ref63,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mygpei\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbfd14\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-1hlydw8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wsomk4\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-dj9wqz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-f8huse\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Built for extreme environments\"})}),className:\"framer-i8g19l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qxdgzh\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0mining environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"The gas detector unit is built to withstand the hazards of the underground environment, such as the combination of a glove-friendly touch screen and physical glow-in-the-dark buttons for enhanced visibility and usability in the case of an emergency; and the intuitive user interface designed to be viewed more clearly from a distance in the dark.\"})}),className:\"framer-15mxmdt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5scvc9\",\"data-framer-name\":\"15.12 cuda\",id:id62,name:\"15.12 cuda\",ref:ref64,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{width:\"max(100vw - 30px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xrr1q9-container\",children:/*#__PURE__*/_jsx(GalleryGallery,{aQnc30A6N:\"rgb(255, 255, 255)\",DSJNh7kE4:toResponsiveImage(AKGteye1f),height:\"100%\",id:\"FRS0FIZEH\",Jz5mRKP8b:toResponsiveImage(QXMh4tNPo),L3eYtamgf:\"rgba(255, 255, 255, 0)\",layoutId:\"FRS0FIZEH\",NFYUL81vf:toResponsiveImage(Y22eNO09B),style:{height:\"100%\",width:\"100%\"},variant:\"RVqjnpLma\",width:\"100%\"})})})})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-493wqk\",\"data-framer-name\":\"15.13 cuda\",id:id63,name:\"15.13 cuda\",ref:ref65,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xxmk5y\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2919,pixelWidth:1824,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png\",srcSet:\"https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png?scale-down-to=1024 639w,https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png?scale-down-to=2048 1279w,https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png 1824w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2919,pixelWidth:1824,src:\"https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png\",srcSet:\"https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png?scale-down-to=1024 639w,https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png?scale-down-to=2048 1279w,https://framerusercontent.com/images/7JyCIkwy4k0H9QtKT9GYiOAcGU.png 1824w\"},className:\"framer-1ebsshq\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wcf49a-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nOlQmo7rv\",isMixedBorderRadius:false,layoutId:\"nOlQmo7rv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-4ian3t\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jlmos\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2919,pixelWidth:1944,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png\",srcSet:\"https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png?scale-down-to=1024 681w,https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png?scale-down-to=2048 1363w,https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png 1944w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2919,pixelWidth:1944,src:\"https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png\",srcSet:\"https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png?scale-down-to=1024 681w,https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png?scale-down-to=2048 1363w,https://framerusercontent.com/images/puGCRQWdN0HuvsHOehIpBnY3nA.png 1944w\"},className:\"framer-1xqgcwv\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wymbcj-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"esE9xg4y7\",isMixedBorderRadius:false,layoutId:\"esE9xg4y7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1iqht02\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o474tk\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2d90q\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-1qllk96\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tyzzbf\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-1rg31un\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxvtcv\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Seamlessly pairing\"})}),className:\"framer-vupwr5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3ts85\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0mining environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"The gas detector unit can automatically search to connect to the nearest helmet-worn headlight unit and synchronise personal identity information.\"})}),className:\"framer-1615z8v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dgdv2r\",\"data-framer-name\":\"15.14.1 cuda\",id:id64,name:\"15.14.1 cuda\",ref:ref66,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-js3r4\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ui4i7m\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-18mzc5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnsg4f\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-usrf39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qe383i\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"universal to all mining helmets\"})}),className:\"framer-14mbj76\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pah0k7\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0mining environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"The helmet-worn unit is universal to all mining helmets and designed for extreme use, with compact volume, easy mounting and cost-efficiency in large-scale implementation in mind. The navigation LED module is mounted under the brim of the helmet, and connected to the main light module with a flexible cable.\"})}),className:\"framer-znctc0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ctbdzc\",\"data-framer-name\":\"15.14 cuda\",id:id65,name:\"15.14 cuda\",ref:ref67,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:2458,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png\",srcSet:\"https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png 2458w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:2458,src:\"https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png\",srcSet:\"https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BZXATUyL8XL5zGCqyaxnM0PRoeI.png 2458w\"},className:\"framer-3hamcq\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jxtg56\",\"data-framer-name\":\"15.15 cuda\",id:id66,name:\"15.15 cuda\",ref:ref68,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:2458,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png\",srcSet:\"https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png 2458w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:2458,src:\"https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png\",srcSet:\"https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qTGvhERg6Qf8hk0bhqwBsziWpT8.png 2458w\"},className:\"framer-1v0xixp\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ew8kmk\",\"data-framer-name\":\"15.16.1 cuda\",id:id67,name:\"15.16.1 cuda\",ref:ref69,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xhzmx\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v5dzbk\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-1joxi1e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zh00ho\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-13oyh8l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xnj7a1\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Powerful and Flexible\"})}),className:\"framer-yr5e5a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jk80ju\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"At the bottom of the gas detector, it's the gas sensor module. Once the gas sensor detects a certain gas level in the air crosses the safe range, the visual alarm LED on the top will flash to notify the safety inspector, and the home page will show the related information. The detachable gas sensor module ensures upgradability and relevancy for the different\\xa0mining environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"With better battery weight distribution and cable management than conventional solutions, Cuda allows miners to be more flexible in narrow tunnels with adequate lighting over a 10+ hour shift. The backlight increases the visibility of the miner in the dark from all directions.\"})}),className:\"framer-1sqgqlx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1biie0n\",\"data-framer-name\":\"15.16 cuda\",id:id68,name:\"15.16 cuda\",ref:ref70,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1782ozs\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1075,pixelWidth:881,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png\",srcSet:\"https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png?scale-down-to=1024 839w,https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png 881w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1075,pixelWidth:881,src:\"https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png\",srcSet:\"https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png?scale-down-to=1024 839w,https://framerusercontent.com/images/ejgtuEyYT0cUDDnWkzCn6S4Kog.png 881w\"},className:\"framer-14egw6i\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rv1u8k-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xyRMec5M_\",isMixedBorderRadius:false,layoutId:\"xyRMec5M_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-a5r374\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qx4yn\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1075,pixelWidth:832,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png\",srcSet:\"https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png?scale-down-to=1024 792w,https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png 832w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1075,pixelWidth:832,src:\"https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png\",srcSet:\"https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png?scale-down-to=1024 792w,https://framerusercontent.com/images/7PUR5V2jO0Cz2SQV0l4Cz8wSZc.png 832w\"},className:\"framer-iofg4t\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bopnc-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"aHcuIPYuK\",isMixedBorderRadius:false,layoutId:\"aHcuIPYuK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1tphl7i\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-re6bbo\",\"data-framer-name\":\"15.17 cuda\",id:id69,name:\"15.17 cuda\",ref:ref71,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png\",srcSet:\"https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png 2984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1678,pixelWidth:2984,src:\"https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png\",srcSet:\"https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2KiAtHJoDBc9llgxnh5bdGDM3s0.png 2984w\"},className:\"framer-18anxky\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gthn6\",\"data-framer-name\":\"15.1 pebble\",id:id70,name:\"15.1 pebble\",ref:ref72,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3vmnv9\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2110,pixelWidth:2110,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png\",srcSet:\"https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png 2110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2110,pixelWidth:2110,src:\"https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png\",srcSet:\"https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Hjrhu6f8b4Zht6ixuVRUGbMt7bc.png 2110w\"},className:\"framer-1yxha49\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ay3r2s\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uzwnv9\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Privacy protect\"})}),className:\"framer-xuqjjj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fr1kp4\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:NUm0ox3aE,className:\"framer-15r8n4w\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uwjchh\",\"data-framer-name\":\"15.2 pebble\",id:id71,name:\"15.2 pebble\",ref:ref73,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy6p0x\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlohis\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Well-being\"})}),className:\"framer-qoawnw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1dyky\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"Cisco also takes care of your well-being. If the work slots are too long, by changing the display on the screen, Pebble will remind you to take a short break to relax and get some fresh air.\"})}),className:\"framer-16hgzxq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y7y4yq\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:1282,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png\",srcSet:\"https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png?scale-down-to=1024 911w,https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png 1282w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:1282,src:\"https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png\",srcSet:\"https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png?scale-down-to=1024 911w,https://framerusercontent.com/images/YDQwkZgzjypTdyLMWsEFXDIvng.png 1282w\"},className:\"framer-1ftfw55\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1si4em\",\"data-framer-name\":\"15.3 pebble\",id:id72,name:\"15.3 pebble\",ref:ref74,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14us3bo\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1515,pixelWidth:2504,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png\",srcSet:\"https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png 2504w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1515,pixelWidth:2504,src:\"https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png\",srcSet:\"https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lYvRLuuaYfuOwC3D00s4aimwZkw.png 2504w\"},className:\"framer-1j9g1ee\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkyumu\",\"data-framer-name\":\"16\",id:id73,name:\"16\",ref:ref75,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10woi7q\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tjs0am\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Ltt1aSaEQ,className:\"framer-18us5gc\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ljj8h4\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(DmGq8EOaH)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(DmGq8EOaH)},className:\"framer-kqcuhj\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrzxq6\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Kp8pGCkca)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Kp8pGCkca)},className:\"framer-1m1gjpi\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnwe8t\",\"data-framer-name\":\"16.1 cuda\",id:id74,name:\"16.1 cuda\",ref:ref76,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aap52g\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2716,pixelWidth:2124,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png\",srcSet:\"https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png?scale-down-to=1024 800w,https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png?scale-down-to=2048 1601w,https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png 2124w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2716,pixelWidth:2124,src:\"https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png\",srcSet:\"https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png?scale-down-to=1024 800w,https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png?scale-down-to=2048 1601w,https://framerusercontent.com/images/3ybBIZ9E0f2N3VFpDdifGHMNFvY.png 2124w\"},className:\"framer-1rk43ll\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18m0ii-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JMWKB_mLJ\",isMixedBorderRadius:false,layoutId:\"JMWKB_mLJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-h497yp\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x48nuj\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-nmb8kh\",\"data-framer-name\":\"nora\",name:\"nora\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-ue2q06\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n52zwu\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Adjustable & portable\"})}),className:\"framer-r4b9vt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3qnzee\",\"data-framer-name\":\"cuda text\",name:\"cuda text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-mnsfp2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wblz9p\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"The project commenced with extensive desktop research to understand the mining workflow and the social phenomena behind it. Then I travelled to Southwest China to conduct field research in an 800-meter-deep underground mine and the Mine Gas Outburst Forecasting Centre. On-site, I observed the working environments of various stakeholders and interviewed miners with different experiences. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"Back at school, during the concept development phase, I conducted immersive ideation workshops and tried out Arduino low-fidelity prototypes with classmates. Then I iterated and optimized various design details using 3D-printed models to ensure ergonomic suitability for underground mine environments and reliability in extreme, emergency, and low-visibility situations. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"Finally, I returned to China with the high-fidelity 3D-printed models for review. This allowed miners on-site to examine and test the final concept in person.\"})]}),className:\"framer-1qh4ip3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-igeq9v\",\"data-framer-name\":\"report\",name:\"report\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",style:{\"--framer-text-color\":\"var(--token-374dcbc9-e460-4a2c-80e0-95eec4766f30, rgb(255, 184, 1))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1O1eyRTvhOnJfCS3REceba4LKEcg3C89M/view?usp=sharing\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zapyvm\",\"data-styles-preset\":\"KTBTxoS4a\",children:\"TO DESIGN REPORT FOR MORE DETAILS\"})})})}),className:\"framer-kjood2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jq4cz0\",\"data-framer-name\":\"16.2 cuda\",id:id75,name:\"16.2 cuda\",ref:ref77,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3buq89\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gphv9a-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"R42LemTzy\",isMixedBorderRadius:false,layoutId:\"R42LemTzy\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/obaBZWxnunxD16DfrhZiHo15tE.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p9lr4j-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uKaQ8mxVj\",isMixedBorderRadius:false,layoutId:\"uKaQ8mxVj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1h35bsm\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12w3ovy\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1319,pixelWidth:1762,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png\",srcSet:\"https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png 1762w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1319,pixelWidth:1762,src:\"https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png\",srcSet:\"https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gRA3vojPFZiboJUI5JsdrumNg.png 1762w\"},className:\"framer-1cpilgy\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gcdcqw-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Pp2lkTUcL\",isMixedBorderRadius:false,layoutId:\"Pp2lkTUcL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1wbclbi\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27kvcw\",\"data-framer-name\":\"16.3 cuda\",id:id76,name:\"16.3 cuda\",ref:ref78,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fht907\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1318,pixelWidth:1988,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png\",srcSet:\"https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png 1988w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1318,pixelWidth:1988,src:\"https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png\",srcSet:\"https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZJ66hSFeQBaRAZoVvtsDiyajPio.png 1988w\"},className:\"framer-cpod9r\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rcyy91-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DOSR66NLt\",isMixedBorderRadius:false,layoutId:\"DOSR66NLt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1lrlo3q\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1amg3w7\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1318,pixelWidth:1993,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png\",srcSet:\"https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png 1993w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1318,pixelWidth:1993,src:\"https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png\",srcSet:\"https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1U6kFrzKDhz6lJdlz8Ndxcubf8.png 1993w\"},className:\"framer-1p4b8z3\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uh3sji-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dhiY3Yk2t\",isMixedBorderRadius:false,layoutId:\"dhiY3Yk2t\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1dsn9pn\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-terevk\",\"data-framer-name\":\"16.4 cuda\",id:id77,name:\"16.4 cuda\",ref:ref79,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrhmq4\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:438,pixelWidth:506,src:\"https://framerusercontent.com/images/sF83umCNY8MKmroEPnJuODXDw.png\"},className:\"framer-11szl8z\"}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryzbno-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gagbzBynK\",isMixedBorderRadius:false,layoutId:\"gagbzBynK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-iibmg0\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s4g3f\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17o19s0-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gmoWhD050\",isMixedBorderRadius:false,layoutId:\"gmoWhD050\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/P1l3OTz999epXCY7XLfJzf1L974.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-omksel-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ekynDrM2O\",isMixedBorderRadius:false,layoutId:\"ekynDrM2O\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-r3sdps\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9pgg2\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1684,pixelWidth:1263,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png\",srcSet:\"https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png?scale-down-to=1024 768w,https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png 1263w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1684,pixelWidth:1263,src:\"https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png\",srcSet:\"https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png?scale-down-to=1024 768w,https://framerusercontent.com/images/XDjZZNr5OHcVJVutYKcuS2kwZ8w.png 1263w\"},className:\"framer-1hffg3\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10cavek-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tOUjTCJSQ\",isMixedBorderRadius:false,layoutId:\"tOUjTCJSQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1k7jq8f\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pa7ypx\",\"data-framer-name\":\"16.5 cuda\",id:id78,name:\"16.5 cuda\",ref:ref80,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjuw0r\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1528,pixelWidth:2291,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png\",srcSet:\"https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png 2291w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1528,pixelWidth:2291,src:\"https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png\",srcSet:\"https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9TE9WkXY89Cd8rs5mE00fKB7OE.png 2291w\"},className:\"framer-1k9slcr\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-el3bek-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JonVA8tlS\",isMixedBorderRadius:false,layoutId:\"JonVA8tlS\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-zkv72p\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q2n35u\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1131,pixelWidth:1947,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png\",srcSet:\"https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png 1947w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1131,pixelWidth:1947,src:\"https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png\",srcSet:\"https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8JTjG6Q34cGIgaTx6ORsLjArwg.png 1947w\"},className:\"framer-3emf4z\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7z6cc-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mOD8x_dBR\",isMixedBorderRadius:false,layoutId:\"mOD8x_dBR\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1xud7mi\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbyfz2\",\"data-framer-name\":\"16.6 cuda\",id:id79,name:\"16.6 cuda\",ref:ref81,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxjdqu\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:833,pixelWidth:556,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/3vpfQXIBvcBub7VojUXg1YPIs1Q.png\",srcSet:\"https://framerusercontent.com/images/3vpfQXIBvcBub7VojUXg1YPIs1Q.png 556w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:833,pixelWidth:556,src:\"https://framerusercontent.com/images/3vpfQXIBvcBub7VojUXg1YPIs1Q.png\",srcSet:\"https://framerusercontent.com/images/3vpfQXIBvcBub7VojUXg1YPIs1Q.png 556w\"},className:\"framer-1muf4h4\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r69qdg-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pPhpJP_f5\",isMixedBorderRadius:false,layoutId:\"pPhpJP_f5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-430r8m\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6j7ul\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1294,pixelWidth:1958,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png\",srcSet:\"https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png 1958w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1294,pixelWidth:1958,src:\"https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png\",srcSet:\"https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wgaW8QotlcJCnJh8oq88CkLfY.png 1958w\"},className:\"framer-1mihl0p\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-niagin-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"q5FG3Of8F\",isMixedBorderRadius:false,layoutId:\"q5FG3Of8F\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1f79lcf\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1311nij\",\"data-framer-name\":\"16.7 cuda\",id:id80,name:\"16.7 cuda\",ref:ref82,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jclpvb\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:934,pixelWidth:1400,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png\",srcSet:\"https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png 1400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:934,pixelWidth:1400,src:\"https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png\",srcSet:\"https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vWa3JSBxKp7pxPA4RT1JDuILuwU.png 1400w\"},className:\"framer-1ch49t3\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ing0mn-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"bMq12fkSH\",isMixedBorderRadius:false,layoutId:\"bMq12fkSH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-i4byxl\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ey4ijo\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:934,pixelWidth:1400,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png\",srcSet:\"https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png 1400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:934,pixelWidth:1400,src:\"https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png\",srcSet:\"https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QCOxLZWg0wHNvIAF6TMYdHqPdQ.png 1400w\"},className:\"framer-1yu4o7y\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cx6idv-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"OkWiTxV_B\",isMixedBorderRadius:false,layoutId:\"OkWiTxV_B\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-faw80r\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0wyna\",\"data-framer-name\":\"16.8 cuda\",id:id81,name:\"16.8 cuda\",ref:ref83,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rmx0ay\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:922,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png\",srcSet:\"https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png?scale-down-to=1024 682w,https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png 922w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1383,pixelWidth:922,src:\"https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png\",srcSet:\"https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png?scale-down-to=1024 682w,https://framerusercontent.com/images/GaUrYuz1oIIfx5itA7L5yMf4dQ.png 922w\"},className:\"framer-9eijhw\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fnijf-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"jHogMFZak\",isMixedBorderRadius:false,layoutId:\"jHogMFZak\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1k0rjtl\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzvipz\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:833,pixelWidth:555,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/A7zW6b0PJFcV4OxyepQpBtw7X0.png\",srcSet:\"https://framerusercontent.com/images/A7zW6b0PJFcV4OxyepQpBtw7X0.png 555w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:833,pixelWidth:555,src:\"https://framerusercontent.com/images/A7zW6b0PJFcV4OxyepQpBtw7X0.png\",srcSet:\"https://framerusercontent.com/images/A7zW6b0PJFcV4OxyepQpBtw7X0.png 555w\"},className:\"framer-1qg2cd2\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f7axby-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nViRVZv0I\",isMixedBorderRadius:false,layoutId:\"nViRVZv0I\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-17ci3o3\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pdv3wr\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wocaxz-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"AC3dUDqKm\",isMixedBorderRadius:false,layoutId:\"AC3dUDqKm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qVvwEKZSxyq2DoyOWMNVy6Ufmps.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9u63c-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tbckw0Vod\",isMixedBorderRadius:false,layoutId:\"tbckw0Vod\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-2pba2h\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-37vspg\",\"data-framer-name\":\"16.9 cuda\",id:id82,name:\"16.9 cuda\",ref:ref84,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kp5d7b\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1787,pixelWidth:2679,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png\",srcSet:\"https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png 2679w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1787,pixelWidth:2679,src:\"https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png\",srcSet:\"https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UStKUCt7WY0ZGVfzHxd5GETQwE.png 2679w\"},className:\"framer-16q1c86\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xthmah-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Q90SQocdJ\",isMixedBorderRadius:false,layoutId:\"Q90SQocdJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1euk5m2\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14oyy0b\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1476,pixelWidth:2480,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png\",srcSet:\"https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png 2480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1476,pixelWidth:2480,src:\"https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png\",srcSet:\"https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2BiiDF3AU54EXx3IbSIPbdfU.png 2480w\"},className:\"framer-1izp1dx\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-36e0ov-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FtCcVK_Zn\",isMixedBorderRadius:false,layoutId:\"FtCcVK_Zn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-12q50xb\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-txg4ek\",\"data-framer-name\":\"16.10 cuda\",id:id83,name:\"16.10 cuda\",ref:ref85,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ev4tow\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1145,pixelWidth:1854,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png\",srcSet:\"https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png 1854w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1145,pixelWidth:1854,src:\"https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png\",srcSet:\"https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAyn915a4cjCys2EnISgVZWPXA.png 1854w\"},className:\"framer-1mu3r0l\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1816263-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"o3lMduwFh\",isMixedBorderRadius:false,layoutId:\"o3lMduwFh\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-fz6x78\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ip4tzu\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:745,pixelWidth:1238,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png\",srcSet:\"https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png 1238w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:745,pixelWidth:1238,src:\"https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png\",srcSet:\"https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sGeq1YHd0PvD9PVEluTDidAhcg.png 1238w\"},className:\"framer-1xk5kgr\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mrd85b-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BoroQ0OJx\",isMixedBorderRadius:false,layoutId:\"BoroQ0OJx\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-1s16y5i\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjbr0n\",\"data-framer-name\":\"16.11 cuda\",id:id84,name:\"16.11 cuda\",ref:ref86,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y1m61q\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2029,pixelWidth:2811,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png\",srcSet:\"https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png 2811w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2029,pixelWidth:2811,src:\"https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png\",srcSet:\"https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XYPN2f4zpvvyrv0s0p3eKMcYPrQ.png 2811w\"},className:\"framer-46mkdr\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i43bi5-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"s6YiABoAi\",isMixedBorderRadius:false,layoutId:\"s6YiABoAi\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-pstno5\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9x9flv\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2203,pixelWidth:3917,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg\",srcSet:\"https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg 3917w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:2203,pixelWidth:3917,src:\"https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg\",srcSet:\"https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aXnPo9aUkgTlPY8dWLT9QLXqVk.jpg 3917w\"},className:\"framer-16bhdxx\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18c3qnv-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Di6WuP3hL\",isMixedBorderRadius:false,layoutId:\"Di6WuP3hL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-bpw92k\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})]}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vy964v\",\"data-framer-name\":\"16.12 cuda\",id:id85,name:\"16.12 cuda\",ref:ref87,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dcvknv\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ejxil-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"V7jDEtjLz\",isMixedBorderRadius:false,isRed:true,layoutId:\"V7jDEtjLz\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/xDdZimxizB8?si=FX4Mq2SoLSMKIS_r\",width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ibcdy3-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SGsai913y\",isMixedBorderRadius:false,layoutId:\"SGsai913y\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-bjou4f\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5qgx7j\",\"data-framer-name\":\"16.13 cuda\",id:id86,name:\"16.13 cuda\",ref:ref88,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0f129\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png\",srcSet:\"https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:2560,src:\"https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png\",srcSet:\"https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kEThC6xyZLTWtjYQz8GR1Hl8DY.png 2560w\"},className:\"framer-1bzvrem\"})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebtoc9-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kl0G04T9E\",isMixedBorderRadius:false,layoutId:\"kl0G04T9E\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vKC0d164RvlIkUzwrK9HLFgih4I.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(m8qZeNFcT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(m8qZeNFcT)},className:\"framer-19s2dbo\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})]})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8vr4l\",\"data-framer-name\":\"17\",id:id87,name:\"17\",ref:ref89,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16mynhs\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(g7Ws3fl9F)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(g7Ws3fl9F)},className:\"framer-z1a0s2\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cmznqf\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9wgbcs\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sv0Pe5agi,className:\"framer-1rtfb83\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjlkp0\",\"data-framer-name\":\"17.1 pebble\",id:id88,name:\"17.1 pebble\",ref:ref90,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bniike\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-122yy7g-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FE0ERcfIH\",isMixedBorderRadius:false,layoutId:\"FE0ERcfIH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XaEYPQjfjYB1oXbv5r0QuMTOFc.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hndz33\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:[visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qx1j6\",\"data-framer-name\":\"pebble Text\",name:\"pebble Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Design process\"})}),className:\"framer-16ztqqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7xt0mc\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}},ZgcpmiHck:{stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-khgcxy\",h2:\"framer-styles-preset-1qf6un2\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sv0Pe5agi,className:\"framer-32svuh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-zapyvm\",h1:\"framer-styles-preset-1i47546\",h2:\"framer-styles-preset-1qf6un2\",h3:\"framer-styles-preset-1azucit\",h5:\"framer-styles-preset-1yiur3q\",p:\"framer-styles-preset-16yyh7f\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkspr\",\"data-framer-name\":\"18\",id:id89,name:\"18\",ref:ref91,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omtnbe\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(crKZWTMvH)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(crKZWTMvH)},className:\"framer-1ddsdag\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14p3hg6\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(gf24E4iD0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(gf24E4iD0)},className:\"framer-i0ue86\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2sgjf5\",\"data-framer-name\":\"18.1.1 detail pebble\",id:id90,name:\"18.1.1 detail pebble\",ref:ref92,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-scw7fv\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6av3x\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"initial concepts ideation\"})}),className:\"framer-s9r0jq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujcex4\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mn8kqw\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"In the first phase of concept exploration, we demonstrated user daily interaction flow and developed ideas by sketching, illustrator, and rapid foam & laser cut prototype iterations.\"})}),className:\"framer-1h22r43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhzlow\",\"data-framer-name\":\"18.1 pebble\",id:id91,name:\"18.1 pebble\",ref:ref93,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gnfadx\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png 1676w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,src:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png 1676w\"},className:\"framer-zudrnk\",id:\"zudrnk\",onTap:onTapwelu7j({overlay}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1ocapsq\",\"data-framer-portal-id\":\"zudrnk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ThpQexyQ7\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1698,pixelWidth:1676,sizes:\"606px\",src:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oS0fOP58YfvJRBEwdGTx7AxOMnU.png 1676w\"},className:\"framer-13okrbj\",\"data-framer-portal-id\":\"zudrnk\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-40ai40\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png 1676w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,src:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png 1676w\"},className:\"framer-19zaisd\",id:\"19zaisd\",onTap:onTapwelu7j({overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-8bnj94\",\"data-framer-portal-id\":\"19zaisd\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"lYcipn2ny\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1698,pixelWidth:1676,sizes:\"606px\",src:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/oP5GYTUSa9mGLbwfsWasCAM8Y.png 1676w\"},className:\"framer-1yyck4n\",\"data-framer-portal-id\":\"19zaisd\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qco8nt\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png 1676w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1698,pixelWidth:1676,src:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png 1676w\"},className:\"framer-1wbtas8\",id:\"1wbtas8\",onTap:onTapwelu7j({overlay:overlay2}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-181xnz3\",\"data-framer-portal-id\":\"1wbtas8\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"Sp61Jqt1h\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1698,pixelWidth:1676,sizes:\"606px\",src:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png?scale-down-to=1024 1010w,https://framerusercontent.com/images/bhaq6b8Nv1QlaVIr9MlOg1qXHQ.png 1676w\"},className:\"framer-xqi6gg\",\"data-framer-portal-id\":\"1wbtas8\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sx6p1v\",\"data-framer-name\":\"18.2 pebble\",id:id92,name:\"18.2 pebble\",ref:ref94,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rv4jyv\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png 1920w\"},className:\"framer-rtmbmu\",id:\"rtmbmu\",onTap:onTapwelu7j({overlay:overlay3}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-16q2c1b\",\"data-framer-portal-id\":\"rtmbmu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"S66AekGjZ\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlJtNPwokBM6st6LumGv8IJepi8.png 1920w\"},className:\"framer-1mu4dwh\",\"data-framer-portal-id\":\"rtmbmu\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10souw\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png 1920w\"},className:\"framer-532qgo\",id:\"532qgo\",onTap:onTapwelu7j({overlay:overlay4}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-17uqivn\",\"data-framer-portal-id\":\"532qgo\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"EizwSpDIH\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4D5bpoLkdeDD2jKjCs5joLuoZg.png 1920w\"},className:\"framer-6e7f4l\",\"data-framer-portal-id\":\"532qgo\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjc7pl\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1278,pixelWidth:1916,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png 1916w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1278,pixelWidth:1916,src:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png 1916w\"},className:\"framer-1d43ga9\",id:\"1d43ga9\",onTap:onTapwelu7j({overlay:overlay5}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1731xhz\",\"data-framer-portal-id\":\"1d43ga9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"CnFx0ah7u\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1278,pixelWidth:1916,sizes:\"992px\",src:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wSVDIwGrGgyDUVV1zI3ZF9ajQoM.png 1916w\"},className:\"framer-q9ldjz\",\"data-framer-portal-id\":\"1d43ga9\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1facrek\",\"data-framer-name\":\"18.3 pebble\",id:id93,name:\"18.3 pebble\",ref:ref95,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-crdhi0\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png 1920w\"},className:\"framer-136nauk\",id:\"136nauk\",onTap:onTapwelu7j({overlay:overlay6}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-16eyj18\",\"data-framer-portal-id\":\"136nauk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"Z0_Mque8v\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zJhSlNNzzW2SExNvU9ygG1LnI8U.png 1920w\"},className:\"framer-1f85ew\",\"data-framer-portal-id\":\"136nauk\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgz7tk\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png 1920w\"},className:\"framer-1kcpbza\",id:\"1kcpbza\",onTap:onTapwelu7j({overlay:overlay7}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-jmn6vj\",\"data-framer-portal-id\":\"1kcpbza\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"jVjfFRP1H\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxM5YWmw2NTFpnu3sNmqu438E2k.png 1920w\"},className:\"framer-jsyo3p\",\"data-framer-portal-id\":\"1kcpbza\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60ci3z\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=512 512w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=512 512w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png 1920w\"},className:\"framer-7u0srg\",id:\"7u0srg\",onTap:onTapwelu7j({overlay:overlay8}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1jrqoj4\",\"data-framer-portal-id\":\"7u0srg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"egiyDIO__\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=512 512w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dErc6hfeaxwzrDES4y4mxRXdKts.png 1920w\"},className:\"framer-1a60y4q\",\"data-framer-portal-id\":\"7u0srg\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k72s49\",\"data-framer-name\":\"18.4 pebble\",id:id94,name:\"18.4 pebble\",ref:ref96,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14km5ja\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png 1920w\"},className:\"framer-iet6h8\",id:\"iet6h8\",onTap:onTapwelu7j({overlay:overlay9}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1h66x2h\",\"data-framer-portal-id\":\"iet6h8\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"LYKDC4EGG\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7C2Cw005bam1acIDSJvfBLTA.png 1920w\"},className:\"framer-hty7n6\",\"data-framer-portal-id\":\"iet6h8\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-116lqjs\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=512 512w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=512 512w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png 1920w\"},className:\"framer-1v9vifl\",id:\"1v9vifl\",onTap:onTapwelu7j({overlay:overlay10}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-glj80a\",\"data-framer-portal-id\":\"1v9vifl\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"OHOH8FlTl\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=512 512w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O4CuSeIs6XLyOTK5fsRRrddw6do.png 1920w\"},className:\"framer-13nfpfg\",\"data-framer-portal-id\":\"1v9vifl\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vudui9\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1922,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png 1922w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1922,src:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png 1922w\"},className:\"framer-9r810u\",id:\"9r810u\",onTap:onTapwelu7j({overlay:overlay11}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-15g3jth\",\"data-framer-portal-id\":\"9r810u\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"WgwBWVymv\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1922,sizes:\"992px\",src:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qD0UNAaZkDcvgnRdS77oUCvo.png 1922w\"},className:\"framer-1binjy5\",\"data-framer-portal-id\":\"9r810u\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gx9kbz\",\"data-framer-name\":\"18.5 pebble\",id:id95,name:\"18.5 pebble\",ref:ref97,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ieih8l\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=512 512w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=512 512w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png 1920w\"},className:\"framer-p4tqfx\",id:\"p4tqfx\",onTap:onTapwelu7j({overlay:overlay12}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-6n5bf2\",\"data-framer-portal-id\":\"p4tqfx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"dBJ650yKp\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=512 512w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lwj4cbgSISlufV0oNVHbrALQM7o.png 1920w\"},className:\"framer-hjhgjm\",\"data-framer-portal-id\":\"p4tqfx\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-35oqe6\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png 1920w\"},className:\"framer-5aqg29\",id:\"5aqg29\",onTap:onTapwelu7j({overlay:overlay13}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-enw0oh\",\"data-framer-portal-id\":\"5aqg29\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"bZnzhzrtv\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2SfjlVYoetdQqaCKXd7oBYm1RK0.png 1920w\"},className:\"framer-1suv8t6\",\"data-framer-portal-id\":\"5aqg29\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uoi6r5\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png 1920w\"},className:\"framer-v3ole9\",id:\"v3ole9\",onTap:onTapwelu7j({overlay:overlay14}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-gj1qmb\",\"data-framer-portal-id\":\"v3ole9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay14.hide()},\"aXZSR52Wy\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KiRC7RXeZZT7i7VKXgaQ9AiZC8.png 1920w\"},className:\"framer-1v3x0dx\",\"data-framer-portal-id\":\"v3ole9\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mqd8j\",\"data-framer-name\":\"18.6.1 detail pebble\",id:id96,name:\"18.6.1 detail pebble\",ref:ref98,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cbikl9\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n3fujj\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Concept refine and development\"})}),className:\"framer-fig3sp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xg1pvu\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwic1z\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"After the ideation presentation, we received valuable feedback from Cisco industrial designers and UX designers. The idea of \u200B\u200Bswitching between different screen modes to help hybrid workers transform the atmosphere of their work and life environment was appreciated. They also encouraged us to explore different ways of converting screen modes. We also conducted further exploration and iteration on the ergonomic design of the entire device, the selection and use of materials, and the screen & device ratio.\"})}),className:\"framer-19h9fa9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3wauq8\",\"data-framer-name\":\"18.6 pebble\",id:id97,name:\"18.6 pebble\",ref:ref99,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1601,pixelWidth:2527,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png\",srcSet:\"https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png 2527w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1601,pixelWidth:2527,src:\"https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png\",srcSet:\"https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cIKtNcUfnkcb10JB3qPeteEOyEM.png 2527w\"},className:\"framer-1hsi730\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w03rcl\",\"data-framer-name\":\"18.7 pebble\",id:id98,name:\"18.7 pebble\",ref:ref100,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19wq95b\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay15=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1234,pixelWidth:1757,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png 1757w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1234,pixelWidth:1757,src:\"https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QJCS65NNxBXhoNAMhRN8s5glpZs.png 1757w\"},className:\"framer-1071kt7\",id:\"1071kt7\",onTap:onTapwelu7j({overlay:overlay15}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-j0ribm\",\"data-framer-portal-id\":\"1071kt7\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay15.hide()},\"uymNaTeN6\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1234,pixelWidth:1773,sizes:\"992px\",src:\"https://framerusercontent.com/images/f0rwgLYF5bLeg8xyYxolGlX9ck.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f0rwgLYF5bLeg8xyYxolGlX9ck.png?scale-down-to=512 512w,https://framerusercontent.com/images/f0rwgLYF5bLeg8xyYxolGlX9ck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f0rwgLYF5bLeg8xyYxolGlX9ck.png 1773w\"},className:\"framer-1eb4odf\",\"data-framer-portal-id\":\"1071kt7\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwey1i\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay16=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png 1920w\"},className:\"framer-1un7z8f\",id:\"1un7z8f\",onTap:onTapwelu7j({overlay:overlay16}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1l98vil\",\"data-framer-portal-id\":\"1un7z8f\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay16.hide()},\"c9WgNeyiT\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=512 512w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KNavWAzX303uKoSOesZQwi1n4I.png 1920w\"},className:\"framer-1a1vgsz\",\"data-framer-portal-id\":\"1un7z8f\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7vfr1a\",\"data-framer-name\":\"18.8 pebble\",id:id99,name:\"18.8 pebble\",ref:ref101,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14d07zl\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay17=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=512 512w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=512 512w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png 1920w\"},className:\"framer-hdka9v\",id:\"hdka9v\",onTap:onTapwelu7j({overlay:overlay17}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay17.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-n9qb13\",\"data-framer-portal-id\":\"hdka9v\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay17.hide()},\"Fs_ViwhR_\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=512 512w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WPZXVNgMQ38ZbQqhgl6rGP3g4.png 1920w\"},className:\"framer-oap2jd\",\"data-framer-portal-id\":\"hdka9v\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7prip5\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay18=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=512 512w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=512 512w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png 1920w\"},className:\"framer-avo3q7\",id:\"avo3q7\",onTap:onTapwelu7j({overlay:overlay18}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay18.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-11uc0x8\",\"data-framer-portal-id\":\"avo3q7\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay18.hide()},\"yutUsEu8S\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=512 512w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bXZ86sA9lBsA0dk0hFZ5fNbJio.png 1920w\"},className:\"framer-m3ppha\",\"data-framer-portal-id\":\"avo3q7\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vouvvv\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay19=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png 1920w\"},className:\"framer-vkurpj\",id:\"vkurpj\",onTap:onTapwelu7j({overlay:overlay19}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay19.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-mexwn3\",\"data-framer-portal-id\":\"vkurpj\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay19.hide()},\"sMqNBKe1R\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=512 512w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KdOoYSSlQXx3yZjty1zg4VzjfM.png 1920w\"},className:\"framer-rleiv9\",\"data-framer-portal-id\":\"vkurpj\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79ditx\",\"data-framer-name\":\"18.9 pebble\",id:id100,name:\"18.9 pebble\",ref:ref102,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14v325w\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay20=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png 1920w\"},className:\"framer-9re5jx\",id:\"9re5jx\",onTap:onTapwelu7j({overlay:overlay20}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay20.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1h8f0eu\",\"data-framer-portal-id\":\"9re5jx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay20.hide()},\"qHDlnGyie\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCIlCBLcwg8bcKmtgVsLhsZ9IA.png 1920w\"},className:\"framer-tiadj4\",\"data-framer-portal-id\":\"9re5jx\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s8qvgg\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay21=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png 1920w\"},className:\"framer-jwpm39\",id:\"jwpm39\",onTap:onTapwelu7j({overlay:overlay21}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay21.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-7djjzc\",\"data-framer-portal-id\":\"jwpm39\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay21.hide()},\"KiAvTSjNQ\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=512 512w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AgZzbljEi7pRbWEGZNwNmSkJHyI.png 1920w\"},className:\"framer-1fuag3a\",\"data-framer-portal-id\":\"jwpm39\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1434a8i\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay22=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png 1920w\"},className:\"framer-1v83foe\",id:\"1v83foe\",onTap:onTapwelu7j({overlay:overlay22}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay22.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1quyiy9\",\"data-framer-portal-id\":\"1v83foe\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay22.hide()},\"eIngE7G1G\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=512 512w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KgclWcEiox7oxp9kL07hFK9i98.png 1920w\"},className:\"framer-hukn8q\",\"data-framer-portal-id\":\"1v83foe\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpmnkw\",\"data-framer-name\":\"18.9.1 pebble\",id:id101,name:\"18.9.1 pebble\",ref:ref103,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b5qbie-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ub8vhLOjn\",isMixedBorderRadius:false,layoutId:\"Ub8vhLOjn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qwGeYGA68iRh8IctbvKLGTRJXg.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14e8hv6\",\"data-framer-name\":\"18.10 pebble\",id:id102,name:\"18.10 pebble\",ref:ref104,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6kwjik\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay23=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png 1920w\"},className:\"framer-6atdo6\",id:\"6atdo6\",onTap:onTapwelu7j({overlay:overlay23}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay23.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-ng3edj\",\"data-framer-portal-id\":\"6atdo6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay23.hide()},\"p2dbDCSVw\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jLMvg1FCZF6ubtIQHIMn4c0R18M.png 1920w\"},className:\"framer-ds7cgt\",\"data-framer-portal-id\":\"6atdo6\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vipqdd\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay24=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png 1920w\"},className:\"framer-146c8tg\",id:\"146c8tg\",onTap:onTapwelu7j({overlay:overlay24}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay24.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-okk9m3\",\"data-framer-portal-id\":\"146c8tg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay24.hide()},\"gm_9Sa9Y4\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZEvFgtSuXIO75dvfPI6eUPlyzE.png 1920w\"},className:\"framer-18mrc5g\",\"data-framer-portal-id\":\"146c8tg\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9j6y3v\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay25=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png 1920w\"},className:\"framer-1iyr52j\",id:\"1iyr52j\",onTap:onTapwelu7j({overlay:overlay25}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay25.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1inp3fr\",\"data-framer-portal-id\":\"1iyr52j\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay25.hide()},\"mxzhQIJx8\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=512 512w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MMZedLpfD8uslj2FJQ9e876Ee4.png 1920w\"},className:\"framer-lh2l80\",\"data-framer-portal-id\":\"1iyr52j\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obl3t9\",\"data-framer-name\":\"18.11 pebble\",id:id103,name:\"18.11 pebble\",ref:ref105,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1431j9r\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay26=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1281,pixelWidth:1920,src:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png 1920w\"},className:\"framer-18vi2dd\",id:\"18vi2dd\",onTap:onTapwelu7j({overlay:overlay26}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay26.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-d13mjf\",\"data-framer-portal-id\":\"18vi2dd\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay26.hide()},\"NSqz7Mo0I\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1281,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gw6eCwckEvHGplpce1VDiNf7JGc.png 1920w\"},className:\"framer-vm4b8a\",\"data-framer-portal-id\":\"18vi2dd\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hevavu\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay27=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png 1920w\"},className:\"framer-tpk1nb\",id:\"tpk1nb\",onTap:onTapwelu7j({overlay:overlay27}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay27.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1j5d2gv\",\"data-framer-portal-id\":\"tpk1nb\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay27.hide()},\"tanf6DGBv\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zDLNoIm7yyhpRwlmgjK7bZJpQ.png 1920w\"},className:\"framer-38pruw\",\"data-framer-portal-id\":\"tpk1nb\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3dnpb\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay28=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1280,pixelWidth:1920,src:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png 1920w\"},className:\"framer-vlyvrn\",id:\"vlyvrn\",onTap:onTapwelu7j({overlay:overlay28}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay28.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-19z8d2v\",\"data-framer-portal-id\":\"vlyvrn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay28.hide()},\"j1ZMc9lFk\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1280,pixelWidth:1920,sizes:\"992px\",src:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UInUiVZvr15QPlo85aBSSH2cuQ.png 1920w\"},className:\"framer-1airn2f\",\"data-framer-portal-id\":\"vlyvrn\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-trnljs\",\"data-framer-name\":\"18.6 pebble\",id:id104,name:\"18.6 pebble\",ref:ref106,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png\",srcSet:\"https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:1440,pixelWidth:2560,src:\"https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png\",srcSet:\"https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/maeHlykVMxzPO9kEYCOFbrJIi9g.png 2560w\"},className:\"framer-1yytwbv\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11s2wn9\",\"data-framer-name\":\"18.12.1 detail pebble\",id:id105,name:\"18.12.1 detail pebble\",ref:ref107,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i420v3\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xzo9sh\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12d68ky\",\"data-styles-preset\":\"MxpARFqyv\",children:\"Physical model building\"})}),className:\"framer-ca1pbf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4jmf30\",\"data-framer-name\":\"Text Wrapper\",name:\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogt3u1\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16yyh7f\",\"data-styles-preset\":\"EVKFa7Kxf\",children:\"In the final stage of design development, we decided to build up the functional screen retractable model to better show the user interaction experience in a real environment during the final presentation.\"})}),className:\"framer-ivzf50\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ve2ql\",\"data-framer-name\":\"18.12 pebble\",id:id106,name:\"18.12 pebble\",ref:ref108,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ll1f4n-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hAaYSKMKu\",isMixedBorderRadius:false,layoutId:\"hAaYSKMKu\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/TLOswRO9R1M2QtDlbTlOfSdosME.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28j7iv\",\"data-framer-name\":\"18.13 pebble\",id:id107,name:\"18.13 pebble\",ref:ref109,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-64bfeb\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay29=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=512 512w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,src:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=512 512w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png 2560w\"},className:\"framer-ea3oxf\",id:\"ea3oxf\",onTap:onTapwelu7j({overlay:overlay29}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay29.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-12wl5um\",\"data-framer-portal-id\":\"ea3oxf\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay29.hide()},\"EywCxzwK0\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1920,pixelWidth:2560,sizes:\"992px\",src:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=512 512w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bgDEN7zFSPxZath74tLNn7Gus.png 2560w\"},className:\"framer-1bhj2hr\",\"data-framer-portal-id\":\"ea3oxf\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ne94af\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay30=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,src:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png 2560w\"},className:\"framer-1yzghy2\",id:\"1yzghy2\",onTap:onTapwelu7j({overlay:overlay30}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay30.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1yxu1wh\",\"data-framer-portal-id\":\"1yzghy2\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay30.hide()},\"J4NTr73iS\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1920,pixelWidth:2560,sizes:\"992px\",src:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0CtddA4laYYBoulJFK2mvXydQ.png 2560w\"},className:\"framer-4n5aew\",\"data-framer-portal-id\":\"1yzghy2\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12y8dqd\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:visible7&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay31=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,sizes:\"max(100vw - 30px, 1px)\",src:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,loading:\"lazy\",pixelHeight:1920,pixelWidth:2560,src:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png 2560w\"},className:\"framer-1gv1xlg\",id:\"1gv1xlg\",onTap:onTapwelu7j({overlay:overlay31}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay31.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-10jlnxe\",\"data-framer-portal-id\":\"1gv1xlg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay31.hide()},\"m0IKl1J4b\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1e3,pixelHeight:1920,pixelWidth:2560,sizes:\"992px\",src:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VSLC7wtkf2DuCxo4qyareT9z5o.png 2560w\"},className:\"framer-7wg8ez\",\"data-framer-portal-id\":\"1gv1xlg\",transformTemplate:transformTemplate1})]}),document.querySelector(\"#overlay\"))})})})})})})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fe02hx\",\"data-framer-name\":\"19\",id:id108,name:\"19\",ref:ref110,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rlbyh2\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(o3dtxV7yG)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(o3dtxV7yG)},className:\"framer-13di54r\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ope68j\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(Xu1LQuV6x)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(Xu1LQuV6x)},className:\"framer-avsf5w\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lc3ig8\",\"data-framer-name\":\"20\",id:id109,name:\"20\",ref:ref111,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max(100vw - 30px, 1px)\",...toResponsiveImage(ojgr5c869)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",...toResponsiveImage(ojgr5c869)},className:\"framer-1ubohrr\",\"data-framer-name\":\"IMG\",name:\"IMG\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r3hg62-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZgcpmiHck:{variant:\"o2Kee5m_R\"}},children:/*#__PURE__*/_jsx(SectionNextProject,{d6gdBh6aQ:\"ix1x4d\",h43C2fyK5:xkJGD6ooI,height:\"100%\",id:\"hZPPoIaeo\",JaIyrNOsl:W7tYi1tzk,layoutId:\"hZPPoIaeo\",style:{width:\"100%\"},variant:\"ZEo5yu3qc\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dw0gso-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{variant:\"Wkpy7bZw9\"},ZgcpmiHck:{variant:\"In5qJquLm\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"adtMAqgFf\",layoutId:\"adtMAqgFf\",style:{width:\"100%\"},variant:\"tNEqhl1aI\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{children:overlay32=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{width:\"100vw\"},ZgcpmiHck:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1x56o30-container hidden-1eaejtm\",id:\"1x56o30\",layoutScroll:true,children:[/*#__PURE__*/_jsx(NavigationMobile,{height:\"100%\",id:\"avFy_qHVk\",layoutId:\"avFy_qHVk\",style:{width:\"100%\"},width:\"100%\",zbJfHkIuu:zbJfHkIuuwelu7j({overlay:overlay32})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay32.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E0qmMgmpW:{onTap:undefined},ZgcpmiHck:{onTap:undefined}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-11bn7yz\",\"data-framer-portal-id\":\"1x56o30\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay32.hide()},\"KfLxFRvle\")}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-py3qs-container\",\"data-framer-portal-id\":\"1x56o30\",children:/*#__PURE__*/_jsx(NavigationMobileContent,{AHcrWQOjE:\"h5PgAzXOF\",height:\"100%\",id:\"f6pdafPNb\",layoutId:\"f6pdafPNb\",rqyFSIajf:rqyFSIajf1wvko5h({overlay:overlay32}),style:{width:\"100%\"},width:\"100%\",wTd6WxBlN:\"h5PgAzXOF\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-BqF8O { background: rgb(255, 255, 255); }`,\".framer-BqF8O.framer-qs6sst, .framer-BqF8O .framer-qs6sst { display: block; }\",\".framer-BqF8O.framer-1eaejtm { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-BqF8O .framer-5wvwrt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BqF8O .framer-adoqaz-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-BqF8O .framer-wsqo7 { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-15i51lo { 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: visible; padding: 70px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1iwb5jt { align-content: center; align-items: center; aspect-ratio: 2.3877551020408165 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 490px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-3bflmy-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-BqF8O .framer-1te67st { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 2; }\",\".framer-BqF8O .framer-1y4efly { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 15px 4px 15px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1l0icb9-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-kh2c5i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-uaggly { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-6m6lwq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1lyq7yh { -webkit-user-select: none; flex: none; height: auto; max-width: 320px; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-90gvyc { -webkit-user-select: none; flex: none; height: auto; max-width: 320px; opacity: 0.5; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-lfvvg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-1aqqz66, .framer-BqF8O .framer-cgdixk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-3hhbim, .framer-BqF8O .framer-ru8fmn, .framer-BqF8O .framer-l7x4qd, .framer-BqF8O .framer-dfwt1z, .framer-BqF8O .framer-12p3l34, .framer-BqF8O .framer-1fnav5x, .framer-BqF8O .framer-y6xfm, .framer-BqF8O .framer-13305jq, .framer-BqF8O .framer-1yoybud, .framer-BqF8O .framer-1jghp64, .framer-BqF8O .framer-3m7npc, .framer-BqF8O .framer-284moe, .framer-BqF8O .framer-gkpwdb, .framer-BqF8O .framer-1hk4jow, .framer-BqF8O .framer-2gbjiy, .framer-BqF8O .framer-uvkg7r, .framer-BqF8O .framer-abjghi, .framer-BqF8O .framer-1cie5xm, .framer-BqF8O .framer-1vlbjq8, .framer-BqF8O .framer-51fnst, .framer-BqF8O .framer-1vt8d0e, .framer-BqF8O .framer-1hcorx4, .framer-BqF8O .framer-624q4l, .framer-BqF8O .framer-qgpfxc, .framer-BqF8O .framer-9v9xfu, .framer-BqF8O .framer-12sh5eo, .framer-BqF8O .framer-u5mxed, .framer-BqF8O .framer-1s12oxj, .framer-BqF8O .framer-13f01ml, .framer-BqF8O .framer-19pslw6, .framer-BqF8O .framer-1a20hyq, .framer-BqF8O .framer-m5510o, .framer-BqF8O .framer-1g3rr3q, .framer-BqF8O .framer-1urcr6q, .framer-BqF8O .framer-z2fcoz, .framer-BqF8O .framer-1rgwrqi, .framer-BqF8O .framer-1f5jlqz, .framer-BqF8O .framer-26974m, .framer-BqF8O .framer-mavcp6, .framer-BqF8O .framer-1ups1rc, .framer-BqF8O .framer-2agos4, .framer-BqF8O .framer-1y18awc, .framer-BqF8O .framer-13z2rah, .framer-BqF8O .framer-1m07l8k, .framer-BqF8O .framer-1gpaelz, .framer-BqF8O .framer-m29u7o, .framer-BqF8O .framer-1970grw, .framer-BqF8O .framer-1g6cgtc, .framer-BqF8O .framer-1hlydw8, .framer-BqF8O .framer-15mxmdt, .framer-BqF8O .framer-1qllk96, .framer-BqF8O .framer-1615z8v, .framer-BqF8O .framer-18mzc5f, .framer-BqF8O .framer-znctc0, .framer-BqF8O .framer-1joxi1e, .framer-BqF8O .framer-1sqgqlx, .framer-BqF8O .framer-15r8n4w, .framer-BqF8O .framer-16hgzxq, .framer-BqF8O .framer-18us5gc, .framer-BqF8O .framer-ue2q06, .framer-BqF8O .framer-1qh4ip3, .framer-BqF8O .framer-kjood2, .framer-BqF8O .framer-1rtfb83, .framer-BqF8O .framer-32svuh, .framer-BqF8O .framer-s9r0jq, .framer-BqF8O .framer-1h22r43, .framer-BqF8O .framer-fig3sp, .framer-BqF8O .framer-19h9fa9, .framer-BqF8O .framer-ca1pbf, .framer-BqF8O .framer-ivzf50 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-1f36yzm { -webkit-user-select: none; flex: none; height: auto; max-width: 420px; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-1ygj9k4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BqF8O .framer-x3nd23, .framer-BqF8O .framer-sx10vi { align-content: center; align-items: center; background-color: #f3f3f5; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 7px 19px 7px 19px; position: relative; width: min-content; }\",\".framer-BqF8O .framer-1srca2h, .framer-BqF8O .framer-1r0tuzw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BqF8O .framer-1xqxewn, .framer-BqF8O .framer-1cxeqi, .framer-BqF8O .framer-1bxp05c { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-hqiv9, .framer-BqF8O .framer-1ua6wt4, .framer-BqF8O .framer-11b2anl { -webkit-user-select: none; flex: none; height: auto; opacity: 0.5; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-jx0221 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 66px 15px 66px 15px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1nf45no { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: sticky; top: 60px; width: min-content; will-change: transform; z-index: 8; }\",\".framer-BqF8O .framer-9g4hje-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-BqF8O .framer-1wcnqzw { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-146slmo, .framer-BqF8O .framer-oihfx6, .framer-BqF8O .framer-3wauq8 { align-content: center; align-items: center; aspect-ratio: 1.5579710144927537 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 661px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-16vadip-container, .framer-BqF8O .framer-8tfhk8-container, .framer-BqF8O .framer-mxai7r-container, .framer-BqF8O .framer-j9aad2-container, .framer-BqF8O .framer-1t3zr7b, .framer-BqF8O .framer-1728z83, .framer-BqF8O .framer-1gu6thk, .framer-BqF8O .framer-1vfr1dw-container, .framer-BqF8O .framer-kamb82-container, .framer-BqF8O .framer-g9fe1n, .framer-BqF8O .framer-b5qbie-container, .framer-BqF8O .framer-ll1f4n-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-BqF8O .framer-1oeuc9s { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-o0j5a5, .framer-BqF8O .framer-1lasrv8, .framer-BqF8O .framer-1buksih, .framer-BqF8O .framer-17yhztz, .framer-BqF8O .framer-j57aou, .framer-BqF8O .framer-x8zrja, .framer-BqF8O .framer-rdstc7, .framer-BqF8O .framer-13d39x9, .framer-BqF8O .framer-18f9d2x, .framer-BqF8O .framer-1cfrfzb, .framer-BqF8O .framer-m98pnn, .framer-BqF8O .framer-1ydm6h4, .framer-BqF8O .framer-1b3r8kn, .framer-BqF8O .framer-w41cv9, .framer-BqF8O .framer-1lx0h3a, .framer-BqF8O .framer-1moydod, .framer-BqF8O .framer-1d1ko15, .framer-BqF8O .framer-fw7z16, .framer-BqF8O .framer-dc2w7m, .framer-BqF8O .framer-1iuanjk, .framer-BqF8O .framer-urm7mp, .framer-BqF8O .framer-1knd9z0, .framer-BqF8O .framer-fuzk5n, .framer-BqF8O .framer-yzwwkz, .framer-BqF8O .framer-orokjh, .framer-BqF8O .framer-v2u50j, .framer-BqF8O .framer-1yhfp6u, .framer-BqF8O .framer-1jw11yd, .framer-BqF8O .framer-14loiy5, .framer-BqF8O .framer-327k2r, .framer-BqF8O .framer-1i97zwk, .framer-BqF8O .framer-64ei5r, .framer-BqF8O .framer-1o4dm88, .framer-BqF8O .framer-1wk6hdc, .framer-BqF8O .framer-fon2fi, .framer-BqF8O .framer-ccph4h, .framer-BqF8O .framer-493wqk, .framer-BqF8O .framer-1dgdv2r, .framer-BqF8O .framer-1ew8kmk, .framer-BqF8O .framer-1biie0n, .framer-BqF8O .framer-4gthn6, .framer-BqF8O .framer-uwjchh, .framer-BqF8O .framer-1si4em, .framer-BqF8O .framer-gkyumu, .framer-BqF8O .framer-cnwe8t, .framer-BqF8O .framer-1jq4cz0, .framer-BqF8O .framer-27kvcw, .framer-BqF8O .framer-terevk, .framer-BqF8O .framer-pa7ypx, .framer-BqF8O .framer-hbyfz2, .framer-BqF8O .framer-1311nij, .framer-BqF8O .framer-z0wyna, .framer-BqF8O .framer-37vspg, .framer-BqF8O .framer-txg4ek, .framer-BqF8O .framer-mjbr0n, .framer-BqF8O .framer-vy964v, .framer-BqF8O .framer-5qgx7j, .framer-BqF8O .framer-q8vr4l, .framer-BqF8O .framer-1wjlkp0, .framer-BqF8O .framer-jkspr, .framer-BqF8O .framer-2sgjf5, .framer-BqF8O .framer-dhzlow, .framer-BqF8O .framer-1sx6p1v, .framer-BqF8O .framer-1facrek, .framer-BqF8O .framer-k72s49, .framer-BqF8O .framer-gx9kbz, .framer-BqF8O .framer-1mqd8j, .framer-BqF8O .framer-w03rcl, .framer-BqF8O .framer-7vfr1a, .framer-BqF8O .framer-79ditx, .framer-BqF8O .framer-14e8hv6, .framer-BqF8O .framer-obl3t9, .framer-BqF8O .framer-11s2wn9, .framer-BqF8O .framer-28j7iv, .framer-BqF8O .framer-1fe02hx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-BqF8O .framer-8ii1an, .framer-BqF8O .framer-wgbcgc, .framer-BqF8O .framer-1vw1gzg { align-content: center; align-items: center; aspect-ratio: 0.7717391304347826 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 747px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1ktoc5f, .framer-BqF8O .framer-b1rz7d, .framer-BqF8O .framer-16fdexi, .framer-BqF8O .framer-13icyam, .framer-BqF8O .framer-1jv1sje, .framer-BqF8O .framer-o7j95c, .framer-BqF8O .framer-a4g8fd, .framer-BqF8O .framer-92ogud, .framer-BqF8O .framer-tcis34, .framer-BqF8O .framer-ij97cd, .framer-BqF8O .framer-16tqyz9, .framer-BqF8O .framer-1q3r0yb, .framer-BqF8O .framer-h8vet7, .framer-BqF8O .framer-19xphwv, .framer-BqF8O .framer-1q4b6th, .framer-BqF8O .framer-778wmb, .framer-BqF8O .framer-1ulj5ez, .framer-BqF8O .framer-w7cpla, .framer-BqF8O .framer-1lbn5fg, .framer-BqF8O .framer-87pbr, .framer-BqF8O .framer-szk3xz, .framer-BqF8O .framer-fuuwhv, .framer-BqF8O .framer-tzsbk1, .framer-BqF8O .framer-101w84i, .framer-BqF8O .framer-on4s4k, .framer-BqF8O .framer-12jm0cv, .framer-BqF8O .framer-17say0f, .framer-BqF8O .framer-16gz2rv, .framer-BqF8O .framer-1lvi0sf, .framer-BqF8O .framer-tsw25o, .framer-BqF8O .framer-18202r4, .framer-BqF8O .framer-joyvb5, .framer-BqF8O .framer-9kfdlf, .framer-BqF8O .framer-5k7a5, .framer-BqF8O .framer-1yxha49, .framer-BqF8O .framer-1ftfw55, .framer-BqF8O .framer-1j9g1ee, .framer-BqF8O .framer-kqcuhj, .framer-BqF8O .framer-1m1gjpi, .framer-BqF8O .framer-z1a0s2, .framer-BqF8O .framer-1ddsdag, .framer-BqF8O .framer-i0ue86, .framer-BqF8O .framer-avsf5w, .framer-BqF8O .framer-1ubohrr { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1qabvvo, .framer-BqF8O .framer-kilujj, .framer-BqF8O .framer-vwxyn8, .framer-BqF8O .framer-d0riq5, .framer-BqF8O .framer-10fuu95, .framer-BqF8O .framer-cb0ljc, .framer-BqF8O .framer-e75cv3, .framer-BqF8O .framer-fowkm5, .framer-BqF8O .framer-tod38r, .framer-BqF8O .framer-1i8t9ud, .framer-BqF8O .framer-dnwdqg, .framer-BqF8O .framer-1pqb7va, .framer-BqF8O .framer-8p8589, .framer-BqF8O .framer-1cnvwp7, .framer-BqF8O .framer-lpn71u, .framer-BqF8O .framer-1b4wl2i, .framer-BqF8O .framer-1cytxks, .framer-BqF8O .framer-cpo9v1, .framer-BqF8O .framer-o474tk, .framer-BqF8O .framer-ay3r2s, .framer-BqF8O .framer-1hy6p0x, .framer-BqF8O .framer-10woi7q, .framer-BqF8O .framer-1cmznqf, .framer-BqF8O .framer-1hndz33, .framer-BqF8O .framer-scw7fv, .framer-BqF8O .framer-1cbikl9, .framer-BqF8O .framer-i420v3 { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-978ih6, .framer-BqF8O .framer-ilf922, .framer-BqF8O .framer-17uk5zy, .framer-BqF8O .framer-bswmhm, .framer-BqF8O .framer-t9dorp, .framer-BqF8O .framer-1cmvw4, .framer-BqF8O .framer-1s2ksx1, .framer-BqF8O .framer-1lju80b, .framer-BqF8O .framer-eil7xf, .framer-BqF8O .framer-1mi31l1, .framer-BqF8O .framer-15mlh7y, .framer-BqF8O .framer-60igog, .framer-BqF8O .framer-1bbo9p4, .framer-BqF8O .framer-bx9p03, .framer-BqF8O .framer-1oyin84, .framer-BqF8O .framer-mlewt1, .framer-BqF8O .framer-1sgcj2j, .framer-BqF8O .framer-1eciglt, .framer-BqF8O .framer-10ybhxr, .framer-BqF8O .framer-qk8nod, .framer-BqF8O .framer-1tk8t4n, .framer-BqF8O .framer-1a1uxpk, .framer-BqF8O .framer-zfzltm, .framer-BqF8O .framer-16vj5dc, .framer-BqF8O .framer-13ty0wl, .framer-BqF8O .framer-1uwikv2, .framer-BqF8O .framer-nc3dw5, .framer-BqF8O .framer-x41h6k, .framer-BqF8O .framer-f5xdvs, .framer-BqF8O .framer-n9ehor, .framer-BqF8O .framer-1amzmq5, .framer-BqF8O .framer-17ia3ki, .framer-BqF8O .framer-ymbcvs, .framer-BqF8O .framer-3c0a0d, .framer-BqF8O .framer-thxof4, .framer-BqF8O .framer-h20v2b, .framer-BqF8O .framer-e1y3sf, .framer-BqF8O .framer-r0rita, .framer-BqF8O .framer-xbv0pi, .framer-BqF8O .framer-16oh28c, .framer-BqF8O .framer-tyzzbf, .framer-BqF8O .framer-kxvtcv, .framer-BqF8O .framer-uzwnv9, .framer-BqF8O .framer-zlohis, .framer-BqF8O .framer-1n52zwu, .framer-BqF8O .framer-3qnzee, .framer-BqF8O .framer-7qx1j6 { 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-BqF8O .framer-1dc18b6, .framer-BqF8O .framer-1cbi42x, .framer-BqF8O .framer-kfs8w3, .framer-BqF8O .framer-1hyna0l, .framer-BqF8O .framer-j6snv6, .framer-BqF8O .framer-12l4z12, .framer-BqF8O .framer-4bj7ob, .framer-BqF8O .framer-sdunqs, .framer-BqF8O .framer-8w0eda, .framer-BqF8O .framer-chusnq, .framer-BqF8O .framer-s6h9tn, .framer-BqF8O .framer-lfc2hh, .framer-BqF8O .framer-1rghgk4, .framer-BqF8O .framer-1dgek0k, .framer-BqF8O .framer-kq1gov, .framer-BqF8O .framer-kle93c, .framer-BqF8O .framer-1wxlsbv, .framer-BqF8O .framer-irv1kg, .framer-BqF8O .framer-1ufuavv, .framer-BqF8O .framer-1ppftq7, .framer-BqF8O .framer-15mt6n1, .framer-BqF8O .framer-1s12uny, .framer-BqF8O .framer-b4p2t9, .framer-BqF8O .framer-1lssoba, .framer-BqF8O .framer-153re6h, .framer-BqF8O .framer-11hqm2m, .framer-BqF8O .framer-rs2d44, .framer-BqF8O .framer-ejy357, .framer-BqF8O .framer-10x1jcq, .framer-BqF8O .framer-4pccz8, .framer-BqF8O .framer-16f762c, .framer-BqF8O .framer-1nvomos, .framer-BqF8O .framer-hc0s88, .framer-BqF8O .framer-36v0lz, .framer-BqF8O .framer-jylpqq, .framer-BqF8O .framer-1vonal0, .framer-BqF8O .framer-1ypgep1, .framer-BqF8O .framer-1ov89me, .framer-BqF8O .framer-1j96cvv, .framer-BqF8O .framer-1ryhen, .framer-BqF8O .framer-px8ikb, .framer-BqF8O .framer-mki2q, .framer-BqF8O .framer-2lh2ne, .framer-BqF8O .framer-dj9wqz, .framer-BqF8O .framer-i8g19l, .framer-BqF8O .framer-1rg31un, .framer-BqF8O .framer-vupwr5, .framer-BqF8O .framer-usrf39, .framer-BqF8O .framer-14mbj76, .framer-BqF8O .framer-13oyh8l, .framer-BqF8O .framer-yr5e5a, .framer-BqF8O .framer-xuqjjj, .framer-BqF8O .framer-qoawnw, .framer-BqF8O .framer-r4b9vt, .framer-BqF8O .framer-mnsfp2, .framer-BqF8O .framer-16ztqqe { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BqF8O .framer-1rsuc5w, .framer-BqF8O .framer-emokts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 13px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1yupm00, .framer-BqF8O .framer-k4isba, .framer-BqF8O .framer-i6n81g, .framer-BqF8O .framer-1ehil2l { align-content: center; align-items: center; aspect-ratio: 0.7717391304347826 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 259px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-c9a1w6, .framer-BqF8O .framer-tzo23r { align-content: center; align-items: center; aspect-ratio: 0.8242857142857143 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 700px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1sw46rz { align-content: center; align-items: center; aspect-ratio: 0.9616666666666667 / 1; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 599px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-uj1uwu, .framer-BqF8O .framer-19uyc5k, .framer-BqF8O .framer-1h251qx, .framer-BqF8O .framer-1hdxc0p, .framer-BqF8O .framer-1my2jjg-container, .framer-BqF8O .framer-1hnvi9h, .framer-BqF8O .framer-1lcgenf-container, .framer-BqF8O .framer-1453wbh-container, .framer-BqF8O .framer-kxi73z, .framer-BqF8O .framer-1awbpgg, .framer-BqF8O .framer-127y38c, .framer-BqF8O .framer-fohs8a-container, .framer-BqF8O .framer-1tdlmje-container, .framer-BqF8O .framer-r9f520-container, .framer-BqF8O .framer-lxt1se, .framer-BqF8O .framer-izwyj7-container, .framer-BqF8O .framer-y16k6-container, .framer-BqF8O .framer-1hn8u3m, .framer-BqF8O .framer-1rdpzwi, .framer-BqF8O .framer-1zq0kv, .framer-BqF8O .framer-tb4xvf, .framer-BqF8O .framer-wa573r, .framer-BqF8O .framer-osdx1i, .framer-BqF8O .framer-13slvov, .framer-BqF8O .framer-1n1xjxm, .framer-BqF8O .framer-10q4cud, .framer-BqF8O .framer-17th18e, .framer-BqF8O .framer-witkfk, .framer-BqF8O .framer-wacodh, .framer-BqF8O .framer-1jwoc4l-container, .framer-BqF8O .framer-bkr1ji, .framer-BqF8O .framer-gfmn3d, .framer-BqF8O .framer-1g5mccy, .framer-BqF8O .framer-1wa1s0m, .framer-BqF8O .framer-r49feg-container, .framer-BqF8O .framer-1wunb08, .framer-BqF8O .framer-18np1co, .framer-BqF8O .framer-1gkfquo, .framer-BqF8O .framer-6y2bov, .framer-BqF8O .framer-1yih2xj, .framer-BqF8O .framer-zidb0q, .framer-BqF8O .framer-1266j4r, .framer-BqF8O .framer-1gl34bp, .framer-BqF8O .framer-1n3clos, .framer-BqF8O .framer-1dtdavt, .framer-BqF8O .framer-1k7ixmc, .framer-BqF8O .framer-1bufjq1-container, .framer-BqF8O .framer-1draqx6, .framer-BqF8O .framer-15amksk-container, .framer-BqF8O .framer-1kxbmmu, .framer-BqF8O .framer-11m9rdg-container, .framer-BqF8O .framer-1gphv9a-container, .framer-BqF8O .framer-1cpilgy, .framer-BqF8O .framer-cpod9r, .framer-BqF8O .framer-11szl8z, .framer-BqF8O .framer-17o19s0-container, .framer-BqF8O .framer-1hffg3, .framer-BqF8O .framer-1k9slcr, .framer-BqF8O .framer-1muf4h4, .framer-BqF8O .framer-1mihl0p, .framer-BqF8O .framer-1ch49t3, .framer-BqF8O .framer-9eijhw, .framer-BqF8O .framer-1qg2cd2, .framer-BqF8O .framer-wocaxz-container, .framer-BqF8O .framer-16q1c86, .framer-BqF8O .framer-1mu3r0l, .framer-BqF8O .framer-46mkdr, .framer-BqF8O .framer-1bzvrem, .framer-BqF8O .framer-122yy7g-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-12k9rzr, .framer-BqF8O .framer-1w2u68p, .framer-BqF8O .framer-sfl55m, .framer-BqF8O .framer-yjx89g, .framer-BqF8O .framer-1kg7la9, .framer-BqF8O .framer-1w532zg, .framer-BqF8O .framer-1ho2dj8, .framer-BqF8O .framer-1ewh545, .framer-BqF8O .framer-14rvoxw, .framer-BqF8O .framer-1r9ydkl, .framer-BqF8O .framer-zaemkb, .framer-BqF8O .framer-19t3r9i, .framer-BqF8O .framer-ljdqow, .framer-BqF8O .framer-nbqv7f, .framer-BqF8O .framer-5scvc9, .framer-BqF8O .framer-1ctbdzc, .framer-BqF8O .framer-jxtg56, .framer-BqF8O .framer-re6bbo { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1cvb7a-container { aspect-ratio: 1.7758620689655173 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-1mv3t5t-container { aspect-ratio: 1.778929188255613 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 579px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-1f2itw6-container { aspect-ratio: 1.7777777777777777 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 580px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-29m5kr { aspect-ratio: 1.5582450832072616 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 128px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-ru05m2 { aspect-ratio: 1.648 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 121px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-o1952l { align-content: flex-start; align-items: flex-start; aspect-ratio: 10 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-z7bkx7, .framer-BqF8O .framer-1609bxe, .framer-BqF8O .framer-19i810v, .framer-BqF8O .framer-16z1d7p, .framer-BqF8O .framer-guzrri, .framer-BqF8O .framer-pd44yk, .framer-BqF8O .framer-1cmyegg, .framer-BqF8O .framer-2d9rqp, .framer-BqF8O .framer-13auhgg, .framer-BqF8O .framer-7bjz1, .framer-BqF8O .framer-1l7lhsj, .framer-BqF8O .framer-16155wb, .framer-BqF8O .framer-8n1u0b, .framer-BqF8O .framer-qrhfzj, .framer-BqF8O .framer-19q4yzt, .framer-BqF8O .framer-1x3wcaf, .framer-BqF8O .framer-3ir97n, .framer-BqF8O .framer-we2t6j, .framer-BqF8O .framer-12hadsu, .framer-BqF8O .framer-11cbkt5, .framer-BqF8O .framer-irrjm6, .framer-BqF8O .framer-tg88cl, .framer-BqF8O .framer-m3lowy, .framer-BqF8O .framer-94xuv2, .framer-BqF8O .framer-134gi6x, .framer-BqF8O .framer-k6gmfc, .framer-BqF8O .framer-1y0m1ra, .framer-BqF8O .framer-19i27rn, .framer-BqF8O .framer-1admd9o, .framer-BqF8O .framer-15epj9w, .framer-BqF8O .framer-1j5aoi8, .framer-BqF8O .framer-f7mxla, .framer-BqF8O .framer-14qjwxh, .framer-BqF8O .framer-7dj0ml, .framer-BqF8O .framer-1ivfddf, .framer-BqF8O .framer-1fpp7oz, .framer-BqF8O .framer-1dgp2zc, .framer-BqF8O .framer-1nbzp33, .framer-BqF8O .framer-11ha882, .framer-BqF8O .framer-ltdzk0, .framer-BqF8O .framer-e2d90q, .framer-BqF8O .framer-1y3ts85, .framer-BqF8O .framer-1fr1kp4, .framer-BqF8O .framer-y1dyky, .framer-BqF8O .framer-1tjs0am, .framer-BqF8O .framer-nmb8kh, .framer-BqF8O .framer-1wblz9p, .framer-BqF8O .framer-igeq9v, .framer-BqF8O .framer-9wgbcs, .framer-BqF8O .framer-7xt0mc, .framer-BqF8O .framer-1e6av3x, .framer-BqF8O .framer-mn8kqw, .framer-BqF8O .framer-n3fujj, .framer-BqF8O .framer-1jwic1z, .framer-BqF8O .framer-xzo9sh, .framer-BqF8O .framer-ogt3u1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-g8salz, .framer-BqF8O .framer-1h0fv5a, .framer-BqF8O .framer-1i127ir, .framer-BqF8O .framer-3borcd, .framer-BqF8O .framer-1ujcex4, .framer-BqF8O .framer-xg1pvu, .framer-BqF8O .framer-4jmf30 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-2fetjs, .framer-BqF8O .framer-trnljs { align-content: center; align-items: center; aspect-ratio: 2.168421052631579 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 475px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-c5etwj, .framer-BqF8O .framer-1yz0jod { align-content: center; align-items: center; aspect-ratio: 0.7094736842105264 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 475px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-o3bvzj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-7y7fjd { align-content: center; align-items: center; aspect-ratio: 0.7073684210526315 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 476px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-endtnw { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.7058823529411765 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 477px); justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-2kwie { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.7094736842105264 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 475px); justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1p5ypkw { align-content: center; align-items: center; aspect-ratio: 1.5579710144927537 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 128px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-15spej6, .framer-BqF8O .framer-1163eth, .framer-BqF8O .framer-1cqm1yb, .framer-BqF8O .framer-3bai0c { align-content: center; align-items: center; aspect-ratio: 1.1333333333333333 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 450px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-xclppi { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.7142857142857143 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 714px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-vd6bnz { align-content: center; align-items: center; aspect-ratio: 0.714859437751004 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 714px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-v63lmm-container { aspect-ratio: 0.7152875175315568 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 280px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-mr5y3e { align-content: center; align-items: center; aspect-ratio: 1.7166666666666666 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 117px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-11mu1f3 { align-content: center; align-items: center; aspect-ratio: 1.791304347826087 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 112px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1jpqsu9 { align-content: center; align-items: center; aspect-ratio: 0.796875 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1l0zif6 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; opacity: 0.5; overflow: hidden; padding: 0px; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-9a7nq4 { background-color: #ffffff; flex: none; height: 20px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BqF8O .framer-1hygy2m { background-color: rgba(0, 0, 0, 0); bottom: 0px; flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; width: 20px; }\",\".framer-BqF8O .framer-tgwiht { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.796875 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 640px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-1t5rcau { align-content: center; align-items: center; aspect-ratio: 1.9807692307692308 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 520px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1rpnuer-container, .framer-BqF8O .framer-cyi1eq, .framer-BqF8O .framer-wbkjeh { aspect-ratio: 1.648 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 625px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-kwqhs5, .framer-BqF8O .framer-3vmnv9 { align-content: center; align-items: center; aspect-ratio: 0.9616666666666667 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 599px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-vps881 { align-content: center; align-items: center; aspect-ratio: 1.5386666666666666 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 375px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-gojxxl { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.1813333333333333 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 375px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-9rtj1m, .framer-BqF8O .framer-14us3bo { align-content: center; align-items: center; aspect-ratio: 1.5846153846153845 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 650px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-162qu1y, .framer-BqF8O .framer-1xbqz9i, .framer-BqF8O .framer-bzlbae, .framer-BqF8O .framer-ldvftw, .framer-BqF8O .framer-xxmk5y, .framer-BqF8O .framer-1782ozs, .framer-BqF8O .framer-5qx4yn, .framer-BqF8O .framer-1aap52g, .framer-BqF8O .framer-1amg3w7, .framer-BqF8O .framer-1q2n35u, .framer-BqF8O .framer-ey4ijo, .framer-BqF8O .framer-14oyy0b, .framer-BqF8O .framer-ip4tzu, .framer-BqF8O .framer-9x9flv { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1p81esh-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 580px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-o0dxhc { align-content: center; align-items: center; aspect-ratio: 1.7166666666666666 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1r5bfth { aspect-ratio: 1.7166666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-1v1h3ao, .framer-BqF8O .framer-yn97cl { -webkit-user-select: none; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 0px 1px var(--token-6caa153b-31c9-4eaa-bd6e-82180b70617c, #33373a); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-jsyok9-container, .framer-BqF8O .framer-1wykpn6-container, .framer-BqF8O .framer-1r3hg62-container, .framer-BqF8O .framer-dw0gso-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BqF8O .framer-4ifdeb-container, .framer-BqF8O .framer-1qqnjvx-container { aspect-ratio: 1.7857142857142858 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 577px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-1g1mffv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 600px; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-BqF8O .framer-1rwdltz { aspect-ratio: 1.823008849557522 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 110px); overflow: hidden; position: relative; width: 1px; }\",\".framer-BqF8O .framer-14uouqi { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-toy9e4, .framer-BqF8O .framer-1m6jze5, .framer-BqF8O .framer-ojtxqr, .framer-BqF8O .framer-nbfd14, .framer-BqF8O .framer-1qxdgzh, .framer-BqF8O .framer-ui4i7m, .framer-BqF8O .framer-pah0k7, .framer-BqF8O .framer-1v5dzbk, .framer-BqF8O .framer-jk80ju { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-1ywxl4r, .framer-BqF8O .framer-1wsomk4, .framer-BqF8O .framer-f8huse, .framer-BqF8O .framer-cnsg4f, .framer-BqF8O .framer-qe383i, .framer-BqF8O .framer-zh00ho, .framer-BqF8O .framer-xnj7a1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-ko93ou { align-content: center; align-items: center; aspect-ratio: 2.2888888888888888 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 450px); justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-11p564l { align-content: center; align-items: center; aspect-ratio: 1.7166666666666666 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-ztn3w7, .framer-BqF8O .framer-cspmqc, .framer-BqF8O .framer-bg5h2m, .framer-BqF8O .framer-1c7fpvg { align-content: center; align-items: center; aspect-ratio: 1.7 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 118px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-16t53o7 { aspect-ratio: 1.1333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 176px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-1c8fbi2 { align-content: center; align-items: center; aspect-ratio: 1.7166666666666666 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 117px); justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1ax6cld { align-content: center; align-items: center; aspect-ratio: 0.8242857142857143 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 243px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-2sgape, .framer-BqF8O .framer-83w3pe { align-content: center; align-items: center; aspect-ratio: 0.674 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 297px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-kftshh { align-content: center; align-items: center; aspect-ratio: 0.672 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 298px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-jted0q { align-content: center; align-items: center; aspect-ratio: 1.791304347826087 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 112px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1fz0wtr, .framer-BqF8O .framer-1n7ap44 { align-content: center; align-items: center; aspect-ratio: 0.8242857142857143 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 699px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-elj15m { align-content: center; align-items: center; aspect-ratio: 1.7758620689655173 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-fxu09x, .framer-BqF8O .framer-16mynhs { align-content: center; align-items: center; aspect-ratio: 1.4425 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 139px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1i21z8o { align-content: center; align-items: center; aspect-ratio: 1.9807692307692308 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 520px); justify-content: center; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-k4i276-container, .framer-BqF8O .framer-xnogc0-container { aspect-ratio: 1.7758620689655173 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 580px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-6vwy9z, .framer-BqF8O .framer-il8o1t, .framer-BqF8O .framer-f2209g, .framer-BqF8O .framer-3jp1f6, .framer-BqF8O .framer-1wizirb, .framer-BqF8O .framer-3hamcq, .framer-BqF8O .framer-1v0xixp, .framer-BqF8O .framer-18anxky { aspect-ratio: 1.7606837606837606 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 585px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-ng676d { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.576072821846554 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 770px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-15qu0z4-container { aspect-ratio: 0.7503250975292588 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 769px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-i8km4o-container, .framer-BqF8O .framer-la8cop-container, .framer-BqF8O .framer-wqlvfm-container, .framer-BqF8O .framer-1wcf49a-container, .framer-BqF8O .framer-1wymbcj-container, .framer-BqF8O .framer-rv1u8k-container, .framer-BqF8O .framer-bopnc-container, .framer-BqF8O .framer-18m0ii-container, .framer-BqF8O .framer-p9lr4j-container, .framer-BqF8O .framer-gcdcqw-container, .framer-BqF8O .framer-rcyy91-container, .framer-BqF8O .framer-uh3sji-container, .framer-BqF8O .framer-ryzbno-container, .framer-BqF8O .framer-omksel-container, .framer-BqF8O .framer-10cavek-container, .framer-BqF8O .framer-el3bek-container, .framer-BqF8O .framer-k7z6cc-container, .framer-BqF8O .framer-r69qdg-container, .framer-BqF8O .framer-niagin-container, .framer-BqF8O .framer-1ing0mn-container, .framer-BqF8O .framer-cx6idv-container, .framer-BqF8O .framer-6fnijf-container, .framer-BqF8O .framer-f7axby-container, .framer-BqF8O .framer-1l9u63c-container, .framer-BqF8O .framer-1xthmah-container, .framer-BqF8O .framer-36e0ov-container, .framer-BqF8O .framer-1816263-container, .framer-BqF8O .framer-1mrd85b-container, .framer-BqF8O .framer-1i43bi5-container, .framer-BqF8O .framer-18c3qnv-container, .framer-BqF8O .framer-1ibcdy3-container, .framer-BqF8O .framer-1ebtoc9-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-BqF8O .framer-h011ns, .framer-BqF8O .framer-1l33ha, .framer-BqF8O .framer-1m92012, .framer-BqF8O .framer-4ian3t, .framer-BqF8O .framer-1iqht02, .framer-BqF8O .framer-a5r374, .framer-BqF8O .framer-1tphl7i, .framer-BqF8O .framer-h497yp, .framer-BqF8O .framer-1h35bsm, .framer-BqF8O .framer-1wbclbi, .framer-BqF8O .framer-1lrlo3q, .framer-BqF8O .framer-1dsn9pn, .framer-BqF8O .framer-iibmg0, .framer-BqF8O .framer-r3sdps, .framer-BqF8O .framer-1k7jq8f, .framer-BqF8O .framer-zkv72p, .framer-BqF8O .framer-1xud7mi, .framer-BqF8O .framer-430r8m, .framer-BqF8O .framer-1f79lcf, .framer-BqF8O .framer-i4byxl, .framer-BqF8O .framer-faw80r, .framer-BqF8O .framer-1k0rjtl, .framer-BqF8O .framer-17ci3o3, .framer-BqF8O .framer-2pba2h, .framer-BqF8O .framer-1euk5m2, .framer-BqF8O .framer-12q50xb, .framer-BqF8O .framer-fz6x78, .framer-BqF8O .framer-1s16y5i, .framer-BqF8O .framer-pstno5, .framer-BqF8O .framer-bpw92k, .framer-BqF8O .framer-bjou4f, .framer-BqF8O .framer-19s2dbo { flex: none; height: 699px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BqF8O .framer-ee8wj5-container { aspect-ratio: 0.9125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 399px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-1r3fy7o { aspect-ratio: 0.91 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 401px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-mygpei, .framer-BqF8O .framer-js3r4, .framer-BqF8O .framer-11xhzmx { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-xrr1q9-container { aspect-ratio: 1.7166666666666666 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 1px; }\",\".framer-BqF8O .framer-1ebsshq { aspect-ratio: 0.6330434782608696 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 576px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-15jlmos { align-content: center; align-items: center; aspect-ratio: 0.6336805555555556 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 576px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1xqgcwv { aspect-ratio: 0.6336805555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 576px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-14egw6i, .framer-BqF8O .framer-iofg4t { aspect-ratio: 0.85 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-y7y4yq { align-content: center; align-items: center; aspect-ratio: 0.8876923076923077 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 650px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1ljj8h4 { align-content: center; align-items: center; aspect-ratio: 0.728 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 275px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-yrzxq6 { align-content: center; align-items: center; aspect-ratio: 0.73 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 274px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1rk43ll { aspect-ratio: 0.7493506493506493 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 769px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-x48nuj { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.5753246753246753 / 1; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 771px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BqF8O .framer-3buq89 { align-content: center; align-items: center; aspect-ratio: 0.6977777777777778 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 450px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-12w3ovy { align-content: center; align-items: center; aspect-ratio: 1.568888888888889 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 2.25 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 450px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1fht907, .framer-BqF8O .framer-ev4tow { align-content: center; align-items: center; aspect-ratio: 1.457142857142857 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1p4b8z3, .framer-BqF8O .framer-1xk5kgr { aspect-ratio: 1.457142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 350px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-qrhmq4, .framer-BqF8O .framer-1bzvipz { align-content: center; align-items: center; aspect-ratio: 0.7488888888888889 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 449px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-16s4g3f, .framer-BqF8O .framer-1pdv3wr { align-content: center; align-items: center; aspect-ratio: 0.7466666666666667 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 451px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1b9pgg2, .framer-BqF8O .framer-rmx0ay { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1xjuw0r, .framer-BqF8O .framer-jclpvb, .framer-BqF8O .framer-kp5d7b { align-content: center; align-items: center; aspect-ratio: 1.7 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 300px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-3emf4z, .framer-BqF8O .framer-1yu4o7y, .framer-BqF8O .framer-1izp1dx { aspect-ratio: 1.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-yxjdqu { align-content: center; align-items: center; aspect-ratio: 0.785 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-d6j7ul { align-content: center; align-items: center; aspect-ratio: 1.765 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 2.25 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-y1m61q { align-content: center; align-items: center; aspect-ratio: 1.5692307692307692 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 325px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-16bhdxx { aspect-ratio: 1.5692307692307692 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 325px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-dcvknv, .framer-BqF8O .framer-1d0f129 { align-content: center; align-items: center; aspect-ratio: 1.778929188255613 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 579px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-7ejxil-container { aspect-ratio: 1.778929188255613 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 579px); position: relative; width: 100%; }\",\".framer-BqF8O .framer-1bniike { align-content: center; align-items: center; aspect-ratio: 1.6485714285714286 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 349px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1omtnbe, .framer-BqF8O .framer-14p3hg6 { align-content: center; align-items: center; aspect-ratio: 1.1333333333333333 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 176px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-gnfadx, .framer-BqF8O .framer-qco8nt { align-content: center; align-items: center; aspect-ratio: 0.9628571428571429 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-zudrnk, .framer-BqF8O .framer-19zaisd, .framer-BqF8O .framer-1wbtas8, .framer-BqF8O .framer-rtmbmu, .framer-BqF8O .framer-532qgo, .framer-BqF8O .framer-1d43ga9, .framer-BqF8O .framer-136nauk, .framer-BqF8O .framer-1kcpbza, .framer-BqF8O .framer-7u0srg, .framer-BqF8O .framer-iet6h8, .framer-BqF8O .framer-1v9vifl, .framer-BqF8O .framer-9r810u, .framer-BqF8O .framer-p4tqfx, .framer-BqF8O .framer-5aqg29, .framer-BqF8O .framer-v3ole9, .framer-BqF8O .framer-1071kt7, .framer-BqF8O .framer-1un7z8f, .framer-BqF8O .framer-hdka9v, .framer-BqF8O .framer-avo3q7, .framer-BqF8O .framer-vkurpj, .framer-BqF8O .framer-9re5jx, .framer-BqF8O .framer-jwpm39, .framer-BqF8O .framer-1v83foe, .framer-BqF8O .framer-6atdo6, .framer-BqF8O .framer-146c8tg, .framer-BqF8O .framer-1iyr52j, .framer-BqF8O .framer-18vi2dd, .framer-BqF8O .framer-tpk1nb, .framer-BqF8O .framer-vlyvrn, .framer-BqF8O .framer-ea3oxf, .framer-BqF8O .framer-1yzghy2, .framer-BqF8O .framer-1gv1xlg { cursor: pointer; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-BqF8O .framer-1ocapsq, .framer-BqF8O .framer-8bnj94, .framer-BqF8O .framer-181xnz3, .framer-BqF8O .framer-16q2c1b, .framer-BqF8O .framer-17uqivn, .framer-BqF8O .framer-1731xhz, .framer-BqF8O .framer-16eyj18, .framer-BqF8O .framer-jmn6vj, .framer-BqF8O .framer-1jrqoj4, .framer-BqF8O .framer-1h66x2h, .framer-BqF8O .framer-glj80a, .framer-BqF8O .framer-15g3jth, .framer-BqF8O .framer-6n5bf2, .framer-BqF8O .framer-enw0oh, .framer-BqF8O .framer-gj1qmb, .framer-BqF8O .framer-j0ribm, .framer-BqF8O .framer-1l98vil, .framer-BqF8O .framer-n9qb13, .framer-BqF8O .framer-11uc0x8, .framer-BqF8O .framer-mexwn3, .framer-BqF8O .framer-1h8f0eu, .framer-BqF8O .framer-7djjzc, .framer-BqF8O .framer-1quyiy9, .framer-BqF8O .framer-ng3edj, .framer-BqF8O .framer-okk9m3, .framer-BqF8O .framer-1inp3fr, .framer-BqF8O .framer-d13mjf, .framer-BqF8O .framer-1j5d2gv, .framer-BqF8O .framer-19z8d2v, .framer-BqF8O .framer-12wl5um, .framer-BqF8O .framer-1yxu1wh, .framer-BqF8O .framer-10jlnxe { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-BqF8O .framer-13okrbj, .framer-BqF8O .framer-1yyck4n, .framer-BqF8O .framer-xqi6gg { aspect-ratio: 0.9181818181818182 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 660px); left: 50%; overflow: hidden; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 606px; z-index: 2; }\",\".framer-BqF8O .framer-40ai40 { align-content: center; align-items: center; aspect-ratio: 0.96 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 350px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1rv4jyv, .framer-BqF8O .framer-10souw, .framer-BqF8O .framer-tjc7pl, .framer-BqF8O .framer-crdhi0, .framer-BqF8O .framer-1xgz7tk, .framer-BqF8O .framer-60ci3z, .framer-BqF8O .framer-14km5ja, .framer-BqF8O .framer-116lqjs, .framer-BqF8O .framer-vudui9, .framer-BqF8O .framer-14d07zl, .framer-BqF8O .framer-7prip5, .framer-BqF8O .framer-vouvvv, .framer-BqF8O .framer-14v325w, .framer-BqF8O .framer-s8qvgg, .framer-BqF8O .framer-1434a8i, .framer-BqF8O .framer-1431j9r, .framer-BqF8O .framer-hevavu, .framer-BqF8O .framer-x3dnpb { align-content: center; align-items: center; aspect-ratio: 1.4652173913043478 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 230px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1mu4dwh, .framer-BqF8O .framer-6e7f4l, .framer-BqF8O .framer-q9ldjz, .framer-BqF8O .framer-1f85ew, .framer-BqF8O .framer-jsyo3p, .framer-BqF8O .framer-1a60y4q, .framer-BqF8O .framer-hty7n6, .framer-BqF8O .framer-13nfpfg, .framer-BqF8O .framer-1binjy5, .framer-BqF8O .framer-hjhgjm, .framer-BqF8O .framer-1suv8t6, .framer-BqF8O .framer-1v3x0dx, .framer-BqF8O .framer-1eb4odf, .framer-BqF8O .framer-1a1vgsz, .framer-BqF8O .framer-oap2jd, .framer-BqF8O .framer-m3ppha, .framer-BqF8O .framer-rleiv9, .framer-BqF8O .framer-tiadj4, .framer-BqF8O .framer-1fuag3a, .framer-BqF8O .framer-hukn8q, .framer-BqF8O .framer-ds7cgt, .framer-BqF8O .framer-18mrc5g, .framer-BqF8O .framer-lh2l80, .framer-BqF8O .framer-vm4b8a, .framer-BqF8O .framer-38pruw, .framer-BqF8O .framer-1airn2f, .framer-BqF8O .framer-1bhj2hr, .framer-BqF8O .framer-4n5aew, .framer-BqF8O .framer-7wg8ez { aspect-ratio: 1.503030303030303 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 660px); left: 50%; overflow: hidden; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 992px; z-index: 2; }\",\".framer-BqF8O .framer-1ieih8l, .framer-BqF8O .framer-35oqe6, .framer-BqF8O .framer-1uoi6r5, .framer-BqF8O .framer-6kwjik, .framer-BqF8O .framer-vipqdd, .framer-BqF8O .framer-9j6y3v, .framer-BqF8O .framer-64bfeb, .framer-BqF8O .framer-1ne94af, .framer-BqF8O .framer-12y8dqd { align-content: center; align-items: center; aspect-ratio: 1.4652173913043478 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 229px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1hsi730, .framer-BqF8O .framer-1yytwbv { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-BqF8O .framer-19wq95b, .framer-BqF8O .framer-1qwey1i { align-content: center; align-items: center; aspect-ratio: 1.4652173913043478 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 348px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-xpmnkw, .framer-BqF8O .framer-4ve2ql { align-content: center; align-items: center; aspect-ratio: 1.791304347826087 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 575px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1rlbyh2 { align-content: center; align-items: center; aspect-ratio: 0.9822616407982262 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 204px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-13di54r { aspect-ratio: 0.9800884955752213 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); overflow: hidden; position: relative; width: 100%; }\",\".framer-BqF8O .framer-ope68j { align-content: center; align-items: center; aspect-ratio: 1.2822222222222222 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1.3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 156px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-lc3ig8 { align-content: center; align-items: center; aspect-ratio: 1.5579710144927537 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 662px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BqF8O .framer-1x56o30-container, .framer-BqF8O .framer-py3qs-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-BqF8O .framer-11bn7yz { background-color: rgba(0, 0, 0, 0.7); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BqF8O.framer-1eaejtm, .framer-BqF8O .framer-wsqo7, .framer-BqF8O .framer-15i51lo, .framer-BqF8O .framer-1iwb5jt, .framer-BqF8O .framer-1y4efly, .framer-BqF8O .framer-kh2c5i, .framer-BqF8O .framer-uaggly, .framer-BqF8O .framer-6m6lwq, .framer-BqF8O .framer-lfvvg0, .framer-BqF8O .framer-1aqqz66, .framer-BqF8O .framer-cgdixk, .framer-BqF8O .framer-1ygj9k4, .framer-BqF8O .framer-x3nd23, .framer-BqF8O .framer-sx10vi, .framer-BqF8O .framer-1xqxewn, .framer-BqF8O .framer-1cxeqi, .framer-BqF8O .framer-1bxp05c, .framer-BqF8O .framer-jx0221, .framer-BqF8O .framer-1nf45no, .framer-BqF8O .framer-1wcnqzw, .framer-BqF8O .framer-146slmo, .framer-BqF8O .framer-o0j5a5, .framer-BqF8O .framer-8ii1an, .framer-BqF8O .framer-1qabvvo, .framer-BqF8O .framer-978ih6, .framer-BqF8O .framer-ilf922, .framer-BqF8O .framer-17uk5zy, .framer-BqF8O .framer-bswmhm, .framer-BqF8O .framer-t9dorp, .framer-BqF8O .framer-1cmvw4, .framer-BqF8O .framer-1s2ksx1, .framer-BqF8O .framer-1rsuc5w, .framer-BqF8O .framer-1lasrv8, .framer-BqF8O .framer-1yupm00, .framer-BqF8O .framer-k4isba, .framer-BqF8O .framer-kilujj, .framer-BqF8O .framer-1lju80b, .framer-BqF8O .framer-eil7xf, .framer-BqF8O .framer-1mi31l1, .framer-BqF8O .framer-15mlh7y, .framer-BqF8O .framer-60igog, .framer-BqF8O .framer-1buksih, .framer-BqF8O .framer-vwxyn8, .framer-BqF8O .framer-1bbo9p4, .framer-BqF8O .framer-bx9p03, .framer-BqF8O .framer-c9a1w6, .framer-BqF8O .framer-17yhztz, .framer-BqF8O .framer-1sw46rz, .framer-BqF8O .framer-d0riq5, .framer-BqF8O .framer-1oyin84, .framer-BqF8O .framer-mlewt1, .framer-BqF8O .framer-12k9rzr, .framer-BqF8O .framer-j57aou, .framer-BqF8O .framer-o1952l, .framer-BqF8O .framer-z7bkx7, .framer-BqF8O .framer-g8salz, .framer-BqF8O .framer-1609bxe, .framer-BqF8O .framer-oihfx6, .framer-BqF8O .framer-2fetjs, .framer-BqF8O .framer-c5etwj, .framer-BqF8O .framer-o3bvzj, .framer-BqF8O .framer-7y7fjd, .framer-BqF8O .framer-endtnw, .framer-BqF8O .framer-1yz0jod, .framer-BqF8O .framer-2kwie, .framer-BqF8O .framer-1p5ypkw, .framer-BqF8O .framer-1w2u68p, .framer-BqF8O .framer-15spej6, .framer-BqF8O .framer-1163eth, .framer-BqF8O .framer-x8zrja, .framer-BqF8O .framer-xclppi, .framer-BqF8O .framer-19i810v, .framer-BqF8O .framer-1sgcj2j, .framer-BqF8O .framer-1eciglt, .framer-BqF8O .framer-16z1d7p, .framer-BqF8O .framer-10ybhxr, .framer-BqF8O .framer-guzrri, .framer-BqF8O .framer-emokts, .framer-BqF8O .framer-vd6bnz, .framer-BqF8O .framer-mr5y3e, .framer-BqF8O .framer-11mu1f3, .framer-BqF8O .framer-rdstc7, .framer-BqF8O .framer-1jpqsu9, .framer-BqF8O .framer-1l0zif6, .framer-BqF8O .framer-tgwiht, .framer-BqF8O .framer-pd44yk, .framer-BqF8O .framer-qk8nod, .framer-BqF8O .framer-1cmyegg, .framer-BqF8O .framer-2d9rqp, .framer-BqF8O .framer-13d39x9, .framer-BqF8O .framer-1t5rcau, .framer-BqF8O .framer-sfl55m, .framer-BqF8O .framer-18f9d2x, .framer-BqF8O .framer-10fuu95, .framer-BqF8O .framer-13auhgg, .framer-BqF8O .framer-1tk8t4n, .framer-BqF8O .framer-7bjz1, .framer-BqF8O .framer-kwqhs5, .framer-BqF8O .framer-1cfrfzb, .framer-BqF8O .framer-vps881, .framer-BqF8O .framer-gojxxl, .framer-BqF8O .framer-1l7lhsj, .framer-BqF8O .framer-1a1uxpk, .framer-BqF8O .framer-zfzltm, .framer-BqF8O .framer-16155wb, .framer-BqF8O .framer-m98pnn, .framer-BqF8O .framer-9rtj1m, .framer-BqF8O .framer-1ydm6h4, .framer-BqF8O .framer-162qu1y, .framer-BqF8O .framer-1b3r8kn, .framer-BqF8O .framer-o0dxhc, .framer-BqF8O .framer-w41cv9, .framer-BqF8O .framer-1v1h3ao, .framer-BqF8O .framer-yjx89g, .framer-BqF8O .framer-1lx0h3a, .framer-BqF8O .framer-cb0ljc, .framer-BqF8O .framer-8n1u0b, .framer-BqF8O .framer-1h0fv5a, .framer-BqF8O .framer-qrhfzj, .framer-BqF8O .framer-1kg7la9, .framer-BqF8O .framer-1moydod, .framer-BqF8O .framer-e75cv3, .framer-BqF8O .framer-19q4yzt, .framer-BqF8O .framer-1i127ir, .framer-BqF8O .framer-1x3wcaf, .framer-BqF8O .framer-1w532zg, .framer-BqF8O .framer-1d1ko15, .framer-BqF8O .framer-fowkm5, .framer-BqF8O .framer-3ir97n, .framer-BqF8O .framer-3borcd, .framer-BqF8O .framer-we2t6j, .framer-BqF8O .framer-1ho2dj8, .framer-BqF8O .framer-fw7z16, .framer-BqF8O .framer-i6n81g, .framer-BqF8O .framer-tod38r, .framer-BqF8O .framer-12hadsu, .framer-BqF8O .framer-16vj5dc, .framer-BqF8O .framer-11cbkt5, .framer-BqF8O .framer-dc2w7m, .framer-BqF8O .framer-wgbcgc, .framer-BqF8O .framer-1i8t9ud, .framer-BqF8O .framer-irrjm6, .framer-BqF8O .framer-13ty0wl, .framer-BqF8O .framer-tg88cl, .framer-BqF8O .framer-1iuanjk, .framer-BqF8O .framer-1ehil2l, .framer-BqF8O .framer-dnwdqg, .framer-BqF8O .framer-m3lowy, .framer-BqF8O .framer-1uwikv2, .framer-BqF8O .framer-94xuv2, .framer-BqF8O .framer-1g1mffv, .framer-BqF8O .framer-urm7mp, .framer-BqF8O .framer-14uouqi, .framer-BqF8O .framer-toy9e4, .framer-BqF8O .framer-1ywxl4r, .framer-BqF8O .framer-1m6jze5, .framer-BqF8O .framer-ojtxqr, .framer-BqF8O .framer-1knd9z0, .framer-BqF8O .framer-1pqb7va, .framer-BqF8O .framer-134gi6x, .framer-BqF8O .framer-nc3dw5, .framer-BqF8O .framer-x41h6k, .framer-BqF8O .framer-k6gmfc, .framer-BqF8O .framer-1vw1gzg, .framer-BqF8O .framer-ko93ou, .framer-BqF8O .framer-11p564l, .framer-BqF8O .framer-fuzk5n, .framer-BqF8O .framer-ztn3w7, .framer-BqF8O .framer-cspmqc, .framer-BqF8O .framer-yzwwkz, .framer-BqF8O .framer-bg5h2m, .framer-BqF8O .framer-1c7fpvg, .framer-BqF8O .framer-orokjh, .framer-BqF8O .framer-1cqm1yb, .framer-BqF8O .framer-3bai0c, .framer-BqF8O .framer-1c8fbi2, .framer-BqF8O .framer-v2u50j, .framer-BqF8O .framer-1ax6cld, .framer-BqF8O .framer-8p8589, .framer-BqF8O .framer-1y0m1ra, .framer-BqF8O .framer-f5xdvs, .framer-BqF8O .framer-n9ehor, .framer-BqF8O .framer-19i27rn, .framer-BqF8O .framer-1admd9o, .framer-BqF8O .framer-1yhfp6u, .framer-BqF8O .framer-2sgape, .framer-BqF8O .framer-kftshh, .framer-BqF8O .framer-83w3pe, .framer-BqF8O .framer-1jw11yd, .framer-BqF8O .framer-jted0q, .framer-BqF8O .framer-14loiy5, .framer-BqF8O .framer-1cnvwp7, .framer-BqF8O .framer-15epj9w, .framer-BqF8O .framer-1amzmq5, .framer-BqF8O .framer-17ia3ki, .framer-BqF8O .framer-1j5aoi8, .framer-BqF8O .framer-1fz0wtr, .framer-BqF8O .framer-elj15m, .framer-BqF8O .framer-327k2r, .framer-BqF8O .framer-fxu09x, .framer-BqF8O .framer-lpn71u, .framer-BqF8O .framer-f7mxla, .framer-BqF8O .framer-1i21z8o, .framer-BqF8O .framer-1ewh545, .framer-BqF8O .framer-14rvoxw, .framer-BqF8O .framer-1r9ydkl, .framer-BqF8O .framer-1i97zwk, .framer-BqF8O .framer-tzo23r, .framer-BqF8O .framer-1b4wl2i, .framer-BqF8O .framer-14qjwxh, .framer-BqF8O .framer-ymbcvs, .framer-BqF8O .framer-3c0a0d, .framer-BqF8O .framer-7dj0ml, .framer-BqF8O .framer-zaemkb, .framer-BqF8O .framer-19t3r9i, .framer-BqF8O .framer-64ei5r, .framer-BqF8O .framer-1cytxks, .framer-BqF8O .framer-1ivfddf, .framer-BqF8O .framer-thxof4, .framer-BqF8O .framer-h20v2b, .framer-BqF8O .framer-1fpp7oz, .framer-BqF8O .framer-1n7ap44, .framer-BqF8O .framer-ljdqow, .framer-BqF8O .framer-1o4dm88, .framer-BqF8O .framer-yn97cl, .framer-BqF8O .framer-1wk6hdc, .framer-BqF8O .framer-ng676d, .framer-BqF8O .framer-1dgp2zc, .framer-BqF8O .framer-e1y3sf, .framer-BqF8O .framer-r0rita, .framer-BqF8O .framer-1nbzp33, .framer-BqF8O .framer-1xbqz9i, .framer-BqF8O .framer-fon2fi, .framer-BqF8O .framer-bzlbae, .framer-BqF8O .framer-ldvftw, .framer-BqF8O .framer-cpo9v1, .framer-BqF8O .framer-11ha882, .framer-BqF8O .framer-xbv0pi, .framer-BqF8O .framer-16oh28c, .framer-BqF8O .framer-ltdzk0, .framer-BqF8O .framer-nbqv7f, .framer-BqF8O .framer-ccph4h, .framer-BqF8O .framer-mygpei, .framer-BqF8O .framer-nbfd14, .framer-BqF8O .framer-1wsomk4, .framer-BqF8O .framer-f8huse, .framer-BqF8O .framer-1qxdgzh, .framer-BqF8O .framer-5scvc9, .framer-BqF8O .framer-493wqk, .framer-BqF8O .framer-xxmk5y, .framer-BqF8O .framer-15jlmos, .framer-BqF8O .framer-o474tk, .framer-BqF8O .framer-e2d90q, .framer-BqF8O .framer-tyzzbf, .framer-BqF8O .framer-kxvtcv, .framer-BqF8O .framer-1y3ts85, .framer-BqF8O .framer-1dgdv2r, .framer-BqF8O .framer-js3r4, .framer-BqF8O .framer-ui4i7m, .framer-BqF8O .framer-cnsg4f, .framer-BqF8O .framer-qe383i, .framer-BqF8O .framer-pah0k7, .framer-BqF8O .framer-1ctbdzc, .framer-BqF8O .framer-jxtg56, .framer-BqF8O .framer-1ew8kmk, .framer-BqF8O .framer-11xhzmx, .framer-BqF8O .framer-1v5dzbk, .framer-BqF8O .framer-zh00ho, .framer-BqF8O .framer-xnj7a1, .framer-BqF8O .framer-jk80ju, .framer-BqF8O .framer-1biie0n, .framer-BqF8O .framer-1782ozs, .framer-BqF8O .framer-5qx4yn, .framer-BqF8O .framer-re6bbo, .framer-BqF8O .framer-4gthn6, .framer-BqF8O .framer-3vmnv9, .framer-BqF8O .framer-ay3r2s, .framer-BqF8O .framer-uzwnv9, .framer-BqF8O .framer-1fr1kp4, .framer-BqF8O .framer-uwjchh, .framer-BqF8O .framer-1hy6p0x, .framer-BqF8O .framer-zlohis, .framer-BqF8O .framer-y1dyky, .framer-BqF8O .framer-y7y4yq, .framer-BqF8O .framer-1si4em, .framer-BqF8O .framer-14us3bo, .framer-BqF8O .framer-gkyumu, .framer-BqF8O .framer-10woi7q, .framer-BqF8O .framer-1tjs0am, .framer-BqF8O .framer-1ljj8h4, .framer-BqF8O .framer-yrzxq6, .framer-BqF8O .framer-cnwe8t, .framer-BqF8O .framer-1aap52g, .framer-BqF8O .framer-x48nuj, .framer-BqF8O .framer-nmb8kh, .framer-BqF8O .framer-1n52zwu, .framer-BqF8O .framer-3qnzee, .framer-BqF8O .framer-1wblz9p, .framer-BqF8O .framer-igeq9v, .framer-BqF8O .framer-1jq4cz0, .framer-BqF8O .framer-3buq89, .framer-BqF8O .framer-12w3ovy, .framer-BqF8O .framer-27kvcw, .framer-BqF8O .framer-1fht907, .framer-BqF8O .framer-1amg3w7, .framer-BqF8O .framer-terevk, .framer-BqF8O .framer-qrhmq4, .framer-BqF8O .framer-16s4g3f, .framer-BqF8O .framer-1b9pgg2, .framer-BqF8O .framer-pa7ypx, .framer-BqF8O .framer-1xjuw0r, .framer-BqF8O .framer-1q2n35u, .framer-BqF8O .framer-hbyfz2, .framer-BqF8O .framer-yxjdqu, .framer-BqF8O .framer-d6j7ul, .framer-BqF8O .framer-1311nij, .framer-BqF8O .framer-jclpvb, .framer-BqF8O .framer-ey4ijo, .framer-BqF8O .framer-z0wyna, .framer-BqF8O .framer-rmx0ay, .framer-BqF8O .framer-1bzvipz, .framer-BqF8O .framer-1pdv3wr, .framer-BqF8O .framer-37vspg, .framer-BqF8O .framer-kp5d7b, .framer-BqF8O .framer-14oyy0b, .framer-BqF8O .framer-txg4ek, .framer-BqF8O .framer-ev4tow, .framer-BqF8O .framer-ip4tzu, .framer-BqF8O .framer-mjbr0n, .framer-BqF8O .framer-y1m61q, .framer-BqF8O .framer-9x9flv, .framer-BqF8O .framer-vy964v, .framer-BqF8O .framer-dcvknv, .framer-BqF8O .framer-5qgx7j, .framer-BqF8O .framer-1d0f129, .framer-BqF8O .framer-q8vr4l, .framer-BqF8O .framer-16mynhs, .framer-BqF8O .framer-1cmznqf, .framer-BqF8O .framer-9wgbcs, .framer-BqF8O .framer-1wjlkp0, .framer-BqF8O .framer-1bniike, .framer-BqF8O .framer-1hndz33, .framer-BqF8O .framer-7qx1j6, .framer-BqF8O .framer-7xt0mc, .framer-BqF8O .framer-jkspr, .framer-BqF8O .framer-1omtnbe, .framer-BqF8O .framer-14p3hg6, .framer-BqF8O .framer-2sgjf5, .framer-BqF8O .framer-scw7fv, .framer-BqF8O .framer-1e6av3x, .framer-BqF8O .framer-1ujcex4, .framer-BqF8O .framer-mn8kqw, .framer-BqF8O .framer-dhzlow, .framer-BqF8O .framer-gnfadx, .framer-BqF8O .framer-40ai40, .framer-BqF8O .framer-qco8nt, .framer-BqF8O .framer-1sx6p1v, .framer-BqF8O .framer-1rv4jyv, .framer-BqF8O .framer-10souw, .framer-BqF8O .framer-tjc7pl, .framer-BqF8O .framer-1facrek, .framer-BqF8O .framer-crdhi0, .framer-BqF8O .framer-1xgz7tk, .framer-BqF8O .framer-60ci3z, .framer-BqF8O .framer-k72s49, .framer-BqF8O .framer-14km5ja, .framer-BqF8O .framer-116lqjs, .framer-BqF8O .framer-vudui9, .framer-BqF8O .framer-gx9kbz, .framer-BqF8O .framer-1ieih8l, .framer-BqF8O .framer-35oqe6, .framer-BqF8O .framer-1uoi6r5, .framer-BqF8O .framer-1mqd8j, .framer-BqF8O .framer-1cbikl9, .framer-BqF8O .framer-n3fujj, .framer-BqF8O .framer-xg1pvu, .framer-BqF8O .framer-1jwic1z, .framer-BqF8O .framer-3wauq8, .framer-BqF8O .framer-w03rcl, .framer-BqF8O .framer-19wq95b, .framer-BqF8O .framer-1qwey1i, .framer-BqF8O .framer-7vfr1a, .framer-BqF8O .framer-14d07zl, .framer-BqF8O .framer-7prip5, .framer-BqF8O .framer-vouvvv, .framer-BqF8O .framer-79ditx, .framer-BqF8O .framer-14v325w, .framer-BqF8O .framer-s8qvgg, .framer-BqF8O .framer-1434a8i, .framer-BqF8O .framer-xpmnkw, .framer-BqF8O .framer-14e8hv6, .framer-BqF8O .framer-6kwjik, .framer-BqF8O .framer-vipqdd, .framer-BqF8O .framer-9j6y3v, .framer-BqF8O .framer-obl3t9, .framer-BqF8O .framer-1431j9r, .framer-BqF8O .framer-hevavu, .framer-BqF8O .framer-x3dnpb, .framer-BqF8O .framer-trnljs, .framer-BqF8O .framer-11s2wn9, .framer-BqF8O .framer-i420v3, .framer-BqF8O .framer-xzo9sh, .framer-BqF8O .framer-4jmf30, .framer-BqF8O .framer-ogt3u1, .framer-BqF8O .framer-4ve2ql, .framer-BqF8O .framer-28j7iv, .framer-BqF8O .framer-64bfeb, .framer-BqF8O .framer-1ne94af, .framer-BqF8O .framer-12y8dqd, .framer-BqF8O .framer-1fe02hx, .framer-BqF8O .framer-1rlbyh2, .framer-BqF8O .framer-ope68j, .framer-BqF8O .framer-lc3ig8 { gap: 0px; } .framer-BqF8O.framer-1eaejtm > *, .framer-BqF8O .framer-wsqo7 > *, .framer-BqF8O .framer-15i51lo > *, .framer-BqF8O .framer-uaggly > *, .framer-BqF8O .framer-6m6lwq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BqF8O.framer-1eaejtm > :first-child, .framer-BqF8O .framer-wsqo7 > :first-child, .framer-BqF8O .framer-15i51lo > :first-child, .framer-BqF8O .framer-1y4efly > :first-child, .framer-BqF8O .framer-uaggly > :first-child, .framer-BqF8O .framer-6m6lwq > :first-child, .framer-BqF8O .framer-lfvvg0 > :first-child, .framer-BqF8O .framer-1aqqz66 > :first-child, .framer-BqF8O .framer-cgdixk > :first-child, .framer-BqF8O .framer-1xqxewn > :first-child, .framer-BqF8O .framer-1cxeqi > :first-child, .framer-BqF8O .framer-1bxp05c > :first-child, .framer-BqF8O .framer-1nf45no > :first-child, .framer-BqF8O .framer-1wcnqzw > :first-child, .framer-BqF8O .framer-8ii1an > :first-child, .framer-BqF8O .framer-1qabvvo > :first-child, .framer-BqF8O .framer-1yupm00 > :first-child, .framer-BqF8O .framer-k4isba > :first-child, .framer-BqF8O .framer-kilujj > :first-child, .framer-BqF8O .framer-vwxyn8 > :first-child, .framer-BqF8O .framer-c9a1w6 > :first-child, .framer-BqF8O .framer-1sw46rz > :first-child, .framer-BqF8O .framer-d0riq5 > :first-child, .framer-BqF8O .framer-o1952l > :first-child, .framer-BqF8O .framer-z7bkx7 > :first-child, .framer-BqF8O .framer-g8salz > :first-child, .framer-BqF8O .framer-1609bxe > :first-child, .framer-BqF8O .framer-c5etwj > :first-child, .framer-BqF8O .framer-7y7fjd > :first-child, .framer-BqF8O .framer-1yz0jod > :first-child, .framer-BqF8O .framer-15spej6 > :first-child, .framer-BqF8O .framer-1163eth > :first-child, .framer-BqF8O .framer-xclppi > :first-child, .framer-BqF8O .framer-19i810v > :first-child, .framer-BqF8O .framer-16z1d7p > :first-child, .framer-BqF8O .framer-guzrri > :first-child, .framer-BqF8O .framer-vd6bnz > :first-child, .framer-BqF8O .framer-1jpqsu9 > :first-child, .framer-BqF8O .framer-1l0zif6 > :first-child, .framer-BqF8O .framer-tgwiht > :first-child, .framer-BqF8O .framer-pd44yk > :first-child, .framer-BqF8O .framer-1cmyegg > :first-child, .framer-BqF8O .framer-2d9rqp > :first-child, .framer-BqF8O .framer-1t5rcau > :first-child, .framer-BqF8O .framer-10fuu95 > :first-child, .framer-BqF8O .framer-13auhgg > :first-child, .framer-BqF8O .framer-7bjz1 > :first-child, .framer-BqF8O .framer-kwqhs5 > :first-child, .framer-BqF8O .framer-vps881 > :first-child, .framer-BqF8O .framer-gojxxl > :first-child, .framer-BqF8O .framer-1l7lhsj > :first-child, .framer-BqF8O .framer-16155wb > :first-child, .framer-BqF8O .framer-9rtj1m > :first-child, .framer-BqF8O .framer-162qu1y > :first-child, .framer-BqF8O .framer-o0dxhc > :first-child, .framer-BqF8O .framer-1v1h3ao > :first-child, .framer-BqF8O .framer-cb0ljc > :first-child, .framer-BqF8O .framer-8n1u0b > :first-child, .framer-BqF8O .framer-1h0fv5a > :first-child, .framer-BqF8O .framer-qrhfzj > :first-child, .framer-BqF8O .framer-e75cv3 > :first-child, .framer-BqF8O .framer-19q4yzt > :first-child, .framer-BqF8O .framer-1i127ir > :first-child, .framer-BqF8O .framer-1x3wcaf > :first-child, .framer-BqF8O .framer-fowkm5 > :first-child, .framer-BqF8O .framer-3ir97n > :first-child, .framer-BqF8O .framer-3borcd > :first-child, .framer-BqF8O .framer-we2t6j > :first-child, .framer-BqF8O .framer-i6n81g > :first-child, .framer-BqF8O .framer-tod38r > :first-child, .framer-BqF8O .framer-12hadsu > :first-child, .framer-BqF8O .framer-11cbkt5 > :first-child, .framer-BqF8O .framer-wgbcgc > :first-child, .framer-BqF8O .framer-1i8t9ud > :first-child, .framer-BqF8O .framer-irrjm6 > :first-child, .framer-BqF8O .framer-tg88cl > :first-child, .framer-BqF8O .framer-1ehil2l > :first-child, .framer-BqF8O .framer-dnwdqg > :first-child, .framer-BqF8O .framer-m3lowy > :first-child, .framer-BqF8O .framer-94xuv2 > :first-child, .framer-BqF8O .framer-toy9e4 > :first-child, .framer-BqF8O .framer-1m6jze5 > :first-child, .framer-BqF8O .framer-ojtxqr > :first-child, .framer-BqF8O .framer-1pqb7va > :first-child, .framer-BqF8O .framer-134gi6x > :first-child, .framer-BqF8O .framer-k6gmfc > :first-child, .framer-BqF8O .framer-1vw1gzg > :first-child, .framer-BqF8O .framer-ztn3w7 > :first-child, .framer-BqF8O .framer-cspmqc > :first-child, .framer-BqF8O .framer-bg5h2m > :first-child, .framer-BqF8O .framer-1c7fpvg > :first-child, .framer-BqF8O .framer-1cqm1yb > :first-child, .framer-BqF8O .framer-3bai0c > :first-child, .framer-BqF8O .framer-1ax6cld > :first-child, .framer-BqF8O .framer-8p8589 > :first-child, .framer-BqF8O .framer-1y0m1ra > :first-child, .framer-BqF8O .framer-19i27rn > :first-child, .framer-BqF8O .framer-1admd9o > :first-child, .framer-BqF8O .framer-2sgape > :first-child, .framer-BqF8O .framer-kftshh > :first-child, .framer-BqF8O .framer-83w3pe > :first-child, .framer-BqF8O .framer-jted0q > :first-child, .framer-BqF8O .framer-1cnvwp7 > :first-child, .framer-BqF8O .framer-15epj9w > :first-child, .framer-BqF8O .framer-1j5aoi8 > :first-child, .framer-BqF8O .framer-1fz0wtr > :first-child, .framer-BqF8O .framer-fxu09x > :first-child, .framer-BqF8O .framer-lpn71u > :first-child, .framer-BqF8O .framer-f7mxla > :first-child, .framer-BqF8O .framer-tzo23r > :first-child, .framer-BqF8O .framer-1b4wl2i > :first-child, .framer-BqF8O .framer-14qjwxh > :first-child, .framer-BqF8O .framer-7dj0ml > :first-child, .framer-BqF8O .framer-1cytxks > :first-child, .framer-BqF8O .framer-1ivfddf > :first-child, .framer-BqF8O .framer-1fpp7oz > :first-child, .framer-BqF8O .framer-1n7ap44 > :first-child, .framer-BqF8O .framer-yn97cl > :first-child, .framer-BqF8O .framer-ng676d > :first-child, .framer-BqF8O .framer-1dgp2zc > :first-child, .framer-BqF8O .framer-1nbzp33 > :first-child, .framer-BqF8O .framer-1xbqz9i > :first-child, .framer-BqF8O .framer-bzlbae > :first-child, .framer-BqF8O .framer-ldvftw > :first-child, .framer-BqF8O .framer-cpo9v1 > :first-child, .framer-BqF8O .framer-11ha882 > :first-child, .framer-BqF8O .framer-ltdzk0 > :first-child, .framer-BqF8O .framer-nbfd14 > :first-child, .framer-BqF8O .framer-1qxdgzh > :first-child, .framer-BqF8O .framer-xxmk5y > :first-child, .framer-BqF8O .framer-15jlmos > :first-child, .framer-BqF8O .framer-o474tk > :first-child, .framer-BqF8O .framer-e2d90q > :first-child, .framer-BqF8O .framer-1y3ts85 > :first-child, .framer-BqF8O .framer-ui4i7m > :first-child, .framer-BqF8O .framer-pah0k7 > :first-child, .framer-BqF8O .framer-1v5dzbk > :first-child, .framer-BqF8O .framer-jk80ju > :first-child, .framer-BqF8O .framer-1782ozs > :first-child, .framer-BqF8O .framer-5qx4yn > :first-child, .framer-BqF8O .framer-3vmnv9 > :first-child, .framer-BqF8O .framer-ay3r2s > :first-child, .framer-BqF8O .framer-1fr1kp4 > :first-child, .framer-BqF8O .framer-1hy6p0x > :first-child, .framer-BqF8O .framer-y1dyky > :first-child, .framer-BqF8O .framer-y7y4yq > :first-child, .framer-BqF8O .framer-14us3bo > :first-child, .framer-BqF8O .framer-10woi7q > :first-child, .framer-BqF8O .framer-1tjs0am > :first-child, .framer-BqF8O .framer-1ljj8h4 > :first-child, .framer-BqF8O .framer-yrzxq6 > :first-child, .framer-BqF8O .framer-1aap52g > :first-child, .framer-BqF8O .framer-x48nuj > :first-child, .framer-BqF8O .framer-nmb8kh > :first-child, .framer-BqF8O .framer-1wblz9p > :first-child, .framer-BqF8O .framer-igeq9v > :first-child, .framer-BqF8O .framer-3buq89 > :first-child, .framer-BqF8O .framer-12w3ovy > :first-child, .framer-BqF8O .framer-1fht907 > :first-child, .framer-BqF8O .framer-1amg3w7 > :first-child, .framer-BqF8O .framer-qrhmq4 > :first-child, .framer-BqF8O .framer-16s4g3f > :first-child, .framer-BqF8O .framer-1b9pgg2 > :first-child, .framer-BqF8O .framer-1xjuw0r > :first-child, .framer-BqF8O .framer-1q2n35u > :first-child, .framer-BqF8O .framer-yxjdqu > :first-child, .framer-BqF8O .framer-d6j7ul > :first-child, .framer-BqF8O .framer-jclpvb > :first-child, .framer-BqF8O .framer-ey4ijo > :first-child, .framer-BqF8O .framer-rmx0ay > :first-child, .framer-BqF8O .framer-1bzvipz > :first-child, .framer-BqF8O .framer-1pdv3wr > :first-child, .framer-BqF8O .framer-kp5d7b > :first-child, .framer-BqF8O .framer-14oyy0b > :first-child, .framer-BqF8O .framer-ev4tow > :first-child, .framer-BqF8O .framer-ip4tzu > :first-child, .framer-BqF8O .framer-y1m61q > :first-child, .framer-BqF8O .framer-9x9flv > :first-child, .framer-BqF8O .framer-dcvknv > :first-child, .framer-BqF8O .framer-1d0f129 > :first-child, .framer-BqF8O .framer-16mynhs > :first-child, .framer-BqF8O .framer-1cmznqf > :first-child, .framer-BqF8O .framer-9wgbcs > :first-child, .framer-BqF8O .framer-1bniike > :first-child, .framer-BqF8O .framer-1hndz33 > :first-child, .framer-BqF8O .framer-7xt0mc > :first-child, .framer-BqF8O .framer-1omtnbe > :first-child, .framer-BqF8O .framer-14p3hg6 > :first-child, .framer-BqF8O .framer-scw7fv > :first-child, .framer-BqF8O .framer-1e6av3x > :first-child, .framer-BqF8O .framer-1ujcex4 > :first-child, .framer-BqF8O .framer-mn8kqw > :first-child, .framer-BqF8O .framer-gnfadx > :first-child, .framer-BqF8O .framer-40ai40 > :first-child, .framer-BqF8O .framer-qco8nt > :first-child, .framer-BqF8O .framer-1rv4jyv > :first-child, .framer-BqF8O .framer-10souw > :first-child, .framer-BqF8O .framer-tjc7pl > :first-child, .framer-BqF8O .framer-crdhi0 > :first-child, .framer-BqF8O .framer-1xgz7tk > :first-child, .framer-BqF8O .framer-60ci3z > :first-child, .framer-BqF8O .framer-14km5ja > :first-child, .framer-BqF8O .framer-116lqjs > :first-child, .framer-BqF8O .framer-vudui9 > :first-child, .framer-BqF8O .framer-1ieih8l > :first-child, .framer-BqF8O .framer-35oqe6 > :first-child, .framer-BqF8O .framer-1uoi6r5 > :first-child, .framer-BqF8O .framer-1cbikl9 > :first-child, .framer-BqF8O .framer-n3fujj > :first-child, .framer-BqF8O .framer-xg1pvu > :first-child, .framer-BqF8O .framer-1jwic1z > :first-child, .framer-BqF8O .framer-19wq95b > :first-child, .framer-BqF8O .framer-1qwey1i > :first-child, .framer-BqF8O .framer-14d07zl > :first-child, .framer-BqF8O .framer-7prip5 > :first-child, .framer-BqF8O .framer-vouvvv > :first-child, .framer-BqF8O .framer-14v325w > :first-child, .framer-BqF8O .framer-s8qvgg > :first-child, .framer-BqF8O .framer-1434a8i > :first-child, .framer-BqF8O .framer-6kwjik > :first-child, .framer-BqF8O .framer-vipqdd > :first-child, .framer-BqF8O .framer-9j6y3v > :first-child, .framer-BqF8O .framer-1431j9r > :first-child, .framer-BqF8O .framer-hevavu > :first-child, .framer-BqF8O .framer-x3dnpb > :first-child, .framer-BqF8O .framer-i420v3 > :first-child, .framer-BqF8O .framer-xzo9sh > :first-child, .framer-BqF8O .framer-4jmf30 > :first-child, .framer-BqF8O .framer-ogt3u1 > :first-child, .framer-BqF8O .framer-64bfeb > :first-child, .framer-BqF8O .framer-1ne94af > :first-child, .framer-BqF8O .framer-12y8dqd > :first-child, .framer-BqF8O .framer-1rlbyh2 > :first-child, .framer-BqF8O .framer-ope68j > :first-child { margin-top: 0px; } .framer-BqF8O.framer-1eaejtm > :last-child, .framer-BqF8O .framer-wsqo7 > :last-child, .framer-BqF8O .framer-15i51lo > :last-child, .framer-BqF8O .framer-1y4efly > :last-child, .framer-BqF8O .framer-uaggly > :last-child, .framer-BqF8O .framer-6m6lwq > :last-child, .framer-BqF8O .framer-lfvvg0 > :last-child, .framer-BqF8O .framer-1aqqz66 > :last-child, .framer-BqF8O .framer-cgdixk > :last-child, .framer-BqF8O .framer-1xqxewn > :last-child, .framer-BqF8O .framer-1cxeqi > :last-child, .framer-BqF8O .framer-1bxp05c > :last-child, .framer-BqF8O .framer-1nf45no > :last-child, .framer-BqF8O .framer-1wcnqzw > :last-child, .framer-BqF8O .framer-8ii1an > :last-child, .framer-BqF8O .framer-1qabvvo > :last-child, .framer-BqF8O .framer-1yupm00 > :last-child, .framer-BqF8O .framer-k4isba > :last-child, .framer-BqF8O .framer-kilujj > :last-child, .framer-BqF8O .framer-vwxyn8 > :last-child, .framer-BqF8O .framer-c9a1w6 > :last-child, .framer-BqF8O .framer-1sw46rz > :last-child, .framer-BqF8O .framer-d0riq5 > :last-child, .framer-BqF8O .framer-o1952l > :last-child, .framer-BqF8O .framer-z7bkx7 > :last-child, .framer-BqF8O .framer-g8salz > :last-child, .framer-BqF8O .framer-1609bxe > :last-child, .framer-BqF8O .framer-c5etwj > :last-child, .framer-BqF8O .framer-7y7fjd > :last-child, .framer-BqF8O .framer-1yz0jod > :last-child, .framer-BqF8O .framer-15spej6 > :last-child, .framer-BqF8O .framer-1163eth > :last-child, .framer-BqF8O .framer-xclppi > :last-child, .framer-BqF8O .framer-19i810v > :last-child, .framer-BqF8O .framer-16z1d7p > :last-child, .framer-BqF8O .framer-guzrri > :last-child, .framer-BqF8O .framer-vd6bnz > :last-child, .framer-BqF8O .framer-1jpqsu9 > :last-child, .framer-BqF8O .framer-1l0zif6 > :last-child, .framer-BqF8O .framer-tgwiht > :last-child, .framer-BqF8O .framer-pd44yk > :last-child, .framer-BqF8O .framer-1cmyegg > :last-child, .framer-BqF8O .framer-2d9rqp > :last-child, .framer-BqF8O .framer-1t5rcau > :last-child, .framer-BqF8O .framer-10fuu95 > :last-child, .framer-BqF8O .framer-13auhgg > :last-child, .framer-BqF8O .framer-7bjz1 > :last-child, .framer-BqF8O .framer-kwqhs5 > :last-child, .framer-BqF8O .framer-vps881 > :last-child, .framer-BqF8O .framer-gojxxl > :last-child, .framer-BqF8O .framer-1l7lhsj > :last-child, .framer-BqF8O .framer-16155wb > :last-child, .framer-BqF8O .framer-9rtj1m > :last-child, .framer-BqF8O .framer-162qu1y > :last-child, .framer-BqF8O .framer-o0dxhc > :last-child, .framer-BqF8O .framer-1v1h3ao > :last-child, .framer-BqF8O .framer-cb0ljc > :last-child, .framer-BqF8O .framer-8n1u0b > :last-child, .framer-BqF8O .framer-1h0fv5a > :last-child, .framer-BqF8O .framer-qrhfzj > :last-child, .framer-BqF8O .framer-e75cv3 > :last-child, .framer-BqF8O .framer-19q4yzt > :last-child, .framer-BqF8O .framer-1i127ir > :last-child, .framer-BqF8O .framer-1x3wcaf > :last-child, .framer-BqF8O .framer-fowkm5 > :last-child, .framer-BqF8O .framer-3ir97n > :last-child, .framer-BqF8O .framer-3borcd > :last-child, .framer-BqF8O .framer-we2t6j > :last-child, .framer-BqF8O .framer-i6n81g > :last-child, .framer-BqF8O .framer-tod38r > :last-child, .framer-BqF8O .framer-12hadsu > :last-child, .framer-BqF8O .framer-11cbkt5 > :last-child, .framer-BqF8O .framer-wgbcgc > :last-child, .framer-BqF8O .framer-1i8t9ud > :last-child, .framer-BqF8O .framer-irrjm6 > :last-child, .framer-BqF8O .framer-tg88cl > :last-child, .framer-BqF8O .framer-1ehil2l > :last-child, .framer-BqF8O .framer-dnwdqg > :last-child, .framer-BqF8O .framer-m3lowy > :last-child, .framer-BqF8O .framer-94xuv2 > :last-child, .framer-BqF8O .framer-toy9e4 > :last-child, .framer-BqF8O .framer-1m6jze5 > :last-child, .framer-BqF8O .framer-ojtxqr > :last-child, .framer-BqF8O .framer-1pqb7va > :last-child, .framer-BqF8O .framer-134gi6x > :last-child, .framer-BqF8O .framer-k6gmfc > :last-child, .framer-BqF8O .framer-1vw1gzg > :last-child, .framer-BqF8O .framer-ztn3w7 > :last-child, .framer-BqF8O .framer-cspmqc > :last-child, .framer-BqF8O .framer-bg5h2m > :last-child, .framer-BqF8O .framer-1c7fpvg > :last-child, .framer-BqF8O .framer-1cqm1yb > :last-child, .framer-BqF8O .framer-3bai0c > :last-child, .framer-BqF8O .framer-1ax6cld > :last-child, .framer-BqF8O .framer-8p8589 > :last-child, .framer-BqF8O .framer-1y0m1ra > :last-child, .framer-BqF8O .framer-19i27rn > :last-child, .framer-BqF8O .framer-1admd9o > :last-child, .framer-BqF8O .framer-2sgape > :last-child, .framer-BqF8O .framer-kftshh > :last-child, .framer-BqF8O .framer-83w3pe > :last-child, .framer-BqF8O .framer-jted0q > :last-child, .framer-BqF8O .framer-1cnvwp7 > :last-child, .framer-BqF8O .framer-15epj9w > :last-child, .framer-BqF8O .framer-1j5aoi8 > :last-child, .framer-BqF8O .framer-1fz0wtr > :last-child, .framer-BqF8O .framer-fxu09x > :last-child, .framer-BqF8O .framer-lpn71u > :last-child, .framer-BqF8O .framer-f7mxla > :last-child, .framer-BqF8O .framer-tzo23r > :last-child, .framer-BqF8O .framer-1b4wl2i > :last-child, .framer-BqF8O .framer-14qjwxh > :last-child, .framer-BqF8O .framer-7dj0ml > :last-child, .framer-BqF8O .framer-1cytxks > :last-child, .framer-BqF8O .framer-1ivfddf > :last-child, .framer-BqF8O .framer-1fpp7oz > :last-child, .framer-BqF8O .framer-1n7ap44 > :last-child, .framer-BqF8O .framer-yn97cl > :last-child, .framer-BqF8O .framer-ng676d > :last-child, .framer-BqF8O .framer-1dgp2zc > :last-child, .framer-BqF8O .framer-1nbzp33 > :last-child, .framer-BqF8O .framer-1xbqz9i > :last-child, .framer-BqF8O .framer-bzlbae > :last-child, .framer-BqF8O .framer-ldvftw > :last-child, .framer-BqF8O .framer-cpo9v1 > :last-child, .framer-BqF8O .framer-11ha882 > :last-child, .framer-BqF8O .framer-ltdzk0 > :last-child, .framer-BqF8O .framer-nbfd14 > :last-child, .framer-BqF8O .framer-1qxdgzh > :last-child, .framer-BqF8O .framer-xxmk5y > :last-child, .framer-BqF8O .framer-15jlmos > :last-child, .framer-BqF8O .framer-o474tk > :last-child, .framer-BqF8O .framer-e2d90q > :last-child, .framer-BqF8O .framer-1y3ts85 > :last-child, .framer-BqF8O .framer-ui4i7m > :last-child, .framer-BqF8O .framer-pah0k7 > :last-child, .framer-BqF8O .framer-1v5dzbk > :last-child, .framer-BqF8O .framer-jk80ju > :last-child, .framer-BqF8O .framer-1782ozs > :last-child, .framer-BqF8O .framer-5qx4yn > :last-child, .framer-BqF8O .framer-3vmnv9 > :last-child, .framer-BqF8O .framer-ay3r2s > :last-child, .framer-BqF8O .framer-1fr1kp4 > :last-child, .framer-BqF8O .framer-1hy6p0x > :last-child, .framer-BqF8O .framer-y1dyky > :last-child, .framer-BqF8O .framer-y7y4yq > :last-child, .framer-BqF8O .framer-14us3bo > :last-child, .framer-BqF8O .framer-10woi7q > :last-child, .framer-BqF8O .framer-1tjs0am > :last-child, .framer-BqF8O .framer-1ljj8h4 > :last-child, .framer-BqF8O .framer-yrzxq6 > :last-child, .framer-BqF8O .framer-1aap52g > :last-child, .framer-BqF8O .framer-x48nuj > :last-child, .framer-BqF8O .framer-nmb8kh > :last-child, .framer-BqF8O .framer-1wblz9p > :last-child, .framer-BqF8O .framer-igeq9v > :last-child, .framer-BqF8O .framer-3buq89 > :last-child, .framer-BqF8O .framer-12w3ovy > :last-child, .framer-BqF8O .framer-1fht907 > :last-child, .framer-BqF8O .framer-1amg3w7 > :last-child, .framer-BqF8O .framer-qrhmq4 > :last-child, .framer-BqF8O .framer-16s4g3f > :last-child, .framer-BqF8O .framer-1b9pgg2 > :last-child, .framer-BqF8O .framer-1xjuw0r > :last-child, .framer-BqF8O .framer-1q2n35u > :last-child, .framer-BqF8O .framer-yxjdqu > :last-child, .framer-BqF8O .framer-d6j7ul > :last-child, .framer-BqF8O .framer-jclpvb > :last-child, .framer-BqF8O .framer-ey4ijo > :last-child, .framer-BqF8O .framer-rmx0ay > :last-child, .framer-BqF8O .framer-1bzvipz > :last-child, .framer-BqF8O .framer-1pdv3wr > :last-child, .framer-BqF8O .framer-kp5d7b > :last-child, .framer-BqF8O .framer-14oyy0b > :last-child, .framer-BqF8O .framer-ev4tow > :last-child, .framer-BqF8O .framer-ip4tzu > :last-child, .framer-BqF8O .framer-y1m61q > :last-child, .framer-BqF8O .framer-9x9flv > :last-child, .framer-BqF8O .framer-dcvknv > :last-child, .framer-BqF8O .framer-1d0f129 > :last-child, .framer-BqF8O .framer-16mynhs > :last-child, .framer-BqF8O .framer-1cmznqf > :last-child, .framer-BqF8O .framer-9wgbcs > :last-child, .framer-BqF8O .framer-1bniike > :last-child, .framer-BqF8O .framer-1hndz33 > :last-child, .framer-BqF8O .framer-7xt0mc > :last-child, .framer-BqF8O .framer-1omtnbe > :last-child, .framer-BqF8O .framer-14p3hg6 > :last-child, .framer-BqF8O .framer-scw7fv > :last-child, .framer-BqF8O .framer-1e6av3x > :last-child, .framer-BqF8O .framer-1ujcex4 > :last-child, .framer-BqF8O .framer-mn8kqw > :last-child, .framer-BqF8O .framer-gnfadx > :last-child, .framer-BqF8O .framer-40ai40 > :last-child, .framer-BqF8O .framer-qco8nt > :last-child, .framer-BqF8O .framer-1rv4jyv > :last-child, .framer-BqF8O .framer-10souw > :last-child, .framer-BqF8O .framer-tjc7pl > :last-child, .framer-BqF8O .framer-crdhi0 > :last-child, .framer-BqF8O .framer-1xgz7tk > :last-child, .framer-BqF8O .framer-60ci3z > :last-child, .framer-BqF8O .framer-14km5ja > :last-child, .framer-BqF8O .framer-116lqjs > :last-child, .framer-BqF8O .framer-vudui9 > :last-child, .framer-BqF8O .framer-1ieih8l > :last-child, .framer-BqF8O .framer-35oqe6 > :last-child, .framer-BqF8O .framer-1uoi6r5 > :last-child, .framer-BqF8O .framer-1cbikl9 > :last-child, .framer-BqF8O .framer-n3fujj > :last-child, .framer-BqF8O .framer-xg1pvu > :last-child, .framer-BqF8O .framer-1jwic1z > :last-child, .framer-BqF8O .framer-19wq95b > :last-child, .framer-BqF8O .framer-1qwey1i > :last-child, .framer-BqF8O .framer-14d07zl > :last-child, .framer-BqF8O .framer-7prip5 > :last-child, .framer-BqF8O .framer-vouvvv > :last-child, .framer-BqF8O .framer-14v325w > :last-child, .framer-BqF8O .framer-s8qvgg > :last-child, .framer-BqF8O .framer-1434a8i > :last-child, .framer-BqF8O .framer-6kwjik > :last-child, .framer-BqF8O .framer-vipqdd > :last-child, .framer-BqF8O .framer-9j6y3v > :last-child, .framer-BqF8O .framer-1431j9r > :last-child, .framer-BqF8O .framer-hevavu > :last-child, .framer-BqF8O .framer-x3dnpb > :last-child, .framer-BqF8O .framer-i420v3 > :last-child, .framer-BqF8O .framer-xzo9sh > :last-child, .framer-BqF8O .framer-4jmf30 > :last-child, .framer-BqF8O .framer-ogt3u1 > :last-child, .framer-BqF8O .framer-64bfeb > :last-child, .framer-BqF8O .framer-1ne94af > :last-child, .framer-BqF8O .framer-12y8dqd > :last-child, .framer-BqF8O .framer-1rlbyh2 > :last-child, .framer-BqF8O .framer-ope68j > :last-child { margin-bottom: 0px; } .framer-BqF8O .framer-1iwb5jt > *, .framer-BqF8O .framer-kh2c5i > *, .framer-BqF8O .framer-1ygj9k4 > *, .framer-BqF8O .framer-x3nd23 > *, .framer-BqF8O .framer-sx10vi > *, .framer-BqF8O .framer-146slmo > *, .framer-BqF8O .framer-o0j5a5 > *, .framer-BqF8O .framer-978ih6 > *, .framer-BqF8O .framer-ilf922 > *, .framer-BqF8O .framer-17uk5zy > *, .framer-BqF8O .framer-bswmhm > *, .framer-BqF8O .framer-t9dorp > *, .framer-BqF8O .framer-1cmvw4 > *, .framer-BqF8O .framer-1s2ksx1 > *, .framer-BqF8O .framer-1rsuc5w > *, .framer-BqF8O .framer-1lasrv8 > *, .framer-BqF8O .framer-1lju80b > *, .framer-BqF8O .framer-eil7xf > *, .framer-BqF8O .framer-1mi31l1 > *, .framer-BqF8O .framer-15mlh7y > *, .framer-BqF8O .framer-60igog > *, .framer-BqF8O .framer-1buksih > *, .framer-BqF8O .framer-1bbo9p4 > *, .framer-BqF8O .framer-bx9p03 > *, .framer-BqF8O .framer-17yhztz > *, .framer-BqF8O .framer-1oyin84 > *, .framer-BqF8O .framer-mlewt1 > *, .framer-BqF8O .framer-12k9rzr > *, .framer-BqF8O .framer-j57aou > *, .framer-BqF8O .framer-oihfx6 > *, .framer-BqF8O .framer-2fetjs > *, .framer-BqF8O .framer-1p5ypkw > *, .framer-BqF8O .framer-1w2u68p > *, .framer-BqF8O .framer-x8zrja > *, .framer-BqF8O .framer-1sgcj2j > *, .framer-BqF8O .framer-1eciglt > *, .framer-BqF8O .framer-10ybhxr > *, .framer-BqF8O .framer-emokts > *, .framer-BqF8O .framer-mr5y3e > *, .framer-BqF8O .framer-11mu1f3 > *, .framer-BqF8O .framer-rdstc7 > *, .framer-BqF8O .framer-qk8nod > *, .framer-BqF8O .framer-13d39x9 > *, .framer-BqF8O .framer-sfl55m > *, .framer-BqF8O .framer-18f9d2x > *, .framer-BqF8O .framer-1tk8t4n > *, .framer-BqF8O .framer-1cfrfzb > *, .framer-BqF8O .framer-1a1uxpk > *, .framer-BqF8O .framer-zfzltm > *, .framer-BqF8O .framer-m98pnn > *, .framer-BqF8O .framer-1ydm6h4 > *, .framer-BqF8O .framer-1b3r8kn > *, .framer-BqF8O .framer-w41cv9 > *, .framer-BqF8O .framer-yjx89g > *, .framer-BqF8O .framer-1lx0h3a > *, .framer-BqF8O .framer-1kg7la9 > *, .framer-BqF8O .framer-1moydod > *, .framer-BqF8O .framer-1w532zg > *, .framer-BqF8O .framer-1d1ko15 > *, .framer-BqF8O .framer-1ho2dj8 > *, .framer-BqF8O .framer-fw7z16 > *, .framer-BqF8O .framer-16vj5dc > *, .framer-BqF8O .framer-dc2w7m > *, .framer-BqF8O .framer-13ty0wl > *, .framer-BqF8O .framer-1iuanjk > *, .framer-BqF8O .framer-1uwikv2 > *, .framer-BqF8O .framer-1g1mffv > *, .framer-BqF8O .framer-urm7mp > *, .framer-BqF8O .framer-14uouqi > *, .framer-BqF8O .framer-1ywxl4r > *, .framer-BqF8O .framer-1knd9z0 > *, .framer-BqF8O .framer-nc3dw5 > *, .framer-BqF8O .framer-x41h6k > *, .framer-BqF8O .framer-ko93ou > *, .framer-BqF8O .framer-11p564l > *, .framer-BqF8O .framer-fuzk5n > *, .framer-BqF8O .framer-yzwwkz > *, .framer-BqF8O .framer-orokjh > *, .framer-BqF8O .framer-1c8fbi2 > *, .framer-BqF8O .framer-v2u50j > *, .framer-BqF8O .framer-f5xdvs > *, .framer-BqF8O .framer-n9ehor > *, .framer-BqF8O .framer-1yhfp6u > *, .framer-BqF8O .framer-1jw11yd > *, .framer-BqF8O .framer-14loiy5 > *, .framer-BqF8O .framer-1amzmq5 > *, .framer-BqF8O .framer-17ia3ki > *, .framer-BqF8O .framer-elj15m > *, .framer-BqF8O .framer-327k2r > *, .framer-BqF8O .framer-1i21z8o > *, .framer-BqF8O .framer-1ewh545 > *, .framer-BqF8O .framer-14rvoxw > *, .framer-BqF8O .framer-1r9ydkl > *, .framer-BqF8O .framer-1i97zwk > *, .framer-BqF8O .framer-ymbcvs > *, .framer-BqF8O .framer-3c0a0d > *, .framer-BqF8O .framer-zaemkb > *, .framer-BqF8O .framer-19t3r9i > *, .framer-BqF8O .framer-64ei5r > *, .framer-BqF8O .framer-thxof4 > *, .framer-BqF8O .framer-h20v2b > *, .framer-BqF8O .framer-ljdqow > *, .framer-BqF8O .framer-1o4dm88 > *, .framer-BqF8O .framer-1wk6hdc > *, .framer-BqF8O .framer-e1y3sf > *, .framer-BqF8O .framer-r0rita > *, .framer-BqF8O .framer-fon2fi > *, .framer-BqF8O .framer-xbv0pi > *, .framer-BqF8O .framer-16oh28c > *, .framer-BqF8O .framer-nbqv7f > *, .framer-BqF8O .framer-ccph4h > *, .framer-BqF8O .framer-mygpei > *, .framer-BqF8O .framer-1wsomk4 > *, .framer-BqF8O .framer-f8huse > *, .framer-BqF8O .framer-5scvc9 > *, .framer-BqF8O .framer-493wqk > *, .framer-BqF8O .framer-tyzzbf > *, .framer-BqF8O .framer-kxvtcv > *, .framer-BqF8O .framer-1dgdv2r > *, .framer-BqF8O .framer-js3r4 > *, .framer-BqF8O .framer-cnsg4f > *, .framer-BqF8O .framer-qe383i > *, .framer-BqF8O .framer-1ctbdzc > *, .framer-BqF8O .framer-jxtg56 > *, .framer-BqF8O .framer-1ew8kmk > *, .framer-BqF8O .framer-11xhzmx > *, .framer-BqF8O .framer-zh00ho > *, .framer-BqF8O .framer-xnj7a1 > *, .framer-BqF8O .framer-1biie0n > *, .framer-BqF8O .framer-re6bbo > *, .framer-BqF8O .framer-4gthn6 > *, .framer-BqF8O .framer-uzwnv9 > *, .framer-BqF8O .framer-uwjchh > *, .framer-BqF8O .framer-zlohis > *, .framer-BqF8O .framer-1si4em > *, .framer-BqF8O .framer-gkyumu > *, .framer-BqF8O .framer-cnwe8t > *, .framer-BqF8O .framer-1n52zwu > *, .framer-BqF8O .framer-3qnzee > *, .framer-BqF8O .framer-1jq4cz0 > *, .framer-BqF8O .framer-27kvcw > *, .framer-BqF8O .framer-terevk > *, .framer-BqF8O .framer-pa7ypx > *, .framer-BqF8O .framer-hbyfz2 > *, .framer-BqF8O .framer-1311nij > *, .framer-BqF8O .framer-z0wyna > *, .framer-BqF8O .framer-37vspg > *, .framer-BqF8O .framer-txg4ek > *, .framer-BqF8O .framer-mjbr0n > *, .framer-BqF8O .framer-vy964v > *, .framer-BqF8O .framer-5qgx7j > *, .framer-BqF8O .framer-q8vr4l > *, .framer-BqF8O .framer-1wjlkp0 > *, .framer-BqF8O .framer-7qx1j6 > *, .framer-BqF8O .framer-jkspr > *, .framer-BqF8O .framer-2sgjf5 > *, .framer-BqF8O .framer-dhzlow > *, .framer-BqF8O .framer-1sx6p1v > *, .framer-BqF8O .framer-1facrek > *, .framer-BqF8O .framer-k72s49 > *, .framer-BqF8O .framer-gx9kbz > *, .framer-BqF8O .framer-1mqd8j > *, .framer-BqF8O .framer-3wauq8 > *, .framer-BqF8O .framer-w03rcl > *, .framer-BqF8O .framer-7vfr1a > *, .framer-BqF8O .framer-79ditx > *, .framer-BqF8O .framer-xpmnkw > *, .framer-BqF8O .framer-14e8hv6 > *, .framer-BqF8O .framer-obl3t9 > *, .framer-BqF8O .framer-trnljs > *, .framer-BqF8O .framer-11s2wn9 > *, .framer-BqF8O .framer-4ve2ql > *, .framer-BqF8O .framer-28j7iv > *, .framer-BqF8O .framer-1fe02hx > *, .framer-BqF8O .framer-lc3ig8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BqF8O .framer-1iwb5jt > :first-child, .framer-BqF8O .framer-kh2c5i > :first-child, .framer-BqF8O .framer-1ygj9k4 > :first-child, .framer-BqF8O .framer-x3nd23 > :first-child, .framer-BqF8O .framer-sx10vi > :first-child, .framer-BqF8O .framer-jx0221 > :first-child, .framer-BqF8O .framer-146slmo > :first-child, .framer-BqF8O .framer-o0j5a5 > :first-child, .framer-BqF8O .framer-978ih6 > :first-child, .framer-BqF8O .framer-ilf922 > :first-child, .framer-BqF8O .framer-17uk5zy > :first-child, .framer-BqF8O .framer-bswmhm > :first-child, .framer-BqF8O .framer-t9dorp > :first-child, .framer-BqF8O .framer-1cmvw4 > :first-child, .framer-BqF8O .framer-1s2ksx1 > :first-child, .framer-BqF8O .framer-1rsuc5w > :first-child, .framer-BqF8O .framer-1lasrv8 > :first-child, .framer-BqF8O .framer-1lju80b > :first-child, .framer-BqF8O .framer-eil7xf > :first-child, .framer-BqF8O .framer-1mi31l1 > :first-child, .framer-BqF8O .framer-15mlh7y > :first-child, .framer-BqF8O .framer-60igog > :first-child, .framer-BqF8O .framer-1buksih > :first-child, .framer-BqF8O .framer-1bbo9p4 > :first-child, .framer-BqF8O .framer-bx9p03 > :first-child, .framer-BqF8O .framer-17yhztz > :first-child, .framer-BqF8O .framer-1oyin84 > :first-child, .framer-BqF8O .framer-mlewt1 > :first-child, .framer-BqF8O .framer-12k9rzr > :first-child, .framer-BqF8O .framer-j57aou > :first-child, .framer-BqF8O .framer-oihfx6 > :first-child, .framer-BqF8O .framer-2fetjs > :first-child, .framer-BqF8O .framer-o3bvzj > :first-child, .framer-BqF8O .framer-endtnw > :first-child, .framer-BqF8O .framer-2kwie > :first-child, .framer-BqF8O .framer-1p5ypkw > :first-child, .framer-BqF8O .framer-1w2u68p > :first-child, .framer-BqF8O .framer-x8zrja > :first-child, .framer-BqF8O .framer-1sgcj2j > :first-child, .framer-BqF8O .framer-1eciglt > :first-child, .framer-BqF8O .framer-10ybhxr > :first-child, .framer-BqF8O .framer-emokts > :first-child, .framer-BqF8O .framer-mr5y3e > :first-child, .framer-BqF8O .framer-11mu1f3 > :first-child, .framer-BqF8O .framer-rdstc7 > :first-child, .framer-BqF8O .framer-qk8nod > :first-child, .framer-BqF8O .framer-13d39x9 > :first-child, .framer-BqF8O .framer-sfl55m > :first-child, .framer-BqF8O .framer-18f9d2x > :first-child, .framer-BqF8O .framer-1tk8t4n > :first-child, .framer-BqF8O .framer-1cfrfzb > :first-child, .framer-BqF8O .framer-1a1uxpk > :first-child, .framer-BqF8O .framer-zfzltm > :first-child, .framer-BqF8O .framer-m98pnn > :first-child, .framer-BqF8O .framer-1ydm6h4 > :first-child, .framer-BqF8O .framer-1b3r8kn > :first-child, .framer-BqF8O .framer-w41cv9 > :first-child, .framer-BqF8O .framer-yjx89g > :first-child, .framer-BqF8O .framer-1lx0h3a > :first-child, .framer-BqF8O .framer-1kg7la9 > :first-child, .framer-BqF8O .framer-1moydod > :first-child, .framer-BqF8O .framer-1w532zg > :first-child, .framer-BqF8O .framer-1d1ko15 > :first-child, .framer-BqF8O .framer-1ho2dj8 > :first-child, .framer-BqF8O .framer-fw7z16 > :first-child, .framer-BqF8O .framer-16vj5dc > :first-child, .framer-BqF8O .framer-dc2w7m > :first-child, .framer-BqF8O .framer-13ty0wl > :first-child, .framer-BqF8O .framer-1iuanjk > :first-child, .framer-BqF8O .framer-1uwikv2 > :first-child, .framer-BqF8O .framer-1g1mffv > :first-child, .framer-BqF8O .framer-urm7mp > :first-child, .framer-BqF8O .framer-14uouqi > :first-child, .framer-BqF8O .framer-1ywxl4r > :first-child, .framer-BqF8O .framer-1knd9z0 > :first-child, .framer-BqF8O .framer-nc3dw5 > :first-child, .framer-BqF8O .framer-x41h6k > :first-child, .framer-BqF8O .framer-ko93ou > :first-child, .framer-BqF8O .framer-11p564l > :first-child, .framer-BqF8O .framer-fuzk5n > :first-child, .framer-BqF8O .framer-yzwwkz > :first-child, .framer-BqF8O .framer-orokjh > :first-child, .framer-BqF8O .framer-1c8fbi2 > :first-child, .framer-BqF8O .framer-v2u50j > :first-child, .framer-BqF8O .framer-f5xdvs > :first-child, .framer-BqF8O .framer-n9ehor > :first-child, .framer-BqF8O .framer-1yhfp6u > :first-child, .framer-BqF8O .framer-1jw11yd > :first-child, .framer-BqF8O .framer-14loiy5 > :first-child, .framer-BqF8O .framer-1amzmq5 > :first-child, .framer-BqF8O .framer-17ia3ki > :first-child, .framer-BqF8O .framer-elj15m > :first-child, .framer-BqF8O .framer-327k2r > :first-child, .framer-BqF8O .framer-1i21z8o > :first-child, .framer-BqF8O .framer-1ewh545 > :first-child, .framer-BqF8O .framer-14rvoxw > :first-child, .framer-BqF8O .framer-1r9ydkl > :first-child, .framer-BqF8O .framer-1i97zwk > :first-child, .framer-BqF8O .framer-ymbcvs > :first-child, .framer-BqF8O .framer-3c0a0d > :first-child, .framer-BqF8O .framer-zaemkb > :first-child, .framer-BqF8O .framer-19t3r9i > :first-child, .framer-BqF8O .framer-64ei5r > :first-child, .framer-BqF8O .framer-thxof4 > :first-child, .framer-BqF8O .framer-h20v2b > :first-child, .framer-BqF8O .framer-ljdqow > :first-child, .framer-BqF8O .framer-1o4dm88 > :first-child, .framer-BqF8O .framer-1wk6hdc > :first-child, .framer-BqF8O .framer-e1y3sf > :first-child, .framer-BqF8O .framer-r0rita > :first-child, .framer-BqF8O .framer-fon2fi > :first-child, .framer-BqF8O .framer-xbv0pi > :first-child, .framer-BqF8O .framer-16oh28c > :first-child, .framer-BqF8O .framer-nbqv7f > :first-child, .framer-BqF8O .framer-ccph4h > :first-child, .framer-BqF8O .framer-mygpei > :first-child, .framer-BqF8O .framer-1wsomk4 > :first-child, .framer-BqF8O .framer-f8huse > :first-child, .framer-BqF8O .framer-5scvc9 > :first-child, .framer-BqF8O .framer-493wqk > :first-child, .framer-BqF8O .framer-tyzzbf > :first-child, .framer-BqF8O .framer-kxvtcv > :first-child, .framer-BqF8O .framer-1dgdv2r > :first-child, .framer-BqF8O .framer-js3r4 > :first-child, .framer-BqF8O .framer-cnsg4f > :first-child, .framer-BqF8O .framer-qe383i > :first-child, .framer-BqF8O .framer-1ctbdzc > :first-child, .framer-BqF8O .framer-jxtg56 > :first-child, .framer-BqF8O .framer-1ew8kmk > :first-child, .framer-BqF8O .framer-11xhzmx > :first-child, .framer-BqF8O .framer-zh00ho > :first-child, .framer-BqF8O .framer-xnj7a1 > :first-child, .framer-BqF8O .framer-1biie0n > :first-child, .framer-BqF8O .framer-re6bbo > :first-child, .framer-BqF8O .framer-4gthn6 > :first-child, .framer-BqF8O .framer-uzwnv9 > :first-child, .framer-BqF8O .framer-uwjchh > :first-child, .framer-BqF8O .framer-zlohis > :first-child, .framer-BqF8O .framer-1si4em > :first-child, .framer-BqF8O .framer-gkyumu > :first-child, .framer-BqF8O .framer-cnwe8t > :first-child, .framer-BqF8O .framer-1n52zwu > :first-child, .framer-BqF8O .framer-3qnzee > :first-child, .framer-BqF8O .framer-1jq4cz0 > :first-child, .framer-BqF8O .framer-27kvcw > :first-child, .framer-BqF8O .framer-terevk > :first-child, .framer-BqF8O .framer-pa7ypx > :first-child, .framer-BqF8O .framer-hbyfz2 > :first-child, .framer-BqF8O .framer-1311nij > :first-child, .framer-BqF8O .framer-z0wyna > :first-child, .framer-BqF8O .framer-37vspg > :first-child, .framer-BqF8O .framer-txg4ek > :first-child, .framer-BqF8O .framer-mjbr0n > :first-child, .framer-BqF8O .framer-vy964v > :first-child, .framer-BqF8O .framer-5qgx7j > :first-child, .framer-BqF8O .framer-q8vr4l > :first-child, .framer-BqF8O .framer-1wjlkp0 > :first-child, .framer-BqF8O .framer-7qx1j6 > :first-child, .framer-BqF8O .framer-jkspr > :first-child, .framer-BqF8O .framer-2sgjf5 > :first-child, .framer-BqF8O .framer-dhzlow > :first-child, .framer-BqF8O .framer-1sx6p1v > :first-child, .framer-BqF8O .framer-1facrek > :first-child, .framer-BqF8O .framer-k72s49 > :first-child, .framer-BqF8O .framer-gx9kbz > :first-child, .framer-BqF8O .framer-1mqd8j > :first-child, .framer-BqF8O .framer-3wauq8 > :first-child, .framer-BqF8O .framer-w03rcl > :first-child, .framer-BqF8O .framer-7vfr1a > :first-child, .framer-BqF8O .framer-79ditx > :first-child, .framer-BqF8O .framer-xpmnkw > :first-child, .framer-BqF8O .framer-14e8hv6 > :first-child, .framer-BqF8O .framer-obl3t9 > :first-child, .framer-BqF8O .framer-trnljs > :first-child, .framer-BqF8O .framer-11s2wn9 > :first-child, .framer-BqF8O .framer-4ve2ql > :first-child, .framer-BqF8O .framer-28j7iv > :first-child, .framer-BqF8O .framer-1fe02hx > :first-child, .framer-BqF8O .framer-lc3ig8 > :first-child { margin-left: 0px; } .framer-BqF8O .framer-1iwb5jt > :last-child, .framer-BqF8O .framer-kh2c5i > :last-child, .framer-BqF8O .framer-1ygj9k4 > :last-child, .framer-BqF8O .framer-x3nd23 > :last-child, .framer-BqF8O .framer-sx10vi > :last-child, .framer-BqF8O .framer-jx0221 > :last-child, .framer-BqF8O .framer-146slmo > :last-child, .framer-BqF8O .framer-o0j5a5 > :last-child, .framer-BqF8O .framer-978ih6 > :last-child, .framer-BqF8O .framer-ilf922 > :last-child, .framer-BqF8O .framer-17uk5zy > :last-child, .framer-BqF8O .framer-bswmhm > :last-child, .framer-BqF8O .framer-t9dorp > :last-child, .framer-BqF8O .framer-1cmvw4 > :last-child, .framer-BqF8O .framer-1s2ksx1 > :last-child, .framer-BqF8O .framer-1rsuc5w > :last-child, .framer-BqF8O .framer-1lasrv8 > :last-child, .framer-BqF8O .framer-1lju80b > :last-child, .framer-BqF8O .framer-eil7xf > :last-child, .framer-BqF8O .framer-1mi31l1 > :last-child, .framer-BqF8O .framer-15mlh7y > :last-child, .framer-BqF8O .framer-60igog > :last-child, .framer-BqF8O .framer-1buksih > :last-child, .framer-BqF8O .framer-1bbo9p4 > :last-child, .framer-BqF8O .framer-bx9p03 > :last-child, .framer-BqF8O .framer-17yhztz > :last-child, .framer-BqF8O .framer-1oyin84 > :last-child, .framer-BqF8O .framer-mlewt1 > :last-child, .framer-BqF8O .framer-12k9rzr > :last-child, .framer-BqF8O .framer-j57aou > :last-child, .framer-BqF8O .framer-oihfx6 > :last-child, .framer-BqF8O .framer-2fetjs > :last-child, .framer-BqF8O .framer-o3bvzj > :last-child, .framer-BqF8O .framer-endtnw > :last-child, .framer-BqF8O .framer-2kwie > :last-child, .framer-BqF8O .framer-1p5ypkw > :last-child, .framer-BqF8O .framer-1w2u68p > :last-child, .framer-BqF8O .framer-x8zrja > :last-child, .framer-BqF8O .framer-1sgcj2j > :last-child, .framer-BqF8O .framer-1eciglt > :last-child, .framer-BqF8O .framer-10ybhxr > :last-child, .framer-BqF8O .framer-emokts > :last-child, .framer-BqF8O .framer-mr5y3e > :last-child, .framer-BqF8O .framer-11mu1f3 > :last-child, .framer-BqF8O .framer-rdstc7 > :last-child, .framer-BqF8O .framer-qk8nod > :last-child, .framer-BqF8O .framer-13d39x9 > :last-child, .framer-BqF8O .framer-sfl55m > :last-child, .framer-BqF8O .framer-18f9d2x > :last-child, .framer-BqF8O .framer-1tk8t4n > :last-child, .framer-BqF8O .framer-1cfrfzb > :last-child, .framer-BqF8O .framer-1a1uxpk > :last-child, .framer-BqF8O .framer-zfzltm > :last-child, .framer-BqF8O .framer-m98pnn > :last-child, .framer-BqF8O .framer-1ydm6h4 > :last-child, .framer-BqF8O .framer-1b3r8kn > :last-child, .framer-BqF8O .framer-w41cv9 > :last-child, .framer-BqF8O .framer-yjx89g > :last-child, .framer-BqF8O .framer-1lx0h3a > :last-child, .framer-BqF8O .framer-1kg7la9 > :last-child, .framer-BqF8O .framer-1moydod > :last-child, .framer-BqF8O .framer-1w532zg > :last-child, .framer-BqF8O .framer-1d1ko15 > :last-child, .framer-BqF8O .framer-1ho2dj8 > :last-child, .framer-BqF8O .framer-fw7z16 > :last-child, .framer-BqF8O .framer-16vj5dc > :last-child, .framer-BqF8O .framer-dc2w7m > :last-child, .framer-BqF8O .framer-13ty0wl > :last-child, .framer-BqF8O .framer-1iuanjk > :last-child, .framer-BqF8O .framer-1uwikv2 > :last-child, .framer-BqF8O .framer-1g1mffv > :last-child, .framer-BqF8O .framer-urm7mp > :last-child, .framer-BqF8O .framer-14uouqi > :last-child, .framer-BqF8O .framer-1ywxl4r > :last-child, .framer-BqF8O .framer-1knd9z0 > :last-child, .framer-BqF8O .framer-nc3dw5 > :last-child, .framer-BqF8O .framer-x41h6k > :last-child, .framer-BqF8O .framer-ko93ou > :last-child, .framer-BqF8O .framer-11p564l > :last-child, .framer-BqF8O .framer-fuzk5n > :last-child, .framer-BqF8O .framer-yzwwkz > :last-child, .framer-BqF8O .framer-orokjh > :last-child, .framer-BqF8O .framer-1c8fbi2 > :last-child, .framer-BqF8O .framer-v2u50j > :last-child, .framer-BqF8O .framer-f5xdvs > :last-child, .framer-BqF8O .framer-n9ehor > :last-child, .framer-BqF8O .framer-1yhfp6u > :last-child, .framer-BqF8O .framer-1jw11yd > :last-child, .framer-BqF8O .framer-14loiy5 > :last-child, .framer-BqF8O .framer-1amzmq5 > :last-child, .framer-BqF8O .framer-17ia3ki > :last-child, .framer-BqF8O .framer-elj15m > :last-child, .framer-BqF8O .framer-327k2r > :last-child, .framer-BqF8O .framer-1i21z8o > :last-child, .framer-BqF8O .framer-1ewh545 > :last-child, .framer-BqF8O .framer-14rvoxw > :last-child, .framer-BqF8O .framer-1r9ydkl > :last-child, .framer-BqF8O .framer-1i97zwk > :last-child, .framer-BqF8O .framer-ymbcvs > :last-child, .framer-BqF8O .framer-3c0a0d > :last-child, .framer-BqF8O .framer-zaemkb > :last-child, .framer-BqF8O .framer-19t3r9i > :last-child, .framer-BqF8O .framer-64ei5r > :last-child, .framer-BqF8O .framer-thxof4 > :last-child, .framer-BqF8O .framer-h20v2b > :last-child, .framer-BqF8O .framer-ljdqow > :last-child, .framer-BqF8O .framer-1o4dm88 > :last-child, .framer-BqF8O .framer-1wk6hdc > :last-child, .framer-BqF8O .framer-e1y3sf > :last-child, .framer-BqF8O .framer-r0rita > :last-child, .framer-BqF8O .framer-fon2fi > :last-child, .framer-BqF8O .framer-xbv0pi > :last-child, .framer-BqF8O .framer-16oh28c > :last-child, .framer-BqF8O .framer-nbqv7f > :last-child, .framer-BqF8O .framer-ccph4h > :last-child, .framer-BqF8O .framer-mygpei > :last-child, .framer-BqF8O .framer-1wsomk4 > :last-child, .framer-BqF8O .framer-f8huse > :last-child, .framer-BqF8O .framer-5scvc9 > :last-child, .framer-BqF8O .framer-493wqk > :last-child, .framer-BqF8O .framer-tyzzbf > :last-child, .framer-BqF8O .framer-kxvtcv > :last-child, .framer-BqF8O .framer-1dgdv2r > :last-child, .framer-BqF8O .framer-js3r4 > :last-child, .framer-BqF8O .framer-cnsg4f > :last-child, .framer-BqF8O .framer-qe383i > :last-child, .framer-BqF8O .framer-1ctbdzc > :last-child, .framer-BqF8O .framer-jxtg56 > :last-child, .framer-BqF8O .framer-1ew8kmk > :last-child, .framer-BqF8O .framer-11xhzmx > :last-child, .framer-BqF8O .framer-zh00ho > :last-child, .framer-BqF8O .framer-xnj7a1 > :last-child, .framer-BqF8O .framer-1biie0n > :last-child, .framer-BqF8O .framer-re6bbo > :last-child, .framer-BqF8O .framer-4gthn6 > :last-child, .framer-BqF8O .framer-uzwnv9 > :last-child, .framer-BqF8O .framer-uwjchh > :last-child, .framer-BqF8O .framer-zlohis > :last-child, .framer-BqF8O .framer-1si4em > :last-child, .framer-BqF8O .framer-gkyumu > :last-child, .framer-BqF8O .framer-cnwe8t > :last-child, .framer-BqF8O .framer-1n52zwu > :last-child, .framer-BqF8O .framer-3qnzee > :last-child, .framer-BqF8O .framer-1jq4cz0 > :last-child, .framer-BqF8O .framer-27kvcw > :last-child, .framer-BqF8O .framer-terevk > :last-child, .framer-BqF8O .framer-pa7ypx > :last-child, .framer-BqF8O .framer-hbyfz2 > :last-child, .framer-BqF8O .framer-1311nij > :last-child, .framer-BqF8O .framer-z0wyna > :last-child, .framer-BqF8O .framer-37vspg > :last-child, .framer-BqF8O .framer-txg4ek > :last-child, .framer-BqF8O .framer-mjbr0n > :last-child, .framer-BqF8O .framer-vy964v > :last-child, .framer-BqF8O .framer-5qgx7j > :last-child, .framer-BqF8O .framer-q8vr4l > :last-child, .framer-BqF8O .framer-1wjlkp0 > :last-child, .framer-BqF8O .framer-7qx1j6 > :last-child, .framer-BqF8O .framer-jkspr > :last-child, .framer-BqF8O .framer-2sgjf5 > :last-child, .framer-BqF8O .framer-dhzlow > :last-child, .framer-BqF8O .framer-1sx6p1v > :last-child, .framer-BqF8O .framer-1facrek > :last-child, .framer-BqF8O .framer-k72s49 > :last-child, .framer-BqF8O .framer-gx9kbz > :last-child, .framer-BqF8O .framer-1mqd8j > :last-child, .framer-BqF8O .framer-3wauq8 > :last-child, .framer-BqF8O .framer-w03rcl > :last-child, .framer-BqF8O .framer-7vfr1a > :last-child, .framer-BqF8O .framer-79ditx > :last-child, .framer-BqF8O .framer-xpmnkw > :last-child, .framer-BqF8O .framer-14e8hv6 > :last-child, .framer-BqF8O .framer-obl3t9 > :last-child, .framer-BqF8O .framer-trnljs > :last-child, .framer-BqF8O .framer-11s2wn9 > :last-child, .framer-BqF8O .framer-4ve2ql > :last-child, .framer-BqF8O .framer-28j7iv > :last-child, .framer-BqF8O .framer-1fe02hx > :last-child, .framer-BqF8O .framer-lc3ig8 > :last-child { margin-right: 0px; } .framer-BqF8O .framer-1y4efly > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BqF8O .framer-lfvvg0 > *, .framer-BqF8O .framer-z7bkx7 > *, .framer-BqF8O .framer-1609bxe > *, .framer-BqF8O .framer-19i810v > *, .framer-BqF8O .framer-16z1d7p > *, .framer-BqF8O .framer-guzrri > *, .framer-BqF8O .framer-pd44yk > *, .framer-BqF8O .framer-1cmyegg > *, .framer-BqF8O .framer-2d9rqp > *, .framer-BqF8O .framer-13auhgg > *, .framer-BqF8O .framer-7bjz1 > *, .framer-BqF8O .framer-1l7lhsj > *, .framer-BqF8O .framer-16155wb > *, .framer-BqF8O .framer-8n1u0b > *, .framer-BqF8O .framer-qrhfzj > *, .framer-BqF8O .framer-19q4yzt > *, .framer-BqF8O .framer-1x3wcaf > *, .framer-BqF8O .framer-3ir97n > *, .framer-BqF8O .framer-we2t6j > *, .framer-BqF8O .framer-12hadsu > *, .framer-BqF8O .framer-11cbkt5 > *, .framer-BqF8O .framer-irrjm6 > *, .framer-BqF8O .framer-tg88cl > *, .framer-BqF8O .framer-m3lowy > *, .framer-BqF8O .framer-94xuv2 > *, .framer-BqF8O .framer-toy9e4 > *, .framer-BqF8O .framer-1m6jze5 > *, .framer-BqF8O .framer-ojtxqr > *, .framer-BqF8O .framer-134gi6x > *, .framer-BqF8O .framer-k6gmfc > *, .framer-BqF8O .framer-1y0m1ra > *, .framer-BqF8O .framer-19i27rn > *, .framer-BqF8O .framer-1admd9o > *, .framer-BqF8O .framer-15epj9w > *, .framer-BqF8O .framer-1j5aoi8 > *, .framer-BqF8O .framer-f7mxla > *, .framer-BqF8O .framer-14qjwxh > *, .framer-BqF8O .framer-7dj0ml > *, .framer-BqF8O .framer-1ivfddf > *, .framer-BqF8O .framer-1fpp7oz > *, .framer-BqF8O .framer-1dgp2zc > *, .framer-BqF8O .framer-1nbzp33 > *, .framer-BqF8O .framer-11ha882 > *, .framer-BqF8O .framer-ltdzk0 > *, .framer-BqF8O .framer-nbfd14 > *, .framer-BqF8O .framer-1qxdgzh > *, .framer-BqF8O .framer-e2d90q > *, .framer-BqF8O .framer-1y3ts85 > *, .framer-BqF8O .framer-ui4i7m > *, .framer-BqF8O .framer-pah0k7 > *, .framer-BqF8O .framer-1v5dzbk > *, .framer-BqF8O .framer-jk80ju > *, .framer-BqF8O .framer-1fr1kp4 > *, .framer-BqF8O .framer-y1dyky > *, .framer-BqF8O .framer-1tjs0am > *, .framer-BqF8O .framer-nmb8kh > *, .framer-BqF8O .framer-1wblz9p > *, .framer-BqF8O .framer-igeq9v > *, .framer-BqF8O .framer-9wgbcs > *, .framer-BqF8O .framer-7xt0mc > *, .framer-BqF8O .framer-1e6av3x > *, .framer-BqF8O .framer-mn8kqw > *, .framer-BqF8O .framer-n3fujj > *, .framer-BqF8O .framer-1jwic1z > *, .framer-BqF8O .framer-xzo9sh > *, .framer-BqF8O .framer-ogt3u1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BqF8O .framer-1aqqz66 > *, .framer-BqF8O .framer-cgdixk > *, .framer-BqF8O .framer-1xqxewn > *, .framer-BqF8O .framer-1cxeqi > *, .framer-BqF8O .framer-1bxp05c > *, .framer-BqF8O .framer-1nf45no > *, .framer-BqF8O .framer-8ii1an > *, .framer-BqF8O .framer-1qabvvo > *, .framer-BqF8O .framer-1yupm00 > *, .framer-BqF8O .framer-k4isba > *, .framer-BqF8O .framer-kilujj > *, .framer-BqF8O .framer-vwxyn8 > *, .framer-BqF8O .framer-c9a1w6 > *, .framer-BqF8O .framer-1sw46rz > *, .framer-BqF8O .framer-d0riq5 > *, .framer-BqF8O .framer-o1952l > *, .framer-BqF8O .framer-g8salz > *, .framer-BqF8O .framer-c5etwj > *, .framer-BqF8O .framer-7y7fjd > *, .framer-BqF8O .framer-1yz0jod > *, .framer-BqF8O .framer-15spej6 > *, .framer-BqF8O .framer-1163eth > *, .framer-BqF8O .framer-xclppi > *, .framer-BqF8O .framer-vd6bnz > *, .framer-BqF8O .framer-1jpqsu9 > *, .framer-BqF8O .framer-1l0zif6 > *, .framer-BqF8O .framer-tgwiht > *, .framer-BqF8O .framer-1t5rcau > *, .framer-BqF8O .framer-10fuu95 > *, .framer-BqF8O .framer-kwqhs5 > *, .framer-BqF8O .framer-vps881 > *, .framer-BqF8O .framer-gojxxl > *, .framer-BqF8O .framer-9rtj1m > *, .framer-BqF8O .framer-162qu1y > *, .framer-BqF8O .framer-o0dxhc > *, .framer-BqF8O .framer-1v1h3ao > *, .framer-BqF8O .framer-cb0ljc > *, .framer-BqF8O .framer-1h0fv5a > *, .framer-BqF8O .framer-e75cv3 > *, .framer-BqF8O .framer-1i127ir > *, .framer-BqF8O .framer-fowkm5 > *, .framer-BqF8O .framer-3borcd > *, .framer-BqF8O .framer-i6n81g > *, .framer-BqF8O .framer-tod38r > *, .framer-BqF8O .framer-wgbcgc > *, .framer-BqF8O .framer-1i8t9ud > *, .framer-BqF8O .framer-1ehil2l > *, .framer-BqF8O .framer-dnwdqg > *, .framer-BqF8O .framer-1pqb7va > *, .framer-BqF8O .framer-1vw1gzg > *, .framer-BqF8O .framer-ztn3w7 > *, .framer-BqF8O .framer-cspmqc > *, .framer-BqF8O .framer-bg5h2m > *, .framer-BqF8O .framer-1c7fpvg > *, .framer-BqF8O .framer-1cqm1yb > *, .framer-BqF8O .framer-3bai0c > *, .framer-BqF8O .framer-1ax6cld > *, .framer-BqF8O .framer-8p8589 > *, .framer-BqF8O .framer-2sgape > *, .framer-BqF8O .framer-kftshh > *, .framer-BqF8O .framer-83w3pe > *, .framer-BqF8O .framer-jted0q > *, .framer-BqF8O .framer-1cnvwp7 > *, .framer-BqF8O .framer-1fz0wtr > *, .framer-BqF8O .framer-fxu09x > *, .framer-BqF8O .framer-lpn71u > *, .framer-BqF8O .framer-tzo23r > *, .framer-BqF8O .framer-1b4wl2i > *, .framer-BqF8O .framer-1cytxks > *, .framer-BqF8O .framer-1n7ap44 > *, .framer-BqF8O .framer-yn97cl > *, .framer-BqF8O .framer-ng676d > *, .framer-BqF8O .framer-1xbqz9i > *, .framer-BqF8O .framer-bzlbae > *, .framer-BqF8O .framer-ldvftw > *, .framer-BqF8O .framer-cpo9v1 > *, .framer-BqF8O .framer-xxmk5y > *, .framer-BqF8O .framer-15jlmos > *, .framer-BqF8O .framer-o474tk > *, .framer-BqF8O .framer-1782ozs > *, .framer-BqF8O .framer-5qx4yn > *, .framer-BqF8O .framer-3vmnv9 > *, .framer-BqF8O .framer-ay3r2s > *, .framer-BqF8O .framer-1hy6p0x > *, .framer-BqF8O .framer-y7y4yq > *, .framer-BqF8O .framer-14us3bo > *, .framer-BqF8O .framer-10woi7q > *, .framer-BqF8O .framer-1ljj8h4 > *, .framer-BqF8O .framer-yrzxq6 > *, .framer-BqF8O .framer-1aap52g > *, .framer-BqF8O .framer-x48nuj > *, .framer-BqF8O .framer-3buq89 > *, .framer-BqF8O .framer-12w3ovy > *, .framer-BqF8O .framer-1fht907 > *, .framer-BqF8O .framer-1amg3w7 > *, .framer-BqF8O .framer-qrhmq4 > *, .framer-BqF8O .framer-16s4g3f > *, .framer-BqF8O .framer-1b9pgg2 > *, .framer-BqF8O .framer-1xjuw0r > *, .framer-BqF8O .framer-1q2n35u > *, .framer-BqF8O .framer-yxjdqu > *, .framer-BqF8O .framer-d6j7ul > *, .framer-BqF8O .framer-jclpvb > *, .framer-BqF8O .framer-ey4ijo > *, .framer-BqF8O .framer-rmx0ay > *, .framer-BqF8O .framer-1bzvipz > *, .framer-BqF8O .framer-1pdv3wr > *, .framer-BqF8O .framer-kp5d7b > *, .framer-BqF8O .framer-14oyy0b > *, .framer-BqF8O .framer-ev4tow > *, .framer-BqF8O .framer-ip4tzu > *, .framer-BqF8O .framer-y1m61q > *, .framer-BqF8O .framer-9x9flv > *, .framer-BqF8O .framer-dcvknv > *, .framer-BqF8O .framer-1d0f129 > *, .framer-BqF8O .framer-16mynhs > *, .framer-BqF8O .framer-1cmznqf > *, .framer-BqF8O .framer-1bniike > *, .framer-BqF8O .framer-1hndz33 > *, .framer-BqF8O .framer-1omtnbe > *, .framer-BqF8O .framer-14p3hg6 > *, .framer-BqF8O .framer-scw7fv > *, .framer-BqF8O .framer-1ujcex4 > *, .framer-BqF8O .framer-gnfadx > *, .framer-BqF8O .framer-40ai40 > *, .framer-BqF8O .framer-qco8nt > *, .framer-BqF8O .framer-1rv4jyv > *, .framer-BqF8O .framer-10souw > *, .framer-BqF8O .framer-tjc7pl > *, .framer-BqF8O .framer-crdhi0 > *, .framer-BqF8O .framer-1xgz7tk > *, .framer-BqF8O .framer-60ci3z > *, .framer-BqF8O .framer-14km5ja > *, .framer-BqF8O .framer-116lqjs > *, .framer-BqF8O .framer-vudui9 > *, .framer-BqF8O .framer-1ieih8l > *, .framer-BqF8O .framer-35oqe6 > *, .framer-BqF8O .framer-1uoi6r5 > *, .framer-BqF8O .framer-1cbikl9 > *, .framer-BqF8O .framer-xg1pvu > *, .framer-BqF8O .framer-19wq95b > *, .framer-BqF8O .framer-1qwey1i > *, .framer-BqF8O .framer-14d07zl > *, .framer-BqF8O .framer-7prip5 > *, .framer-BqF8O .framer-vouvvv > *, .framer-BqF8O .framer-14v325w > *, .framer-BqF8O .framer-s8qvgg > *, .framer-BqF8O .framer-1434a8i > *, .framer-BqF8O .framer-6kwjik > *, .framer-BqF8O .framer-vipqdd > *, .framer-BqF8O .framer-9j6y3v > *, .framer-BqF8O .framer-1431j9r > *, .framer-BqF8O .framer-hevavu > *, .framer-BqF8O .framer-x3dnpb > *, .framer-BqF8O .framer-i420v3 > *, .framer-BqF8O .framer-4jmf30 > *, .framer-BqF8O .framer-64bfeb > *, .framer-BqF8O .framer-1ne94af > *, .framer-BqF8O .framer-12y8dqd > *, .framer-BqF8O .framer-1rlbyh2 > *, .framer-BqF8O .framer-ope68j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BqF8O .framer-jx0221 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-BqF8O .framer-1wcnqzw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BqF8O .framer-o3bvzj > *, .framer-BqF8O .framer-endtnw > *, .framer-BqF8O .framer-2kwie > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-BqF8O .hidden-1eaejtm { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-BqF8O .hidden-xo028q { display: none !important; } .${metadata.bodyClassName}-framer-BqF8O { background: rgb(255, 255, 255); } .framer-BqF8O.framer-1eaejtm { width: 810px; } .framer-BqF8O .framer-5wvwrt-container, .framer-BqF8O .framer-15i51lo { order: 0; } .framer-BqF8O .framer-wsqo7, .framer-BqF8O .framer-1r3hg62-container { order: 3; } .framer-BqF8O .framer-1iwb5jt { height: var(--framer-aspect-ratio-supported, 327px); } .framer-BqF8O .framer-1y4efly { order: 1; } .framer-BqF8O .framer-lfvvg0 { gap: 30px; } .framer-BqF8O .framer-jx0221 { gap: 30px; order: 2; padding: 182px 15px 182px 15px; } .framer-BqF8O .framer-146slmo, .framer-BqF8O .framer-oihfx6, .framer-BqF8O .framer-3wauq8, .framer-BqF8O .framer-lc3ig8 { height: var(--framer-aspect-ratio-supported, 430px); } .framer-BqF8O .framer-8ii1an, .framer-BqF8O .framer-1vw1gzg { height: var(--framer-aspect-ratio-supported, 483px); } .framer-BqF8O .framer-c9a1w6, .framer-BqF8O .framer-1n7ap44 { height: var(--framer-aspect-ratio-supported, 452px); } .framer-BqF8O .framer-1sw46rz, .framer-BqF8O .framer-3vmnv9 { height: var(--framer-aspect-ratio-supported, 388px); } .framer-BqF8O .framer-1mv3t5t-container, .framer-BqF8O .framer-1f2itw6-container, .framer-BqF8O .framer-1p81esh-container, .framer-BqF8O .framer-xnogc0-container { height: var(--framer-aspect-ratio-supported, 377px); } .framer-BqF8O .framer-2fetjs, .framer-BqF8O .framer-trnljs { height: var(--framer-aspect-ratio-supported, 309px); } .framer-BqF8O .framer-c5etwj, .framer-BqF8O .framer-1yz0jod, .framer-BqF8O .framer-2kwie { height: var(--framer-aspect-ratio-supported, 305px); } .framer-BqF8O .framer-7y7fjd { height: var(--framer-aspect-ratio-supported, 306px); } .framer-BqF8O .framer-endtnw { height: var(--framer-aspect-ratio-supported, 307px); } .framer-BqF8O .framer-15spej6, .framer-BqF8O .framer-1163eth, .framer-BqF8O .framer-1cqm1yb, .framer-BqF8O .framer-3bai0c, .framer-BqF8O .framer-19wq95b, .framer-BqF8O .framer-1qwey1i { aspect-ratio: 1.1578947368421053 / 1; height: var(--framer-aspect-ratio-supported, 285px); } .framer-BqF8O .framer-xclppi, .framer-BqF8O .framer-vd6bnz { height: var(--framer-aspect-ratio-supported, 462px); } .framer-BqF8O .framer-1jpqsu9 { aspect-ratio: 0.772256728778468 / 1; flex: 1.3 0 0px; height: var(--framer-aspect-ratio-supported, 483px); } .framer-BqF8O .framer-tgwiht { height: var(--framer-aspect-ratio-supported, 360px); } .framer-BqF8O .framer-1t5rcau { aspect-ratio: 2.0303030303030303 / 1; height: var(--framer-aspect-ratio-supported, 330px); } .framer-BqF8O .framer-1rpnuer-container, .framer-BqF8O .framer-wbkjeh { height: var(--framer-aspect-ratio-supported, 407px); } .framer-BqF8O .framer-kwqhs5, .framer-BqF8O .framer-vps881 { aspect-ratio: 0.9325 / 1; height: var(--framer-aspect-ratio-supported, 400px); } .framer-BqF8O .framer-gojxxl { height: var(--framer-aspect-ratio-supported, 243px); } .framer-BqF8O .framer-9rtj1m { aspect-ratio: 1.488888888888889 / 1; height: var(--framer-aspect-ratio-supported, 450px); } .framer-BqF8O .framer-o0dxhc, .framer-BqF8O .framer-dcvknv, .framer-BqF8O .framer-1d0f129 { aspect-ratio: unset; height: min-content; } .framer-BqF8O .framer-1r5bfth, .framer-BqF8O .framer-xrr1q9-container { height: var(--framer-aspect-ratio-supported, 390px); } .framer-BqF8O .framer-4ifdeb-container, .framer-BqF8O .framer-1qqnjvx-container { height: var(--framer-aspect-ratio-supported, 375px); } .framer-BqF8O .framer-cyi1eq { height: var(--framer-aspect-ratio-supported, 406px); } .framer-BqF8O .framer-wgbcgc { height: var(--framer-aspect-ratio-supported, 484px); } .framer-BqF8O .framer-ko93ou, .framer-BqF8O .framer-11p564l, .framer-BqF8O .framer-1i21z8o, .framer-BqF8O .framer-1ewh545, .framer-BqF8O .framer-14rvoxw, .framer-BqF8O .framer-1r9ydkl, .framer-BqF8O .framer-zaemkb, .framer-BqF8O .framer-19t3r9i, .framer-BqF8O .framer-ljdqow, .framer-BqF8O .framer-nbqv7f, .framer-BqF8O .framer-1ctbdzc, .framer-BqF8O .framer-jxtg56, .framer-BqF8O .framer-re6bbo { aspect-ratio: 1.9142857142857144 / 1; height: var(--framer-aspect-ratio-supported, 350px); } .framer-BqF8O .framer-ztn3w7, .framer-BqF8O .framer-cspmqc, .framer-BqF8O .framer-bg5h2m, .framer-BqF8O .framer-1c7fpvg, .framer-BqF8O .framer-2sgape, .framer-BqF8O .framer-kftshh, .framer-BqF8O .framer-83w3pe, .framer-BqF8O .framer-jted0q, .framer-BqF8O .framer-1omtnbe, .framer-BqF8O .framer-14p3hg6 { aspect-ratio: 1.1578947368421053 / 1; height: var(--framer-aspect-ratio-supported, 173px); } .framer-BqF8O .framer-1c8fbi2 { aspect-ratio: 1.558139534883721 / 1; height: var(--framer-aspect-ratio-supported, 128px); } .framer-BqF8O .framer-1fz0wtr, .framer-BqF8O .framer-tzo23r { height: var(--framer-aspect-ratio-supported, 453px); } .framer-BqF8O .framer-elj15m { aspect-ratio: 1.763157894736842 / 1; } .framer-BqF8O .framer-fxu09x, .framer-BqF8O .framer-16mynhs { aspect-ratio: 1.4075471698113207 / 1; height: var(--framer-aspect-ratio-supported, 142px); } .framer-BqF8O .framer-k4i276-container { height: var(--framer-aspect-ratio-supported, 378px); } .framer-BqF8O .framer-6vwy9z, .framer-BqF8O .framer-il8o1t, .framer-BqF8O .framer-3jp1f6, .framer-BqF8O .framer-1wizirb { height: var(--framer-aspect-ratio-supported, 380px); } .framer-BqF8O .framer-f2209g, .framer-BqF8O .framer-3hamcq, .framer-BqF8O .framer-1v0xixp, .framer-BqF8O .framer-18anxky { height: var(--framer-aspect-ratio-supported, 381px); } .framer-BqF8O .framer-ng676d, .framer-BqF8O .framer-15qu0z4-container, .framer-BqF8O .framer-1rk43ll { height: var(--framer-aspect-ratio-supported, 498px); } .framer-BqF8O .framer-bzlbae { aspect-ratio: 0.8103448275862069 / 1; height: var(--framer-aspect-ratio-supported, 290px); } .framer-BqF8O .framer-ee8wj5-container, .framer-BqF8O .framer-3emf4z, .framer-BqF8O .framer-1yu4o7y, .framer-BqF8O .framer-1izp1dx, .framer-BqF8O .framer-1xk5kgr, .framer-BqF8O .framer-16bhdxx { aspect-ratio: unset; flex: 1 0 0px; height: 1px; } .framer-BqF8O .framer-ldvftw, .framer-BqF8O .framer-xxmk5y, .framer-BqF8O .framer-15jlmos { aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 290px); } .framer-BqF8O .framer-1r3fy7o, .framer-BqF8O .framer-1ebsshq, .framer-BqF8O .framer-1xqgcwv { aspect-ratio: 0.8125 / 1; height: var(--framer-aspect-ratio-supported, 289px); } .framer-BqF8O .framer-cpo9v1, .framer-BqF8O .framer-mygpei, .framer-BqF8O .framer-o474tk, .framer-BqF8O .framer-js3r4, .framer-BqF8O .framer-11xhzmx { align-self: unset; height: min-content; } .framer-BqF8O .framer-5scvc9 { aspect-ratio: 1.558139534883721 / 1; height: var(--framer-aspect-ratio-supported, 430px); } .framer-BqF8O .framer-1782ozs, .framer-BqF8O .framer-5qx4yn { aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 407px); } .framer-BqF8O .framer-14egw6i, .framer-BqF8O .framer-iofg4t { aspect-ratio: 0.8125 / 1; height: var(--framer-aspect-ratio-supported, 407px); } .framer-BqF8O .framer-y7y4yq { height: var(--framer-aspect-ratio-supported, 420px); } .framer-BqF8O .framer-14us3bo { height: var(--framer-aspect-ratio-supported, 423px); } .framer-BqF8O .framer-1ljj8h4 { aspect-ratio: 0.6685714285714286 / 1; height: var(--framer-aspect-ratio-supported, 299px); } .framer-BqF8O .framer-yrzxq6 { aspect-ratio: 0.6714285714285714 / 1; height: var(--framer-aspect-ratio-supported, 298px); } .framer-BqF8O .framer-x48nuj { height: var(--framer-aspect-ratio-supported, 499px); } .framer-BqF8O .framer-3buq89, .framer-BqF8O .framer-yxjdqu { aspect-ratio: 0.7384615384615385 / 1; height: var(--framer-aspect-ratio-supported, 275px); } .framer-BqF8O .framer-12w3ovy, .framer-BqF8O .framer-d6j7ul { aspect-ratio: 1.6618181818181819 / 1; height: var(--framer-aspect-ratio-supported, 275px); } .framer-BqF8O .framer-1cpilgy, .framer-BqF8O .framer-1mihl0p { aspect-ratio: 1.6618181818181819 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 275px); } .framer-BqF8O .framer-1fht907 { aspect-ratio: 0.8103448275862069 / 1; height: var(--framer-aspect-ratio-supported, 408px); } .framer-BqF8O .framer-1amg3w7 { aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 408px); } .framer-BqF8O .framer-1p4b8z3 { aspect-ratio: 0.8125 / 1; height: var(--framer-aspect-ratio-supported, 406px); } .framer-BqF8O .framer-qrhmq4 { aspect-ratio: 0.8103448275862069 / 1; height: var(--framer-aspect-ratio-supported, 267px); } .framer-BqF8O .framer-16s4g3f { aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 267px); } .framer-BqF8O .framer-1b9pgg2 { align-self: unset; aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 267px); } .framer-BqF8O .framer-1hffg3 { aspect-ratio: 0.8125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 267px); } .framer-BqF8O .framer-1xjuw0r, .framer-BqF8O .framer-1q2n35u, .framer-BqF8O .framer-jclpvb, .framer-BqF8O .framer-ey4ijo, .framer-BqF8O .framer-kp5d7b, .framer-BqF8O .framer-14oyy0b, .framer-BqF8O .framer-ev4tow, .framer-BqF8O .framer-ip4tzu { aspect-ratio: 1.32 / 1; height: var(--framer-aspect-ratio-supported, 250px); } .framer-BqF8O .framer-rmx0ay { align-self: unset; aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 268px); } .framer-BqF8O .framer-9eijhw { aspect-ratio: 0.8125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 266px); } .framer-BqF8O .framer-1bzvipz { aspect-ratio: 0.8103448275862069 / 1; height: var(--framer-aspect-ratio-supported, 268px); } .framer-BqF8O .framer-1pdv3wr { aspect-ratio: 0.8096885813148789 / 1; height: var(--framer-aspect-ratio-supported, 268px); } .framer-BqF8O .framer-y1m61q, .framer-BqF8O .framer-9x9flv { aspect-ratio: 1.2 / 1; height: var(--framer-aspect-ratio-supported, 275px); } .framer-BqF8O .framer-7ejxil-container { height: var(--framer-aspect-ratio-supported, 376px); } .framer-BqF8O .framer-1bniike { aspect-ratio: 1.4075471698113207 / 1; height: var(--framer-aspect-ratio-supported, 265px); } .framer-BqF8O .framer-gnfadx, .framer-BqF8O .framer-40ai40, .framer-BqF8O .framer-qco8nt, .framer-BqF8O .framer-crdhi0, .framer-BqF8O .framer-1xgz7tk, .framer-BqF8O .framer-60ci3z, .framer-BqF8O .framer-14km5ja, .framer-BqF8O .framer-116lqjs, .framer-BqF8O .framer-vudui9, .framer-BqF8O .framer-1ieih8l, .framer-BqF8O .framer-35oqe6, .framer-BqF8O .framer-1uoi6r5, .framer-BqF8O .framer-14d07zl, .framer-BqF8O .framer-7prip5, .framer-BqF8O .framer-vouvvv, .framer-BqF8O .framer-14v325w, .framer-BqF8O .framer-s8qvgg, .framer-BqF8O .framer-1434a8i, .framer-BqF8O .framer-6kwjik, .framer-BqF8O .framer-vipqdd, .framer-BqF8O .framer-9j6y3v, .framer-BqF8O .framer-1431j9r, .framer-BqF8O .framer-hevavu, .framer-BqF8O .framer-x3dnpb, .framer-BqF8O .framer-64bfeb, .framer-BqF8O .framer-1ne94af, .framer-BqF8O .framer-12y8dqd { aspect-ratio: 1.1578947368421053 / 1; height: var(--framer-aspect-ratio-supported, 187px); } .framer-BqF8O .framer-1rv4jyv, .framer-BqF8O .framer-10souw, .framer-BqF8O .framer-tjc7pl { aspect-ratio: 1.1578947368421053 / 1; height: var(--framer-aspect-ratio-supported, 188px); } .framer-BqF8O .framer-xpmnkw, .framer-BqF8O .framer-4ve2ql { height: var(--framer-aspect-ratio-supported, 374px); } .framer-BqF8O .framer-1rlbyh2 { aspect-ratio: 1.0070175438596491 / 1; height: var(--framer-aspect-ratio-supported, 199px); } .framer-BqF8O .framer-ope68j { aspect-ratio: 1.3087719298245615 / 1; height: var(--framer-aspect-ratio-supported, 153px); } .framer-BqF8O .framer-dw0gso-container { order: 4; } .framer-BqF8O .framer-1x56o30-container { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BqF8O .framer-lfvvg0, .framer-BqF8O .framer-jx0221 { gap: 0px; } .framer-BqF8O .framer-lfvvg0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BqF8O .framer-lfvvg0 > :first-child { margin-top: 0px; } .framer-BqF8O .framer-lfvvg0 > :last-child { margin-bottom: 0px; } .framer-BqF8O .framer-jx0221 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-BqF8O .framer-jx0221 > :first-child { margin-left: 0px; } .framer-BqF8O .framer-jx0221 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-BqF8O .hidden-19kljla { display: none !important; } .${metadata.bodyClassName}-framer-BqF8O { background: rgb(255, 255, 255); } .framer-BqF8O.framer-1eaejtm { width: 390px; } .framer-BqF8O .framer-5wvwrt-container { order: 0; } .framer-BqF8O .framer-wsqo7 { order: 3; } .framer-BqF8O .framer-15i51lo { padding: 70px 15px 30px 15px; } .framer-BqF8O .framer-1iwb5jt { aspect-ratio: 0.7346938775510204 / 1; } .framer-BqF8O .framer-1y4efly { padding: 0px 15px 60px 15px; } .framer-BqF8O .framer-kh2c5i { flex-direction: column; gap: 30px; } .framer-BqF8O .framer-uaggly, .framer-BqF8O .framer-1yupm00, .framer-BqF8O .framer-k4isba, .framer-BqF8O .framer-g8salz, .framer-BqF8O .framer-162qu1y, .framer-BqF8O .framer-1v1h3ao, .framer-BqF8O .framer-1h0fv5a, .framer-BqF8O .framer-1i127ir, .framer-BqF8O .framer-yn97cl, .framer-BqF8O .framer-bzlbae, .framer-BqF8O .framer-ldvftw, .framer-BqF8O .framer-xxmk5y, .framer-BqF8O .framer-1782ozs, .framer-BqF8O .framer-5qx4yn, .framer-BqF8O .framer-1amg3w7, .framer-BqF8O .framer-1q2n35u, .framer-BqF8O .framer-ey4ijo, .framer-BqF8O .framer-14oyy0b, .framer-BqF8O .framer-ip4tzu, .framer-BqF8O .framer-9x9flv { flex: none; width: 100%; } .framer-BqF8O .framer-1lyq7yh, .framer-BqF8O .framer-90gvyc { max-width: unset; } .framer-BqF8O .framer-lfvvg0 { flex: none; gap: 30px; width: 100%; } .framer-BqF8O .framer-jx0221 { gap: 16px; padding: 0px 15px 102px 15px; } .framer-BqF8O .framer-1wcnqzw { gap: 15px; } .framer-BqF8O .framer-146slmo, .framer-BqF8O .framer-oihfx6, .framer-BqF8O .framer-3wauq8, .framer-BqF8O .framer-lc3ig8 { height: var(--framer-aspect-ratio-supported, 231px); } .framer-BqF8O .framer-o0j5a5, .framer-BqF8O .framer-1lasrv8, .framer-BqF8O .framer-1buksih, .framer-BqF8O .framer-17yhztz, .framer-BqF8O .framer-j57aou, .framer-BqF8O .framer-x8zrja, .framer-BqF8O .framer-rdstc7, .framer-BqF8O .framer-13d39x9, .framer-BqF8O .framer-18f9d2x, .framer-BqF8O .framer-1cfrfzb, .framer-BqF8O .framer-m98pnn, .framer-BqF8O .framer-1ydm6h4, .framer-BqF8O .framer-1b3r8kn, .framer-BqF8O .framer-w41cv9, .framer-BqF8O .framer-1lx0h3a, .framer-BqF8O .framer-1moydod, .framer-BqF8O .framer-1d1ko15, .framer-BqF8O .framer-fw7z16, .framer-BqF8O .framer-dc2w7m, .framer-BqF8O .framer-1iuanjk, .framer-BqF8O .framer-urm7mp, .framer-BqF8O .framer-1knd9z0, .framer-BqF8O .framer-fuzk5n, .framer-BqF8O .framer-yzwwkz, .framer-BqF8O .framer-orokjh, .framer-BqF8O .framer-v2u50j, .framer-BqF8O .framer-1yhfp6u, .framer-BqF8O .framer-1jw11yd, .framer-BqF8O .framer-14loiy5, .framer-BqF8O .framer-327k2r, .framer-BqF8O .framer-1i97zwk, .framer-BqF8O .framer-64ei5r, .framer-BqF8O .framer-1o4dm88, .framer-BqF8O .framer-1wk6hdc, .framer-BqF8O .framer-fon2fi, .framer-BqF8O .framer-ccph4h, .framer-BqF8O .framer-493wqk, .framer-BqF8O .framer-1dgdv2r, .framer-BqF8O .framer-1ew8kmk, .framer-BqF8O .framer-1biie0n, .framer-BqF8O .framer-4gthn6, .framer-BqF8O .framer-uwjchh, .framer-BqF8O .framer-1si4em, .framer-BqF8O .framer-gkyumu, .framer-BqF8O .framer-cnwe8t, .framer-BqF8O .framer-1jq4cz0, .framer-BqF8O .framer-27kvcw, .framer-BqF8O .framer-terevk, .framer-BqF8O .framer-pa7ypx, .framer-BqF8O .framer-hbyfz2, .framer-BqF8O .framer-1311nij, .framer-BqF8O .framer-z0wyna, .framer-BqF8O .framer-37vspg, .framer-BqF8O .framer-txg4ek, .framer-BqF8O .framer-mjbr0n, .framer-BqF8O .framer-vy964v, .framer-BqF8O .framer-5qgx7j, .framer-BqF8O .framer-q8vr4l, .framer-BqF8O .framer-1wjlkp0, .framer-BqF8O .framer-jkspr, .framer-BqF8O .framer-2sgjf5, .framer-BqF8O .framer-dhzlow, .framer-BqF8O .framer-1sx6p1v, .framer-BqF8O .framer-1facrek, .framer-BqF8O .framer-k72s49, .framer-BqF8O .framer-gx9kbz, .framer-BqF8O .framer-1mqd8j, .framer-BqF8O .framer-w03rcl, .framer-BqF8O .framer-7vfr1a, .framer-BqF8O .framer-79ditx, .framer-BqF8O .framer-14e8hv6, .framer-BqF8O .framer-obl3t9, .framer-BqF8O .framer-11s2wn9, .framer-BqF8O .framer-28j7iv, .framer-BqF8O .framer-1fe02hx { flex-direction: column; gap: 15px; } .framer-BqF8O .framer-8ii1an { flex: none; height: var(--framer-aspect-ratio-supported, 467px); width: 100%; } .framer-BqF8O .framer-1qabvvo, .framer-BqF8O .framer-kilujj, .framer-BqF8O .framer-vwxyn8, .framer-BqF8O .framer-d0riq5, .framer-BqF8O .framer-10fuu95, .framer-BqF8O .framer-tod38r, .framer-BqF8O .framer-1i8t9ud, .framer-BqF8O .framer-dnwdqg, .framer-BqF8O .framer-1pqb7va, .framer-BqF8O .framer-8p8589, .framer-BqF8O .framer-1cnvwp7, .framer-BqF8O .framer-lpn71u, .framer-BqF8O .framer-1b4wl2i, .framer-BqF8O .framer-1cytxks, .framer-BqF8O .framer-cpo9v1, .framer-BqF8O .framer-mygpei, .framer-BqF8O .framer-o474tk, .framer-BqF8O .framer-js3r4, .framer-BqF8O .framer-11xhzmx, .framer-BqF8O .framer-ay3r2s, .framer-BqF8O .framer-1hy6p0x, .framer-BqF8O .framer-10woi7q, .framer-BqF8O .framer-1cmznqf, .framer-BqF8O .framer-1hndz33 { align-self: unset; flex: none; height: min-content; padding: 0px 0px 60px 0px; width: 100%; } .framer-BqF8O .framer-c9a1w6 { flex: none; height: var(--framer-aspect-ratio-supported, 436px); width: 100%; } .framer-BqF8O .framer-1sw46rz { flex: none; height: var(--framer-aspect-ratio-supported, 375px); width: 100%; } .framer-BqF8O .framer-1mv3t5t-container, .framer-BqF8O .framer-1f2itw6-container, .framer-BqF8O .framer-1p81esh-container, .framer-BqF8O .framer-4ifdeb-container, .framer-BqF8O .framer-7ejxil-container { height: var(--framer-aspect-ratio-supported, 202px); } .framer-BqF8O .framer-o1952l, .framer-BqF8O .framer-14uouqi { flex: none; padding: 0px 0px 60px 0px; width: 100%; } .framer-BqF8O .framer-2fetjs, .framer-BqF8O .framer-trnljs { height: var(--framer-aspect-ratio-supported, 166px); } .framer-BqF8O .framer-c5etwj, .framer-BqF8O .framer-1yz0jod { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 159px); } .framer-BqF8O .framer-7y7fjd { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 161px); } .framer-BqF8O .framer-endtnw { height: var(--framer-aspect-ratio-supported, 161px); } .framer-BqF8O .framer-2kwie { height: var(--framer-aspect-ratio-supported, 159px); } .framer-BqF8O .framer-15spej6, .framer-BqF8O .framer-1163eth { aspect-ratio: 0.96 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 183px); } .framer-BqF8O .framer-a4g8fd, .framer-BqF8O .framer-92ogud { aspect-ratio: 0.96 / 1; height: var(--framer-aspect-ratio-supported, 183px); } .framer-BqF8O .framer-xclppi, .framer-BqF8O .framer-tgwiht, .framer-BqF8O .framer-gojxxl, .framer-BqF8O .framer-ng676d, .framer-BqF8O .framer-x48nuj { aspect-ratio: unset; flex: none; height: min-content; padding: 0px 0px 60px 0px; width: 100%; } .framer-BqF8O .framer-vd6bnz { aspect-ratio: 0.72 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); width: 100%; } .framer-BqF8O .framer-1jpqsu9, .framer-BqF8O .framer-1fz0wtr, .framer-BqF8O .framer-1n7ap44, .framer-BqF8O .framer-14us3bo { aspect-ratio: 0.7728613569321534 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 465px); width: 100%; } .framer-BqF8O .framer-1t5rcau { aspect-ratio: 1.945945945945946 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 185px); width: 100%; } .framer-BqF8O .framer-1rpnuer-container, .framer-BqF8O .framer-wbkjeh { height: var(--framer-aspect-ratio-supported, 219px); } .framer-BqF8O .framer-kwqhs5, .framer-BqF8O .framer-vps881 { aspect-ratio: 1.0285714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 350px); width: 100%; } .framer-BqF8O .framer-9rtj1m { aspect-ratio: 1.309090909090909 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 275px); width: 100%; } .framer-BqF8O .framer-o0dxhc, .framer-BqF8O .framer-15jlmos, .framer-BqF8O .framer-12w3ovy, .framer-BqF8O .framer-1fht907, .framer-BqF8O .framer-qrhmq4, .framer-BqF8O .framer-16s4g3f, .framer-BqF8O .framer-1xjuw0r, .framer-BqF8O .framer-d6j7ul, .framer-BqF8O .framer-jclpvb, .framer-BqF8O .framer-1bzvipz, .framer-BqF8O .framer-kp5d7b, .framer-BqF8O .framer-ev4tow, .framer-BqF8O .framer-y1m61q, .framer-BqF8O .framer-dcvknv, .framer-BqF8O .framer-1d0f129 { aspect-ratio: unset; flex: none; height: min-content; width: 100%; } .framer-BqF8O .framer-1r5bfth, .framer-BqF8O .framer-xrr1q9-container { height: var(--framer-aspect-ratio-supported, 210px); } .framer-BqF8O .framer-cb0ljc, .framer-BqF8O .framer-e75cv3, .framer-BqF8O .framer-1b9pgg2, .framer-BqF8O .framer-rmx0ay { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-BqF8O .framer-cyi1eq { height: var(--framer-aspect-ratio-supported, 218px); } .framer-BqF8O .framer-fowkm5, .framer-BqF8O .framer-scw7fv, .framer-BqF8O .framer-1cbikl9, .framer-BqF8O .framer-i420v3 { align-self: unset; flex: none; height: 18px; padding: 0px 0px 5px 0px; width: 100%; } .framer-BqF8O .framer-1hcorx4, .framer-BqF8O .framer-s9r0jq, .framer-BqF8O .framer-fig3sp, .framer-BqF8O .framer-ca1pbf { width: 360px; } .framer-BqF8O .framer-3borcd, .framer-BqF8O .framer-1ujcex4, .framer-BqF8O .framer-xg1pvu, .framer-BqF8O .framer-4jmf30 { flex: none; padding: 0px 0px 5px 0px; width: 100%; } .framer-BqF8O .framer-1qqnjvx-container, .framer-BqF8O .framer-xpmnkw, .framer-BqF8O .framer-4ve2ql { height: var(--framer-aspect-ratio-supported, 201px); } .framer-BqF8O .framer-i6n81g, .framer-BqF8O .framer-1ehil2l { aspect-ratio: 0.7728613569321534 / 1; flex: none; width: 100%; } .framer-BqF8O .framer-wgbcgc, .framer-BqF8O .framer-1vw1gzg, .framer-BqF8O .framer-tzo23r, .framer-BqF8O .framer-1xbqz9i, .framer-BqF8O .framer-3vmnv9, .framer-BqF8O .framer-y7y4yq, .framer-BqF8O .framer-1aap52g { aspect-ratio: 0.7728613569321534 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 466px); width: 100%; } .framer-BqF8O .framer-ko93ou, .framer-BqF8O .framer-11p564l, .framer-BqF8O .framer-1i21z8o, .framer-BqF8O .framer-1ewh545, .framer-BqF8O .framer-14rvoxw, .framer-BqF8O .framer-1r9ydkl, .framer-BqF8O .framer-zaemkb, .framer-BqF8O .framer-19t3r9i, .framer-BqF8O .framer-ljdqow, .framer-BqF8O .framer-nbqv7f, .framer-BqF8O .framer-1ctbdzc, .framer-BqF8O .framer-jxtg56, .framer-BqF8O .framer-re6bbo { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 200px); } .framer-BqF8O .framer-ztn3w7, .framer-BqF8O .framer-bg5h2m, .framer-BqF8O .framer-2sgape, .framer-BqF8O .framer-kftshh, .framer-BqF8O .framer-jted0q, .framer-BqF8O .framer-1ljj8h4, .framer-BqF8O .framer-1omtnbe, .framer-BqF8O .framer-1rlbyh2 { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 208px); width: 100%; } .framer-BqF8O .framer-87pbr, .framer-BqF8O .framer-szk3xz, .framer-BqF8O .framer-fuuwhv, .framer-BqF8O .framer-tzsbk1, .framer-BqF8O .framer-101w84i, .framer-BqF8O .framer-on4s4k, .framer-BqF8O .framer-17say0f, .framer-BqF8O .framer-16gz2rv, .framer-BqF8O .framer-1lvi0sf, .framer-BqF8O .framer-tsw25o, .framer-BqF8O .framer-kqcuhj, .framer-BqF8O .framer-1ddsdag, .framer-BqF8O .framer-13di54r { aspect-ratio: 0.96 / 1; height: var(--framer-aspect-ratio-supported, 208px); } .framer-BqF8O .framer-cspmqc, .framer-BqF8O .framer-1c7fpvg, .framer-BqF8O .framer-83w3pe, .framer-BqF8O .framer-yrzxq6, .framer-BqF8O .framer-14p3hg6, .framer-BqF8O .framer-ope68j { aspect-ratio: 1.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 167px); width: 100%; } .framer-BqF8O .framer-1cqm1yb, .framer-BqF8O .framer-1pdv3wr, .framer-BqF8O .framer-gnfadx, .framer-BqF8O .framer-1rv4jyv, .framer-BqF8O .framer-10souw, .framer-BqF8O .framer-tjc7pl, .framer-BqF8O .framer-crdhi0, .framer-BqF8O .framer-1xgz7tk, .framer-BqF8O .framer-60ci3z, .framer-BqF8O .framer-14km5ja, .framer-BqF8O .framer-116lqjs, .framer-BqF8O .framer-vudui9, .framer-BqF8O .framer-1ieih8l, .framer-BqF8O .framer-35oqe6, .framer-BqF8O .framer-1uoi6r5, .framer-BqF8O .framer-19wq95b, .framer-BqF8O .framer-1qwey1i, .framer-BqF8O .framer-14d07zl, .framer-BqF8O .framer-7prip5, .framer-BqF8O .framer-vouvvv, .framer-BqF8O .framer-14v325w, .framer-BqF8O .framer-s8qvgg, .framer-BqF8O .framer-1434a8i, .framer-BqF8O .framer-6kwjik, .framer-BqF8O .framer-vipqdd, .framer-BqF8O .framer-9j6y3v, .framer-BqF8O .framer-1431j9r, .framer-BqF8O .framer-hevavu, .framer-BqF8O .framer-x3dnpb, .framer-BqF8O .framer-64bfeb, .framer-BqF8O .framer-1ne94af, .framer-BqF8O .framer-12y8dqd { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 375px); width: 100%; } .framer-BqF8O .framer-3bai0c, .framer-BqF8O .framer-40ai40, .framer-BqF8O .framer-qco8nt { aspect-ratio: 1.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); width: 100%; } .framer-BqF8O .framer-1c8fbi2 { aspect-ratio: 1.44 / 1; height: var(--framer-aspect-ratio-supported, 139px); } .framer-BqF8O .framer-1ax6cld { aspect-ratio: 0.7728613569321534 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 259px); width: 100%; } .framer-BqF8O .framer-elj15m { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 111px); } .framer-BqF8O .framer-fxu09x, .framer-BqF8O .framer-16mynhs { aspect-ratio: 1.3584905660377358 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 147px); width: 100%; } .framer-BqF8O .framer-k4i276-container, .framer-BqF8O .framer-xnogc0-container { height: var(--framer-aspect-ratio-supported, 203px); } .framer-BqF8O .framer-6vwy9z, .framer-BqF8O .framer-il8o1t, .framer-BqF8O .framer-f2209g, .framer-BqF8O .framer-3jp1f6, .framer-BqF8O .framer-1wizirb, .framer-BqF8O .framer-3hamcq, .framer-BqF8O .framer-1v0xixp { height: var(--framer-aspect-ratio-supported, 205px); } .framer-BqF8O .framer-15qu0z4-container, .framer-BqF8O .framer-1rk43ll { height: var(--framer-aspect-ratio-supported, 480px); } .framer-BqF8O .framer-ee8wj5-container { aspect-ratio: 0.9137055837563451 / 1; height: var(--framer-aspect-ratio-supported, 394px); } .framer-BqF8O .framer-1r3fy7o { height: var(--framer-aspect-ratio-supported, 396px); } .framer-BqF8O .framer-5scvc9 { aspect-ratio: 1.44 / 1; height: var(--framer-aspect-ratio-supported, 250px); } .framer-BqF8O .framer-1ebsshq { height: var(--framer-aspect-ratio-supported, 568px); } .framer-BqF8O .framer-1xqgcwv { height: var(--framer-aspect-ratio-supported, 569px); } .framer-BqF8O .framer-14egw6i, .framer-BqF8O .framer-iofg4t { height: var(--framer-aspect-ratio-supported, 424px); } .framer-BqF8O .framer-18anxky { height: var(--framer-aspect-ratio-supported, 204px); } .framer-BqF8O .framer-3buq89, .framer-BqF8O .framer-yxjdqu { aspect-ratio: 0.6545454545454545 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); width: 100%; } .framer-BqF8O .framer-1cpilgy, .framer-BqF8O .framer-1mihl0p { aspect-ratio: 1.44 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); } .framer-BqF8O .framer-cpod9r, .framer-BqF8O .framer-11szl8z, .framer-BqF8O .framer-1k9slcr, .framer-BqF8O .framer-1ch49t3, .framer-BqF8O .framer-16q1c86, .framer-BqF8O .framer-1mu3r0l, .framer-BqF8O .framer-46mkdr { flex: none; height: 247px; } .framer-BqF8O .framer-1p4b8z3, .framer-BqF8O .framer-1xk5kgr { height: var(--framer-aspect-ratio-supported, 247px); } .framer-BqF8O .framer-3emf4z, .framer-BqF8O .framer-1izp1dx { height: var(--framer-aspect-ratio-supported, 212px); } .framer-BqF8O .framer-1yu4o7y { height: var(--framer-aspect-ratio-supported, 211px); } .framer-BqF8O .framer-9eijhw { aspect-ratio: 1.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); } .framer-BqF8O .framer-1qg2cd2 { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 375px); } .framer-BqF8O .framer-wocaxz-container, .framer-BqF8O .framer-hdka9v { flex: none; height: 375px; } .framer-BqF8O .framer-16bhdxx { height: var(--framer-aspect-ratio-supported, 230px); } .framer-BqF8O .framer-1bniike { aspect-ratio: 1.3584905660377358 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 265px); width: 100%; } .framer-BqF8O .framer-dw0gso-container { order: 4; } .framer-BqF8O .framer-1x56o30-container { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BqF8O .framer-kh2c5i, .framer-BqF8O .framer-lfvvg0, .framer-BqF8O .framer-jx0221, .framer-BqF8O .framer-1wcnqzw, .framer-BqF8O .framer-o0j5a5, .framer-BqF8O .framer-1lasrv8, .framer-BqF8O .framer-1buksih, .framer-BqF8O .framer-17yhztz, .framer-BqF8O .framer-j57aou, .framer-BqF8O .framer-x8zrja, .framer-BqF8O .framer-rdstc7, .framer-BqF8O .framer-13d39x9, .framer-BqF8O .framer-18f9d2x, .framer-BqF8O .framer-1cfrfzb, .framer-BqF8O .framer-m98pnn, .framer-BqF8O .framer-1ydm6h4, .framer-BqF8O .framer-1b3r8kn, .framer-BqF8O .framer-w41cv9, .framer-BqF8O .framer-1lx0h3a, .framer-BqF8O .framer-1moydod, .framer-BqF8O .framer-1d1ko15, .framer-BqF8O .framer-fw7z16, .framer-BqF8O .framer-dc2w7m, .framer-BqF8O .framer-1iuanjk, .framer-BqF8O .framer-urm7mp, .framer-BqF8O .framer-1knd9z0, .framer-BqF8O .framer-fuzk5n, .framer-BqF8O .framer-yzwwkz, .framer-BqF8O .framer-orokjh, .framer-BqF8O .framer-v2u50j, .framer-BqF8O .framer-1yhfp6u, .framer-BqF8O .framer-1jw11yd, .framer-BqF8O .framer-14loiy5, .framer-BqF8O .framer-327k2r, .framer-BqF8O .framer-1i97zwk, .framer-BqF8O .framer-64ei5r, .framer-BqF8O .framer-1o4dm88, .framer-BqF8O .framer-1wk6hdc, .framer-BqF8O .framer-fon2fi, .framer-BqF8O .framer-ccph4h, .framer-BqF8O .framer-493wqk, .framer-BqF8O .framer-1dgdv2r, .framer-BqF8O .framer-1ew8kmk, .framer-BqF8O .framer-1biie0n, .framer-BqF8O .framer-4gthn6, .framer-BqF8O .framer-uwjchh, .framer-BqF8O .framer-1si4em, .framer-BqF8O .framer-gkyumu, .framer-BqF8O .framer-cnwe8t, .framer-BqF8O .framer-1jq4cz0, .framer-BqF8O .framer-27kvcw, .framer-BqF8O .framer-terevk, .framer-BqF8O .framer-pa7ypx, .framer-BqF8O .framer-hbyfz2, .framer-BqF8O .framer-1311nij, .framer-BqF8O .framer-z0wyna, .framer-BqF8O .framer-37vspg, .framer-BqF8O .framer-txg4ek, .framer-BqF8O .framer-mjbr0n, .framer-BqF8O .framer-vy964v, .framer-BqF8O .framer-5qgx7j, .framer-BqF8O .framer-q8vr4l, .framer-BqF8O .framer-1wjlkp0, .framer-BqF8O .framer-jkspr, .framer-BqF8O .framer-2sgjf5, .framer-BqF8O .framer-dhzlow, .framer-BqF8O .framer-1sx6p1v, .framer-BqF8O .framer-1facrek, .framer-BqF8O .framer-k72s49, .framer-BqF8O .framer-gx9kbz, .framer-BqF8O .framer-1mqd8j, .framer-BqF8O .framer-w03rcl, .framer-BqF8O .framer-7vfr1a, .framer-BqF8O .framer-79ditx, .framer-BqF8O .framer-14e8hv6, .framer-BqF8O .framer-obl3t9, .framer-BqF8O .framer-11s2wn9, .framer-BqF8O .framer-28j7iv, .framer-BqF8O .framer-1fe02hx { gap: 0px; } .framer-BqF8O .framer-kh2c5i > *, .framer-BqF8O .framer-lfvvg0 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BqF8O .framer-kh2c5i > :first-child, .framer-BqF8O .framer-lfvvg0 > :first-child, .framer-BqF8O .framer-1wcnqzw > :first-child, .framer-BqF8O .framer-o0j5a5 > :first-child, .framer-BqF8O .framer-1lasrv8 > :first-child, .framer-BqF8O .framer-1buksih > :first-child, .framer-BqF8O .framer-17yhztz > :first-child, .framer-BqF8O .framer-j57aou > :first-child, .framer-BqF8O .framer-x8zrja > :first-child, .framer-BqF8O .framer-rdstc7 > :first-child, .framer-BqF8O .framer-13d39x9 > :first-child, .framer-BqF8O .framer-18f9d2x > :first-child, .framer-BqF8O .framer-1cfrfzb > :first-child, .framer-BqF8O .framer-m98pnn > :first-child, .framer-BqF8O .framer-1ydm6h4 > :first-child, .framer-BqF8O .framer-1b3r8kn > :first-child, .framer-BqF8O .framer-w41cv9 > :first-child, .framer-BqF8O .framer-1lx0h3a > :first-child, .framer-BqF8O .framer-1moydod > :first-child, .framer-BqF8O .framer-1d1ko15 > :first-child, .framer-BqF8O .framer-fw7z16 > :first-child, .framer-BqF8O .framer-dc2w7m > :first-child, .framer-BqF8O .framer-1iuanjk > :first-child, .framer-BqF8O .framer-urm7mp > :first-child, .framer-BqF8O .framer-1knd9z0 > :first-child, .framer-BqF8O .framer-fuzk5n > :first-child, .framer-BqF8O .framer-yzwwkz > :first-child, .framer-BqF8O .framer-orokjh > :first-child, .framer-BqF8O .framer-v2u50j > :first-child, .framer-BqF8O .framer-1yhfp6u > :first-child, .framer-BqF8O .framer-1jw11yd > :first-child, .framer-BqF8O .framer-14loiy5 > :first-child, .framer-BqF8O .framer-327k2r > :first-child, .framer-BqF8O .framer-1i97zwk > :first-child, .framer-BqF8O .framer-64ei5r > :first-child, .framer-BqF8O .framer-1o4dm88 > :first-child, .framer-BqF8O .framer-1wk6hdc > :first-child, .framer-BqF8O .framer-fon2fi > :first-child, .framer-BqF8O .framer-ccph4h > :first-child, .framer-BqF8O .framer-493wqk > :first-child, .framer-BqF8O .framer-1dgdv2r > :first-child, .framer-BqF8O .framer-1ew8kmk > :first-child, .framer-BqF8O .framer-1biie0n > :first-child, .framer-BqF8O .framer-4gthn6 > :first-child, .framer-BqF8O .framer-uwjchh > :first-child, .framer-BqF8O .framer-1si4em > :first-child, .framer-BqF8O .framer-gkyumu > :first-child, .framer-BqF8O .framer-cnwe8t > :first-child, .framer-BqF8O .framer-1jq4cz0 > :first-child, .framer-BqF8O .framer-27kvcw > :first-child, .framer-BqF8O .framer-terevk > :first-child, .framer-BqF8O .framer-pa7ypx > :first-child, .framer-BqF8O .framer-hbyfz2 > :first-child, .framer-BqF8O .framer-1311nij > :first-child, .framer-BqF8O .framer-z0wyna > :first-child, .framer-BqF8O .framer-37vspg > :first-child, .framer-BqF8O .framer-txg4ek > :first-child, .framer-BqF8O .framer-mjbr0n > :first-child, .framer-BqF8O .framer-vy964v > :first-child, .framer-BqF8O .framer-5qgx7j > :first-child, .framer-BqF8O .framer-q8vr4l > :first-child, .framer-BqF8O .framer-1wjlkp0 > :first-child, .framer-BqF8O .framer-jkspr > :first-child, .framer-BqF8O .framer-2sgjf5 > :first-child, .framer-BqF8O .framer-dhzlow > :first-child, .framer-BqF8O .framer-1sx6p1v > :first-child, .framer-BqF8O .framer-1facrek > :first-child, .framer-BqF8O .framer-k72s49 > :first-child, .framer-BqF8O .framer-gx9kbz > :first-child, .framer-BqF8O .framer-1mqd8j > :first-child, .framer-BqF8O .framer-w03rcl > :first-child, .framer-BqF8O .framer-7vfr1a > :first-child, .framer-BqF8O .framer-79ditx > :first-child, .framer-BqF8O .framer-14e8hv6 > :first-child, .framer-BqF8O .framer-obl3t9 > :first-child, .framer-BqF8O .framer-11s2wn9 > :first-child, .framer-BqF8O .framer-28j7iv > :first-child, .framer-BqF8O .framer-1fe02hx > :first-child { margin-top: 0px; } .framer-BqF8O .framer-kh2c5i > :last-child, .framer-BqF8O .framer-lfvvg0 > :last-child, .framer-BqF8O .framer-1wcnqzw > :last-child, .framer-BqF8O .framer-o0j5a5 > :last-child, .framer-BqF8O .framer-1lasrv8 > :last-child, .framer-BqF8O .framer-1buksih > :last-child, .framer-BqF8O .framer-17yhztz > :last-child, .framer-BqF8O .framer-j57aou > :last-child, .framer-BqF8O .framer-x8zrja > :last-child, .framer-BqF8O .framer-rdstc7 > :last-child, .framer-BqF8O .framer-13d39x9 > :last-child, .framer-BqF8O .framer-18f9d2x > :last-child, .framer-BqF8O .framer-1cfrfzb > :last-child, .framer-BqF8O .framer-m98pnn > :last-child, .framer-BqF8O .framer-1ydm6h4 > :last-child, .framer-BqF8O .framer-1b3r8kn > :last-child, .framer-BqF8O .framer-w41cv9 > :last-child, .framer-BqF8O .framer-1lx0h3a > :last-child, .framer-BqF8O .framer-1moydod > :last-child, .framer-BqF8O .framer-1d1ko15 > :last-child, .framer-BqF8O .framer-fw7z16 > :last-child, .framer-BqF8O .framer-dc2w7m > :last-child, .framer-BqF8O .framer-1iuanjk > :last-child, .framer-BqF8O .framer-urm7mp > :last-child, .framer-BqF8O .framer-1knd9z0 > :last-child, .framer-BqF8O .framer-fuzk5n > :last-child, .framer-BqF8O .framer-yzwwkz > :last-child, .framer-BqF8O .framer-orokjh > :last-child, .framer-BqF8O .framer-v2u50j > :last-child, .framer-BqF8O .framer-1yhfp6u > :last-child, .framer-BqF8O .framer-1jw11yd > :last-child, .framer-BqF8O .framer-14loiy5 > :last-child, .framer-BqF8O .framer-327k2r > :last-child, .framer-BqF8O .framer-1i97zwk > :last-child, .framer-BqF8O .framer-64ei5r > :last-child, .framer-BqF8O .framer-1o4dm88 > :last-child, .framer-BqF8O .framer-1wk6hdc > :last-child, .framer-BqF8O .framer-fon2fi > :last-child, .framer-BqF8O .framer-ccph4h > :last-child, .framer-BqF8O .framer-493wqk > :last-child, .framer-BqF8O .framer-1dgdv2r > :last-child, .framer-BqF8O .framer-1ew8kmk > :last-child, .framer-BqF8O .framer-1biie0n > :last-child, .framer-BqF8O .framer-4gthn6 > :last-child, .framer-BqF8O .framer-uwjchh > :last-child, .framer-BqF8O .framer-1si4em > :last-child, .framer-BqF8O .framer-gkyumu > :last-child, .framer-BqF8O .framer-cnwe8t > :last-child, .framer-BqF8O .framer-1jq4cz0 > :last-child, .framer-BqF8O .framer-27kvcw > :last-child, .framer-BqF8O .framer-terevk > :last-child, .framer-BqF8O .framer-pa7ypx > :last-child, .framer-BqF8O .framer-hbyfz2 > :last-child, .framer-BqF8O .framer-1311nij > :last-child, .framer-BqF8O .framer-z0wyna > :last-child, .framer-BqF8O .framer-37vspg > :last-child, .framer-BqF8O .framer-txg4ek > :last-child, .framer-BqF8O .framer-mjbr0n > :last-child, .framer-BqF8O .framer-vy964v > :last-child, .framer-BqF8O .framer-5qgx7j > :last-child, .framer-BqF8O .framer-q8vr4l > :last-child, .framer-BqF8O .framer-1wjlkp0 > :last-child, .framer-BqF8O .framer-jkspr > :last-child, .framer-BqF8O .framer-2sgjf5 > :last-child, .framer-BqF8O .framer-dhzlow > :last-child, .framer-BqF8O .framer-1sx6p1v > :last-child, .framer-BqF8O .framer-1facrek > :last-child, .framer-BqF8O .framer-k72s49 > :last-child, .framer-BqF8O .framer-gx9kbz > :last-child, .framer-BqF8O .framer-1mqd8j > :last-child, .framer-BqF8O .framer-w03rcl > :last-child, .framer-BqF8O .framer-7vfr1a > :last-child, .framer-BqF8O .framer-79ditx > :last-child, .framer-BqF8O .framer-14e8hv6 > :last-child, .framer-BqF8O .framer-obl3t9 > :last-child, .framer-BqF8O .framer-11s2wn9 > :last-child, .framer-BqF8O .framer-28j7iv > :last-child, .framer-BqF8O .framer-1fe02hx > :last-child { margin-bottom: 0px; } .framer-BqF8O .framer-jx0221 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BqF8O .framer-jx0221 > :first-child { margin-left: 0px; } .framer-BqF8O .framer-jx0221 > :last-child { margin-right: 0px; } .framer-BqF8O .framer-1wcnqzw > *, .framer-BqF8O .framer-o0j5a5 > *, .framer-BqF8O .framer-1lasrv8 > *, .framer-BqF8O .framer-1buksih > *, .framer-BqF8O .framer-17yhztz > *, .framer-BqF8O .framer-j57aou > *, .framer-BqF8O .framer-x8zrja > *, .framer-BqF8O .framer-rdstc7 > *, .framer-BqF8O .framer-13d39x9 > *, .framer-BqF8O .framer-18f9d2x > *, .framer-BqF8O .framer-1cfrfzb > *, .framer-BqF8O .framer-m98pnn > *, .framer-BqF8O .framer-1ydm6h4 > *, .framer-BqF8O .framer-1b3r8kn > *, .framer-BqF8O .framer-w41cv9 > *, .framer-BqF8O .framer-1lx0h3a > *, .framer-BqF8O .framer-1moydod > *, .framer-BqF8O .framer-1d1ko15 > *, .framer-BqF8O .framer-fw7z16 > *, .framer-BqF8O .framer-dc2w7m > *, .framer-BqF8O .framer-1iuanjk > *, .framer-BqF8O .framer-urm7mp > *, .framer-BqF8O .framer-1knd9z0 > *, .framer-BqF8O .framer-fuzk5n > *, .framer-BqF8O .framer-yzwwkz > *, .framer-BqF8O .framer-orokjh > *, .framer-BqF8O .framer-v2u50j > *, .framer-BqF8O .framer-1yhfp6u > *, .framer-BqF8O .framer-1jw11yd > *, .framer-BqF8O .framer-14loiy5 > *, .framer-BqF8O .framer-327k2r > *, .framer-BqF8O .framer-1i97zwk > *, .framer-BqF8O .framer-64ei5r > *, .framer-BqF8O .framer-1o4dm88 > *, .framer-BqF8O .framer-1wk6hdc > *, .framer-BqF8O .framer-fon2fi > *, .framer-BqF8O .framer-ccph4h > *, .framer-BqF8O .framer-493wqk > *, .framer-BqF8O .framer-1dgdv2r > *, .framer-BqF8O .framer-1ew8kmk > *, .framer-BqF8O .framer-1biie0n > *, .framer-BqF8O .framer-4gthn6 > *, .framer-BqF8O .framer-uwjchh > *, .framer-BqF8O .framer-1si4em > *, .framer-BqF8O .framer-gkyumu > *, .framer-BqF8O .framer-cnwe8t > *, .framer-BqF8O .framer-1jq4cz0 > *, .framer-BqF8O .framer-27kvcw > *, .framer-BqF8O .framer-terevk > *, .framer-BqF8O .framer-pa7ypx > *, .framer-BqF8O .framer-hbyfz2 > *, .framer-BqF8O .framer-1311nij > *, .framer-BqF8O .framer-z0wyna > *, .framer-BqF8O .framer-37vspg > *, .framer-BqF8O .framer-txg4ek > *, .framer-BqF8O .framer-mjbr0n > *, .framer-BqF8O .framer-vy964v > *, .framer-BqF8O .framer-5qgx7j > *, .framer-BqF8O .framer-q8vr4l > *, .framer-BqF8O .framer-1wjlkp0 > *, .framer-BqF8O .framer-jkspr > *, .framer-BqF8O .framer-2sgjf5 > *, .framer-BqF8O .framer-dhzlow > *, .framer-BqF8O .framer-1sx6p1v > *, .framer-BqF8O .framer-1facrek > *, .framer-BqF8O .framer-k72s49 > *, .framer-BqF8O .framer-gx9kbz > *, .framer-BqF8O .framer-1mqd8j > *, .framer-BqF8O .framer-w03rcl > *, .framer-BqF8O .framer-7vfr1a > *, .framer-BqF8O .framer-79ditx > *, .framer-BqF8O .framer-14e8hv6 > *, .framer-BqF8O .framer-obl3t9 > *, .framer-BqF8O .framer-11s2wn9 > *, .framer-BqF8O .framer-28j7iv > *, .framer-BqF8O .framer-1fe02hx > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27453\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E0qmMgmpW\":{\"layout\":[\"fixed\",\"auto\"]},\"ZgcpmiHck\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDM0pIiYm6=withCSS(Component,css,\"framer-BqF8O\");export default FramerDM0pIiYm6;FramerDM0pIiYm6.displayName=\"Page\";FramerDM0pIiYm6.defaultProps={height:27453,width:1200};addFonts(FramerDM0pIiYm6,[{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 Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]},...FramerButtonFonts,...NavigationFonts,...VideoFonts,...LineAnimationFonts,...SidebarStickyProjectPageFonts,...YouTubeFonts,...ProjectCardFonts,...BeforeAfterFonts,...GalleryGalleryFonts,...SectionNextProjectFonts,...FooterFonts,...NavigationMobileFonts,...NavigationMobileContentFonts,...ButtonCursorFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDM0pIiYm6\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E0qmMgmpW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZgcpmiHck\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"27453\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "y", "g", "v", "e", "r", "a", "R", "c", "h", "t", "re", "MotionConfigContext", "o", "i", "se", "p", "C", "x", "d", "s", "m", "n", "l", "f", "u", "I", "q", "Y", "useLocaleInfo", "b", "w", "L", "E", "T", "D", "O", "Z", "B", "z", "N", "P", "K", "Q", "k", "useVariantState", "y", "V", "W", "pe", "S", "ae", "LayoutGroup", "motion", "cx", "Image2", "withCSS", "qF1rPGyPu_default", "addPropertyControls", "ControlType", "addFonts", "s", "i", "ye", "ue", "e", "r", "t", "o", "l", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "h", "v", "b", "y", "e", "r", "t", "g", "R", "B", "a", "re", "MotionConfigContext", "o", "i", "se", "p", "q", "x", "n", "l", "s", "d", "m", "Z", "j", "Y", "useLocaleInfo", "f", "w", "W", "J", "N", "S", "k", "I", "z", "E", "useVariantState", "v", "h", "L", "U", "G", "useActiveVariantCallback", "D", "O", "pe", "F", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "withCSS", "EvMPvjkuO_default", "addPropertyControls", "ControlType", "addFonts", "GalleryNavigationItemFonts", "getFonts", "EvMPvjkuO_default", "SVGFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_1", "_2", "_3", "_4", "_5", "_6", "_7", "_8", "background", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "selector", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "moyOFAv_J", "guL96G44I", "MvhWGEEJw", "XLzMbvsC3", "IqDVb43PR", "FX_YoCLJm", "cx33mnUE3", "g8ToaZVmj", "qO9woDsIE", "y0fX7xmZq", "ZrKNCUwGg", "YjoLglh7W", "kV0neR1DF", "qX5aJY0_l", "RthHlBIYj", "FfrO1KV0Q", "jR68EO0KP", "YLJ1H6SSA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Na8yZDTE3148n0zw", "args", "Na8yZDTE3zf4p3b", "Na8yZDTE31grguig", "Na8yZDTE3dxsg45", "Na8yZDTE3uyf6m7", "Na8yZDTE3xidlbj", "Na8yZDTE37mjirn", "Na8yZDTE3bouxft", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Frameras8CFvHIb", "withCSS", "as8CFvHIb_default", "addPropertyControls", "ControlType", "addFonts", "GalleryImagesFonts", "getFonts", "qF1rPGyPu_default", "GalleryNavigationFonts", "as8CFvHIb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "selector", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "L3eYtamgf", "aQnc30A6N", "NFYUL81vf", "DSJNh7kE4", "Jz5mRKP8b", "RROWsrtui", "AB57wm4vu", "iVBKtZsnr", "LqdxvB4A5", "Vc2MsyiJ4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "moyOFAv_Jq81irf", "args", "guL96G44I2ip5wd", "MvhWGEEJw1lj6x83", "qX5aJY0_l1hjql21", "RthHlBIYjla27x9", "FfrO1KV0Q1hv129l", "jR68EO0KP1nwu3gb", "YLJ1H6SSA1lhas0r", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerCZ96QCI_V", "withCSS", "CZ96QCI_V_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toImageSrc", "toResponsiveImage", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "filterNextProject", "height", "id", "pebble", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JaIyrNOsl", "d6gdBh6aQ", "h43C2fyK5", "iC9pVt3ffyGTlcynBJ", "Q41ega8iuyGTlcynBJ", "XYH4vRTJSyGTlcynBJ", "c2HaqtzgByGTlcynBJ", "FnwgSIUrAyGTlcynBJ", "vjUtPirXkyGTlcynBJ", "idyGTlcynBJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "vHeab_GFB_default", "collection", "paginationInfo", "loadMore", "l", "i", "visible", "visible1", "PathVariablesContext", "Link", "u", "ComponentViewportProvider", "Image2", "RichText2", "css", "FramerjmhoDxLSf", "withCSS", "jmhoDxLSf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BhBPSHWK9", "begDU6hgI", "BmNwCFuAX", "n9fN6Oif9", "nSqDw_wLW", "kBDfnFqbs", "vgdqzswtn", "xbM7x37V8", "j7ojbQhEi", "k3fl1FuvP", "N4suFAX8X", "Rq4Llee07", "lNKVu2a0C", "ChHWugZD5", "WcnEGkY6N", "bV6UaDCEp", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1da2b9s", "args", "onMouseEnter1ypqd69", "onMouseEnterc9m1bq", "onMouseEnterbcc7wp", "onMouseEnter1di8gnp", "onMouseEnter9lk7xq", "onMouseEnter1r63r70", "onMouseEnter1nk3b67", "onMouseLeave1pcl1jx", "onMouseLeave3zhxn5", "onMouseLeave1ngkse9", "onMouseLeave3053uq", "onMouseLeave144jayu", "onMouseLeaven7kvud", "onMouseLeave10vn9t0", "onMouseLeave9s8152", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "Image2", "css", "FramerApFZ0evyo", "withCSS", "ApFZ0evyo_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BhBPSHWK9", "begDU6hgI", "BmNwCFuAX", "n9fN6Oif9", "nSqDw_wLW", "kBDfnFqbs", "vgdqzswtn", "xbM7x37V8", "DiUHL5kRE", "YrLQpV1yP", "RUYWpY56r", "pwzVtMx9E", "sN18Ww0tb", "DwUD18Unz", "N176Jr1rA", "ifdILHMtR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterkrmq9d", "args", "onMouseEnter1fz1xcn", "onMouseEnter1qoboy8", "onMouseEnterk0l7z8", "onMouseEnter1m883sp", "onMouseEnterhqjapz", "onMouseEnterqx5ada", "onMouseEnter9hhn53", "onMouseLeave157tjnd", "onMouseLeave1xck46c", "onMouseLeaveps02w", "onMouseLeave4o5lh0", "onMouseLeavekri4au", "onMouseLeave1jddr2x", "onMouseLeave1npve5d", "onMouseLeave1okntmv", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "Image2", "css", "FramerJapLcaaY7", "withCSS", "JapLcaaY7_default", "addPropertyControls", "ControlType", "addFonts", "SidebarImageFonts", "getFonts", "ApFZ0evyo_default", "SidebarImageCopyFonts", "JapLcaaY7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MkQnYL0Nd", "wRz7ILNUW", "pItUBiV1b", "VMbrU7bwb", "kf1HR_gwZ", "C2kwoOZOk", "m0W7GfpR7", "pijLNztmR", "vdNB4M2dk", "vXqNeGyts", "Eus8RH2hm", "Awq5CXnuP", "NTkvas3Az", "pWzxKkwxb", "mFzvkvvTc", "ZO50_B3mW", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerV6m6OEtpr", "withCSS", "V6m6OEtpr_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "FramerButtonFonts", "getFonts", "FramerButton", "NavigationFonts", "F0lbt84nG_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "LineAnimationFonts", "v4ueDjO1q_default", "LineAnimationWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "SidebarStickyProjectPageFonts", "V6m6OEtpr_default", "SidebarStickyProjectPageWithVariantAppearEffect", "YouTubeFonts", "Youtube", "ProjectCardFonts", "i1G3Avwhm_default", "BeforeAfterFonts", "BeforeAfter", "GalleryGalleryFonts", "CZ96QCI_V_default", "SectionNextProjectFonts", "jmhoDxLSf_default", "FooterFonts", "CPt2kErNr_default", "NavigationMobileFonts", "u1SJOgfjQ_default", "NavigationMobileContentFonts", "VU08sXh8p_default", "ButtonCursorFonts", "XIi5zadS8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "toResponsiveImage", "value", "transition2", "animation1", "animation2", "isSet", "toImageSrc", "negate", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transition10", "animation10", "transition11", "animation11", "transition12", "animation12", "transition13", "animation13", "convertFromBoolean", "activeLocale", "iC9pVt3ff", "convertFromBoolean1", "transition14", "animation14", "addImageAlt", "image", "alt", "QueryData", "query", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "XIi5zadS8_default", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "vHeab_GFB_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "XYH4vRTJS", "Q41ega8iu", "cU7Mofpfj", "c2HaqtzgB", "FnwgSIUrA", "vjUtPirXk", "tElZ_uTcT", "vO0Cvxftv", "uNKxhajOC", "VUU_nQE3X", "LzeFCdiJj", "TyxS73x7O", "Zwevxwd5w", "w4NHOMDBb", "iCDUa9cHV", "UUJ0Y28HX", "NPZz5yatu", "ORffhsntQ", "nQqO0se6B", "LUZxUffdQ", "wNHzcyw_n", "Z5dZS31f3", "IO_cNR1PB", "frh81oXZ0", "zIP0E2zCl", "jioz0r8G6", "nylaGqWyt", "WVIZgJIv7", "qYLSEOUwK", "zgL6ISdJ6", "RMMcAH9k_", "idRiVlBy788", "iC9pVt3ffRiVlBy788", "idmnq2yk1tT", "iC9pVt3ffmnq2yk1tT", "idkJTJSvDqJ", "iC9pVt3ffkJTJSvDqJ", "ZwA8fWTEX", "hHxkUUAlo", "wxrfk7Lv0", "mqUIcZ9Op", "YQAwnerBP", "auDdI5o1l", "Y22eNO09B", "AKGteye1f", "QXMh4tNPo", "c2tx7h67S", "m8qZeNFcT", "pnfUEjT0R", "eLSAx9f2l", "Z_YrvyHHz", "peEfBakNw", "qUHm_Wger", "NUm0ox3aE", "FhLgWDlp5", "Ltt1aSaEQ", "DmGq8EOaH", "Kp8pGCkca", "g7Ws3fl9F", "sv0Pe5agi", "crKZWTMvH", "gf24E4iD0", "o3dtxV7yG", "Xu1LQuV6x", "ojgr5c869", "W7tYi1tzk", "xkJGD6ooI", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwelu7j", "overlay", "paginationInfo", "args", "zbJfHkIuuwelu7j", "rqyFSIajf1wvko5h", "ref1", "pe", "isDisplayed", "visible1", "visible2", "visible3", "isDisplayed1", "router", "useRouter", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "useRouteElementId", "visible4", "visible5", "visible6", "id1", "visible7", "visible8", "visible9", "visible10", "visible11", "id2", "ref8", "id3", "ref9", "id4", "ref10", "visible12", "id5", "id6", "ref11", "id7", "id8", "ref12", "id9", "ref13", "id10", "id11", "id12", "ref14", "id13", "ref15", "id14", "ref16", "id15", "ref17", "id16", "ref18", "id17", "ref19", "id18", "ref20", "id19", "ref21", "id20", "ref22", "id21", "ref23", "id22", "ref24", "id23", "ref25", "id24", "ref26", "id25", "ref27", "id26", "ref28", "id27", "ref29", "id28", "ref30", "id29", "ref31", "id30", "ref32", "id31", "ref33", "id32", "ref34", "id33", "ref35", "id34", "ref36", "id35", "ref37", "id36", "ref38", "id37", "ref39", "id38", "ref40", "id39", "ref41", "id40", "ref42", "id41", "ref43", "id42", "ref44", "id43", "ref45", "id44", "ref46", "id45", "ref47", "visible13", "id46", "ref48", "id47", "ref49", "id48", "ref50", "id49", "ref51", "id50", "ref52", "id51", "ref53", "id52", "ref54", "id53", "ref55", "id54", "ref56", "id55", "ref57", "id56", "ref58", "id57", "ref59", "id58", "ref60", "id59", "ref61", "id60", "ref62", "id61", "ref63", "id62", "ref64", "id63", "ref65", "id64", "ref66", "id65", "ref67", "id66", "ref68", "id67", "ref69", "id68", "ref70", "id69", "ref71", "id70", "ref72", "id71", "ref73", "id72", "ref74", "id73", "ref75", "id74", "ref76", "id75", "ref77", "id76", "ref78", "id77", "ref79", "id78", "ref80", "id79", "ref81", "id80", "ref82", "id81", "ref83", "id82", "ref84", "id83", "ref85", "id84", "ref86", "id85", "ref87", "id86", "ref88", "id87", "ref89", "id88", "ref90", "id89", "ref91", "id90", "ref92", "id91", "ref93", "id92", "ref94", "id93", "ref95", "id94", "ref96", "id95", "ref97", "id96", "ref98", "id97", "ref99", "id98", "ref100", "id99", "ref101", "id100", "ref102", "id101", "ref103", "id102", "ref104", "id103", "ref105", "id104", "ref106", "id105", "ref107", "id106", "ref108", "id107", "ref109", "id108", "ref110", "id109", "ref111", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "FramerButton", "ContainerWithFX", "F0lbt84nG_default", "ImageWithOptimizedAppearEffect", "Video", "Image2", "PropertyOverrides2", "LineAnimationWithVariantAppearEffect", "RichTextWithOptimizedAppearEffect", "x", "MotionDivWithOptimizedAppearEffect", "RichText2", "ResolveLinks", "resolvedLinks", "SidebarStickyProjectPageWithVariantAppearEffect", "Link", "Youtube", "ChildrenCanSuspend", "collection", "loadMore", "l", "i", "PathVariablesContext", "i1G3Avwhm_default", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "BeforeAfter", "SVG", "CZ96QCI_V_default", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "overlay15", "overlay16", "overlay17", "overlay18", "overlay19", "overlay20", "overlay21", "overlay22", "overlay23", "overlay24", "overlay25", "overlay26", "overlay27", "overlay28", "overlay29", "overlay30", "overlay31", "jmhoDxLSf_default", "CPt2kErNr_default", "overlay32", "u1SJOgfjQ_default", "VU08sXh8p_default", "css", "FramerDM0pIiYm6", "withCSS", "DM0pIiYm6_default", "addFonts", "FramerButtonFonts", "NavigationFonts", "VideoFonts", "LineAnimationFonts", "SidebarStickyProjectPageFonts", "YouTubeFonts", "ProjectCardFonts", "BeforeAfterFonts", "GalleryGalleryFonts", "SectionNextProjectFonts", "FooterFonts", "NavigationMobileFonts", "NavigationMobileContentFonts", "ButtonCursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
