{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/u2TDvHtW3pqaLvXKwX0n/PgSskQYXznsF0MW59PtW/PlayBee.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/NoUcNkhOK11vH1xV7lKO/lgzLI9l2mHZACdLSJAYq/AEuM87m3U.js", "ssg:https://framerusercontent.com/modules/dImvxEnq2xMARF7PpX76/L1uyydB1c4Ib5qk2fJUr/C8PGUHnIY.js", "ssg:https://framerusercontent.com/modules/WW279EYZk6ExqW8bnjTk/msoW7sQAPiRI9fDe3YwA/DdXgiTpPW.js", "ssg:https://framerusercontent.com/modules/097iiluFpJ02B0Ifg7Vg/vcjC0MbmqVQ7IXcTnVSN/GiAjBDAAP.js", "ssg:https://framerusercontent.com/modules/dwaMYwm5U9HG9W9z3cDd/VPifRfRiICnDeqH1BPxN/h9ibFOK6E.js", "ssg:https://framerusercontent.com/modules/Dv9ENOpBUsKwxe6O8wSg/LrPq4A9WnpscINFbpyRR/jKC9JwSgF.js", "ssg:https://framerusercontent.com/modules/qDSudEyIUu2WlpBzNkdr/641pDneQHquusZeUTqD9/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,Frame}from\"framer\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n * @framerLibrary \"Aikuuqi\"\n */export function Playbee({videoFile,objectFit,customScrollHeight,scrollSpeed}){const videoRef=useRef(null);const lastUpdateRef=useRef(Date.now());// Calculate scroll progress and set video time\nconst updateVideoTimeWithScroll=()=>{const now=Date.now();const speed=scrollSpeed===\"Fast\"?50:scrollSpeed===\"Medium\"?100:150// Delay based on speed\n;if(now-lastUpdateRef.current<speed)return;// Throttle updates based on scroll speed\nconst scrollTop=window.scrollY;const scrollHeight=customScrollHeight||document.documentElement.scrollHeight-window.innerHeight;const scrollProgress=Math.min(scrollTop/scrollHeight,1)// Clamp to [0, 1]\n;if(videoRef.current&&videoRef.current.duration){videoRef.current.currentTime=scrollProgress*videoRef.current.duration;}lastUpdateRef.current=now// Update the last update time\n;};// Attach scroll event to calculate target time\nuseEffect(()=>{window.addEventListener(\"scroll\",updateVideoTimeWithScroll);return()=>window.removeEventListener(\"scroll\",updateVideoTimeWithScroll);},[customScrollHeight,scrollSpeed]);return /*#__PURE__*/_jsx(Frame,{width:\"100%\",height:\"100%\",background:\"transparent\",style:{overflow:\"hidden\",position:\"relative\"},children:videoFile?/*#__PURE__*/_jsx(\"video\",{ref:videoRef,src:videoFile,style:{width:\"100%\",height:\"100%\",objectFit:objectFit},preload:\"metadata\",muted:true}):/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",background:\"#DBECFF\",color:\"#2362EC\",fontSize:\"16px\",textAlign:\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"28px\",marginBottom:\"10px\"},children:\"\uD83C\uDFA5\"}),/*#__PURE__*/_jsx(\"strong\",{style:{fontSize:\"11px\",marginBottom:\"10px\"},children:\"Upload a Video\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"11px\",marginTop:\"5px\",marginBottom:\"10px\"},children:\"Choose a video file to enable scrolling scrubbing.\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"8px\",marginTop:\"5px\"},children:\"Playbee by @aikuuqi\"})]})});}Playbee.defaultProps={objectFit:\"cover\",customScrollHeight:1e3,scrollSpeed:\"Fast\"};// Property Controls\naddPropertyControls(Playbee,{videoFile:{type:ControlType.File,allowedFileTypes:[\"mp4\",\"webm\"],title:\"Video File\"},objectFit:{type:ControlType.Enum,title:\"Object Fit\",options:[\"fill\",\"cover\",\"contain\"],optionTitles:[\"Fill\",\"Cover\",\"Contain\"]},customScrollHeight:{type:ControlType.Number,title:\"Scroll Height\",min:500,max:5e3,step:100,defaultValue:1e3},scrollSpeed:{type:ControlType.Enum,title:\"Scroll Speed\",options:[\"Fast\",\"Medium\",\"Slow\"],optionTitles:[\"Fast\",\"Medium\",\"Slow\"],description:\"More components and remixes at [@aikuuqi](https://x.com/aikuuqi)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Playbee\":{\"type\":\"reactComponent\",\"name\":\"Playbee\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerLibrary \\\"Aikuuqi\\\"\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PlayBee.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Products from\"https://framerusercontent.com/modules/eVQ5txWYm6Cele0INvtm/ZU7ssBk5MdKOOPc29pLb/QFAbwgCUh.js\";import CollectionButton from\"https://framerusercontent.com/modules/ghU0h6GjJK28FukZyPep/FZLb6F2GlXL4U6ZpMr95/fP54QskMA.js\";import HotSpot from\"https://framerusercontent.com/modules/8kUsmAS9QPbQNnrUtjic/2Mp0vVguzLVFdGwZDI9h/wbcrqAdlc.js\";const CollectionButtonFonts=getFonts(CollectionButton);const HotSpotFonts=getFonts(HotSpot);const cycleOrder=[\"q8SsbN01O\",\"Btv4NnMYZ\",\"TR8dnIrJV\"];const serializationHash=\"framer-TXuxp\";const variantClassNames={Btv4NnMYZ:\"framer-v-4ouqdv\",q8SsbN01O:\"framer-v-1rjk4sb\",TR8dnIrJV:\"framer-v-j73i2j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const query=prequery=>prequery({from:{alias:\"oAB_SQemv\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"oAB_SQemv\",name:\"id\",type:\"Identifier\"},{collection:\"oAB_SQemv\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"oAB_SQemv\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"rack-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"HBdyoydot\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"HBdyoydot\",name:\"id\",type:\"Identifier\"},{collection:\"HBdyoydot\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"HBdyoydot\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const query2=prequery=>prequery({from:{alias:\"gjPkIeZBa\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"gjPkIeZBa\",name:\"id\",type:\"Identifier\"},{collection:\"gjPkIeZBa\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"gjPkIeZBa\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"strap-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const query3=prequery=>prequery({from:{alias:\"mdEF7W9FM\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"mdEF7W9FM\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"fasteners\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromString=(value,activeLocale,{t6WMWyPu2a1koqvZmb})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2a1koqvZmb},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2a1koqvZmb},webPageId:\"dVs7HSqsz\"};}};const query4=prequery=>prequery({from:{alias:\"a1koqvZmb\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"a1koqvZmb\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"a1koqvZmb\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString1=(value,activeLocale,{t6WMWyPu2kFkdVRbUD})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2kFkdVRbUD},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2kFkdVRbUD},webPageId:\"dVs7HSqsz\"};}};const query5=prequery=>prequery({from:{alias:\"kFkdVRbUD\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"kFkdVRbUD\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"kFkdVRbUD\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const query6=prequery=>prequery({from:{alias:\"Fs_HpbEmr\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"Fs_HpbEmr\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const query7=prequery=>prequery({from:{alias:\"thYREULvY\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"thYREULvY\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString2=(value,activeLocale,{t6WMWyPu2j8FHH6NIJ})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2j8FHH6NIJ},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2j8FHH6NIJ},webPageId:\"dVs7HSqsz\"};}};const query8=prequery=>prequery({from:{alias:\"j8FHH6NIJ\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"j8FHH6NIJ\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"j8FHH6NIJ\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"q8SsbN01O\",Mobile:\"TR8dnIrJV\",Tablet:\"Btv4NnMYZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"q8SsbN01O\"};};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,t6WMWyPu2OEti_efS1,idoAB_SQemv,t6WMWyPu2oAB_SQemv,t6WMWyPu2umyycwjM5,idHBdyoydot,t6WMWyPu2HBdyoydot,t6WMWyPu2TtxW4QVYW,idgjPkIeZBa,t6WMWyPu2gjPkIeZBa,Qo6ZJjWTQa1koqvZmb,RVGOQMGaHa1koqvZmb,t6WMWyPu2a1koqvZmb,ida1koqvZmb,Qo6ZJjWTQkFkdVRbUD,RVGOQMGaHkFkdVRbUD,t6WMWyPu2kFkdVRbUD,idkFkdVRbUD,Qo6ZJjWTQj8FHH6NIJ,RVGOQMGaHj8FHH6NIJ,t6WMWyPu2j8FHH6NIJ,idj8FHH6NIJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q8SsbN01O\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Btv4NnMYZ\",\"TR8dnIrJV\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1800,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tKC8FAEH0l1hnVwiulnaJrIaFs.jpg\",srcSet:\"https://framerusercontent.com/images/tKC8FAEH0l1hnVwiulnaJrIaFs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tKC8FAEH0l1hnVwiulnaJrIaFs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tKC8FAEH0l1hnVwiulnaJrIaFs.jpg 1800w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rjk4sb\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"q8SsbN01O\",ref:ref??ref1,style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({Btv4NnMYZ:{\"data-framer-name\":\"Tablet\"},TR8dnIrJV:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8mzo8n\",layoutDependency:layoutDependency,layoutId:\"oAB_SQemv\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oAB_SQemv\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"oAB_SQemv\",name:\"id\",type:\"Identifier\"},{collection:\"oAB_SQemv\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"oAB_SQemv\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"rack-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"id\":idoAB_SQemv,\"t6WMWyPu2\":t6WMWyPu2oAB_SQemv},i)=>{t6WMWyPu2oAB_SQemv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oAB_SQemv-${idoAB_SQemv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2oAB_SQemv},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{t6WMWyPu2:t6WMWyPu2OEti_efS1},webPageId:\"dVs7HSqsz\"},nodeId:\"KqPH5hCkO\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kkqydi framer-izov20\",layoutDependency:layoutDependency,layoutId:\"KqPH5hCkO\"})})})},idoAB_SQemv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aqc3fs\",layoutDependency:layoutDependency,layoutId:\"HBdyoydot\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HBdyoydot\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"HBdyoydot\",name:\"id\",type:\"Identifier\"},{collection:\"HBdyoydot\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"HBdyoydot\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"id\":idHBdyoydot,\"t6WMWyPu2\":t6WMWyPu2HBdyoydot},i)=>{t6WMWyPu2HBdyoydot??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HBdyoydot-${idHBdyoydot}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2HBdyoydot},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{t6WMWyPu2:t6WMWyPu2umyycwjM5},webPageId:\"dVs7HSqsz\"},nodeId:\"SYAYxKcKU\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qga08o framer-izov20\",layoutDependency:layoutDependency,layoutId:\"SYAYxKcKU\"})})})},idHBdyoydot);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5b2z4\",layoutDependency:layoutDependency,layoutId:\"gjPkIeZBa\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gjPkIeZBa\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"gjPkIeZBa\",name:\"id\",type:\"Identifier\"},{collection:\"gjPkIeZBa\",name:\"t6WMWyPu2\",type:\"Identifier\"}],where:{arguments:[{collection:\"gjPkIeZBa\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"strap-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"id\":idgjPkIeZBa,\"t6WMWyPu2\":t6WMWyPu2gjPkIeZBa},i)=>{t6WMWyPu2gjPkIeZBa??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gjPkIeZBa-${idgjPkIeZBa}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2gjPkIeZBa},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{t6WMWyPu2:t6WMWyPu2TtxW4QVYW},webPageId:\"dVs7HSqsz\"},nodeId:\"iKJo9a5Yt\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xgv2v framer-izov20\",layoutDependency:layoutDependency,layoutId:\"iKJo9a5Yt\"})})})},idgjPkIeZBa);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cra8zr\",layoutDependency:layoutDependency,layoutId:\"mdEF7W9FM\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mdEF7W9FM\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"mdEF7W9FM\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"fasteners\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100%\",y:(componentViewport?.y||0)+32+((componentViewport?.height||600)-64-96+0+0),...addPropertyOverrides({Btv4NnMYZ:{y:(componentViewport?.y||0)+20+((componentViewport?.height||355)-40-96+0+0)},TR8dnIrJV:{y:(componentViewport?.y||0)+16+((componentViewport?.height||320)-32-96+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yicwke-container\",layoutDependency:layoutDependency,layoutId:\"dz6qgIBZS-container\",children:/*#__PURE__*/_jsx(CollectionButton,{height:\"100%\",id:\"dz6qgIBZS\",layoutId:\"dz6qgIBZS\",style:{maxWidth:\"100%\"},variant:\"uQDnH03jh\",width:\"100%\",...addPropertyOverrides({Btv4NnMYZ:{variant:\"y3cSyy_Vm\"},TR8dnIrJV:{variant:\"MPWaB5ifm\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-111hohh\",layoutDependency:layoutDependency,layoutId:\"a1koqvZmb\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"a1koqvZmb\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"a1koqvZmb\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"a1koqvZmb\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"a1koqvZmb\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQa1koqvZmb,\"RVGOQMGaH\":RVGOQMGaHa1koqvZmb,\"t6WMWyPu2\":t6WMWyPu2a1koqvZmb,\"id\":ida1koqvZmb},i)=>{Qo6ZJjWTQa1koqvZmb??=\"\";t6WMWyPu2a1koqvZmb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`a1koqvZmb-${ida1koqvZmb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2a1koqvZmb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5g3q4\",layoutDependency:layoutDependency,layoutId:\"yuxPVlRCh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(t6WMWyPu2a1koqvZmb,activeLocale,{t6WMWyPu2a1koqvZmb}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2a1koqvZmb,activeLocale,{t6WMWyPu2a1koqvZmb}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2a1koqvZmb,activeLocale,{t6WMWyPu2a1koqvZmb}),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.25166666666666687-0)+0+-16,...addPropertyOverrides({Btv4NnMYZ:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.30422535211267626-0)+0+-16},TR8dnIrJV:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.24062500000000023-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cb6puh-container\",layoutDependency:layoutDependency,layoutId:\"xgVNviuHb-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"xgVNviuHb\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHa1koqvZmb),layoutId:\"xgVNviuHb\",LlvCNPEHq:resolvedLinks[0],su_C5Qj56:Qo6ZJjWTQa1koqvZmb,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({Btv4NnMYZ:{LlvCNPEHq:resolvedLinks[1],variant:\"vMazEKpGn\"},TR8dnIrJV:{LlvCNPEHq:resolvedLinks[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},ida1koqvZmb);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d6rldr\",layoutDependency:layoutDependency,layoutId:\"kFkdVRbUD\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kFkdVRbUD\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"kFkdVRbUD\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"kFkdVRbUD\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"kFkdVRbUD\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQkFkdVRbUD,\"RVGOQMGaH\":RVGOQMGaHkFkdVRbUD,\"t6WMWyPu2\":t6WMWyPu2kFkdVRbUD,\"id\":idkFkdVRbUD},i)=>{Qo6ZJjWTQkFkdVRbUD??=\"\";t6WMWyPu2kFkdVRbUD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kFkdVRbUD-${idkFkdVRbUD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2kFkdVRbUD},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5dtp8g\",layoutDependency:layoutDependency,layoutId:\"aAL045UgE\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString1(t6WMWyPu2kFkdVRbUD,activeLocale,{t6WMWyPu2kFkdVRbUD}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2kFkdVRbUD,activeLocale,{t6WMWyPu2kFkdVRbUD}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2kFkdVRbUD,activeLocale,{t6WMWyPu2kFkdVRbUD}),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.4216666666666669-0)+0+-16,...addPropertyOverrides({Btv4NnMYZ:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.4535211267605636-0)+0+-16},TR8dnIrJV:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.4281250000000002-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-svukxx-container\",layoutDependency:layoutDependency,layoutId:\"AgBMQsvc5-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"AgBMQsvc5\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHkFkdVRbUD),layoutId:\"AgBMQsvc5\",LlvCNPEHq:resolvedLinks1[0],su_C5Qj56:Qo6ZJjWTQkFkdVRbUD,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({Btv4NnMYZ:{LlvCNPEHq:resolvedLinks1[1],variant:\"vMazEKpGn\"},TR8dnIrJV:{LlvCNPEHq:resolvedLinks1[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},idkFkdVRbUD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uor5l0\",layoutDependency:layoutDependency,layoutId:\"Fs_HpbEmr\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Fs_HpbEmr\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"Fs_HpbEmr\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1042k2q\",layoutDependency:layoutDependency,layoutId:\"thYREULvY\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"thYREULvY\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[],where:{arguments:[{collection:\"thYREULvY\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xjtzsz\",layoutDependency:layoutDependency,layoutId:\"j8FHH6NIJ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"j8FHH6NIJ\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"j8FHH6NIJ\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"j8FHH6NIJ\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"j8FHH6NIJ\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQj8FHH6NIJ,\"RVGOQMGaH\":RVGOQMGaHj8FHH6NIJ,\"t6WMWyPu2\":t6WMWyPu2j8FHH6NIJ,\"id\":idj8FHH6NIJ},i)=>{Qo6ZJjWTQj8FHH6NIJ??=\"\";t6WMWyPu2j8FHH6NIJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`j8FHH6NIJ-${idj8FHH6NIJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2j8FHH6NIJ},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3od03z\",layoutDependency:layoutDependency,layoutId:\"ZfAP8q0Pe\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString2(t6WMWyPu2j8FHH6NIJ,activeLocale,{t6WMWyPu2j8FHH6NIJ}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2j8FHH6NIJ,activeLocale,{t6WMWyPu2j8FHH6NIJ}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2j8FHH6NIJ,activeLocale,{t6WMWyPu2j8FHH6NIJ}),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.6366666666666669-0)+0+-16,...addPropertyOverrides({Btv4NnMYZ:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.5887323943661974-0)+0+-16},TR8dnIrJV:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.5875000000000002-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nwhug7-container\",layoutDependency:layoutDependency,layoutId:\"fnSAdMreN-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"fnSAdMreN\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHj8FHH6NIJ),layoutId:\"fnSAdMreN\",LlvCNPEHq:resolvedLinks2[0],su_C5Qj56:Qo6ZJjWTQj8FHH6NIJ,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({Btv4NnMYZ:{LlvCNPEHq:resolvedLinks2[1],variant:\"vMazEKpGn\"},TR8dnIrJV:{LlvCNPEHq:resolvedLinks2[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},idj8FHH6NIJ);})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TXuxp.framer-izov20, .framer-TXuxp .framer-izov20 { display: block; }\",\".framer-TXuxp.framer-1rjk4sb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 600px; justify-content: flex-end; padding: 32px; position: relative; width: 600px; }\",\".framer-TXuxp .framer-8mzo8n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 61%; padding: 0px; position: absolute; top: 74%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-1kkqydi, .framer-TXuxp .framer-1qga08o, .framer-TXuxp .framer-1xgv2v { 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: 18px; min-width: 154px; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-TXuxp .framer-1aqc3fs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 69%; padding: 0px; position: absolute; top: 59%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-5b2z4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 45%; padding: 0px; position: absolute; top: 49%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-1cra8zr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 73%; padding: 0px; position: absolute; top: 34%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-yicwke-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\".framer-TXuxp .framer-111hohh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 72%; padding: 0px; position: absolute; top: 25%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-1d5g3q4, .framer-TXuxp .framer-5dtp8g, .framer-TXuxp .framer-3od03z { 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: 18px; min-width: 154px; padding: 0px; position: relative; width: min-content; }\",\".framer-TXuxp .framer-cb6puh-container, .framer-TXuxp .framer-svukxx-container, .framer-TXuxp .framer-1nwhug7-container { flex: none; height: auto; left: -8px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-TXuxp .framer-d6rldr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 56%; padding: 0px; position: absolute; top: 42%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-uor5l0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 41%; padding: 0px; position: absolute; top: 54%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-1042k2q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 53%; padding: 0px; position: absolute; top: 72%; width: min-content; z-index: 1; }\",\".framer-TXuxp .framer-xjtzsz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 54%; padding: 0px; position: absolute; top: 64%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TXuxp.framer-1rjk4sb, .framer-TXuxp .framer-8mzo8n, .framer-TXuxp .framer-1kkqydi, .framer-TXuxp .framer-1aqc3fs, .framer-TXuxp .framer-1qga08o, .framer-TXuxp .framer-5b2z4, .framer-TXuxp .framer-1xgv2v, .framer-TXuxp .framer-1cra8zr, .framer-TXuxp .framer-111hohh, .framer-TXuxp .framer-1d5g3q4, .framer-TXuxp .framer-d6rldr, .framer-TXuxp .framer-5dtp8g, .framer-TXuxp .framer-uor5l0, .framer-TXuxp .framer-1042k2q, .framer-TXuxp .framer-xjtzsz, .framer-TXuxp .framer-3od03z { gap: 0px; } .framer-TXuxp.framer-1rjk4sb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TXuxp.framer-1rjk4sb > :first-child { margin-top: 0px; } .framer-TXuxp.framer-1rjk4sb > :last-child { margin-bottom: 0px; } .framer-TXuxp .framer-8mzo8n > *, .framer-TXuxp .framer-1aqc3fs > *, .framer-TXuxp .framer-5b2z4 > *, .framer-TXuxp .framer-1cra8zr > *, .framer-TXuxp .framer-111hohh > *, .framer-TXuxp .framer-d6rldr > *, .framer-TXuxp .framer-uor5l0 > *, .framer-TXuxp .framer-1042k2q > *, .framer-TXuxp .framer-xjtzsz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-TXuxp .framer-8mzo8n > :first-child, .framer-TXuxp .framer-1kkqydi > :first-child, .framer-TXuxp .framer-1aqc3fs > :first-child, .framer-TXuxp .framer-1qga08o > :first-child, .framer-TXuxp .framer-5b2z4 > :first-child, .framer-TXuxp .framer-1xgv2v > :first-child, .framer-TXuxp .framer-1cra8zr > :first-child, .framer-TXuxp .framer-111hohh > :first-child, .framer-TXuxp .framer-1d5g3q4 > :first-child, .framer-TXuxp .framer-d6rldr > :first-child, .framer-TXuxp .framer-5dtp8g > :first-child, .framer-TXuxp .framer-uor5l0 > :first-child, .framer-TXuxp .framer-1042k2q > :first-child, .framer-TXuxp .framer-xjtzsz > :first-child, .framer-TXuxp .framer-3od03z > :first-child { margin-left: 0px; } .framer-TXuxp .framer-8mzo8n > :last-child, .framer-TXuxp .framer-1kkqydi > :last-child, .framer-TXuxp .framer-1aqc3fs > :last-child, .framer-TXuxp .framer-1qga08o > :last-child, .framer-TXuxp .framer-5b2z4 > :last-child, .framer-TXuxp .framer-1xgv2v > :last-child, .framer-TXuxp .framer-1cra8zr > :last-child, .framer-TXuxp .framer-111hohh > :last-child, .framer-TXuxp .framer-1d5g3q4 > :last-child, .framer-TXuxp .framer-d6rldr > :last-child, .framer-TXuxp .framer-5dtp8g > :last-child, .framer-TXuxp .framer-uor5l0 > :last-child, .framer-TXuxp .framer-1042k2q > :last-child, .framer-TXuxp .framer-xjtzsz > :last-child, .framer-TXuxp .framer-3od03z > :last-child { margin-right: 0px; } .framer-TXuxp .framer-1kkqydi > *, .framer-TXuxp .framer-1qga08o > *, .framer-TXuxp .framer-1xgv2v > *, .framer-TXuxp .framer-1d5g3q4 > *, .framer-TXuxp .framer-5dtp8g > *, .framer-TXuxp .framer-3od03z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-TXuxp.framer-v-4ouqdv.framer-1rjk4sb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 355px); padding: 20px; width: 355px; }\",\".framer-TXuxp.framer-v-4ouqdv .framer-111hohh { left: 53%; top: 30%; }\",\".framer-TXuxp.framer-v-4ouqdv .framer-d6rldr { left: 67%; top: 45%; }\",\".framer-TXuxp.framer-v-4ouqdv .framer-uor5l0 { left: 51%; top: 56%; }\",\".framer-TXuxp.framer-v-4ouqdv .framer-xjtzsz { left: 65%; top: 59%; }\",\".framer-TXuxp.framer-v-j73i2j.framer-1rjk4sb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 320px); padding: 16px; width: 320px; }\",\".framer-TXuxp.framer-v-j73i2j .framer-111hohh { left: 83%; top: 24%; }\",\".framer-TXuxp.framer-v-j73i2j .framer-d6rldr { left: 74%; top: 43%; }\",\".framer-TXuxp.framer-v-j73i2j .framer-uor5l0 { left: 52%; top: 56%; }\",\".framer-TXuxp.framer-v-j73i2j .framer-xjtzsz { left: 69%; top: 59%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Btv4NnMYZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"TR8dnIrJV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAEuM87m3U=withCSS(Component,css,\"framer-TXuxp\");export default FramerAEuM87m3U;FramerAEuM87m3U.displayName=\"Collection / Plant shop\";FramerAEuM87m3U.defaultProps={height:600,width:600};addPropertyControls(FramerAEuM87m3U,{variant:{options:[\"q8SsbN01O\",\"Btv4NnMYZ\",\"TR8dnIrJV\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAEuM87m3U,[{explicitInter:true,fonts:[]},...CollectionButtonFonts,...HotSpotFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAEuM87m3U\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Btv4NnMYZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TR8dnIrJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Products from\"https://framerusercontent.com/modules/eVQ5txWYm6Cele0INvtm/ZU7ssBk5MdKOOPc29pLb/QFAbwgCUh.js\";import CollectionButton from\"https://framerusercontent.com/modules/ghU0h6GjJK28FukZyPep/FZLb6F2GlXL4U6ZpMr95/fP54QskMA.js\";import HotSpot from\"https://framerusercontent.com/modules/8kUsmAS9QPbQNnrUtjic/2Mp0vVguzLVFdGwZDI9h/wbcrqAdlc.js\";const HotSpotFonts=getFonts(HotSpot);const CollectionButtonFonts=getFonts(CollectionButton);const cycleOrder=[\"FnjXXbFwG\",\"Mky2WHb3s\",\"LaC8Rqh4u\"];const serializationHash=\"framer-CGMjU\";const variantClassNames={FnjXXbFwG:\"framer-v-1ssa9pn\",LaC8Rqh4u:\"framer-v-1tr5j9q\",Mky2WHb3s:\"framer-v-1n4gjz0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromString=(value,activeLocale,{t6WMWyPu2RxLGxudLb})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2RxLGxudLb},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2RxLGxudLb},webPageId:\"dVs7HSqsz\"};}};const query=prequery=>prequery({from:{alias:\"RxLGxudLb\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"RxLGxudLb\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"RxLGxudLb\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromString1=(value,activeLocale,{t6WMWyPu2QQ6hSkbv6})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return undefined;default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2QQ6hSkbv6},webPageId:\"dVs7HSqsz\"};}};const query1=prequery=>prequery({from:{alias:\"QQ6hSkbv6\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"QQ6hSkbv6\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"QQ6hSkbv6\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString2=(value,activeLocale,{t6WMWyPu2lIBDgz5Ot})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return undefined;default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2lIBDgz5Ot},webPageId:\"dVs7HSqsz\"};}};const query2=prequery=>prequery({from:{alias:\"lIBDgz5Ot\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"lIBDgz5Ot\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"lIBDgz5Ot\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString3=(value,activeLocale,{t6WMWyPu2J7CpkTbEh})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return undefined;default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2J7CpkTbEh},webPageId:\"dVs7HSqsz\"};}};const query3=prequery=>prequery({from:{alias:\"J7CpkTbEh\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"J7CpkTbEh\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"J7CpkTbEh\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});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.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"LaC8Rqh4u\",Desktop:\"FnjXXbFwG\",Tablet:\"Mky2WHb3s\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FnjXXbFwG\"};};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,Qo6ZJjWTQRxLGxudLb,RVGOQMGaHRxLGxudLb,t6WMWyPu2RxLGxudLb,idRxLGxudLb,Qo6ZJjWTQQQ6hSkbv6,RVGOQMGaHQQ6hSkbv6,t6WMWyPu2QQ6hSkbv6,idQQ6hSkbv6,Qo6ZJjWTQlIBDgz5Ot,RVGOQMGaHlIBDgz5Ot,t6WMWyPu2lIBDgz5Ot,idlIBDgz5Ot,Qo6ZJjWTQJ7CpkTbEh,RVGOQMGaHJ7CpkTbEh,t6WMWyPu2J7CpkTbEh,idJ7CpkTbEh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FnjXXbFwG\",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??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1800,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/LirDkb0qoFP2BlBPE1hPtrRoRo.jpg\",srcSet:\"https://framerusercontent.com/images/LirDkb0qoFP2BlBPE1hPtrRoRo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LirDkb0qoFP2BlBPE1hPtrRoRo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LirDkb0qoFP2BlBPE1hPtrRoRo.jpg 1800w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ssa9pn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"FnjXXbFwG\",ref:ref??ref1,style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({LaC8Rqh4u:{\"data-framer-name\":\"Variant 3\"},Mky2WHb3s:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-105zt0\",layoutDependency:layoutDependency,layoutId:\"RxLGxudLb\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RxLGxudLb\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"RxLGxudLb\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"RxLGxudLb\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"RxLGxudLb\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQRxLGxudLb,\"RVGOQMGaH\":RVGOQMGaHRxLGxudLb,\"t6WMWyPu2\":t6WMWyPu2RxLGxudLb,\"id\":idRxLGxudLb},i)=>{Qo6ZJjWTQRxLGxudLb??=\"\";t6WMWyPu2RxLGxudLb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RxLGxudLb-${idRxLGxudLb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2RxLGxudLb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xee6m3\",layoutDependency:layoutDependency,layoutId:\"a3LTLWE2S\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(t6WMWyPu2RxLGxudLb,activeLocale,{t6WMWyPu2RxLGxudLb}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2RxLGxudLb,activeLocale,{t6WMWyPu2RxLGxudLb}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2RxLGxudLb,activeLocale,{t6WMWyPu2RxLGxudLb}),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.6500000000000002-0)+0+-16,...addPropertyOverrides({LaC8Rqh4u:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.6750000000000003-0)+0+-16},Mky2WHb3s:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.6535211267605636-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12kpqpt-container\",layoutDependency:layoutDependency,layoutId:\"jLX5VLfyi-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"jLX5VLfyi\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHRxLGxudLb),layoutId:\"jLX5VLfyi\",LlvCNPEHq:resolvedLinks[0],su_C5Qj56:Qo6ZJjWTQRxLGxudLb,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({LaC8Rqh4u:{LlvCNPEHq:resolvedLinks[2],variant:\"uqDAgmJJI\"},Mky2WHb3s:{LlvCNPEHq:resolvedLinks[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idRxLGxudLb);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c6zgg5\",layoutDependency:layoutDependency,layoutId:\"QQ6hSkbv6\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QQ6hSkbv6\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"QQ6hSkbv6\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"QQ6hSkbv6\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"QQ6hSkbv6\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQQQ6hSkbv6,\"RVGOQMGaH\":RVGOQMGaHQQ6hSkbv6,\"t6WMWyPu2\":t6WMWyPu2QQ6hSkbv6,\"id\":idQQ6hSkbv6},i)=>{Qo6ZJjWTQQQ6hSkbv6??=\"\";t6WMWyPu2QQ6hSkbv6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QQ6hSkbv6-${idQQ6hSkbv6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2QQ6hSkbv6},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14bnt2e\",layoutDependency:layoutDependency,layoutId:\"r9fAZs5P3\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString1(t6WMWyPu2QQ6hSkbv6,activeLocale,{t6WMWyPu2QQ6hSkbv6}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2QQ6hSkbv6,activeLocale,{t6WMWyPu2QQ6hSkbv6}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2QQ6hSkbv6,activeLocale,{t6WMWyPu2QQ6hSkbv6}),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.49333333333333357-0)+0+-16,...addPropertyOverrides({LaC8Rqh4u:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.49375000000000024-0)+0+-16},Mky2WHb3s:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.49295774647887347-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f7fcu-container\",layoutDependency:layoutDependency,layoutId:\"SMtAxAg2p-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"SMtAxAg2p\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHQQ6hSkbv6),layoutId:\"SMtAxAg2p\",LlvCNPEHq:resolvedLinks1[0],su_C5Qj56:Qo6ZJjWTQQQ6hSkbv6,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({LaC8Rqh4u:{LlvCNPEHq:resolvedLinks1[2],variant:\"uqDAgmJJI\"},Mky2WHb3s:{LlvCNPEHq:resolvedLinks1[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idQQ6hSkbv6);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p7ndq5\",layoutDependency:layoutDependency,layoutId:\"lIBDgz5Ot\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lIBDgz5Ot\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"lIBDgz5Ot\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"lIBDgz5Ot\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"lIBDgz5Ot\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQlIBDgz5Ot,\"RVGOQMGaH\":RVGOQMGaHlIBDgz5Ot,\"t6WMWyPu2\":t6WMWyPu2lIBDgz5Ot,\"id\":idlIBDgz5Ot},i)=>{Qo6ZJjWTQlIBDgz5Ot??=\"\";t6WMWyPu2lIBDgz5Ot??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lIBDgz5Ot-${idlIBDgz5Ot}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2lIBDgz5Ot},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zf9o41\",layoutDependency:layoutDependency,layoutId:\"DJMc5lk8_\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString2(t6WMWyPu2lIBDgz5Ot,activeLocale,{t6WMWyPu2lIBDgz5Ot}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2lIBDgz5Ot,activeLocale,{t6WMWyPu2lIBDgz5Ot}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2lIBDgz5Ot,activeLocale,{t6WMWyPu2lIBDgz5Ot}),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.35833333333333356-0)+0+-16,...addPropertyOverrides({LaC8Rqh4u:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.3593750000000002-0)+0+-16},Mky2WHb3s:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.3577464788732397-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-581mcy-container\",layoutDependency:layoutDependency,layoutId:\"jz9HrrgSS-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"jz9HrrgSS\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHlIBDgz5Ot),layoutId:\"jz9HrrgSS\",LlvCNPEHq:resolvedLinks2[0],su_C5Qj56:Qo6ZJjWTQlIBDgz5Ot,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({LaC8Rqh4u:{LlvCNPEHq:resolvedLinks2[2],variant:\"uqDAgmJJI\"},Mky2WHb3s:{LlvCNPEHq:resolvedLinks2[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idlIBDgz5Ot);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1avhwp9\",layoutDependency:layoutDependency,layoutId:\"J7CpkTbEh\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"J7CpkTbEh\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"J7CpkTbEh\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"J7CpkTbEh\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"J7CpkTbEh\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-and-plant\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQJ7CpkTbEh,\"RVGOQMGaH\":RVGOQMGaHJ7CpkTbEh,\"t6WMWyPu2\":t6WMWyPu2J7CpkTbEh,\"id\":idJ7CpkTbEh},i)=>{Qo6ZJjWTQJ7CpkTbEh??=\"\";t6WMWyPu2J7CpkTbEh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`J7CpkTbEh-${idJ7CpkTbEh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2J7CpkTbEh},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pf64ai\",layoutDependency:layoutDependency,layoutId:\"rNg_Gx4u8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString3(t6WMWyPu2J7CpkTbEh,activeLocale,{t6WMWyPu2J7CpkTbEh}),implicitPathVariables:undefined},{href:convertFromString3(t6WMWyPu2J7CpkTbEh,activeLocale,{t6WMWyPu2J7CpkTbEh}),implicitPathVariables:undefined},{href:convertFromString3(t6WMWyPu2J7CpkTbEh,activeLocale,{t6WMWyPu2J7CpkTbEh}),implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.19000000000000022-0)+0+-16,...addPropertyOverrides({LaC8Rqh4u:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.22812500000000022-0)+0+-16},Mky2WHb3s:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.19000000000000022-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e9esgi-container\",layoutDependency:layoutDependency,layoutId:\"A2fv3PTDU-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"A2fv3PTDU\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHJ7CpkTbEh),layoutId:\"A2fv3PTDU\",LlvCNPEHq:resolvedLinks3[0],su_C5Qj56:Qo6ZJjWTQJ7CpkTbEh,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({LaC8Rqh4u:{LlvCNPEHq:resolvedLinks3[2],variant:\"uqDAgmJJI\"},Mky2WHb3s:{LlvCNPEHq:resolvedLinks3[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idJ7CpkTbEh);})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100%\",y:(componentViewport?.y||0)+32+((componentViewport?.height||600)-64-96+0+0),...addPropertyOverrides({LaC8Rqh4u:{y:(componentViewport?.y||0)+16+((componentViewport?.height||320)-32-96+0+0)},Mky2WHb3s:{y:(componentViewport?.y||0)+20+((componentViewport?.height||355)-40-96+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1of0qtv-container\",layoutDependency:layoutDependency,layoutId:\"tLyyoB6Gh-container\",children:/*#__PURE__*/_jsx(CollectionButton,{height:\"100%\",id:\"tLyyoB6Gh\",layoutId:\"tLyyoB6Gh\",style:{maxWidth:\"100%\"},variant:\"db2h_kOqQ\",width:\"100%\",...addPropertyOverrides({LaC8Rqh4u:{variant:\"JeWAkEoyx\"},Mky2WHb3s:{variant:\"TuIyu1daZ\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CGMjU.framer-18mzryz, .framer-CGMjU .framer-18mzryz { display: block; }\",\".framer-CGMjU.framer-1ssa9pn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 600px; justify-content: flex-end; padding: 32px; position: relative; width: 600px; }\",\".framer-CGMjU .framer-105zt0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 73%; padding: 0px; position: absolute; top: 65%; width: min-content; z-index: 1; }\",\".framer-CGMjU .framer-1xee6m3, .framer-CGMjU .framer-14bnt2e, .framer-CGMjU .framer-zf9o41, .framer-CGMjU .framer-1pf64ai { 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: 18px; min-width: 154px; padding: 0px; position: relative; width: min-content; }\",\".framer-CGMjU .framer-12kpqpt-container, .framer-CGMjU .framer-1f7fcu-container, .framer-CGMjU .framer-581mcy-container, .framer-CGMjU .framer-e9esgi-container { flex: none; height: auto; left: -8px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-CGMjU .framer-1c6zgg5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 45%; padding: 0px; position: absolute; top: 49%; width: min-content; z-index: 1; }\",\".framer-CGMjU .framer-1p7ndq5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 63%; padding: 0px; position: absolute; top: 36%; width: min-content; z-index: 1; }\",\".framer-CGMjU .framer-1avhwp9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 68%; padding: 0px; position: absolute; top: 19%; width: min-content; z-index: 1; }\",\".framer-CGMjU .framer-1of0qtv-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CGMjU.framer-1ssa9pn, .framer-CGMjU .framer-105zt0, .framer-CGMjU .framer-1xee6m3, .framer-CGMjU .framer-1c6zgg5, .framer-CGMjU .framer-14bnt2e, .framer-CGMjU .framer-1p7ndq5, .framer-CGMjU .framer-zf9o41, .framer-CGMjU .framer-1avhwp9, .framer-CGMjU .framer-1pf64ai { gap: 0px; } .framer-CGMjU.framer-1ssa9pn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CGMjU.framer-1ssa9pn > :first-child { margin-top: 0px; } .framer-CGMjU.framer-1ssa9pn > :last-child { margin-bottom: 0px; } .framer-CGMjU .framer-105zt0 > *, .framer-CGMjU .framer-1c6zgg5 > *, .framer-CGMjU .framer-1p7ndq5 > *, .framer-CGMjU .framer-1avhwp9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-CGMjU .framer-105zt0 > :first-child, .framer-CGMjU .framer-1xee6m3 > :first-child, .framer-CGMjU .framer-1c6zgg5 > :first-child, .framer-CGMjU .framer-14bnt2e > :first-child, .framer-CGMjU .framer-1p7ndq5 > :first-child, .framer-CGMjU .framer-zf9o41 > :first-child, .framer-CGMjU .framer-1avhwp9 > :first-child, .framer-CGMjU .framer-1pf64ai > :first-child { margin-left: 0px; } .framer-CGMjU .framer-105zt0 > :last-child, .framer-CGMjU .framer-1xee6m3 > :last-child, .framer-CGMjU .framer-1c6zgg5 > :last-child, .framer-CGMjU .framer-14bnt2e > :last-child, .framer-CGMjU .framer-1p7ndq5 > :last-child, .framer-CGMjU .framer-zf9o41 > :last-child, .framer-CGMjU .framer-1avhwp9 > :last-child, .framer-CGMjU .framer-1pf64ai > :last-child { margin-right: 0px; } .framer-CGMjU .framer-1xee6m3 > *, .framer-CGMjU .framer-14bnt2e > *, .framer-CGMjU .framer-zf9o41 > *, .framer-CGMjU .framer-1pf64ai > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-CGMjU.framer-v-1n4gjz0.framer-1ssa9pn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 355px); padding: 20px; width: 355px; }\",\".framer-CGMjU.framer-v-1n4gjz0 .framer-105zt0 { left: 81%; top: 65%; }\",\".framer-CGMjU.framer-v-1n4gjz0 .framer-1c6zgg5 { left: 59%; top: 49%; }\",\".framer-CGMjU.framer-v-1n4gjz0 .framer-1p7ndq5 { left: 68%; top: 36%; }\",\".framer-CGMjU.framer-v-1tr5j9q.framer-1ssa9pn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 320px); padding: 16px; width: 320px; }\",\".framer-CGMjU.framer-v-1tr5j9q .framer-105zt0 { left: 74%; top: 68%; }\",\".framer-CGMjU.framer-v-1tr5j9q .framer-1c6zgg5 { left: 61%; top: 49%; }\",\".framer-CGMjU.framer-v-1tr5j9q .framer-1p7ndq5 { left: 78%; top: 36%; }\",\".framer-CGMjU.framer-v-1tr5j9q .framer-1avhwp9 { left: 68%; top: 23%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mky2WHb3s\":{\"layout\":[\"fixed\",\"fixed\"]},\"LaC8Rqh4u\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC8PGUHnIY=withCSS(Component,css,\"framer-CGMjU\");export default FramerC8PGUHnIY;FramerC8PGUHnIY.displayName=\"Collection / Workshop\";FramerC8PGUHnIY.defaultProps={height:600,width:600};addPropertyControls(FramerC8PGUHnIY,{variant:{options:[\"FnjXXbFwG\",\"Mky2WHb3s\",\"LaC8Rqh4u\"],optionTitles:[\"Desktop\",\"Tablet\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerC8PGUHnIY,[{explicitInter:true,fonts:[]},...HotSpotFonts,...CollectionButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC8PGUHnIY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mky2WHb3s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LaC8Rqh4u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/YOZkC65q17zP6LMVerDt/MLPstiKIUYpJrIC3ez6K/b678XB1tD.js\";const cycleOrder=[\"yCECK4DKe\",\"MyLgNzv79\",\"yjzkY6HHm\",\"MqkqexGm0\"];const serializationHash=\"framer-BNBSQ\";const variantClassNames={MqkqexGm0:\"framer-v-1tchs8l\",MyLgNzv79:\"framer-v-14k9dqa\",yCECK4DKe:\"framer-v-1jbr756\",yjzkY6HHm:\"framer-v-uwn6aa\"};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={delay:0,duration:.4,ease:[.72,.14,.19,1.05],type:\"tween\"};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.create(React.Fragment);const humanReadableVariantMap={\"Mobile active\":\"yjzkY6HHm\",\"Mobile default\":\"MqkqexGm0\",Active:\"yCECK4DKe\",Default:\"MyLgNzv79\"};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:\"yCECK4DKe\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yCECK4DKe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1elgb1c=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MyLgNzv79\");});const onTap9otqsp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"yCECK4DKe\");});const onTap1eisdi7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MqkqexGm0\");});const onTap1iufkfu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"yjzkY6HHm\");});const onTap1vnokqt=activeVariantCallback(async(...args)=>{setVariant(\"MyLgNzv79\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jbr756\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yCECK4DKe\",onTap:onTap1elgb1c,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-3c78e752-651a-4b1e-bdbc-6d5d427120f8, rgb(245, 255, 103))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{MqkqexGm0:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},MyLgNzv79:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}},...addPropertyOverrides({MqkqexGm0:{\"data-framer-name\":\"Mobile default\",onTap:onTap1iufkfu},MyLgNzv79:{\"data-framer-name\":\"Default\",onTap:onTap9otqsp},yjzkY6HHm:{\"data-framer-name\":\"Mobile active\",onTap:onTap1eisdi7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5k05lr\",\"data-framer-name\":\"Frame 427319464\",layoutDependency:layoutDependency,layoutId:\"BNrGtHhSk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nsse5v\",layoutDependency:layoutDependency,layoutId:\"ECcyWuLVo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14u1lhn\",layoutDependency:layoutDependency,layoutId:\"wOG7NeLXz\",style:{opacity:1},variants:{MqkqexGm0:{opacity:0},MyLgNzv79:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-wi6yjj\",\"data-styles-preset\":\"b678XB1tD\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0)))\"},children:\"Finally here!\"})}),className:\"framer-1l4cd4m\",\"data-framer-name\":\"About\\u2028UNITO\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j_5nJDI6u\",style:{\"--extracted-a0htzi\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgUmVndWxhcg==\",\"--framer-font-family\":'\"Roobert Regular\", \"Roobert Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0)))\"},children:\"We\u2019re so excited to finally launch UNITO! As we take our first orders, we kindly ask for your patience while scaling production, orders may take 4\u20135 weeks.\"})}),className:\"framer-19mwgkd\",fonts:[\"CUSTOM;Roobert Regular\"],layoutDependency:layoutDependency,layoutId:\"F847Sn94M\",style:{\"--extracted-r6o4lv\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j2pjiy\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m6sJi9TRX\",onTap:onTap1vnokqt,style:{backgroundColor:\"var(--token-3c78e752-651a-4b1e-bdbc-6d5d427120f8, rgb(245, 255, 103))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{MqkqexGm0:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},MyLgNzv79:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7rky9v\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:242,intrinsicWidth:244,layoutDependency:layoutDependency,layoutId:\"gTIlptM0f\",svg:'<svg width=\"244\" height=\"242\" viewBox=\"0 0 244 242\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.235 0.781539C117.235 0.51523 117.257 0.254128 117.3 0H126.507C126.549 0.254129 126.572 0.515232 126.572 0.781542V91.419C126.572 105.819 138.245 117.493 152.646 117.493H242.115C242.584 117.493 243.037 117.562 243.464 117.691V126.632C243.037 126.761 242.584 126.83 242.115 126.83H152.646C138.245 126.83 126.572 138.504 126.572 152.904V242H117.235L117.235 152.904C117.235 138.504 105.561 126.83 91.1608 126.83L0.535156 126.83V117.493L91.1608 117.493C105.561 117.493 117.235 105.819 117.235 91.4191L117.235 0.781539Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BNBSQ.framer-1tp9iw2, .framer-BNBSQ .framer-1tp9iw2 { display: block; }\",\".framer-BNBSQ.framer-1jbr756 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BNBSQ .framer-5k05lr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BNBSQ .framer-1nsse5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BNBSQ .framer-14u1lhn { -webkit-user-select: none; 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: hidden; padding: 0px; position: relative; user-select: none; width: min-content; }\",\".framer-BNBSQ .framer-1l4cd4m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BNBSQ .framer-19mwgkd { --framer-text-wrap: balance; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-BNBSQ .framer-j2pjiy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BNBSQ .framer-7rky9v { aspect-ratio: 1.0161290322580645 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 41px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BNBSQ .framer-5k05lr, .framer-BNBSQ .framer-1nsse5v, .framer-BNBSQ .framer-14u1lhn, .framer-BNBSQ .framer-j2pjiy { gap: 0px; } .framer-BNBSQ .framer-5k05lr > *, .framer-BNBSQ .framer-1nsse5v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BNBSQ .framer-5k05lr > :first-child, .framer-BNBSQ .framer-1nsse5v > :first-child, .framer-BNBSQ .framer-j2pjiy > :first-child { margin-left: 0px; } .framer-BNBSQ .framer-5k05lr > :last-child, .framer-BNBSQ .framer-1nsse5v > :last-child, .framer-BNBSQ .framer-j2pjiy > :last-child { margin-right: 0px; } .framer-BNBSQ .framer-14u1lhn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BNBSQ .framer-14u1lhn > :first-child { margin-top: 0px; } .framer-BNBSQ .framer-14u1lhn > :last-child { margin-bottom: 0px; } .framer-BNBSQ .framer-j2pjiy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-BNBSQ.framer-v-14k9dqa.framer-1jbr756, .framer-BNBSQ.framer-v-1tchs8l.framer-1jbr756 { align-content: flex-end; align-items: flex-end; gap: 60px; height: 69px; justify-content: center; padding: 0px; width: 69px; }\",\".framer-BNBSQ.framer-v-14k9dqa .framer-14u1lhn { overflow: visible; width: 426px; }\",\".framer-BNBSQ.framer-v-14k9dqa .framer-j2pjiy, .framer-BNBSQ.framer-v-1tchs8l .framer-j2pjiy { padding: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BNBSQ.framer-v-14k9dqa.framer-1jbr756 { gap: 0px; } .framer-BNBSQ.framer-v-14k9dqa.framer-1jbr756 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BNBSQ.framer-v-14k9dqa.framer-1jbr756 > :first-child { margin-top: 0px; } .framer-BNBSQ.framer-v-14k9dqa.framer-1jbr756 > :last-child { margin-bottom: 0px; } }\",\".framer-BNBSQ.framer-v-uwn6aa.framer-1jbr756 { width: 280px; }\",\".framer-BNBSQ.framer-v-uwn6aa .framer-5k05lr { width: 100%; }\",\".framer-BNBSQ.framer-v-uwn6aa .framer-1nsse5v { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; width: 1px; }\",\".framer-BNBSQ.framer-v-uwn6aa .framer-14u1lhn, .framer-BNBSQ.framer-v-1tchs8l .framer-1nsse5v { flex: 1 0 0px; width: 1px; }\",\".framer-BNBSQ.framer-v-uwn6aa .framer-19mwgkd, .framer-BNBSQ.framer-v-1tchs8l .framer-19mwgkd { width: 95%; }\",\".framer-BNBSQ.framer-v-uwn6aa .framer-j2pjiy { padding: 0px; }\",\".framer-BNBSQ.framer-v-1tchs8l .framer-5k05lr { overflow: hidden; width: 299px; }\",\".framer-BNBSQ.framer-v-1tchs8l .framer-14u1lhn { flex: 1 0 0px; overflow: visible; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BNBSQ.framer-v-1tchs8l.framer-1jbr756 { gap: 0px; } .framer-BNBSQ.framer-v-1tchs8l.framer-1jbr756 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BNBSQ.framer-v-1tchs8l.framer-1jbr756 > :first-child { margin-top: 0px; } .framer-BNBSQ.framer-v-1tchs8l.framer-1jbr756 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 122\n * @framerIntrinsicWidth 453\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"MyLgNzv79\":{\"layout\":[\"fixed\",\"fixed\"]},\"yjzkY6HHm\":{\"layout\":[\"fixed\",\"auto\"]},\"MqkqexGm0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDdXgiTpPW=withCSS(Component,css,\"framer-BNBSQ\");export default FramerDdXgiTpPW;FramerDdXgiTpPW.displayName=\"pop up\";FramerDdXgiTpPW.defaultProps={height:122,width:453};addPropertyControls(FramerDdXgiTpPW,{variant:{options:[\"yCECK4DKe\",\"MyLgNzv79\",\"yjzkY6HHm\",\"MqkqexGm0\"],optionTitles:[\"Active\",\"Default\",\"Mobile active\",\"Mobile default\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDdXgiTpPW,[{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:\"Roobert Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/j0u0uaBvezFjztnvrZV9ZIW5g.woff\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDdXgiTpPW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MyLgNzv79\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yjzkY6HHm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MqkqexGm0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"122\",\"framerIntrinsicWidth\":\"453\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DdXgiTpPW.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Products from\"https://framerusercontent.com/modules/eVQ5txWYm6Cele0INvtm/ZU7ssBk5MdKOOPc29pLb/QFAbwgCUh.js\";import CollectionButton from\"https://framerusercontent.com/modules/ghU0h6GjJK28FukZyPep/FZLb6F2GlXL4U6ZpMr95/fP54QskMA.js\";import HotSpot from\"https://framerusercontent.com/modules/8kUsmAS9QPbQNnrUtjic/2Mp0vVguzLVFdGwZDI9h/wbcrqAdlc.js\";const HotSpotFonts=getFonts(HotSpot);const CollectionButtonFonts=getFonts(CollectionButton);const cycleOrder=[\"oN4dFUKhU\",\"So0TJiayY\",\"wWMucaILw\"];const serializationHash=\"framer-DwhWe\";const variantClassNames={oN4dFUKhU:\"framer-v-1rzj3uv\",So0TJiayY:\"framer-v-1implq4\",wWMucaILw:\"framer-v-15wdw31\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromString=(value,activeLocale,{t6WMWyPu2a981aRGns})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2a981aRGns},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2a981aRGns},webPageId:\"dVs7HSqsz\"};}};const query=prequery=>prequery({from:{alias:\"a981aRGns\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"a981aRGns\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"a981aRGns\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromString1=(value,activeLocale,{t6WMWyPu2AdbqACoIk})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2AdbqACoIk},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2AdbqACoIk},webPageId:\"dVs7HSqsz\"};}};const query1=prequery=>prequery({from:{alias:\"AdbqACoIk\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"AdbqACoIk\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"AdbqACoIk\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString2=(value,activeLocale,{t6WMWyPu2kTuv0aTby})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2kTuv0aTby},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2kTuv0aTby},webPageId:\"dVs7HSqsz\"};}};const query2=prequery=>prequery({from:{alias:\"kTuv0aTby\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"kTuv0aTby\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"kTuv0aTby\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"oN4dFUKhU\",Mobile:\"wWMucaILw\",Tablet:\"So0TJiayY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oN4dFUKhU\"};};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,Qo6ZJjWTQa981aRGns,RVGOQMGaHa981aRGns,t6WMWyPu2a981aRGns,ida981aRGns,Qo6ZJjWTQAdbqACoIk,RVGOQMGaHAdbqACoIk,t6WMWyPu2AdbqACoIk,idAdbqACoIk,Qo6ZJjWTQkTuv0aTby,RVGOQMGaHkTuv0aTby,t6WMWyPu2kTuv0aTby,idkTuv0aTby,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oN4dFUKhU\",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??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1800,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/diW23uftGY9pDXk8g86mJIglBE.jpg\",srcSet:\"https://framerusercontent.com/images/diW23uftGY9pDXk8g86mJIglBE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/diW23uftGY9pDXk8g86mJIglBE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/diW23uftGY9pDXk8g86mJIglBE.jpg 1800w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rzj3uv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oN4dFUKhU\",ref:ref??ref1,style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({So0TJiayY:{\"data-framer-name\":\"Tablet\"},wWMucaILw:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2j7qkv\",layoutDependency:layoutDependency,layoutId:\"a981aRGns\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"a981aRGns\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"a981aRGns\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"a981aRGns\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"a981aRGns\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQa981aRGns,\"RVGOQMGaH\":RVGOQMGaHa981aRGns,\"t6WMWyPu2\":t6WMWyPu2a981aRGns,\"id\":ida981aRGns},i)=>{Qo6ZJjWTQa981aRGns??=\"\";t6WMWyPu2a981aRGns??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`a981aRGns-${ida981aRGns}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2a981aRGns},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rg8zfo\",layoutDependency:layoutDependency,layoutId:\"ARNlLcRrb\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(t6WMWyPu2a981aRGns,activeLocale,{t6WMWyPu2a981aRGns}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2a981aRGns,activeLocale,{t6WMWyPu2a981aRGns}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2a981aRGns,activeLocale,{t6WMWyPu2a981aRGns}),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.6150000000000002-0)+0+-16,...addPropertyOverrides({So0TJiayY:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.6150000000000002-0)+0+-16},wWMucaILw:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.6468750000000002-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxlgtw-container\",layoutDependency:layoutDependency,layoutId:\"ExLDUFxPr-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"ExLDUFxPr\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHa981aRGns),layoutId:\"ExLDUFxPr\",LlvCNPEHq:resolvedLinks[0],su_C5Qj56:Qo6ZJjWTQa981aRGns,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({So0TJiayY:{LlvCNPEHq:resolvedLinks[1]},wWMucaILw:{LlvCNPEHq:resolvedLinks[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},ida981aRGns);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gz80se\",layoutDependency:layoutDependency,layoutId:\"AdbqACoIk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AdbqACoIk\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"AdbqACoIk\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"AdbqACoIk\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"AdbqACoIk\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQAdbqACoIk,\"RVGOQMGaH\":RVGOQMGaHAdbqACoIk,\"t6WMWyPu2\":t6WMWyPu2AdbqACoIk,\"id\":idAdbqACoIk},i)=>{Qo6ZJjWTQAdbqACoIk??=\"\";t6WMWyPu2AdbqACoIk??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AdbqACoIk-${idAdbqACoIk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2AdbqACoIk},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10tjayu\",layoutDependency:layoutDependency,layoutId:\"UrmDta4XW\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString1(t6WMWyPu2AdbqACoIk,activeLocale,{t6WMWyPu2AdbqACoIk}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2AdbqACoIk,activeLocale,{t6WMWyPu2AdbqACoIk}),implicitPathVariables:undefined},{href:convertFromString1(t6WMWyPu2AdbqACoIk,activeLocale,{t6WMWyPu2AdbqACoIk}),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.39500000000000024-0)+0+-16,...addPropertyOverrides({So0TJiayY:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.3943661971830988-0)+0+-16},wWMucaILw:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.3937500000000002-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pc7p6n-container\",layoutDependency:layoutDependency,layoutId:\"hzxCHzcMk-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"hzxCHzcMk\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHAdbqACoIk),layoutId:\"hzxCHzcMk\",LlvCNPEHq:resolvedLinks1[0],su_C5Qj56:Qo6ZJjWTQAdbqACoIk,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({So0TJiayY:{LlvCNPEHq:resolvedLinks1[1],variant:\"vMazEKpGn\"},wWMucaILw:{LlvCNPEHq:resolvedLinks1[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},idAdbqACoIk);})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100%\",y:(componentViewport?.y||0)+32+((componentViewport?.height||600)-64-96+0+0),...addPropertyOverrides({So0TJiayY:{y:(componentViewport?.y||0)+20+((componentViewport?.height||355)-40-96+0+0)},wWMucaILw:{y:(componentViewport?.y||0)+16+((componentViewport?.height||320)-32-96+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-24edkd-container\",layoutDependency:layoutDependency,layoutId:\"CkFvzU5iY-container\",children:/*#__PURE__*/_jsx(CollectionButton,{height:\"100%\",id:\"CkFvzU5iY\",layoutId:\"CkFvzU5iY\",style:{maxWidth:\"100%\"},variant:\"ZzpqbkOpy\",width:\"100%\",...addPropertyOverrides({So0TJiayY:{variant:\"Q05b0TJnV\"},wWMucaILw:{variant:\"CF20e3YNE\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j2b70u\",layoutDependency:layoutDependency,layoutId:\"kTuv0aTby\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kTuv0aTby\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"kTuv0aTby\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"kTuv0aTby\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"kTuv0aTby\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"shelf-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"Qo6ZJjWTQ\":Qo6ZJjWTQkTuv0aTby,\"RVGOQMGaH\":RVGOQMGaHkTuv0aTby,\"t6WMWyPu2\":t6WMWyPu2kTuv0aTby,\"id\":idkTuv0aTby},i)=>{Qo6ZJjWTQkTuv0aTby??=\"\";t6WMWyPu2kTuv0aTby??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kTuv0aTby-${idkTuv0aTby}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2kTuv0aTby},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pb796o\",layoutDependency:layoutDependency,layoutId:\"YeUsgNt11\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString2(t6WMWyPu2kTuv0aTby,activeLocale,{t6WMWyPu2kTuv0aTby}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2kTuv0aTby,activeLocale,{t6WMWyPu2kTuv0aTby}),implicitPathVariables:undefined},{href:convertFromString2(t6WMWyPu2kTuv0aTby,activeLocale,{t6WMWyPu2kTuv0aTby}),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.1816666666666669-0)+0+-16,...addPropertyOverrides({So0TJiayY:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.1816666666666669-0)+0+-16},wWMucaILw:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.18125000000000022-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m37945-container\",layoutDependency:layoutDependency,layoutId:\"nUQhckNrm-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"nUQhckNrm\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHkTuv0aTby),layoutId:\"nUQhckNrm\",LlvCNPEHq:resolvedLinks2[0],su_C5Qj56:Qo6ZJjWTQkTuv0aTby,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({So0TJiayY:{LlvCNPEHq:resolvedLinks2[1],variant:\"vMazEKpGn\"},wWMucaILw:{LlvCNPEHq:resolvedLinks2[2],variant:\"uqDAgmJJI\"}},baseVariant,gestureVariant)})})})})})})},idkTuv0aTby);})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DwhWe.framer-1jwyd5e, .framer-DwhWe .framer-1jwyd5e { display: block; }\",\".framer-DwhWe.framer-1rzj3uv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 600px; justify-content: flex-end; padding: 32px; position: relative; width: 600px; }\",\".framer-DwhWe .framer-2j7qkv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 71%; padding: 0px; position: absolute; top: 62%; width: min-content; z-index: 1; }\",\".framer-DwhWe .framer-1rg8zfo, .framer-DwhWe .framer-10tjayu, .framer-DwhWe .framer-pb796o { 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: 18px; min-width: 154px; padding: 0px; position: relative; width: min-content; }\",\".framer-DwhWe .framer-1gxlgtw-container, .framer-DwhWe .framer-pc7p6n-container, .framer-DwhWe .framer-m37945-container { flex: none; height: auto; left: -8px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-DwhWe .framer-1gz80se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 39%; padding: 0px; position: absolute; top: 40%; width: min-content; z-index: 1; }\",\".framer-DwhWe .framer-24edkd-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\".framer-DwhWe .framer-1j2b70u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 63%; padding: 0px; position: absolute; top: 18%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DwhWe.framer-1rzj3uv, .framer-DwhWe .framer-2j7qkv, .framer-DwhWe .framer-1rg8zfo, .framer-DwhWe .framer-1gz80se, .framer-DwhWe .framer-10tjayu, .framer-DwhWe .framer-1j2b70u, .framer-DwhWe .framer-pb796o { gap: 0px; } .framer-DwhWe.framer-1rzj3uv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DwhWe.framer-1rzj3uv > :first-child { margin-top: 0px; } .framer-DwhWe.framer-1rzj3uv > :last-child { margin-bottom: 0px; } .framer-DwhWe .framer-2j7qkv > *, .framer-DwhWe .framer-1gz80se > *, .framer-DwhWe .framer-1j2b70u > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-DwhWe .framer-2j7qkv > :first-child, .framer-DwhWe .framer-1rg8zfo > :first-child, .framer-DwhWe .framer-1gz80se > :first-child, .framer-DwhWe .framer-10tjayu > :first-child, .framer-DwhWe .framer-1j2b70u > :first-child, .framer-DwhWe .framer-pb796o > :first-child { margin-left: 0px; } .framer-DwhWe .framer-2j7qkv > :last-child, .framer-DwhWe .framer-1rg8zfo > :last-child, .framer-DwhWe .framer-1gz80se > :last-child, .framer-DwhWe .framer-10tjayu > :last-child, .framer-DwhWe .framer-1j2b70u > :last-child, .framer-DwhWe .framer-pb796o > :last-child { margin-right: 0px; } .framer-DwhWe .framer-1rg8zfo > *, .framer-DwhWe .framer-10tjayu > *, .framer-DwhWe .framer-pb796o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-DwhWe.framer-v-1implq4.framer-1rzj3uv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 355px); padding: 20px; width: 355px; }\",\".framer-DwhWe.framer-v-1implq4 .framer-1gz80se { left: 47%; top: 39%; }\",\".framer-DwhWe.framer-v-15wdw31.framer-1rzj3uv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 320px); padding: 16px; width: 320px; }\",\".framer-DwhWe.framer-v-15wdw31 .framer-2j7qkv { left: 77%; top: 65%; }\",\".framer-DwhWe.framer-v-15wdw31 .framer-1gz80se { left: 53%; top: 39%; }\",\".framer-DwhWe.framer-v-15wdw31 .framer-1j2b70u { left: 72%; top: 18%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"So0TJiayY\":{\"layout\":[\"fixed\",\"fixed\"]},\"wWMucaILw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGiAjBDAAP=withCSS(Component,css,\"framer-DwhWe\");export default FramerGiAjBDAAP;FramerGiAjBDAAP.displayName=\"Collection / Sneaker shop\";FramerGiAjBDAAP.defaultProps={height:600,width:600};addPropertyControls(FramerGiAjBDAAP,{variant:{options:[\"oN4dFUKhU\",\"So0TJiayY\",\"wWMucaILw\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerGiAjBDAAP,[{explicitInter:true,fonts:[]},...HotSpotFonts,...CollectionButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGiAjBDAAP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"So0TJiayY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wWMucaILw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Products from\"https://framerusercontent.com/modules/eVQ5txWYm6Cele0INvtm/ZU7ssBk5MdKOOPc29pLb/QFAbwgCUh.js\";import CollectionButton from\"https://framerusercontent.com/modules/ghU0h6GjJK28FukZyPep/FZLb6F2GlXL4U6ZpMr95/fP54QskMA.js\";import HotSpot from\"https://framerusercontent.com/modules/8kUsmAS9QPbQNnrUtjic/2Mp0vVguzLVFdGwZDI9h/wbcrqAdlc.js\";const HotSpotFonts=getFonts(HotSpot);const CollectionButtonFonts=getFonts(CollectionButton);const cycleOrder=[\"Qu_jLgyRB\",\"x7wSdiMj7\",\"cHuWTY8lS\"];const serializationHash=\"framer-K2GOG\";const variantClassNames={cHuWTY8lS:\"framer-v-8djzpp\",Qu_jLgyRB:\"framer-v-7ibzeg\",x7wSdiMj7:\"framer-v-2htyyx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale,{t6WMWyPu2OEti_efS1})=>{if(value){return{pathVariables:{t6WMWyPu2:t6WMWyPu2OEti_efS1},webPageId:\"dVs7HSqsz\"};}else{return{pathVariables:{t6WMWyPu2:t6WMWyPu2OEti_efS1},webPageId:\"dVs7HSqsz\"};}};const query=prequery=>prequery({from:{alias:\"OEti_efS1\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"OEti_efS1\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"OEti_efS1\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"rack-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromBoolean1=(value,activeLocale,{t6WMWyPu2umyycwjM5})=>{if(value){return{pathVariables:{t6WMWyPu2:t6WMWyPu2umyycwjM5},webPageId:\"dVs7HSqsz\"};}else{return{pathVariables:{t6WMWyPu2:t6WMWyPu2umyycwjM5},webPageId:\"dVs7HSqsz\"};}};const query1=prequery=>prequery({from:{alias:\"umyycwjM5\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"umyycwjM5\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"EAKPVk4RD\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"umyycwjM5\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromBoolean2=(value,activeLocale,{t6WMWyPu2TtxW4QVYW})=>{if(value){return{pathVariables:{t6WMWyPu2:t6WMWyPu2TtxW4QVYW},webPageId:\"dVs7HSqsz\"};}else{return{pathVariables:{t6WMWyPu2:t6WMWyPu2TtxW4QVYW},webPageId:\"dVs7HSqsz\"};}};const query2=prequery=>prequery({from:{alias:\"TtxW4QVYW\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"TtxW4QVYW\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"TtxW4QVYW\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"strap-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromBoolean3=(value,activeLocale,{t6WMWyPu2mWmnqr4w4})=>{if(value){return{pathVariables:{t6WMWyPu2:t6WMWyPu2mWmnqr4w4},webPageId:\"dVs7HSqsz\"};}else{return{pathVariables:{t6WMWyPu2:t6WMWyPu2mWmnqr4w4},webPageId:\"dVs7HSqsz\"};}};const query3=prequery=>prequery({from:{alias:\"mWmnqr4w4\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"mWmnqr4w4\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"mWmnqr4w4\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromString=(value,activeLocale,{t6WMWyPu2xjUEoQfY_})=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return{pathVariables:{t6WMWyPu2:t6WMWyPu2xjUEoQfY_},webPageId:\"dVs7HSqsz\"};default:return{pathVariables:{t6WMWyPu2:t6WMWyPu2xjUEoQfY_},webPageId:\"dVs7HSqsz\"};}};const query4=prequery=>prequery({from:{alias:\"xjUEoQfY_\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"xjUEoQfY_\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"xjUEoQfY_\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"fasteners\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});const convertFromBoolean4=(value,activeLocale,{t6WMWyPu2T5o9wYTPe})=>{if(value){return{pathVariables:{t6WMWyPu2:t6WMWyPu2T5o9wYTPe},webPageId:\"dVs7HSqsz\"};}else{return{pathVariables:{t6WMWyPu2:t6WMWyPu2T5o9wYTPe},webPageId:\"dVs7HSqsz\"};}};const query5=prequery=>prequery({from:{alias:\"T5o9wYTPe\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"T5o9wYTPe\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"EAKPVk4RD\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"T5o9wYTPe\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}});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.create(React.Fragment);const humanReadableVariantMap={\"Office - Desktop\":\"Qu_jLgyRB\",\"Office - Mobile\":\"cHuWTY8lS\",\"Office - Tablet\":\"x7wSdiMj7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Qu_jLgyRB\"};};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,Qo6ZJjWTQOEti_efS1,RVGOQMGaHOEti_efS1,t6WMWyPu2OEti_efS1,idOEti_efS1,Qo6ZJjWTQumyycwjM5,EAKPVk4RDumyycwjM5,RVGOQMGaHumyycwjM5,t6WMWyPu2umyycwjM5,idumyycwjM5,Qo6ZJjWTQTtxW4QVYW,RVGOQMGaHTtxW4QVYW,t6WMWyPu2TtxW4QVYW,idTtxW4QVYW,Qo6ZJjWTQmWmnqr4w4,RVGOQMGaHmWmnqr4w4,t6WMWyPu2mWmnqr4w4,idmWmnqr4w4,Qo6ZJjWTQxjUEoQfY_,RVGOQMGaHxjUEoQfY_,t6WMWyPu2xjUEoQfY_,idxjUEoQfY_,Qo6ZJjWTQT5o9wYTPe,EAKPVk4RDT5o9wYTPe,RVGOQMGaHT5o9wYTPe,t6WMWyPu2T5o9wYTPe,idT5o9wYTPe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qu_jLgyRB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"cHuWTY8lS\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/glZ4UHGuvYKO6bYmpLzkaV4PXsg.jpg\",srcSet:\"https://framerusercontent.com/images/glZ4UHGuvYKO6bYmpLzkaV4PXsg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/glZ4UHGuvYKO6bYmpLzkaV4PXsg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/glZ4UHGuvYKO6bYmpLzkaV4PXsg.jpg 1200w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-7ibzeg\",className,classNames),\"data-framer-name\":\"Office - Desktop\",layoutDependency:layoutDependency,layoutId:\"Qu_jLgyRB\",ref:ref??ref1,style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({cHuWTY8lS:{\"data-framer-name\":\"Office - Mobile\"},x7wSdiMj7:{\"data-framer-name\":\"Office - Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lge8qn\",layoutDependency:layoutDependency,layoutId:\"OEti_efS1\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OEti_efS1\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"OEti_efS1\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"OEti_efS1\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"OEti_efS1\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"rack-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idOEti_efS1,Qo6ZJjWTQ:Qo6ZJjWTQOEti_efS1,RVGOQMGaH:RVGOQMGaHOEti_efS1,t6WMWyPu2:t6WMWyPu2OEti_efS1},i)=>{Qo6ZJjWTQOEti_efS1??=\"\";t6WMWyPu2OEti_efS1??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`OEti_efS1-${idOEti_efS1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2OEti_efS1},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tu7awa\",layoutDependency:layoutDependency,layoutId:\"FSVZvv_z0\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean(isSet(t6WMWyPu2OEti_efS1),activeLocale,{t6WMWyPu2OEti_efS1}),implicitPathVariables:undefined},{href:convertFromBoolean(isSet(t6WMWyPu2OEti_efS1),activeLocale,{t6WMWyPu2OEti_efS1}),implicitPathVariables:undefined},{href:convertFromBoolean(isSet(t6WMWyPu2OEti_efS1),activeLocale,{t6WMWyPu2OEti_efS1}),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.7250000000000002-0)+0+-16,...addPropertyOverrides({cHuWTY8lS:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.7468750000000002-0)+0+-16},x7wSdiMj7:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.7211267605633805-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s2fjxk-container\",layoutDependency:layoutDependency,layoutId:\"xP7MrOGGk-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"xP7MrOGGk\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHOEti_efS1),layoutId:\"xP7MrOGGk\",LlvCNPEHq:resolvedLinks[0],su_C5Qj56:Qo6ZJjWTQOEti_efS1,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({cHuWTY8lS:{LlvCNPEHq:resolvedLinks[2],variant:\"uqDAgmJJI\"},x7wSdiMj7:{LlvCNPEHq:resolvedLinks[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idOEti_efS1);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ksacnw\",layoutDependency:layoutDependency,layoutId:\"umyycwjM5\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"umyycwjM5\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"umyycwjM5\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"EAKPVk4RD\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"umyycwjM5\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"umyycwjM5\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"display-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({EAKPVk4RD:EAKPVk4RDumyycwjM5,id:idumyycwjM5,Qo6ZJjWTQ:Qo6ZJjWTQumyycwjM5,RVGOQMGaH:RVGOQMGaHumyycwjM5,t6WMWyPu2:t6WMWyPu2umyycwjM5},i1)=>{Qo6ZJjWTQumyycwjM5??=\"\";EAKPVk4RDumyycwjM5??=\"\";t6WMWyPu2umyycwjM5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`umyycwjM5-${idumyycwjM5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2umyycwjM5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-436d1p\",layoutDependency:layoutDependency,layoutId:\"apPIXMCCr\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean1(isSet(t6WMWyPu2umyycwjM5),activeLocale,{t6WMWyPu2umyycwjM5}),implicitPathVariables:undefined},{href:convertFromBoolean1(isSet(t6WMWyPu2umyycwjM5),activeLocale,{t6WMWyPu2umyycwjM5}),implicitPathVariables:undefined},{href:convertFromBoolean1(isSet(t6WMWyPu2umyycwjM5),activeLocale,{t6WMWyPu2umyycwjM5}),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.5933333333333336-0)+0+-16,...addPropertyOverrides({cHuWTY8lS:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.6000000000000002-0)+0+-16},x7wSdiMj7:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.5887323943661974-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drv88p-container\",layoutDependency:layoutDependency,layoutId:\"SZvdGkNBJ-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"SZvdGkNBJ\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHumyycwjM5),layoutId:\"SZvdGkNBJ\",LlvCNPEHq:resolvedLinks1[0],su_C5Qj56:Qo6ZJjWTQumyycwjM5,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:EAKPVk4RDumyycwjM5,...addPropertyOverrides({cHuWTY8lS:{LlvCNPEHq:resolvedLinks1[2],variant:\"uqDAgmJJI\"},x7wSdiMj7:{LlvCNPEHq:resolvedLinks1[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idumyycwjM5);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ue7oji\",layoutDependency:layoutDependency,layoutId:\"TtxW4QVYW\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TtxW4QVYW\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"TtxW4QVYW\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"TtxW4QVYW\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"TtxW4QVYW\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"strap-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idTtxW4QVYW,Qo6ZJjWTQ:Qo6ZJjWTQTtxW4QVYW,RVGOQMGaH:RVGOQMGaHTtxW4QVYW,t6WMWyPu2:t6WMWyPu2TtxW4QVYW},i2)=>{Qo6ZJjWTQTtxW4QVYW??=\"\";t6WMWyPu2TtxW4QVYW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TtxW4QVYW-${idTtxW4QVYW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2TtxW4QVYW},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vvx9q5\",layoutDependency:layoutDependency,layoutId:\"N8krl_Qnl\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean2(isSet(t6WMWyPu2TtxW4QVYW),activeLocale,{t6WMWyPu2TtxW4QVYW}),implicitPathVariables:undefined},{href:convertFromBoolean2(isSet(t6WMWyPu2TtxW4QVYW),activeLocale,{t6WMWyPu2TtxW4QVYW}),implicitPathVariables:undefined},{href:convertFromBoolean2(isSet(t6WMWyPu2TtxW4QVYW),activeLocale,{t6WMWyPu2TtxW4QVYW}),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.5000000000000002-0)+0+-16,...addPropertyOverrides({cHuWTY8lS:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.4906250000000002-0)+0+-16},x7wSdiMj7:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.5014084507042256-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q96pkc-container\",layoutDependency:layoutDependency,layoutId:\"M4gO33Pr6-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"M4gO33Pr6\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHTtxW4QVYW),layoutId:\"M4gO33Pr6\",LlvCNPEHq:resolvedLinks2[0],su_C5Qj56:Qo6ZJjWTQTtxW4QVYW,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({cHuWTY8lS:{LlvCNPEHq:resolvedLinks2[2],variant:\"uqDAgmJJI\"},x7wSdiMj7:{LlvCNPEHq:resolvedLinks2[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idTtxW4QVYW);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gh4szm\",layoutDependency:layoutDependency,layoutId:\"mWmnqr4w4\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mWmnqr4w4\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"mWmnqr4w4\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"mWmnqr4w4\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"mWmnqr4w4\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"plant-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idmWmnqr4w4,Qo6ZJjWTQ:Qo6ZJjWTQmWmnqr4w4,RVGOQMGaH:RVGOQMGaHmWmnqr4w4,t6WMWyPu2:t6WMWyPu2mWmnqr4w4},i3)=>{Qo6ZJjWTQmWmnqr4w4??=\"\";t6WMWyPu2mWmnqr4w4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mWmnqr4w4-${idmWmnqr4w4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2mWmnqr4w4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6d2n0\",layoutDependency:layoutDependency,layoutId:\"gzx4a9tnM\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean3(isSet(t6WMWyPu2mWmnqr4w4),activeLocale,{t6WMWyPu2mWmnqr4w4}),implicitPathVariables:undefined},{href:convertFromBoolean3(isSet(t6WMWyPu2mWmnqr4w4),activeLocale,{t6WMWyPu2mWmnqr4w4}),implicitPathVariables:undefined},{href:convertFromBoolean3(isSet(t6WMWyPu2mWmnqr4w4),activeLocale,{t6WMWyPu2mWmnqr4w4}),implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.2766666666666669-0)+0+-16,...addPropertyOverrides({cHuWTY8lS:{y:(componentViewport?.y||0)+((componentViewport?.height||320)*.2875000000000002-0)+0+-16},x7wSdiMj7:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.27605633802816926-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mccpm5-container\",layoutDependency:layoutDependency,layoutId:\"DOTEx1xvw-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"DOTEx1xvw\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHmWmnqr4w4),layoutId:\"DOTEx1xvw\",LlvCNPEHq:resolvedLinks3[0],su_C5Qj56:Qo6ZJjWTQmWmnqr4w4,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"\",...addPropertyOverrides({cHuWTY8lS:{LlvCNPEHq:resolvedLinks3[2],variant:\"uqDAgmJJI\"},x7wSdiMj7:{LlvCNPEHq:resolvedLinks3[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idmWmnqr4w4);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jup5vp\",layoutDependency:layoutDependency,layoutId:\"xjUEoQfY_\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xjUEoQfY_\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"xjUEoQfY_\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"xjUEoQfY_\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"xjUEoQfY_\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"fasteners\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idxjUEoQfY_,Qo6ZJjWTQ:Qo6ZJjWTQxjUEoQfY_,RVGOQMGaH:RVGOQMGaHxjUEoQfY_,t6WMWyPu2:t6WMWyPu2xjUEoQfY_},i4)=>{Qo6ZJjWTQxjUEoQfY_??=\"\";t6WMWyPu2xjUEoQfY_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xjUEoQfY_-${idxjUEoQfY_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2xjUEoQfY_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1riwnd\",layoutDependency:layoutDependency,layoutId:\"aNIXQk3Wc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(t6WMWyPu2xjUEoQfY_,activeLocale,{t6WMWyPu2xjUEoQfY_}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2xjUEoQfY_,activeLocale,{t6WMWyPu2xjUEoQfY_}),implicitPathVariables:undefined},{href:convertFromString(t6WMWyPu2xjUEoQfY_,activeLocale,{t6WMWyPu2xjUEoQfY_}),implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"144px\",y:(componentViewport?.y||0)+((componentViewport?.height||600)*.19000000000000022-40)+0+0,...addPropertyOverrides({cHuWTY8lS:{height:70,width:\"162px\",y:(componentViewport?.y||0)+((componentViewport?.height||320)*.19375000000000023-35)+0+0},x7wSdiMj7:{height:74,width:\"138px\",y:(componentViewport?.y||0)+((componentViewport?.height||355)*.1971830985915495-37)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1opjclt-container\",layoutDependency:layoutDependency,layoutId:\"efkPtwMP8-container\",children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"efkPtwMP8\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHxjUEoQfY_),layoutId:\"efkPtwMP8\",LlvCNPEHq:resolvedLinks4[0],style:{height:\"100%\",width:\"100%\"},su_C5Qj56:Qo6ZJjWTQxjUEoQfY_,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:\"text\",...addPropertyOverrides({cHuWTY8lS:{LlvCNPEHq:resolvedLinks4[2],variant:\"uqDAgmJJI\"},x7wSdiMj7:{LlvCNPEHq:resolvedLinks4[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idxjUEoQfY_);})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100%\",y:(componentViewport?.y||0)+32+((componentViewport?.height||600)-64-96+0+0),...addPropertyOverrides({cHuWTY8lS:{y:(componentViewport?.y||0)+16+((componentViewport?.height||320)-32-96+0+0)},x7wSdiMj7:{y:(componentViewport?.y||0)+20+((componentViewport?.height||355)-40-96+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-btv0hl-container\",layoutDependency:layoutDependency,layoutId:\"I_c5ZwRzl-container\",children:/*#__PURE__*/_jsx(CollectionButton,{height:\"100%\",id:\"I_c5ZwRzl\",layoutId:\"I_c5ZwRzl\",style:{maxWidth:\"100%\"},variant:\"USK5FL7hl\",width:\"100%\",...addPropertyOverrides({cHuWTY8lS:{variant:\"xbhSkfxJd\"},x7wSdiMj7:{variant:\"B9Gfx5Uk3\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ud94wv\",layoutDependency:layoutDependency,layoutId:\"T5o9wYTPe\",transformTemplate:transformTemplate1,...addPropertyOverrides({x7wSdiMj7:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"T5o9wYTPe\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"T5o9wYTPe\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"EAKPVk4RD\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"T5o9wYTPe\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"T5o9wYTPe\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"base-unit\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({EAKPVk4RD:EAKPVk4RDT5o9wYTPe,id:idT5o9wYTPe,Qo6ZJjWTQ:Qo6ZJjWTQT5o9wYTPe,RVGOQMGaH:RVGOQMGaHT5o9wYTPe,t6WMWyPu2:t6WMWyPu2T5o9wYTPe},i5)=>{Qo6ZJjWTQT5o9wYTPe??=\"\";EAKPVk4RDT5o9wYTPe??=\"\";t6WMWyPu2T5o9wYTPe??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`T5o9wYTPe-${idT5o9wYTPe}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2T5o9wYTPe},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19p2mn5\",layoutDependency:layoutDependency,layoutId:\"ppIoZQeVf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean4(isSet(t6WMWyPu2T5o9wYTPe),activeLocale,{t6WMWyPu2T5o9wYTPe}),implicitPathVariables:undefined},{href:convertFromBoolean4(isSet(t6WMWyPu2T5o9wYTPe),activeLocale,{t6WMWyPu2T5o9wYTPe}),implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+((componentViewport?.height||600)*.43333333333333357-0)+0+-16,...addPropertyOverrides({x7wSdiMj7:{y:(componentViewport?.y||0)+((componentViewport?.height||355)*.43661971830985935-0)+0+-16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eab17f-container\",layoutDependency:layoutDependency,layoutId:\"YeK87y7uT-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HotSpot,{height:\"100%\",id:\"YeK87y7uT\",l7z6tV5rj:toResponsiveImage(RVGOQMGaHT5o9wYTPe),layoutId:\"YeK87y7uT\",LlvCNPEHq:resolvedLinks5[0],su_C5Qj56:Qo6ZJjWTQT5o9wYTPe,variant:\"N5dZ8YaOo\",width:\"100%\",YMvZ8Y6Qh:EAKPVk4RDT5o9wYTPe,...addPropertyOverrides({x7wSdiMj7:{LlvCNPEHq:resolvedLinks5[1],variant:\"vMazEKpGn\"}},baseVariant,gestureVariant)})})})})})})},idT5o9wYTPe);})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K2GOG.framer-ycvi2u, .framer-K2GOG .framer-ycvi2u { display: block; }\",\".framer-K2GOG.framer-7ibzeg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 600px; justify-content: flex-end; padding: 32px; position: relative; width: 600px; }\",\".framer-K2GOG .framer-1lge8qn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 64%; padding: 0px; position: absolute; top: 73%; width: min-content; z-index: 1; }\",\".framer-K2GOG .framer-1tu7awa, .framer-K2GOG .framer-436d1p, .framer-K2GOG .framer-1vvx9q5, .framer-K2GOG .framer-l6d2n0, .framer-K2GOG .framer-19p2mn5 { 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: 18px; min-width: 154px; padding: 0px; position: relative; width: min-content; }\",\".framer-K2GOG .framer-s2fjxk-container, .framer-K2GOG .framer-1drv88p-container, .framer-K2GOG .framer-1mccpm5-container, .framer-K2GOG .framer-eab17f-container { flex: none; height: auto; left: -8px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-K2GOG .framer-1ksacnw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 71%; padding: 0px; position: absolute; top: 59%; width: min-content; z-index: 1; }\",\".framer-K2GOG .framer-1ue7oji { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 45%; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-K2GOG .framer-1q96pkc-container { flex: none; height: auto; left: -8px; position: absolute; top: 50%; width: auto; z-index: 2; }\",\".framer-K2GOG .framer-1gh4szm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 46%; padding: 0px; position: absolute; top: 28%; width: min-content; z-index: 1; }\",\".framer-K2GOG .framer-jup5vp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 68%; padding: 0px; position: absolute; top: 19%; width: min-content; z-index: 1; }\",\".framer-K2GOG .framer-1riwnd { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-K2GOG .framer-1opjclt-container { flex: none; height: 80px; position: relative; width: 144px; }\",\".framer-K2GOG .framer-btv0hl-container { flex: none; height: auto; max-width: 100%; position: relative; width: auto; }\",\".framer-K2GOG .framer-ud94wv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 77%; padding: 0px; position: absolute; top: 43%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K2GOG.framer-7ibzeg, .framer-K2GOG .framer-1lge8qn, .framer-K2GOG .framer-1tu7awa, .framer-K2GOG .framer-1ksacnw, .framer-K2GOG .framer-436d1p, .framer-K2GOG .framer-1ue7oji, .framer-K2GOG .framer-1vvx9q5, .framer-K2GOG .framer-1gh4szm, .framer-K2GOG .framer-l6d2n0, .framer-K2GOG .framer-jup5vp, .framer-K2GOG .framer-1riwnd, .framer-K2GOG .framer-ud94wv, .framer-K2GOG .framer-19p2mn5 { gap: 0px; } .framer-K2GOG.framer-7ibzeg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-K2GOG.framer-7ibzeg > :first-child { margin-top: 0px; } .framer-K2GOG.framer-7ibzeg > :last-child { margin-bottom: 0px; } .framer-K2GOG .framer-1lge8qn > *, .framer-K2GOG .framer-1ksacnw > *, .framer-K2GOG .framer-1ue7oji > *, .framer-K2GOG .framer-1gh4szm > *, .framer-K2GOG .framer-jup5vp > *, .framer-K2GOG .framer-ud94wv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-K2GOG .framer-1lge8qn > :first-child, .framer-K2GOG .framer-1tu7awa > :first-child, .framer-K2GOG .framer-1ksacnw > :first-child, .framer-K2GOG .framer-436d1p > :first-child, .framer-K2GOG .framer-1ue7oji > :first-child, .framer-K2GOG .framer-1vvx9q5 > :first-child, .framer-K2GOG .framer-1gh4szm > :first-child, .framer-K2GOG .framer-l6d2n0 > :first-child, .framer-K2GOG .framer-jup5vp > :first-child, .framer-K2GOG .framer-1riwnd > :first-child, .framer-K2GOG .framer-ud94wv > :first-child, .framer-K2GOG .framer-19p2mn5 > :first-child { margin-left: 0px; } .framer-K2GOG .framer-1lge8qn > :last-child, .framer-K2GOG .framer-1tu7awa > :last-child, .framer-K2GOG .framer-1ksacnw > :last-child, .framer-K2GOG .framer-436d1p > :last-child, .framer-K2GOG .framer-1ue7oji > :last-child, .framer-K2GOG .framer-1vvx9q5 > :last-child, .framer-K2GOG .framer-1gh4szm > :last-child, .framer-K2GOG .framer-l6d2n0 > :last-child, .framer-K2GOG .framer-jup5vp > :last-child, .framer-K2GOG .framer-1riwnd > :last-child, .framer-K2GOG .framer-ud94wv > :last-child, .framer-K2GOG .framer-19p2mn5 > :last-child { margin-right: 0px; } .framer-K2GOG .framer-1tu7awa > *, .framer-K2GOG .framer-436d1p > *, .framer-K2GOG .framer-1vvx9q5 > *, .framer-K2GOG .framer-l6d2n0 > *, .framer-K2GOG .framer-1riwnd > *, .framer-K2GOG .framer-19p2mn5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-K2GOG.framer-v-2htyyx.framer-7ibzeg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 355px); padding: 20px; width: 355px; }\",\".framer-K2GOG.framer-v-2htyyx .framer-1lge8qn { left: 84%; top: 72%; }\",\".framer-K2GOG.framer-v-2htyyx .framer-1ksacnw { left: 83%; top: 59%; }\",\".framer-K2GOG.framer-v-2htyyx .framer-1ue7oji { left: 53%; top: 50%; }\",\".framer-K2GOG.framer-v-2htyyx .framer-1gh4szm { left: 50%; top: 28%; }\",\".framer-K2GOG.framer-v-2htyyx .framer-jup5vp { left: 83%; top: 20%; }\",\".framer-K2GOG.framer-v-2htyyx .framer-1opjclt-container { height: 74px; width: 138px; }\",\".framer-K2GOG.framer-v-2htyyx .framer-ud94wv { left: unset; right: 0px; top: 44%; }\",\".framer-K2GOG.framer-v-8djzpp.framer-7ibzeg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 320px); padding: 16px; width: 320px; }\",\".framer-K2GOG.framer-v-8djzpp .framer-1lge8qn { left: 87%; top: 75%; }\",\".framer-K2GOG.framer-v-8djzpp .framer-1ksacnw { left: 82%; top: 60%; }\",\".framer-K2GOG.framer-v-8djzpp .framer-1ue7oji { left: 58%; top: 49%; }\",\".framer-K2GOG.framer-v-8djzpp .framer-1gh4szm { left: 59%; top: 29%; }\",\".framer-K2GOG.framer-v-8djzpp .framer-jup5vp { left: 78%; top: 19%; }\",\".framer-K2GOG.framer-v-8djzpp .framer-1opjclt-container { height: 70px; width: 162px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"x7wSdiMj7\":{\"layout\":[\"fixed\",\"fixed\"]},\"cHuWTY8lS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh9ibFOK6E=withCSS(Component,css,\"framer-K2GOG\");export default Framerh9ibFOK6E;Framerh9ibFOK6E.displayName=\"Collection / Office\";Framerh9ibFOK6E.defaultProps={height:600,width:600};addPropertyControls(Framerh9ibFOK6E,{variant:{options:[\"Qu_jLgyRB\",\"x7wSdiMj7\",\"cHuWTY8lS\"],optionTitles:[\"Office - Desktop\",\"Office - Tablet\",\"Office - Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerh9ibFOK6E,[{explicitInter:true,fonts:[]},...HotSpotFonts,...CollectionButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh9ibFOK6E\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"600\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x7wSdiMj7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cHuWTY8lS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"mlERBa90T\",\"gR2liRexQ\"];const serializationHash=\"framer-sBRkA\";const variantClassNames={gR2liRexQ:\"framer-v-1pv2d6n\",mlERBa90T:\"framer-v-da4b8y\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"mlERBa90T\",\"Variant 2\":\"gR2liRexQ\"};const getProps=({description,height,id,image,jobTitle,name1,profilePic,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,bG_cC2Hp2:(_ref=profilePic!==null&&profilePic!==void 0?profilePic:props.bG_cC2Hp2)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/NFO8bEBzHQLvF98YH6AKJPuBeg.png\"},my33Kxu_7:(_ref1=image!==null&&image!==void 0?image:props.my33Kxu_7)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/EwJAyIhMjTchdADHws46V7OArYM.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/EwJAyIhMjTchdADHws46V7OArYM.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/EwJAyIhMjTchdADHws46V7OArYM.jpeg?scale-down-to=2048 1535w,https://framerusercontent.com/images/EwJAyIhMjTchdADHws46V7OArYM.jpeg 2734w\"},tsmAQVLDT:(_ref2=description!==null&&description!==void 0?description:props.tsmAQVLDT)!==null&&_ref2!==void 0?_ref2:\"Thank you for building such an empowering tool, especially for designers!\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"mlERBa90T\",xy_ISoZHY:(_ref4=name1!==null&&name1!==void 0?name1:props.xy_ISoZHY)!==null&&_ref4!==void 0?_ref4:\"Natalia Timea\",y_p2nPssC:(_ref5=jobTitle!==null&&jobTitle!==void 0?jobTitle:props.y_p2nPssC)!==null&&_ref5!==void 0?_ref5:\"text\"};};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,xy_ISoZHY,y_p2nPssC,tsmAQVLDT,my33Kxu_7,bG_cC2Hp2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mlERBa90T\",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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-da4b8y\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mlERBa90T\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(9.225433349609375px)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(9.225433349609375px)\",...style},...addPropertyOverrides({gR2liRexQ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b0z8h6\",\"data-framer-name\":\"Frame 427319448\",layoutDependency:layoutDependency,layoutId:\"WJiXxAySl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l0ak0k\",\"data-framer-name\":\"Frame 427319447\",layoutDependency:layoutDependency,layoutId:\"L6jHFTPVP\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ol4azt\",layoutDependency:layoutDependency,layoutId:\"j7n5jieDg\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1)/2)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1-0-(34.6+Math.max(0,((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1-0-114.6)/1)*1+60+20)+0+0)+5.800000000000001),sizes:\"28px\",...toResponsiveImage(bG_cC2Hp2),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1d2eomk\",\"data-framer-name\":\"Rectangle 256\",layoutDependency:layoutDependency,layoutId:\"qQ6yWReWE\",style:{borderBottomLeftRadius:593.16,borderBottomRightRadius:593.16,borderTopLeftRadius:593.16,borderTopRightRadius:593.16},...addPropertyOverrides({gR2liRexQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1)/2)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1-0-(57.6+Math.max(0,((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1-0-117.6-0)/1)*1+60+0)+0+0)+14.8),sizes:\"28px\",...toResponsiveImage(bG_cC2Hp2),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k7fok2\",layoutDependency:layoutDependency,layoutId:\"QtqfUBACe\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0)))\"},children:\"Natalia Timea\"})}),className:\"framer-1iossb3\",\"data-framer-name\":\"Natalia Szabo\",fonts:[\"CUSTOM;Roobert Medium\"],layoutDependency:layoutDependency,layoutId:\"EHP0CfjhG\",style:{\"--extracted-r6o4lv\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:xy_ISoZHY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgUmVndWxhcg==\",\"--framer-font-family\":'\"Roobert Regular\", \"Roobert Regular Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0)))\"},children:\"text\"})}),className:\"framer-1ifjnky\",\"data-framer-name\":\"Digital Designer\",fonts:[\"CUSTOM;Roobert Regular\"],layoutDependency:layoutDependency,layoutId:\"DKHvWURvi\",style:{\"--extracted-r6o4lv\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:y_p2nPssC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1)/2)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1-0-(34.6+Math.max(0,((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||400)-20-0)/1)*1-0)*1-0-114.6)/1)*1+60+20)+34.6+10)),sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.9972, 1px)`,...toResponsiveImage(my33Kxu_7)},className:\"framer-15me7g8\",\"data-framer-name\":\"Rectangle 1398\",layoutDependency:layoutDependency,layoutId:\"ODGUE3SVf\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{gR2liRexQ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({gR2liRexQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1)/2)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1-0-(57.6+Math.max(0,((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1)-0-0)/1)*1-0)*1-0-117.6-0)/1)*1+60+0)+57.6+0)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9972, 1px)`,...toResponsiveImage(my33Kxu_7)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ykec7m\",layoutDependency:layoutDependency,layoutId:\"W9i8OJXEd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(0, 0, 0, 0.5))\"},children:\"Thank you for building such an empowering tool, especially for designers!\"})}),className:\"framer-fbgn9t\",\"data-framer-name\":\"XY szob\\xe1ba szuper\\xfcl n\\xe9z ki...\",fonts:[\"CUSTOM;Roobert Medium\"],layoutDependency:layoutDependency,layoutId:\"qjJ68rBmc\",style:{\"--extracted-1eung3n\":\"rgba(0, 0, 0, 0.5)\",\"--framer-paragraph-spacing\":\"0px\"},text:tsmAQVLDT,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sBRkA.framer-4bwx15, .framer-sBRkA .framer-4bwx15 { display: block; }\",\".framer-sBRkA.framer-da4b8y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 400px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sBRkA .framer-b0z8h6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-sBRkA .framer-1l0ak0k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-sBRkA .framer-ol4azt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-sBRkA .framer-1d2eomk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-sBRkA .framer-k7fok2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sBRkA .framer-1iossb3, .framer-sBRkA .framer-1ifjnky { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sBRkA .framer-15me7g8 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-sBRkA .framer-ykec7m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: flex-start; overflow: visible; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-sBRkA .framer-fbgn9t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sBRkA.framer-da4b8y, .framer-sBRkA .framer-b0z8h6, .framer-sBRkA .framer-1l0ak0k, .framer-sBRkA .framer-ol4azt, .framer-sBRkA .framer-k7fok2, .framer-sBRkA .framer-ykec7m { gap: 0px; } .framer-sBRkA.framer-da4b8y > * { margin: 0px; margin-bottom: calc(14.760693550109863px / 2); margin-top: calc(14.760693550109863px / 2); } .framer-sBRkA.framer-da4b8y > :first-child, .framer-sBRkA .framer-1l0ak0k > :first-child, .framer-sBRkA .framer-k7fok2 > :first-child { margin-top: 0px; } .framer-sBRkA.framer-da4b8y > :last-child, .framer-sBRkA .framer-1l0ak0k > :last-child, .framer-sBRkA .framer-k7fok2 > :last-child { margin-bottom: 0px; } .framer-sBRkA .framer-b0z8h6 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-sBRkA .framer-b0z8h6 > :first-child, .framer-sBRkA .framer-ol4azt > :first-child, .framer-sBRkA .framer-ykec7m > :first-child { margin-left: 0px; } .framer-sBRkA .framer-b0z8h6 > :last-child, .framer-sBRkA .framer-ol4azt > :last-child, .framer-sBRkA .framer-ykec7m > :last-child { margin-right: 0px; } .framer-sBRkA .framer-1l0ak0k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sBRkA .framer-ol4azt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-sBRkA .framer-k7fok2 > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-sBRkA .framer-ykec7m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-sBRkA.framer-v-1pv2d6n.framer-da4b8y { height: min-content; padding: 0px; }\",\".framer-sBRkA.framer-v-1pv2d6n .framer-1l0ak0k { gap: 0px; }\",\".framer-sBRkA.framer-v-1pv2d6n .framer-ol4azt, .framer-sBRkA.framer-v-1pv2d6n .framer-ykec7m { padding: 14px 10px 14px 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sBRkA.framer-v-1pv2d6n .framer-1l0ak0k { gap: 0px; } .framer-sBRkA.framer-v-1pv2d6n .framer-1l0ak0k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sBRkA.framer-v-1pv2d6n .framer-1l0ak0k > :first-child { margin-top: 0px; } .framer-sBRkA.framer-v-1pv2d6n .framer-1l0ak0k > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gR2liRexQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xy_ISoZHY\":\"name1\",\"y_p2nPssC\":\"jobTitle\",\"tsmAQVLDT\":\"description\",\"my33Kxu_7\":\"image\",\"bG_cC2Hp2\":\"profilePic\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjKC9JwSgF=withCSS(Component,css,\"framer-sBRkA\");export default FramerjKC9JwSgF;FramerjKC9JwSgF.displayName=\"review\";FramerjKC9JwSgF.defaultProps={height:400,width:300};addPropertyControls(FramerjKC9JwSgF,{variant:{options:[\"mlERBa90T\",\"gR2liRexQ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xy_ISoZHY:{defaultValue:\"Natalia Timea\",displayTextArea:false,title:\"Name\",type:ControlType.String},y_p2nPssC:{defaultValue:\"text\",displayTextArea:false,placeholder:\"Digital Designer\",title:\"Job title\",type:ControlType.String},tsmAQVLDT:{defaultValue:\"Thank you for building such an empowering tool, especially for designers!\",displayTextArea:false,title:\"Description\",type:ControlType.String},my33Kxu_7:{__defaultAssetReference:\"data:framer/asset-reference,EwJAyIhMjTchdADHws46V7OArYM.jpeg?originalFilename=IMG_2494.jpeg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},bG_cC2Hp2:{__defaultAssetReference:\"data:framer/asset-reference,NFO8bEBzHQLvF98YH6AKJPuBeg.png?originalFilename=Rectangle+256.png&preferredSize=auto\",title:\"Profile pic\",type:ControlType.ResponsiveImage}});addFonts(FramerjKC9JwSgF,[{explicitInter:true,fonts:[{family:\"Roobert Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZmlTwp1qlmtoeCDOIaKP5onCxk.woff\"},{family:\"Roobert Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/j0u0uaBvezFjztnvrZV9ZIW5g.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjKC9JwSgF\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gR2liRexQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xy_ISoZHY\\\":\\\"name1\\\",\\\"y_p2nPssC\\\":\\\"jobTitle\\\",\\\"tsmAQVLDT\\\":\\\"description\\\",\\\"my33Kxu_7\\\":\\\"image\\\",\\\"bG_cC2Hp2\\\":\\\"profilePic\\\"}\",\"framerIntrinsicWidth\":\"300\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jKC9JwSgF.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Cart1 from\"https://framerusercontent.com/modules/tFd9uWihOx6Vct7vMtSn/fUIZVKTWAJhudkNSqysm/b3yfl49K2.js\";import{Playbee}from\"https://framerusercontent.com/modules/u2TDvHtW3pqaLvXKwX0n/PgSskQYXznsF0MW59PtW/PlayBee.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import CollectionPlantShop from\"#framer/local/canvasComponent/AEuM87m3U/AEuM87m3U.js\";import Cart from\"#framer/local/canvasComponent/b3yfl49K2/b3yfl49K2.js\";import CollectionWorkshop from\"#framer/local/canvasComponent/C8PGUHnIY/C8PGUHnIY.js\";import TopbarTablet from\"#framer/local/canvasComponent/ctpizD626/ctpizD626.js\";import ButtonUNITO from\"#framer/local/canvasComponent/D_jKn9VlI/D_jKn9VlI.js\";import PopUp from\"#framer/local/canvasComponent/DdXgiTpPW/DdXgiTpPW.js\";import CollectionSneakerShop from\"#framer/local/canvasComponent/GiAjBDAAP/GiAjBDAAP.js\";import CollectionOffice from\"#framer/local/canvasComponent/h9ibFOK6E/h9ibFOK6E.js\";import Review from\"#framer/local/canvasComponent/jKC9JwSgF/jKC9JwSgF.js\";import ProductCardMinimal from\"#framer/local/canvasComponent/kHTJ96taC/kHTJ96taC.js\";import Footer from\"#framer/local/canvasComponent/lsrprVEJZ/lsrprVEJZ.js\";import Shopiframe_Config from\"#framer/local/canvasComponent/mBRcL5xHa/mBRcL5xHa.js\";import TopbarMobile3 from\"#framer/local/canvasComponent/sUVZewJkL/sUVZewJkL.js\";import Topbar from\"#framer/local/canvasComponent/WGi3ryVa2/WGi3ryVa2.js\";import Products from\"#framer/local/collection/QFAbwgCUh/QFAbwgCUh.js\";import*as sharedStyle from\"#framer/local/css/A2Ln1GNwC/A2Ln1GNwC.js\";import*as sharedStyle1 from\"#framer/local/css/g4EL7gLw6/g4EL7gLw6.js\";import*as sharedStyle3 from\"#framer/local/css/GyOui8Iz1/GyOui8Iz1.js\";import*as sharedStyle2 from\"#framer/local/css/ta5Q3tShC/ta5Q3tShC.js\";import*as sharedStyle4 from\"#framer/local/css/URqGM6fIw/URqGM6fIw.js\";import*as sharedStyle5 from\"#framer/local/css/WiGD_j4xE/WiGD_j4xE.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopbarFonts=getFonts(Topbar);const CartFonts=getFonts(Cart);const Shopiframe_ConfigFonts=getFonts(Shopiframe_Config);const PlaybeeFonts=getFonts(Playbee);const PopUpFonts=getFonts(PopUp);const PopUpWithVariantAppearEffect=withVariantAppearEffect(PopUp);const CollectionOfficeFonts=getFonts(CollectionOffice);const CollectionPlantShopFonts=getFonts(CollectionPlantShop);const CollectionSneakerShopFonts=getFonts(CollectionSneakerShop);const CollectionWorkshopFonts=getFonts(CollectionWorkshop);const SlideshowFonts=getFonts(Slideshow);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ProductCardMinimalFonts=getFonts(ProductCardMinimal);const TickerFonts=getFonts(Ticker);const ButtonUNITOFonts=getFonts(ButtonUNITO);const ReviewFonts=getFonts(Review);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const TopbarMobile3Fonts=getFonts(TopbarMobile3);const Cart1Fonts=getFonts(Cart1);const TopbarTabletFonts=getFonts(TopbarTablet);const MotionDivWithFX=withFX(motion.div);const breakpoints={aeLtaZYDs:\"(min-width: 1440px) and (max-width: 2559px)\",CI6IA6LsL:\"(min-width: 810px) and (max-width: 1199px)\",RWfAfI_6g:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1439px)\",xA69ZbwWC:\"(min-width: 2560px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q3uUf\";const variantClassNames={aeLtaZYDs:\"framer-v-wsa0ag\",CI6IA6LsL:\"framer-v-nlhtk\",RWfAfI_6g:\"framer-v-1d0ns68\",WQLkyLRf1:\"framer-v-72rtr7\",xA69ZbwWC:\"framer-v-1usactr\"};const transition1={delay:0,duration:.3,ease:[.54,-.01,.01,.97],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:514,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:514,y:0};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 transition2={damping:25,delay:.1,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};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,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:0,duration:.3,ease:[.44,0,.24,.99],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:-844};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-844};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:-150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition5={bounce:0,delay:.3,duration:.5,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={\"Home large\":\"aeLtaZYDs\",\"Home very large\":\"xA69ZbwWC\",Home:\"WQLkyLRf1\",Phone:\"RWfAfI_6g\",Tablet:\"CI6IA6LsL\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RVGOQMGaHjh_VljcLg,Qo6ZJjWTQjh_VljcLg,t6WMWyPu2jh_VljcLg,idjh_VljcLg,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,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-Q3uUf`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Q3uUf`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const SX4NEb3Ps3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Yx8jG4s9E1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const vEJsLoiYG3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const HgYZdVjLq3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const Bv6Ij70q33bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"CI6IA6LsL\",\"RWfAfI_6g\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const elementId=useRouteElementId(\"EF3KZpLyl\");const isDisplayed1=()=>{if(!isBrowser())return true;if([\"RWfAfI_6g\",\"aeLtaZYDs\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"RWfAfI_6g\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"aeLtaZYDs\")return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"CI6IA6LsL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-90zd4a-container hidden-nlhtk hidden-1d0ns68\",id:\"90zd4a\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"RXlR0Sf_u\",layoutId:\"RXlR0Sf_u\",style:{height:\"100%\",width:\"100%\"},SX4NEb3Ps:SX4NEb3Ps3bnx0g({overlay}),variant:\"tX_S9ReTX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1nodbg1\",\"data-framer-portal-id\":\"90zd4a\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"hYHaeSpL3\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"514px\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:\"framer-1xm4yok-container\",\"data-framer-portal-id\":\"90zd4a\",exit:animation,initial:animation2,children:/*#__PURE__*/_jsx(Cart,{height:\"100%\",id:\"bEhJ70ZMP\",layoutId:\"bEhJ70ZMP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yx8jG4s9E:Yx8jG4s9E1wnntms({overlay})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"408px\",y:-1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjcr7z-container\",children:/*#__PURE__*/_jsx(Shopiframe_Config,{height:\"100%\",id:\"VWA_XjOag\",layoutId:\"VWA_XjOag\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i4eoq2\",\"data-framer-name\":\"logo_landscape\",name:\"logo_landscape\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yvv0vj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zeynv6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xA69ZbwWC:{customScrollHeight:2500}},children:/*#__PURE__*/_jsx(Playbee,{customScrollHeight:500,height:\"100%\",id:\"uwUpoWEUG\",layoutId:\"uwUpoWEUG\",objectFit:\"cover\",scrollSpeed:\"Fast\",style:{height:\"100%\",width:\"100%\"},videoFile:\"https://framerusercontent.com/assets/2LBB8XP1wSsxbvdDFJj06U2Nxs.mp4\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{y:858}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,y:828,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pr69tr-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{__framer__targets:[{ref:ref2,target:\"yjzkY6HHm\"}],variant:\"MqkqexGm0\"}},children:/*#__PURE__*/_jsx(PopUpWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref2,target:\"yCECK4DKe\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"NMWRxcPDm\",layoutId:\"NMWRxcPDm\",variant:\"MyLgNzv79\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gi1uez\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfwfqe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15tl3cu\",\"data-styles-preset\":\"A2Ln1GNwC\",children:\"Curated setups\"})}),className:\"framer-z108cz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12ap354\",\"data-styles-preset\":\"g4EL7gLw6\",children:\"Our setups are inspired by beautiful spaces we imagined for you\u2014but feel free to question it and make it your own!\"})}),className:\"framer-1mue6o4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mz48y hidden-1d0ns68 hidden-wsa0ag\",\"data-framer-name\":\"Tablet\",name:\"Tablet\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-b0yklu-container\",\"data-framer-appear-id\":\"b0yklu\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:15,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.2,effectsPerspective:1200,effectsRotate:0,effectsScale:.95},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"UEfX9aq_f\",intervalControl:10,itemAmount:1,layoutId:\"UEfX9aq_f\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, rgb(237, 236, 232))\",dotsBlur:10,dotsFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",dotsGap:9,dotsInset:-60,dotSize:6,dotsOpacity:.3,dotsPadding:13,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dvh88h-container\",children:/*#__PURE__*/_jsx(CollectionOffice,{height:\"100%\",id:\"OX1dUnwqg\",layoutId:\"OX1dUnwqg\",style:{height:\"100%\",width:\"100%\"},variant:\"Qu_jLgyRB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qrqq24-container\",children:/*#__PURE__*/_jsx(CollectionPlantShop,{height:\"100%\",id:\"RwxlNB6Ux\",layoutId:\"RwxlNB6Ux\",style:{height:\"100%\",width:\"100%\"},variant:\"q8SsbN01O\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u69aye-container\",children:/*#__PURE__*/_jsx(CollectionSneakerShop,{height:\"100%\",id:\"pnKSdLNYK\",layoutId:\"pnKSdLNYK\",style:{height:\"100%\",width:\"100%\"},variant:\"oN4dFUKhU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4247sx-container\",children:/*#__PURE__*/_jsx(CollectionWorkshop,{height:\"100%\",id:\"scCVBQSw_\",layoutId:\"scCVBQSw_\",style:{height:\"100%\",width:\"100%\"},variant:\"FnjXXbFwG\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:1,ease:[1,-.2,.19,1.05],type:\"tween\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yc0whz hidden-72rtr7 hidden-nlhtk hidden-1usactr hidden-wsa0ag\",\"data-framer-name\":\"Mobile\",name:\"Mobile\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-17782kk-container\",\"data-framer-appear-id\":\"17782kk\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{startFrom:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:15,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.2,effectsPerspective:1200,effectsRotate:0,effectsScale:.95},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"kr40iNLHl\",intervalControl:10,itemAmount:1,layoutId:\"kr40iNLHl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, rgb(237, 236, 232))\",dotsBlur:10,dotsFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",dotsGap:9,dotsInset:-60,dotSize:6,dotsOpacity:.3,dotsPadding:13,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1850k6v-container\",children:/*#__PURE__*/_jsx(CollectionOffice,{height:\"100%\",id:\"Q1pBrvWTS\",layoutId:\"Q1pBrvWTS\",style:{height:\"100%\",width:\"100%\"},variant:\"cHuWTY8lS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-197opm-container\",children:/*#__PURE__*/_jsx(CollectionPlantShop,{height:\"100%\",id:\"uxQyQ7bqC\",layoutId:\"uxQyQ7bqC\",style:{height:\"100%\",width:\"100%\"},variant:\"TR8dnIrJV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbrk8d-container\",children:/*#__PURE__*/_jsx(CollectionSneakerShop,{height:\"100%\",id:\"U43dSnibW\",layoutId:\"U43dSnibW\",style:{height:\"100%\",width:\"100%\"},variant:\"wWMucaILw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1usuaug-container\",children:/*#__PURE__*/_jsx(CollectionWorkshop,{height:\"100%\",id:\"dFOCyP6mp\",layoutId:\"dFOCyP6mp\",style:{height:\"100%\",width:\"100%\"},variant:\"LaC8Rqh4u\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[1,-.2,.9,.58],type:\"tween\"},width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m77kjo hidden-72rtr7 hidden-nlhtk hidden-1d0ns68 hidden-1usactr\",\"data-framer-name\":\"Desktop\",name:\"Desktop\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1r7ybjr-container\",\"data-framer-appear-id\":\"1r7ybjr\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:15,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.2,effectsPerspective:1200,effectsRotate:0,effectsScale:.95},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"cFoZztIOE\",intervalControl:10,itemAmount:1,layoutId:\"cFoZztIOE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, rgb(237, 236, 232))\",dotsBlur:10,dotsFill:\"var(--token-02859f91-420a-4ce4-8a9e-bff5ccb7fb51, rgba(0, 0, 0, 0.5))\",dotsGap:9,dotsInset:-60,dotSize:6,dotsOpacity:.3,dotsPadding:13,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dvh88h-container\",children:/*#__PURE__*/_jsx(CollectionOffice,{height:\"100%\",id:\"OX1dUnwqg\",layoutId:\"OX1dUnwqg\",style:{height:\"100%\",width:\"100%\"},variant:\"Qu_jLgyRB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qrqq24-container\",children:/*#__PURE__*/_jsx(CollectionPlantShop,{height:\"100%\",id:\"RwxlNB6Ux\",layoutId:\"RwxlNB6Ux\",style:{height:\"100%\",width:\"100%\"},variant:\"q8SsbN01O\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u69aye-container\",children:/*#__PURE__*/_jsx(CollectionSneakerShop,{height:\"100%\",id:\"pnKSdLNYK\",layoutId:\"pnKSdLNYK\",style:{height:\"100%\",width:\"100%\"},variant:\"oN4dFUKhU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4247sx-container\",children:/*#__PURE__*/_jsx(CollectionWorkshop,{height:\"100%\",id:\"scCVBQSw_\",layoutId:\"scCVBQSw_\",style:{height:\"100%\",width:\"100%\"},variant:\"FnjXXbFwG\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:1,ease:[1,-.2,.19,1.05],type:\"tween\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dusptw\",\"data-framer-name\":\"Collections\",name:\"Collections\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yvzvm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y7a0b8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15tl3cu\",\"data-styles-preset\":\"A2Ln1GNwC\",children:\"Build your own\"})}),className:\"framer-16aaasf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12ap354\",\"data-styles-preset\":\"g4EL7gLw6\",children:\"Assemble your very own setup or upgrade an existing one\"})}),className:\"framer-1kt9hds\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1c1t3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{fadeOptions:{fadeAlpha:.1,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.35,fadeContent:true,fadeInset:0,fadeWidth:65,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"qNZkPXXRo\",layoutId:\"qNZkPXXRo\",padding:20,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dhmhzc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jh_VljcLg\",data:Products,type:\"Collection\"},select:[{collection:\"jh_VljcLg\",name:\"RVGOQMGaH\",type:\"Identifier\"},{collection:\"jh_VljcLg\",name:\"Qo6ZJjWTQ\",type:\"Identifier\"},{collection:\"jh_VljcLg\",name:\"t6WMWyPu2\",type:\"Identifier\"},{collection:\"jh_VljcLg\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"jh_VljcLg\",name:\"yDtxNT0Gz\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Pieces\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection===null||collection===void 0?void 0:collection.map(({id:idjh_VljcLg,Qo6ZJjWTQ:Qo6ZJjWTQjh_VljcLg,RVGOQMGaH:RVGOQMGaHjh_VljcLg,t6WMWyPu2:t6WMWyPu2jh_VljcLg},i)=>{Qo6ZJjWTQjh_VljcLg!==null&&Qo6ZJjWTQjh_VljcLg!==void 0?Qo6ZJjWTQjh_VljcLg:Qo6ZJjWTQjh_VljcLg=\"\";t6WMWyPu2jh_VljcLg!==null&&t6WMWyPu2jh_VljcLg!==void 0?t6WMWyPu2jh_VljcLg:t6WMWyPu2jh_VljcLg=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jh_VljcLg-${idjh_VljcLg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{t6WMWyPu2:t6WMWyPu2jh_VljcLg},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ltjo3\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{t6WMWyPu2:t6WMWyPu2jh_VljcLg},webPageId:\"dVs7HSqsz\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:\"256px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-th5d9z-container\",children:/*#__PURE__*/_jsx(ProductCardMinimal,{bod_1WkIv:toResponsiveImage(RVGOQMGaHjh_VljcLg),dvLj_ECds:Qo6ZJjWTQjh_VljcLg,FSXRB31DR:resolvedLinks[0],height:\"100%\",id:\"E4vaWm1rO\",layoutId:\"E4vaWm1rO\",style:{width:\"100%\"},width:\"100%\"})})})})})})},idjh_VljcLg);})})})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EBOxaqSlD\"},implicitPathVariables:undefined},{href:{webPageId:\"EBOxaqSlD\"},implicitPathVariables:undefined},{href:{webPageId:\"EBOxaqSlD\"},implicitPathVariables:undefined},{href:{webPageId:\"EBOxaqSlD\"},implicitPathVariables:undefined},{href:{webPageId:\"EBOxaqSlD\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{y:3042.6},RWfAfI_6g:{y:2512.6000000000004},xA69ZbwWC:{y:3346.6000000000004}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:3059.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cuei1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{c7mqZ4h2M:resolvedLinks1[4]},CI6IA6LsL:{c7mqZ4h2M:resolvedLinks1[1]},RWfAfI_6g:{c7mqZ4h2M:resolvedLinks1[2]},xA69ZbwWC:{c7mqZ4h2M:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(ButtonUNITO,{c7mqZ4h2M:resolvedLinks1[0],height:\"100%\",id:\"QPWKWLTld\",layoutId:\"QPWKWLTld\",PMcP3FU4d:\"See all\",style:{height:\"100%\"},variant:\"pq8sluMij\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpirat\",\"data-framer-name\":\"Make it yours\",name:\"Make it yours\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3321.4),pixelHeight:1900,pixelWidth:1425,positionX:\"52.3%\",positionY:\"34.1%\",sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg\",srcSet:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg 1425w\"}},CI6IA6LsL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3304.4),pixelHeight:1900,pixelWidth:1425,positionX:\"52.3%\",positionY:\"35.7%\",sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg\",srcSet:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg 1425w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2764.4),pixelHeight:1900,pixelWidth:1425,positionX:\"52.3%\",positionY:\"35.7%\",sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg\",srcSet:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg 1425w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3608.4),pixelHeight:1900,pixelWidth:1425,positionX:\"52.3%\",positionY:\"35.7%\",sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg\",srcSet:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg 1425w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3321.4),pixelHeight:1900,pixelWidth:1425,positionX:\"52.3%\",positionY:\"35.7%\",sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg\",srcSet:\"https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/ksdWxXCQv65GidhzLE6NQgtJ5P0.jpg 1425w\"},className:\"framer-xbkcxc\",\"data-framer-name\":\"Make it yours\",name:\"Make it yours\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-himgtx\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1co3dge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15tl3cu\",\"data-styles-preset\":\"A2Ln1GNwC\",children:\"Principles\"})}),className:\"framer-zfamqn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12ap354\",\"data-styles-preset\":\"g4EL7gLw6\",children:\"We\u2019re creating a platform shaped by connection, adaptability, and thoughtful design\"})}),className:\"framer-okr4f9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1okjjrw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mb21xa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1342miq\",\"data-framer-name\":\"Frame 427319462\",name:\"Frame 427319462\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4719.795901695204),positionX:\"center\",positionY:\"center\",sizes:\"803px\",src:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png\",srcSet:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png 3212w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4101.8),positionX:\"center\",positionY:\"center\",sizes:\"803px\",src:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png\",srcSet:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png 3212w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4640.795901695204),positionX:\"center\",positionY:\"center\",sizes:\"803px\",src:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png\",srcSet:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png 3212w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4353.795901695204),positionX:\"center\",positionY:\"center\",sizes:\"803px\",src:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png\",srcSet:\"https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aNCIWF5zNFBCDpou6UDMkQc5vg.png 3212w\"},className:\"framer-u4eewr\",\"data-framer-name\":\"untitled3 3\",name:\"untitled3 3\",style:{rotate:13}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynyjmz\",\"data-framer-name\":\"Frame 427319463\",name:\"Frame 427319463\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5023.799999999999),positionX:\"center\",positionY:\"center\",sizes:\"103px\",src:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png\",srcSet:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png 648w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4470.3),positionX:\"center\",positionY:\"center\",sizes:\"103px\",src:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png\",srcSet:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png 648w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4878.799999999999),positionX:\"center\",positionY:\"center\",sizes:\"103px\",src:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png\",srcSet:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png 648w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4591.799999999999),positionX:\"center\",positionY:\"center\",sizes:\"103px\",src:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png\",srcSet:\"https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XTUpkoMd31leGs6AWqLxNsB4.png 648w\"},className:\"framer-7jrqht\",\"data-border\":true,\"data-framer-name\":\"Frame 130\",name:\"Frame 130\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxnxrz\",\"data-framer-name\":\"Frame 44358\",name:\"Frame 44358\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wq52hj\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,name:\"Layer_1\",svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_635_264)\">\\n<path d=\"M0.222656 6.67748L3.45465 6.03595C4.25989 5.87667 4.74214 5.04268 4.47668 4.26399L3.41041 1.12712L5.14697 0.125L7.33261 2.61813C7.8746 3.23533 8.83468 3.23533 9.37667 2.61813L11.5623 0.125L13.2967 1.12712L12.2304 4.26399C11.9649 5.04268 12.4472 5.87446 13.2524 6.03595L16.4844 6.67748V8.68172L13.2524 9.32325C12.4472 9.48253 11.9649 10.3165 12.2304 11.0952L13.2967 14.2321L11.5623 15.2342L9.37667 12.7411C8.83468 12.1239 7.8746 12.1239 7.33261 12.7411L5.14697 15.2342L3.41262 14.2321L4.4789 11.0952C4.74436 10.3165 4.2621 9.48474 3.45687 9.32325L0.224868 8.68172V6.67748H0.222656Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_635_264\">\\n<rect width=\"16.264\" height=\"15.107\" fill=\"white\" transform=\"translate(0.222656 0.125)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9vYmVydCBUUklBTC02MDA=\",\"--framer-font-family\":'\"Roobert TRIAL\", \"Roobert TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Produced in EU\"})}),className:\"framer-1d7nk8n\",\"data-framer-name\":\"Produced in EU\",fonts:[\"GF;Roobert TRIAL-600\"],name:\"Produced in EU\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12verek\",\"data-framer-name\":\"Frame 44358\",name:\"Frame 44358\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All parts are designed and produced in the EU\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All parts are designed and produced in the EU\"})}),className:\"framer-174xv08\",\"data-framer-name\":\"All parts are designed and produced in the EU\",fonts:[\"CUSTOM;Roobert Medium\"],name:\"All parts are designed and produced in the EU\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5088.799881455896),pixelHeight:81,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UOPYYk8cMbUODRUY3bPrbcDrmw.png\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4659.7997511162785),pixelHeight:81,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UOPYYk8cMbUODRUY3bPrbcDrmw.png\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4982.799273485347),pixelHeight:81,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UOPYYk8cMbUODRUY3bPrbcDrmw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4737.79851896707),pixelHeight:81,pixelWidth:89,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UOPYYk8cMbUODRUY3bPrbcDrmw.png\"},className:\"framer-140b0x\",style:{rotate:-22}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udvrft\",\"data-framer-name\":\"Frame 427319459\",name:\"Frame 427319459\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4963.799999999999),sizes:\"max((min(100vw, 1440px) - 100px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png\",srcSet:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png 1336w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4756.8),sizes:\"min(100vw - 40px, 1440px)\",src:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png\",srcSet:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png 1336w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5149.799999999999),sizes:\"max((max((min(75vw, 1600px) - 20px) / 2, 1px) - 20px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png\",srcSet:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png 1336w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4862.799999999999),sizes:\"max((max((min(100vw, 1440px) - 260px) / 2, 1px) - 20px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png\",srcSet:\"https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Za301ZqBwy7EnK70Lpi4rnw1unk.png 1336w\"},className:\"framer-1gmqmpw\",\"data-framer-name\":\"Frame 427319457\",name:\"Frame 427319457\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easy install\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easy install\"})}),className:\"framer-w16n46\",\"data-framer-name\":\"Easy setup\",fonts:[\"CUSTOM;Roobert Medium\"],name:\"Easy setup\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5162.299999999999),pixelHeight:2750,pixelWidth:1466,positionX:\"46.7%\",positionY:\"79%\",sizes:\"max((min(100vw, 1440px) - 100px) / 2, 1px)\",src:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png\",srcSet:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=1024 545w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=2048 1091w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png 1466w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4876.8),pixelHeight:2750,pixelWidth:1466,positionX:\"46.7%\",positionY:\"79%\",sizes:\"min(100vw - 40px, 1440px)\",src:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png\",srcSet:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=1024 545w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=2048 1091w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png 1466w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5149.799999999999),pixelHeight:2750,pixelWidth:1466,positionX:\"46.7%\",positionY:\"79%\",sizes:\"max((max((min(75vw, 1600px) - 20px) / 2, 1px) - 20px) / 2, 1px)\",src:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png\",srcSet:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=1024 545w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=2048 1091w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png 1466w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4862.799999999999),pixelHeight:2750,pixelWidth:1466,positionX:\"46.7%\",positionY:\"79%\",sizes:\"max((max((min(100vw, 1440px) - 260px) / 2, 1px) - 20px) / 2, 1px)\",src:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png\",srcSet:\"https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=1024 545w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png?scale-down-to=2048 1091w,https://framerusercontent.com/images/6oJM91Cs1h5z1oqJsk8gUZKTU.png 1466w\"},className:\"framer-1ea1c2w\",\"data-framer-name\":\"Frame 427319458\",name:\"Frame 427319458\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Re-design anytime\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Re-design anytime\"})}),className:\"framer-16fxfra\",\"data-framer-name\":\"Re-configure anytime\",fonts:[\"CUSTOM;Roobert Medium\"],name:\"Re-configure anytime\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4543.799999999999),sizes:\"calc(min(100vw, 1440px) - 80px)\",src:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png\",srcSet:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png 3560w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4016.8),sizes:\"min(100vw - 40px, 1440px)\",src:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png\",srcSet:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png 3560w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4884.799999999999),sizes:\"max((min(75vw, 1600px) - 20px) / 2, 1px)\",src:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png\",srcSet:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png 3560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4597.799999999999),sizes:\"max((min(100vw, 1440px) - 260px) / 2, 1px)\",src:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png\",srcSet:\"https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WoPuUg1QtQGJGdZQ7l3LU6aJ4k.png 3560w\"},className:\"framer-1yy1yi5\",\"data-framer-name\":\"Frame 38\",name:\"Frame 38\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18cdyep\",\"data-framer-name\":\"Frame 427319451\",name:\"Frame 427319451\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m14t5g\",\"data-framer-name\":\"Frame 427319450\",name:\"Frame 427319450\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fnaqnv\",\"data-framer-name\":\"Frame 427319428\",name:\"Frame 427319428\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 77, 32)\"},children:\"We are building platform for makers\"})})},RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 77, 32)\"},children:\"We are building platform for makers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(74, 77, 32)\"},children:\"We are building platform for makers\"})}),className:\"framer-w5ksai\",\"data-framer-name\":\"We are building platform for makers\",fonts:[\"CUSTOM;Roobert Medium\"],name:\"We are building platform for makers\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined},{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined},{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined},{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined},{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{y:4778.799999999999},RWfAfI_6g:{y:4251.8},xA69ZbwWC:{y:5184.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:4897.799999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7hgeeb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{c7mqZ4h2M:resolvedLinks2[4],variant:\"ghH0Xon8m\"},CI6IA6LsL:{c7mqZ4h2M:resolvedLinks2[1]},RWfAfI_6g:{c7mqZ4h2M:resolvedLinks2[2]},xA69ZbwWC:{c7mqZ4h2M:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(ButtonUNITO,{c7mqZ4h2M:resolvedLinks2[0],height:\"100%\",id:\"PDQU1tTMQ\",layoutId:\"PDQU1tTMQ\",PMcP3FU4d:\"Join us\",style:{height:\"100%\"},variant:\"gyEMHsWUz\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18u6e6w\",\"data-styles-preset\":\"ta5Q3tShC\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Planter UNIT by HORA\"})}),className:\"framer-yj7vo9\",\"data-framer-name\":\"Plant holder: Hor\\xe1k Debora\",fonts:[\"Inter\"],name:\"Plant holder: Hor\\xe1k Debora\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1bh2y\",\"data-framer-name\":\"Make it yours\",name:\"Make it yours\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5460.799999999999),pixelHeight:7008,pixelWidth:4672,sizes:\"100vw\",src:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg\",srcSet:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg 4672w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5116.8),pixelHeight:7008,pixelWidth:4672,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg\",srcSet:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg 4672w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5514.799999999999),pixelHeight:7008,pixelWidth:4672,sizes:\"min((100vw - 40px) * 0.75, 1600px)\",src:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg\",srcSet:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg 4672w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5227.799999999999),pixelHeight:7008,pixelWidth:4672,sizes:\"max(100vw - 40px, 1px)\",src:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg\",srcSet:\"https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RWT5R3E69lZwkTXMlmRjfourpJQ.jpg 4672w\"},className:\"framer-1rnnnx6\",\"data-framer-name\":\"Make it yours\",name:\"Make it yours\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6ug6n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15tl3cu\",\"data-styles-preset\":\"A2Ln1GNwC\",style:{\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"Custom orders\"})}),className:\"framer-p6joxh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1682xu6\",\"data-styles-preset\":\"GyOui8Iz1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"Reach out for custom solutions\u2014let\u2019s bring your dreams to life!\"})}),className:\"framer-1dzefdc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"Axl5u2a3G\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{y:5803.999999999999},RWfAfI_6g:{y:5530},xA69ZbwWC:{y:5927.999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:5730.999999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jgv509-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{c7mqZ4h2M:resolvedLinks3[4],PMcP3FU4d:\"Contact us\"},CI6IA6LsL:{c7mqZ4h2M:resolvedLinks3[1]},RWfAfI_6g:{c7mqZ4h2M:resolvedLinks3[2]},xA69ZbwWC:{c7mqZ4h2M:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(ButtonUNITO,{c7mqZ4h2M:resolvedLinks3[0],height:\"100%\",id:\"ABLMhaats\",layoutId:\"ABLMhaats\",PMcP3FU4d:\"Shop now\",style:{height:\"100%\"},variant:\"iCnAS8fWC\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d57x69\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l02ex5\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15tl3cu\",\"data-styles-preset\":\"A2Ln1GNwC\",children:\"Reviews\"})}),className:\"framer-ajje0d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xi7bvy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},style:{width:\"100%\"}},RWfAfI_6g:{fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:20,height:\"100%\",id:\"szHviXoGU\",layoutId:\"szHviXoGU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y05al6-container\",children:/*#__PURE__*/_jsx(Review,{bG_cC2Hp2:addImageAlt({src:\"https://framerusercontent.com/images/M9WmsXmyD6e2zvBFUUCBOSCrRQ.jpeg\"},\"\"),height:\"100%\",id:\"LHKE3htTB\",layoutId:\"LHKE3htTB\",my33Kxu_7:addImageAlt({src:\"https://framerusercontent.com/images/ACvpleUynS90dhtoglLrEHjKuiY.jpg\",srcSet:\"https://framerusercontent.com/images/ACvpleUynS90dhtoglLrEHjKuiY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ACvpleUynS90dhtoglLrEHjKuiY.jpg 1000w\"},\"\"),style:{width:\"100%\"},tsmAQVLDT:\"I love the idea that I can rearrange my setup when I have a new object to display!\",variant:\"mlERBa90T\",width:\"100%\",xy_ISoZHY:\"Cz\\xe9l M\\xe1ty\\xe1s\",y_p2nPssC:\"Creative director\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qoh0py-container\",children:/*#__PURE__*/_jsx(Review,{bG_cC2Hp2:addImageAlt({src:\"https://framerusercontent.com/images/8smJPv2fRMHpgZen8GJFVEuo6Y.png\",srcSet:\"https://framerusercontent.com/images/8smJPv2fRMHpgZen8GJFVEuo6Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/8smJPv2fRMHpgZen8GJFVEuo6Y.png 676w\"},\"\"),height:\"100%\",id:\"TEwc2W0ax\",layoutId:\"TEwc2W0ax\",my33Kxu_7:addImageAlt({src:\"https://framerusercontent.com/images/av046DH8Wg7vt1Y4xDOaNvQks.jpeg\",srcSet:\"https://framerusercontent.com/images/av046DH8Wg7vt1Y4xDOaNvQks.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/av046DH8Wg7vt1Y4xDOaNvQks.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/av046DH8Wg7vt1Y4xDOaNvQks.jpeg 3024w\"},\"\"),style:{width:\"100%\"},tsmAQVLDT:\"Thank you for building such an empowering tool, especially for designers!\",variant:\"mlERBa90T\",width:\"100%\",xy_ISoZHY:\"Natalia Timea\",y_p2nPssC:\"Designer\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cpcnmp-container\",children:/*#__PURE__*/_jsx(Review,{bG_cC2Hp2:addImageAlt({src:\"https://framerusercontent.com/images/VfW4Y7Xz3Hqp1FowvhIODxMgNDg.png\",srcSet:\"https://framerusercontent.com/images/VfW4Y7Xz3Hqp1FowvhIODxMgNDg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VfW4Y7Xz3Hqp1FowvhIODxMgNDg.png 704w\"},\"\"),height:\"100%\",id:\"bmcSP1cIn\",layoutId:\"bmcSP1cIn\",my33Kxu_7:addImageAlt({src:\"https://framerusercontent.com/images/riSSkawZ6m7pmB3SinVBWX760as.png\",srcSet:\"https://framerusercontent.com/images/riSSkawZ6m7pmB3SinVBWX760as.png?scale-down-to=1024 818w,https://framerusercontent.com/images/riSSkawZ6m7pmB3SinVBWX760as.png?scale-down-to=2048 1637w,https://framerusercontent.com/images/riSSkawZ6m7pmB3SinVBWX760as.png 2349w\"},\"\"),style:{width:\"100%\"},tsmAQVLDT:\"It fits perfectly to our new studio space!\",variant:\"mlERBa90T\",width:\"100%\",xy_ISoZHY:\"NUR&MOR\",y_p2nPssC:\"Design studio\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-13cmzuu\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6772.799999999999),pixelHeight:1517,pixelWidth:2788,positionX:\"center\",positionY:\"center\",sizes:\"405px\",src:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png\",srcSet:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png 2788w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6551.799609111038),pixelHeight:1517,pixelWidth:2788,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png\",srcSet:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png 2788w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7031.799999999999),pixelHeight:1517,pixelWidth:2788,positionX:\"center\",positionY:\"center\",sizes:\"313px\",src:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png\",srcSet:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png 2788w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6923.051698055828),pixelHeight:1517,pixelWidth:2788,positionX:\"center\",positionY:\"center\",sizes:\"313px\",src:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png\",srcSet:\"https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pLZDH1Joz45EY6XssiDtzOClV3U.png 2788w\"},className:\"framer-1pz89bn\",style:{rotate:-23}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7274.299999999999),pixelHeight:132,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nA9tXSxVEZUHUbnnqpK34cRUrc.png\"}},CI6IA6LsL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7153.299999999999),pixelHeight:132,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nA9tXSxVEZUHUbnnqpK34cRUrc.png\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6890.803169772312),pixelHeight:132,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nA9tXSxVEZUHUbnnqpK34cRUrc.png\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7278.799999999999),pixelHeight:132,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nA9tXSxVEZUHUbnnqpK34cRUrc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7148.799999999999),pixelHeight:132,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nA9tXSxVEZUHUbnnqpK34cRUrc.png\"},className:\"framer-vfm4d5\",style:{rotate:-15}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7142.799999999999),pixelHeight:1062,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"34.75vw\",src:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png\",srcSet:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png 1080w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6914.3),pixelHeight:1062,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png\",srcSet:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png 1080w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7447.799999999999),pixelHeight:1062,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"14.0234vw\",src:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png\",srcSet:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7231.799999999999),pixelHeight:1062,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"34.75vw\",src:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png\",srcSet:\"https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=512 512w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1Pa3M257FL70qwmlhRTifNimI.png 1080w\"},className:\"framer-1z0b09c\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6949.299999999999),pixelHeight:1024,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 1157px)\",src:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png\",srcSet:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png 1004w\"}},CI6IA6LsL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6868.382596149602),pixelHeight:1024,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png\",srcSet:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png 1004w\"}},RWfAfI_6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6570.787082889233),pixelHeight:1024,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"110.0221px\",src:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png\",srcSet:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png 1004w\"}},xA69ZbwWC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7116.799733903379),pixelHeight:1024,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 1888.0011px)\",src:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png\",srcSet:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png 1004w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6982.799999999999),pixelHeight:1024,pixelWidth:1004,positionX:\"center\",positionY:\"center\",sizes:\"198px\",src:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png\",srcSet:\"https://framerusercontent.com/images/8WW1IfHrKItVHVoBlKhoEdvMleM.png 1004w\"},className:\"framer-sftrdx\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"Add modularity to your space\"})})},RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"Add modularity to your space\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"Add modularity to your space\"})}),className:\"framer-16m669e\",fonts:[\"CUSTOM;Roobert Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined},{href:{webPageId:\"HUrTfPFQL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{y:7101.799999999999},RWfAfI_6g:{y:6832.8},xA69ZbwWC:{y:7351.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:7244.799999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g3ds5x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aeLtaZYDs:{c7mqZ4h2M:resolvedLinks4[4]},CI6IA6LsL:{c7mqZ4h2M:resolvedLinks4[1]},RWfAfI_6g:{c7mqZ4h2M:resolvedLinks4[2]},xA69ZbwWC:{c7mqZ4h2M:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(ButtonUNITO,{c7mqZ4h2M:resolvedLinks4[0],height:\"100%\",id:\"V3XnUpLvg\",layoutId:\"V3XnUpLvg\",PMcP3FU4d:\"Add to cart\",style:{height:\"100%\"},variant:\"qraDTyXel\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{y:7380.799999999999},RWfAfI_6g:{y:7116.8},xA69ZbwWC:{y:7674.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216,width:\"100vw\",y:7567.799999999999,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-d2zn9b-container\",\"data-framer-appear-id\":\"d2zn9b\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{variant:\"QAEzq4aRF\"},RWfAfI_6g:{variant:\"OajdBoL7i\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"mqKnkXu2d\",layoutId:\"mqKnkXu2d\",style:{width:\"100%\"},variant:\"OgqWIxmyk\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{height:50,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-qsvko8-container hidden-72rtr7 hidden-nlhtk hidden-1usactr hidden-wsa0ag\",id:\"qsvko8\",layoutScroll:true,children:[/*#__PURE__*/_jsx(TopbarMobile3,{height:\"100%\",HgYZdVjLq:HgYZdVjLq3bnx0g({overlay:overlay2}),id:\"Bds8yo6Wi\",layoutId:\"Bds8yo6Wi\",style:{height:\"100%\",width:\"100%\"},vEJsLoiYG:vEJsLoiYG3bnx0g({overlay:overlay1}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-g1rhr8\",\"data-framer-portal-id\":\"qsvko8\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"gYolRRhGW\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation8,className:\"framer-1h9h89c-container\",\"data-framer-portal-id\":\"qsvko8\",exit:animation7,initial:animation9,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cart1,{height:\"100%\",id:\"A9ZhzCGWM\",layoutId:\"A9ZhzCGWM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yx8jG4s9E:Yx8jG4s9E1wnntms({overlay:overlay1})})})})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-ghnn8z\",\"data-framer-portal-id\":\"qsvko8\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"oflYxO8zK\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation8,className:\"framer-vuido6\",\"data-framer-name\":\"Menu\",\"data-framer-portal-id\":\"qsvko8\",exit:animation10,initial:animation11,name:\"Menu\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1grlpn9\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p6607j\",\"data-framer-name\":\"cancel 1\",fill:'var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0)) /* {\"name\":\"Foreground / Neutral 1\"} */',intrinsicHeight:24,intrinsicWidth:24,name:\"cancel 1\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.9431 17.953L6.06714 6.047\" stroke=\"black\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/>\\n<path d=\"M17.9531 6.06699L6.04712 17.943\" stroke=\"black\" stroke-width=\"2\" stroke-miterlimit=\"10\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vio9mo\",\"data-framer-name\":\"Frame 6\",name:\"Frame 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgVFJJQUwgTWVkaXVt\",\"--framer-font-family\":'\"Roobert TRIAL Medium\", \"Roobert TRIAL Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"L21TjoGBb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zj65om\",\"data-styles-preset\":\"URqGM6fIw\",children:\"Home\"})})})}),className:\"framer-bxyj57\",\"data-framer-name\":\"Drawing Print shirt\",fonts:[\"CUSTOM;Roobert TRIAL Medium\"],name:\"Drawing Print shirt\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgVFJJQUwgTWVkaXVt\",\"--framer-font-family\":'\"Roobert TRIAL Medium\", \"Roobert TRIAL Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HUrTfPFQL\"},nodeId:\"OHw2h4Us0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zj65om\",\"data-styles-preset\":\"URqGM6fIw\",children:\"Products\"})})})}),className:\"framer-1bayna9\",\"data-framer-name\":\"Drawing Print shirt\",fonts:[\"CUSTOM;Roobert TRIAL Medium\"],name:\"Drawing Print shirt\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgVFJJQUwgTWVkaXVt\",\"--framer-font-family\":'\"Roobert TRIAL Medium\", \"Roobert TRIAL Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PcUfc3oKc\"},nodeId:\"ZEjV2QtdJ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-zj65om\",\"data-styles-preset\":\"URqGM6fIw\",children:\"About\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgVFJJQUwgTWVkaXVt\",\"--framer-font-family\":'\"Roobert TRIAL Medium\", \"Roobert TRIAL Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-34a62f25-1728-478f-93b3-f7e99504eabe, rgb(0, 0, 0))\"},children:\"About\"})}),className:\"framer-174134u\",\"data-framer-name\":\"Drawing Print shirt\",fonts:[\"CUSTOM;Roobert TRIAL Medium\"],name:\"Drawing Print shirt\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CI6IA6LsL:{height:50,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-77tmnn-container hidden-72rtr7 hidden-1d0ns68 hidden-1usactr hidden-wsa0ag\",id:\"77tmnn\",children:[/*#__PURE__*/_jsx(TopbarTablet,{Bv6Ij70q3:Bv6Ij70q33bnx0g({overlay:overlay3}),height:\"100%\",id:\"EC5iJ1oE2\",layoutId:\"EC5iJ1oE2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"}),/*#__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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-151p0id\",\"data-framer-portal-id\":\"77tmnn\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"ZdhbXHU8H\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"514px\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:\"framer-vfalg8-container\",\"data-framer-portal-id\":\"77tmnn\",exit:animation,initial:animation2,children:/*#__PURE__*/_jsx(Cart,{height:\"100%\",id:\"KddcXYvdu\",layoutId:\"KddcXYvdu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yx8jG4s9E:Yx8jG4s9E1wnntms({overlay:overlay3})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__scrollDirection:{direction:\"down\",target:animation12},__framer__speed:120,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cvciy8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cbtzea\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RWfAfI_6g:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 245 50\"><path d=\"M 214.49 -0.001 C 193.912 -0.001 183.982 11.104 183.982 24.682 C 183.982 39.354 193.267 49.795 214.49 49.795 C 235.714 49.795 244.999 38.269 244.999 24.682 C 244.999 11.095 235.068 -0.001 214.49 -0.001 Z M 214.499 7.958 C 228.024 7.958 234.791 15.406 234.791 24.682 C 234.791 34.46 228.095 41.837 214.499 41.837 C 200.903 41.837 194.208 34.98 194.208 24.682 C 194.208 15.406 200.975 7.958 214.499 7.958 Z M 0 27.702 L 0 0.654 L 9.93 0.654 L 9.93 26.546 C 9.93 37.05 16.401 41.657 27.703 41.657 C 39.005 41.657 45.691 37.05 45.691 26.546 L 45.691 0.654 L 54.761 0.654 L 54.761 27.702 C 54.761 42.67 44.616 49.795 27.416 49.795 C 10.217 49.795 0 42.67 0 27.702 Z M 69.63 16.858 L 69.63 48.935 L 60.057 48.935 L 60.057 0.654 L 74.164 0.654 L 101.366 29.773 C 103.302 31.852 106.779 30.481 106.797 27.649 L 106.905 0.663 L 116.405 0.663 L 116.405 48.935 L 106.618 48.935 L 74.747 14.841 C 72.919 12.878 69.63 14.178 69.63 16.858 Z M 132.153 0.654 L 122.294 0.654 L 122.294 48.926 L 132.153 48.926 Z M 150.318 8.496 L 137.054 8.496 L 137.054 0.654 L 186.07 0.654 L 186.07 8.496 L 172.805 8.496 C 169.337 8.496 166.532 11.301 166.532 14.77 L 166.532 48.926 L 156.601 48.926 L 156.601 14.77 C 156.601 11.301 153.796 8.496 150.327 8.496 Z\" fill=\"rgb(204, 202, 200)\"></path></svg>',svgContentId:11373638359}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3x9fv3\",\"data-framer-name\":\"Union\",layout:\"position\",name:\"Union\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 642 131\"><path d=\"M 562.052 -0.001 C 508.129 -0.001 482.107 29.092 482.107 64.667 C 482.107 103.107 506.438 130.463 562.052 130.463 C 617.666 130.463 641.997 100.266 641.997 64.667 C 641.997 29.069 615.975 -0.001 562.052 -0.001 Z M 562.076 20.85 C 597.515 20.85 615.247 40.364 615.247 64.667 C 615.247 90.286 597.703 109.612 562.076 109.612 C 526.448 109.612 508.904 91.648 508.904 64.667 C 508.904 40.364 526.636 20.85 562.076 20.85 Z M 0 72.58 L 0 1.712 L 26.022 1.712 L 26.022 69.551 C 26.022 97.072 42.978 109.142 72.594 109.142 C 102.209 109.142 119.729 97.072 119.729 69.551 L 119.729 1.712 L 143.496 1.712 L 143.496 72.58 C 143.496 111.795 116.911 130.463 71.842 130.463 C 26.773 130.463 0 111.795 0 72.58 Z M 182.458 44.167 L 182.458 128.209 L 157.375 128.209 L 157.375 1.712 L 194.341 1.712 L 265.62 78.005 C 270.693 83.453 279.805 79.86 279.852 72.44 L 280.134 1.736 L 305.028 1.736 L 305.028 128.209 L 279.382 128.209 L 195.868 38.884 C 191.077 33.742 182.458 37.146 182.458 44.167 Z M 346.295 1.712 L 320.461 1.712 L 320.461 128.185 L 346.295 128.185 Z M 393.895 22.259 L 359.137 22.259 L 359.137 1.712 L 487.579 1.712 L 487.579 22.259 L 452.82 22.259 C 443.732 22.259 436.381 29.609 436.381 38.696 L 436.381 128.185 L 410.359 128.185 L 410.359 38.696 C 410.359 29.609 403.008 22.259 393.919 22.259 Z\" fill=\"rgb(204, 202, 200)\"></path></svg>',svgContentId:9904214929,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17h6285\",\"data-styles-preset\":\"WiGD_j4xE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(204, 202, 200)\"},children:\"Add modularity to your space\"})}),className:\"framer-1w12nqc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Q3uUf { background: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, rgb(244, 244, 244)) /* {\"name\":\"Foreground / On Brand 2\"} */; }`,\".framer-Q3uUf.framer-lux5qc, .framer-Q3uUf .framer-lux5qc { display: block; }\",\".framer-Q3uUf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); 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-Q3uUf .framer-90zd4a-container { flex: none; height: 50px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 8; }\",\".framer-Q3uUf .framer-1nodbg1 { background-color: rgba(0, 0, 0, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-Q3uUf .framer-1xm4yok-container { flex: none; height: 100vh; position: fixed; right: 0px; top: 0px; width: 514px; z-index: 9; }\",\".framer-Q3uUf .framer-qjcr7z-container { flex: none; height: 70px; left: calc(50.00000000000002% - 408px / 2); position: absolute; top: -1000px; width: 408px; z-index: 1; }\",\".framer-Q3uUf .framer-i4eoq2 { align-content: center; align-items: center; background-color: var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, #edece8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1yvv0vj { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-zeynv6-container { flex: 1 0 0px; height: 1263px; position: relative; width: 1px; z-index: 1; }\",\".framer-Q3uUf .framer-1pr69tr-container { bottom: 50px; flex: none; height: auto; position: fixed; right: 50px; width: auto; z-index: 8; }\",\".framer-Q3uUf .framer-1gi1uez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-lfwfqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q3uUf .framer-z108cz, .framer-Q3uUf .framer-zfamqn, .framer-Q3uUf .framer-ajje0d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-1mue6o4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-18mz48y, .framer-Q3uUf .framer-1yc0whz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-b0yklu-container { aspect-ratio: 1 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 500px); position: relative; width: 42%; }\",\".framer-Q3uUf .framer-1dvh88h-container, .framer-Q3uUf .framer-1850k6v-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 600px; z-index: 1; }\",\".framer-Q3uUf .framer-qrqq24-container, .framer-Q3uUf .framer-197opm-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 600px; z-index: 2; }\",\".framer-Q3uUf .framer-u69aye-container, .framer-Q3uUf .framer-qbrk8d-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 600px; z-index: 3; }\",\".framer-Q3uUf .framer-4247sx-container, .framer-Q3uUf .framer-1usuaug-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 600px; z-index: 4; }\",\".framer-Q3uUf .framer-17782kk-container { aspect-ratio: 1 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 300px); position: relative; width: 300px; }\",\".framer-Q3uUf .framer-1m77kjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q3uUf .framer-1r7ybjr-container { aspect-ratio: 1 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 42%; }\",\".framer-Q3uUf .framer-1dusptw { align-content: center; align-items: center; background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-12yvzvm { align-content: center; align-items: center; background-color: var(--token-75eae683-80c7-41cd-aea0-0d8e8ec718e3, #d7d5cd); 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: 30px; height: 1px; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-1y7a0b8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-16aaasf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-1kt9hds { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 20%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-l1c1t3-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-dhmhzc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px 10px 0px 0px; position: relative; width: min-content; }\",\".framer-Q3uUf .framer-16ltjo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-Q3uUf .framer-th5d9z-container { flex: none; height: auto; position: relative; width: 256px; }\",\".framer-Q3uUf .framer-4cuei1-container, .framer-Q3uUf .framer-1g3ds5x-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Q3uUf .framer-1lpirat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-xbkcxc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-Q3uUf .framer-himgtx { align-content: center; align-items: center; background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1co3dge { align-content: center; align-items: center; background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-okr4f9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 400px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1okjjrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 510px; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1mb21xa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q3uUf .framer-1342miq { align-content: center; align-items: center; background-color: #d7d5cd; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 1px; justify-content: center; overflow: hidden; padding: 20.957725524902344px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-u4eewr { -webkit-filter: blur(29.1856632232666px); aspect-ratio: 2.1060600978509125 / 1; filter: blur(29.1856632232666px); flex: none; height: var(--framer-aspect-ratio-supported, 381px); position: absolute; right: -380px; top: -244px; width: 803px; z-index: 1; }\",\".framer-Q3uUf .framer-1ynyjmz { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-7jrqht { --border-bottom-width: 8px; --border-color: #d7d5cd; --border-left-width: 8px; --border-right-width: 8px; --border-style: solid; --border-top-width: 8px; align-content: center; align-items: center; border-bottom-left-radius: 686px; border-bottom-right-radius: 686px; border-top-left-radius: 686px; border-top-right-radius: 686px; box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: 103px; justify-content: center; overflow: hidden; padding: 13.727423667907715px; position: relative; width: 103px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-1vxnxrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 104px; }\",\".framer-Q3uUf .framer-wq52hj { flex: none; height: 16px; position: relative; width: 17px; }\",\".framer-Q3uUf .framer-1d7nk8n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 61px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-12verek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 65%; }\",\".framer-Q3uUf .framer-174xv08, .framer-Q3uUf .framer-w5ksai { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-140b0x { -webkit-filter: blur(20px); bottom: -83px; filter: blur(20px); flex: none; height: 188px; left: -152px; position: absolute; width: 264px; z-index: 3; }\",\".framer-Q3uUf .framer-1udvrft { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1gmqmpw, .framer-Q3uUf .framer-1ea1c2w { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-Q3uUf .framer-w16n46, .framer-Q3uUf .framer-bxyj57, .framer-Q3uUf .framer-1bayna9, .framer-Q3uUf .framer-174134u { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q3uUf .framer-16fxfra { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q3uUf .framer-1yy1yi5 { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 100%; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-18cdyep { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-m14t5g { -webkit-backdrop-filter: blur(11.900899887084961px); align-content: center; align-items: center; backdrop-filter: blur(11.900899887084961px); background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 10.627197265625px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100px; justify-content: center; overflow: visible; padding: 0px 23.801799774169922px 0px 23.801799774169922px; position: relative; width: 265px; }\",\".framer-Q3uUf .framer-1fnaqnv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q3uUf .framer-7hgeeb-container { flex: none; height: 30px; position: relative; width: auto; z-index: 1; }\",\".framer-Q3uUf .framer-yj7vo9 { --framer-paragraph-spacing: 0px; bottom: 20px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-Q3uUf .framer-o1bh2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1rnnnx6 { 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 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-s6ug6n { align-content: center; align-items: center; background-color: var(--token-8f3edd03-a35e-4047-bc35-4d68eb3b8d76, #ffffff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 619px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q3uUf .framer-p6joxh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-Q3uUf .framer-1dzefdc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 60%; position: relative; width: 60%; z-index: 2; }\",\".framer-Q3uUf .framer-1jgv509-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-Q3uUf .framer-d57x69 { 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-Q3uUf .framer-1l02ex5 { align-content: center; align-items: center; background-color: var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, #edece8); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 700px; justify-content: center; overflow: hidden; padding: 40px 40px 100px 40px; position: relative; width: 1px; }\",\".framer-Q3uUf .framer-xi7bvy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q3uUf .framer-1y05al6-container, .framer-Q3uUf .framer-qoh0py-container, .framer-Q3uUf .framer-1cpcnmp-container { height: auto; position: relative; width: 300px; }\",\".framer-Q3uUf .framer-13cmzuu { align-content: center; align-items: center; background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 700px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-1pz89bn { flex: none; height: 234px; left: 61px; position: absolute; top: 55px; width: 313px; z-index: 1; }\",\".framer-Q3uUf .framer-vfm4d5 { -webkit-filter: blur(50px); bottom: -373px; filter: blur(50px); flex: none; height: 792px; position: absolute; right: -394px; width: 1059px; z-index: 3; }\",\".framer-Q3uUf .framer-1z0b09c { -webkit-filter: blur(20px); bottom: 43px; filter: blur(20px); flex: none; height: 293px; left: 90px; position: absolute; width: 35%; z-index: 1; }\",\".framer-Q3uUf .framer-sftrdx { flex: none; height: 147px; position: absolute; right: 122px; top: 115px; width: 198px; z-index: 1; }\",\".framer-Q3uUf .framer-16m669e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 40%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-Q3uUf .framer-d2zn9b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-qsvko8-container { flex: none; height: 50px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-Q3uUf .framer-g1rhr8, .framer-Q3uUf .framer-ghnn8z { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-Q3uUf .framer-1h9h89c-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 1; }\",\".framer-Q3uUf .framer-vuido6 { background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #f4f4f4); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; flex: none; height: 463px; left: 0px; position: fixed; top: 0px; width: 390px; z-index: 1; }\",\".framer-Q3uUf .framer-1grlpn9 { bottom: 45px; cursor: pointer; flex: none; height: 36px; left: calc(50.00000000000002% - 36px / 2); overflow: hidden; position: absolute; width: 36px; }\",\".framer-Q3uUf .framer-p6607j { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Q3uUf .framer-1vio9mo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 46%; transform: translate(-50%, -50%); width: 350px; }\",\".framer-Q3uUf .framer-77tmnn-container { flex: none; height: 50px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 9; }\",\".framer-Q3uUf .framer-151p0id { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-Q3uUf .framer-vfalg8-container { flex: none; height: 100vh; position: fixed; right: 0px; top: 0px; width: 514px; }\",\".framer-Q3uUf .framer-1cvciy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; max-height: 100vh; min-height: 100vh; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-Q3uUf .framer-cbtzea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q3uUf .framer-3x9fv3 { flex: none; height: 131px; position: relative; width: 642px; }\",\".framer-Q3uUf .framer-1w12nqc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q3uUf.framer-72rtr7, .framer-Q3uUf .framer-i4eoq2, .framer-Q3uUf .framer-1yvv0vj, .framer-Q3uUf .framer-1gi1uez, .framer-Q3uUf .framer-lfwfqe, .framer-Q3uUf .framer-18mz48y, .framer-Q3uUf .framer-1yc0whz, .framer-Q3uUf .framer-1m77kjo, .framer-Q3uUf .framer-1dusptw, .framer-Q3uUf .framer-12yvzvm, .framer-Q3uUf .framer-1y7a0b8, .framer-Q3uUf .framer-dhmhzc, .framer-Q3uUf .framer-16ltjo3, .framer-Q3uUf .framer-1lpirat, .framer-Q3uUf .framer-xbkcxc, .framer-Q3uUf .framer-himgtx, .framer-Q3uUf .framer-1co3dge, .framer-Q3uUf .framer-1okjjrw, .framer-Q3uUf .framer-1mb21xa, .framer-Q3uUf .framer-1342miq, .framer-Q3uUf .framer-1ynyjmz, .framer-Q3uUf .framer-7jrqht, .framer-Q3uUf .framer-1vxnxrz, .framer-Q3uUf .framer-12verek, .framer-Q3uUf .framer-1udvrft, .framer-Q3uUf .framer-1gmqmpw, .framer-Q3uUf .framer-1ea1c2w, .framer-Q3uUf .framer-1yy1yi5, .framer-Q3uUf .framer-18cdyep, .framer-Q3uUf .framer-m14t5g, .framer-Q3uUf .framer-1fnaqnv, .framer-Q3uUf .framer-o1bh2y, .framer-Q3uUf .framer-1rnnnx6, .framer-Q3uUf .framer-s6ug6n, .framer-Q3uUf .framer-d57x69, .framer-Q3uUf .framer-1l02ex5, .framer-Q3uUf .framer-13cmzuu, .framer-Q3uUf .framer-1vio9mo, .framer-Q3uUf .framer-1cvciy8, .framer-Q3uUf .framer-cbtzea { gap: 0px; } .framer-Q3uUf.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q3uUf.framer-72rtr7 > :first-child, .framer-Q3uUf .framer-i4eoq2 > :first-child, .framer-Q3uUf .framer-1gi1uez > :first-child, .framer-Q3uUf .framer-lfwfqe > :first-child, .framer-Q3uUf .framer-1dusptw > :first-child, .framer-Q3uUf .framer-12yvzvm > :first-child, .framer-Q3uUf .framer-1y7a0b8 > :first-child, .framer-Q3uUf .framer-xbkcxc > :first-child, .framer-Q3uUf .framer-himgtx > :first-child, .framer-Q3uUf .framer-1co3dge > :first-child, .framer-Q3uUf .framer-1mb21xa > :first-child, .framer-Q3uUf .framer-1342miq > :first-child, .framer-Q3uUf .framer-1ynyjmz > :first-child, .framer-Q3uUf .framer-7jrqht > :first-child, .framer-Q3uUf .framer-1vxnxrz > :first-child, .framer-Q3uUf .framer-12verek > :first-child, .framer-Q3uUf .framer-1yy1yi5 > :first-child, .framer-Q3uUf .framer-18cdyep > :first-child, .framer-Q3uUf .framer-1fnaqnv > :first-child, .framer-Q3uUf .framer-1rnnnx6 > :first-child, .framer-Q3uUf .framer-s6ug6n > :first-child, .framer-Q3uUf .framer-1l02ex5 > :first-child, .framer-Q3uUf .framer-13cmzuu > :first-child, .framer-Q3uUf .framer-1vio9mo > :first-child, .framer-Q3uUf .framer-1cvciy8 > :first-child, .framer-Q3uUf .framer-cbtzea > :first-child { margin-top: 0px; } .framer-Q3uUf.framer-72rtr7 > :last-child, .framer-Q3uUf .framer-i4eoq2 > :last-child, .framer-Q3uUf .framer-1gi1uez > :last-child, .framer-Q3uUf .framer-lfwfqe > :last-child, .framer-Q3uUf .framer-1dusptw > :last-child, .framer-Q3uUf .framer-12yvzvm > :last-child, .framer-Q3uUf .framer-1y7a0b8 > :last-child, .framer-Q3uUf .framer-xbkcxc > :last-child, .framer-Q3uUf .framer-himgtx > :last-child, .framer-Q3uUf .framer-1co3dge > :last-child, .framer-Q3uUf .framer-1mb21xa > :last-child, .framer-Q3uUf .framer-1342miq > :last-child, .framer-Q3uUf .framer-1ynyjmz > :last-child, .framer-Q3uUf .framer-7jrqht > :last-child, .framer-Q3uUf .framer-1vxnxrz > :last-child, .framer-Q3uUf .framer-12verek > :last-child, .framer-Q3uUf .framer-1yy1yi5 > :last-child, .framer-Q3uUf .framer-18cdyep > :last-child, .framer-Q3uUf .framer-1fnaqnv > :last-child, .framer-Q3uUf .framer-1rnnnx6 > :last-child, .framer-Q3uUf .framer-s6ug6n > :last-child, .framer-Q3uUf .framer-1l02ex5 > :last-child, .framer-Q3uUf .framer-13cmzuu > :last-child, .framer-Q3uUf .framer-1vio9mo > :last-child, .framer-Q3uUf .framer-1cvciy8 > :last-child, .framer-Q3uUf .framer-cbtzea > :last-child { margin-bottom: 0px; } .framer-Q3uUf .framer-i4eoq2 > *, .framer-Q3uUf .framer-lfwfqe > *, .framer-Q3uUf .framer-1y7a0b8 > *, .framer-Q3uUf .framer-xbkcxc > *, .framer-Q3uUf .framer-1co3dge > *, .framer-Q3uUf .framer-1mb21xa > *, .framer-Q3uUf .framer-18cdyep > *, .framer-Q3uUf .framer-1rnnnx6 > *, .framer-Q3uUf .framer-s6ug6n > *, .framer-Q3uUf .framer-1l02ex5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q3uUf .framer-1yvv0vj > *, .framer-Q3uUf .framer-18mz48y > *, .framer-Q3uUf .framer-1yc0whz > *, .framer-Q3uUf .framer-1m77kjo > *, .framer-Q3uUf .framer-1lpirat > *, .framer-Q3uUf .framer-1gmqmpw > *, .framer-Q3uUf .framer-1ea1c2w > *, .framer-Q3uUf .framer-o1bh2y > *, .framer-Q3uUf .framer-d57x69 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q3uUf .framer-1yvv0vj > :first-child, .framer-Q3uUf .framer-18mz48y > :first-child, .framer-Q3uUf .framer-1yc0whz > :first-child, .framer-Q3uUf .framer-1m77kjo > :first-child, .framer-Q3uUf .framer-dhmhzc > :first-child, .framer-Q3uUf .framer-16ltjo3 > :first-child, .framer-Q3uUf .framer-1lpirat > :first-child, .framer-Q3uUf .framer-1okjjrw > :first-child, .framer-Q3uUf .framer-1udvrft > :first-child, .framer-Q3uUf .framer-1gmqmpw > :first-child, .framer-Q3uUf .framer-1ea1c2w > :first-child, .framer-Q3uUf .framer-m14t5g > :first-child, .framer-Q3uUf .framer-o1bh2y > :first-child, .framer-Q3uUf .framer-d57x69 > :first-child { margin-left: 0px; } .framer-Q3uUf .framer-1yvv0vj > :last-child, .framer-Q3uUf .framer-18mz48y > :last-child, .framer-Q3uUf .framer-1yc0whz > :last-child, .framer-Q3uUf .framer-1m77kjo > :last-child, .framer-Q3uUf .framer-dhmhzc > :last-child, .framer-Q3uUf .framer-16ltjo3 > :last-child, .framer-Q3uUf .framer-1lpirat > :last-child, .framer-Q3uUf .framer-1okjjrw > :last-child, .framer-Q3uUf .framer-1udvrft > :last-child, .framer-Q3uUf .framer-1gmqmpw > :last-child, .framer-Q3uUf .framer-1ea1c2w > :last-child, .framer-Q3uUf .framer-m14t5g > :last-child, .framer-Q3uUf .framer-o1bh2y > :last-child, .framer-Q3uUf .framer-d57x69 > :last-child { margin-right: 0px; } .framer-Q3uUf .framer-1gi1uez > *, .framer-Q3uUf .framer-1vio9mo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q3uUf .framer-1dusptw > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Q3uUf .framer-12yvzvm > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Q3uUf .framer-dhmhzc > *, .framer-Q3uUf .framer-1okjjrw > *, .framer-Q3uUf .framer-1udvrft > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Q3uUf .framer-16ltjo3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q3uUf .framer-himgtx > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Q3uUf .framer-1342miq > * { margin: 0px; margin-bottom: calc(20.957725524902344px / 2); margin-top: calc(20.957725524902344px / 2); } .framer-Q3uUf .framer-1ynyjmz > *, .framer-Q3uUf .framer-1cvciy8 > *, .framer-Q3uUf .framer-cbtzea > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q3uUf .framer-7jrqht > * { margin: 0px; margin-bottom: calc(6.863711833953857px / 2); margin-top: calc(6.863711833953857px / 2); } .framer-Q3uUf .framer-1vxnxrz > * { margin: 0px; margin-bottom: calc(4.200000286102295px / 2); margin-top: calc(4.200000286102295px / 2); } .framer-Q3uUf .framer-12verek > * { margin: 0px; margin-bottom: calc(17.100994110107422px / 2); margin-top: calc(17.100994110107422px / 2); } .framer-Q3uUf .framer-1yy1yi5 > * { margin: 0px; margin-bottom: calc(22.879037857055664px / 2); margin-top: calc(22.879037857055664px / 2); } .framer-Q3uUf .framer-m14t5g > * { margin: 0px; margin-left: calc(23.801799774169922px / 2); margin-right: calc(23.801799774169922px / 2); } .framer-Q3uUf .framer-1fnaqnv > * { margin: 0px; margin-bottom: calc(9.520719528198242px / 2); margin-top: calc(9.520719528198242px / 2); } .framer-Q3uUf .framer-13cmzuu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-Q3uUf[data-border=\"true\"]::after, .framer-Q3uUf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-Q3uUf { background: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, rgb(244, 244, 244)) /* {\"name\":\"Foreground / On Brand 2\"} */; } .framer-Q3uUf.framer-72rtr7 { width: 810px; } .framer-Q3uUf .framer-qjcr7z-container { order: 0; } .framer-Q3uUf .framer-i4eoq2 { order: 3; } .framer-Q3uUf .framer-zeynv6-container { height: 1146px; } .framer-Q3uUf .framer-1pr69tr-container { order: 4; } .framer-Q3uUf .framer-1gi1uez, .framer-Q3uUf .framer-1g3ds5x-container { order: 5; } .framer-Q3uUf .framer-b0yklu-container { height: var(--framer-aspect-ratio-supported, 600px); width: 600px; } .framer-Q3uUf .framer-1dusptw { order: 6; padding: 40px 0px 40px 0px; } .framer-Q3uUf .framer-12yvzvm { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 600px; } .framer-Q3uUf .framer-1kt9hds { width: 35%; } .framer-Q3uUf .framer-1lpirat { order: 11; } .framer-Q3uUf .framer-himgtx { gap: 3px; order: 13; padding: 40px 0px 40px 0px; } .framer-Q3uUf .framer-1okjjrw { flex-direction: column; height: min-content; padding: 40px; } .framer-Q3uUf .framer-1mb21xa { flex: none; flex-direction: row; height: min-content; order: 3; width: 100%; } .framer-Q3uUf .framer-1342miq { height: min-content; padding: 60px; width: 1px; } .framer-Q3uUf .framer-12verek { width: 90%; } .framer-Q3uUf .framer-140b0x { bottom: unset; left: -144px; top: 125px; } .framer-Q3uUf .framer-1udvrft { align-self: stretch; flex-direction: column; height: auto; width: 1px; } .framer-Q3uUf .framer-1gmqmpw, .framer-Q3uUf .framer-1ea1c2w { height: 1px; width: 100%; } .framer-Q3uUf .framer-1yy1yi5 { flex: none; height: 400px; order: 2; width: 100%; } .framer-Q3uUf .framer-18cdyep { flex: none; height: 1px; } .framer-Q3uUf .framer-m14t5g { height: 80px; width: 220px; } .framer-Q3uUf .framer-o1bh2y { flex-direction: column; height: min-content; order: 14; padding: 40px 0px 40px 0px; } .framer-Q3uUf .framer-1rnnnx6 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 600px; padding: 40px 50px 80px 50px; width: 100%; } .framer-Q3uUf .framer-d57x69 { flex-direction: column; order: 15; padding: 40px 0px 40px 0px; } .framer-Q3uUf .framer-1l02ex5 { flex: none; height: 600px; padding: 40px 50px 80px 50px; width: 100%; } .framer-Q3uUf .framer-xi7bvy-container { width: 100%; } .framer-Q3uUf .framer-13cmzuu { height: 600px; order: 16; } .framer-Q3uUf .framer-1pz89bn { height: 303px; left: -202px; order: 1; top: -8px; width: 405px; } .framer-Q3uUf .framer-vfm4d5 { bottom: -114px; height: 342px; order: 2; right: -89px; width: 458px; } .framer-Q3uUf .framer-1z0b09c { bottom: -55px; left: 13px; order: 3; } .framer-Q3uUf .framer-sftrdx { height: 136px; left: calc(85.67901234567904% - 181px / 2); order: 0; right: unset; top: 88px; width: 181px; } .framer-Q3uUf .framer-16m669e { max-width: 50%; order: 4; } .framer-Q3uUf .framer-d2zn9b-container { order: 17; } .framer-Q3uUf .framer-77tmnn-container { order: 2; } .framer-Q3uUf .framer-151p0id, .framer-Q3uUf .framer-vfalg8-container { z-index: 6; } .framer-Q3uUf .framer-1cvciy8 { order: 20; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q3uUf .framer-himgtx, .framer-Q3uUf .framer-1okjjrw, .framer-Q3uUf .framer-1mb21xa, .framer-Q3uUf .framer-1udvrft, .framer-Q3uUf .framer-o1bh2y, .framer-Q3uUf .framer-d57x69 { gap: 0px; } .framer-Q3uUf .framer-himgtx > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-Q3uUf .framer-himgtx > :first-child, .framer-Q3uUf .framer-1okjjrw > :first-child, .framer-Q3uUf .framer-1udvrft > :first-child, .framer-Q3uUf .framer-o1bh2y > :first-child, .framer-Q3uUf .framer-d57x69 > :first-child { margin-top: 0px; } .framer-Q3uUf .framer-himgtx > :last-child, .framer-Q3uUf .framer-1okjjrw > :last-child, .framer-Q3uUf .framer-1udvrft > :last-child, .framer-Q3uUf .framer-o1bh2y > :last-child, .framer-Q3uUf .framer-d57x69 > :last-child { margin-bottom: 0px; } .framer-Q3uUf .framer-1okjjrw > *, .framer-Q3uUf .framer-1udvrft > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q3uUf .framer-1mb21xa > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Q3uUf .framer-1mb21xa > :first-child { margin-left: 0px; } .framer-Q3uUf .framer-1mb21xa > :last-child { margin-right: 0px; } .framer-Q3uUf .framer-o1bh2y > *, .framer-Q3uUf .framer-d57x69 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Q3uUf { background: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, rgb(244, 244, 244)) /* {\"name\":\"Foreground / On Brand 2\"} */; } .framer-Q3uUf.framer-72rtr7 { overflow: hidden; width: 390px; } .framer-Q3uUf .framer-qjcr7z-container { order: 0; } .framer-Q3uUf .framer-i4eoq2, .framer-Q3uUf .framer-1yc0whz { order: 3; } .framer-Q3uUf .framer-zeynv6-container { height: 100vh; } .framer-Q3uUf .framer-1pr69tr-container { bottom: 20px; order: 4; right: 20px; } .framer-Q3uUf .framer-1gi1uez { order: 5; padding: 80px 0px 120px 0px; } .framer-Q3uUf .framer-lfwfqe { gap: 16px; order: 0; padding: 0px 24px 0px 24px; } .framer-Q3uUf .framer-z108cz { width: 70%; } .framer-Q3uUf .framer-1mue6o4 { width: 90%; } .framer-Q3uUf .framer-1dusptw { order: 6; padding: 0px; } .framer-Q3uUf .framer-12yvzvm { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; padding: 64px 0px 60px 0px; } .framer-Q3uUf .framer-1y7a0b8 { gap: 16px; order: 0; } .framer-Q3uUf .framer-1kt9hds { width: 50%; } .framer-Q3uUf .framer-l1c1t3-container, .framer-Q3uUf .framer-qsvko8-container { order: 1; } .framer-Q3uUf .framer-4cuei1-container { order: 2; } .framer-Q3uUf .framer-1lpirat { order: 12; } .framer-Q3uUf .framer-himgtx { gap: 40px; order: 13; padding: 60px 20px 60px 20px; } .framer-Q3uUf .framer-1co3dge { gap: 16px; padding: 0px 20px 0px 20px; } .framer-Q3uUf .framer-1okjjrw { flex-direction: column; height: min-content; padding: 0px; } .framer-Q3uUf .framer-1mb21xa { flex: none; height: min-content; order: 3; width: 100%; } .framer-Q3uUf .framer-1342miq { flex: none; height: 300px; } .framer-Q3uUf .framer-u4eewr { right: -288px; top: -335px; } .framer-Q3uUf .framer-12verek, .framer-Q3uUf .framer-xi7bvy-container { width: 100%; } .framer-Q3uUf .framer-174xv08 { width: 85%; } .framer-Q3uUf .framer-140b0x { bottom: -217px; height: 294px; left: -270px; width: 350px; } .framer-Q3uUf .framer-1udvrft { flex: none; flex-direction: column; height: min-content; } .framer-Q3uUf .framer-1gmqmpw, .framer-Q3uUf .framer-1ea1c2w { flex: none; height: min-content; padding: 40px; width: 100%; } .framer-Q3uUf .framer-1yy1yi5 { flex: none; height: 400px; order: 2; width: 100%; } .framer-Q3uUf .framer-18cdyep { flex: none; height: 172px; } .framer-Q3uUf .framer-m14t5g { height: 80px; width: 230px; } .framer-Q3uUf .framer-o1bh2y { height: min-content; order: 14; padding: 0px; } .framer-Q3uUf .framer-1rnnnx6 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; height: 700px; padding: 80px 20px 80px 20px; } .framer-Q3uUf .framer-s6ug6n { order: 0; padding: 60px 40px 60px 40px; width: 100%; } .framer-Q3uUf .framer-1dzefdc { max-width: unset; width: 90%; } .framer-Q3uUf .framer-d57x69 { order: 15; } .framer-Q3uUf .framer-1l02ex5 { gap: 40px; padding: 80px 0px 80px 40px; } .framer-Q3uUf .framer-13cmzuu { height: 600px; order: 16; padding: 60px; } .framer-Q3uUf .framer-1pz89bn { height: 195px; left: -118px; top: 35px; width: 261px; } .framer-Q3uUf .framer-vfm4d5 { bottom: 23px; height: 203px; right: -116px; width: 272px; } .framer-Q3uUf .framer-1z0b09c { bottom: 48px; height: 155px; left: -84px; width: 207px; } .framer-Q3uUf .framer-sftrdx { height: 83px; right: -30px; top: 54px; width: 110px; } .framer-Q3uUf .framer-16m669e { max-width: 100%; } .framer-Q3uUf .framer-d2zn9b-container { order: 17; } .framer-Q3uUf .framer-g1rhr8 { background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #fafafa) /* {\"name\":\"Foreground / On Brand 2\"} */; z-index: 9; } .framer-Q3uUf .framer-1h9h89c-container, .framer-Q3uUf .framer-ghnn8z { z-index: 9; } .framer-Q3uUf .framer-vuido6 { background-color: var(--token-e526b124-6848-441c-90c1-f2e5c9fd6c47, #edece8); width: 100%; z-index: 9; } .framer-Q3uUf .framer-1vio9mo { gap: 16px; } .framer-Q3uUf .framer-1cvciy8 { justify-content: flex-start; max-height: 120vh; min-height: 130vh; order: 20; padding: 220px 0px 0px 0px; } .framer-Q3uUf .framer-3x9fv3 { height: 50px; width: 245px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q3uUf .framer-lfwfqe, .framer-Q3uUf .framer-12yvzvm, .framer-Q3uUf .framer-1y7a0b8, .framer-Q3uUf .framer-himgtx, .framer-Q3uUf .framer-1co3dge, .framer-Q3uUf .framer-1okjjrw, .framer-Q3uUf .framer-1udvrft, .framer-Q3uUf .framer-1rnnnx6, .framer-Q3uUf .framer-1l02ex5, .framer-Q3uUf .framer-1vio9mo { gap: 0px; } .framer-Q3uUf .framer-lfwfqe > *, .framer-Q3uUf .framer-1y7a0b8 > *, .framer-Q3uUf .framer-1co3dge > *, .framer-Q3uUf .framer-1vio9mo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q3uUf .framer-lfwfqe > :first-child, .framer-Q3uUf .framer-12yvzvm > :first-child, .framer-Q3uUf .framer-1y7a0b8 > :first-child, .framer-Q3uUf .framer-himgtx > :first-child, .framer-Q3uUf .framer-1co3dge > :first-child, .framer-Q3uUf .framer-1okjjrw > :first-child, .framer-Q3uUf .framer-1udvrft > :first-child, .framer-Q3uUf .framer-1rnnnx6 > :first-child, .framer-Q3uUf .framer-1l02ex5 > :first-child, .framer-Q3uUf .framer-1vio9mo > :first-child { margin-top: 0px; } .framer-Q3uUf .framer-lfwfqe > :last-child, .framer-Q3uUf .framer-12yvzvm > :last-child, .framer-Q3uUf .framer-1y7a0b8 > :last-child, .framer-Q3uUf .framer-himgtx > :last-child, .framer-Q3uUf .framer-1co3dge > :last-child, .framer-Q3uUf .framer-1okjjrw > :last-child, .framer-Q3uUf .framer-1udvrft > :last-child, .framer-Q3uUf .framer-1rnnnx6 > :last-child, .framer-Q3uUf .framer-1l02ex5 > :last-child, .framer-Q3uUf .framer-1vio9mo > :last-child { margin-bottom: 0px; } .framer-Q3uUf .framer-12yvzvm > *, .framer-Q3uUf .framer-himgtx > *, .framer-Q3uUf .framer-1rnnnx6 > *, .framer-Q3uUf .framer-1l02ex5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q3uUf .framer-1okjjrw > *, .framer-Q3uUf .framer-1udvrft > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (min-width: 2560px) { .${metadata.bodyClassName}-framer-Q3uUf { background: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, rgb(250, 250, 250)) /* {\"name\":\"Foreground / On Brand 2\"} */; } .framer-Q3uUf.framer-72rtr7 { background-color: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, #fafafa); width: 2560px; } .framer-Q3uUf .framer-zeynv6-container { height: 1450px; } .framer-Q3uUf .framer-lfwfqe { order: 0; } .framer-Q3uUf .framer-18mz48y, .framer-Q3uUf .framer-1yy1yi5 { order: 2; } .framer-Q3uUf .framer-b0yklu-container { height: var(--framer-aspect-ratio-supported, 600px); width: 600px; } .framer-Q3uUf .framer-12yvzvm { max-width: 1600px; width: 75%; } .framer-Q3uUf .framer-1okjjrw { max-width: 1600px; padding: 0px; width: 75%; } .framer-Q3uUf .framer-1mb21xa { order: 3; } .framer-Q3uUf .framer-1342miq { max-width: 1200px; } .framer-Q3uUf .framer-174xv08 { width: 70%; } .framer-Q3uUf .framer-140b0x { bottom: -176px; height: 323px; left: -244px; width: 427px; } .framer-Q3uUf .framer-o1bh2y { height: min-content; } .framer-Q3uUf .framer-1rnnnx6 { flex: none; height: 700px; max-width: 1600px; width: 75%; } .framer-Q3uUf .framer-1l02ex5 { flex: none; max-width: 1600px; width: 75%; } .framer-Q3uUf .framer-1pz89bn { left: 499px; top: 57px; } .framer-Q3uUf .framer-vfm4d5 { bottom: -396px; left: 1160px; right: unset; } .framer-Q3uUf .framer-1z0b09c { bottom: -66px; left: 516px; width: 14%; } .framer-Q3uUf .framer-sftrdx { left: 1766px; top: 142px; width: unset; } .framer-Q3uUf .framer-16m669e { width: 20%; }}`,`@media (min-width: 1440px) and (max-width: 2559px) { .${metadata.bodyClassName}-framer-Q3uUf { background: var(--token-a7c3c39c-af19-4ab6-a9ed-a36aa208fbed, rgb(244, 244, 244)) /* {\"name\":\"Foreground / On Brand 2\"} */; } .framer-Q3uUf.framer-72rtr7 { width: 1440px; } .framer-Q3uUf .framer-90zd4a-container { order: 1; } .framer-Q3uUf .framer-qjcr7z-container { order: 0; } .framer-Q3uUf .framer-i4eoq2 { order: 2; } .framer-Q3uUf .framer-1pr69tr-container { order: 3; } .framer-Q3uUf .framer-1gi1uez { order: 4; } .framer-Q3uUf .framer-1r7ybjr-container { height: var(--framer-aspect-ratio-supported, 600px); } .framer-Q3uUf .framer-1dusptw { order: 6; } .framer-Q3uUf .framer-1lpirat { order: 7; } .framer-Q3uUf .framer-himgtx { order: 8; } .framer-Q3uUf .framer-o1bh2y { order: 10; } .framer-Q3uUf .framer-d57x69 { order: 11; } .framer-Q3uUf .framer-13cmzuu { order: 12; } .framer-Q3uUf .framer-vfm4d5 { bottom: -207px; height: 501px; right: -68px; width: 671px; } .framer-Q3uUf .framer-sftrdx { height: 183px; left: 1035px; top: 82px; width: unset; } .framer-Q3uUf .framer-d2zn9b-container { order: 17; } .framer-Q3uUf .framer-1cvciy8 { order: 20; }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7056.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CI6IA6LsL\":{\"layout\":[\"fixed\",\"auto\"]},\"RWfAfI_6g\":{\"layout\":[\"fixed\",\"auto\"]},\"xA69ZbwWC\":{\"layout\":[\"fixed\",\"auto\"]},\"aeLtaZYDs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Q3uUf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7056.5,width:1200};addFonts(FrameraugiA20Il,[{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:\"Roobert Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZmlTwp1qlmtoeCDOIaKP5onCxk.woff\"},{family:\"Roobert TRIAL Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/LXRzZzHzPs58XYLuPCmBn5omUXE.woff2\"}]},...TopbarFonts,...CartFonts,...Shopiframe_ConfigFonts,...PlaybeeFonts,...PopUpFonts,...CollectionOfficeFonts,...CollectionPlantShopFonts,...CollectionSneakerShopFonts,...CollectionWorkshopFonts,...SlideshowFonts,...ProductCardMinimalFonts,...TickerFonts,...ButtonUNITOFonts,...ReviewFonts,...CarouselFonts,...FooterFonts,...TopbarMobile3Fonts,...Cart1Fonts,...TopbarTabletFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7056.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CI6IA6LsL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RWfAfI_6g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xA69ZbwWC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aeLtaZYDs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Playbee", "videoFile", "objectFit", "customScrollHeight", "scrollSpeed", "videoRef", "pe", "lastUpdateRef", "updateVideoTimeWithScroll", "now", "speed", "scrollTop", "window", "scrollHeight", "scrollProgress", "ue", "p", "Frame", "u", "addPropertyControls", "ControlType", "clamp", "e", "n", "progress", "e", "n", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "CollectionButtonFonts", "getFonts", "fP54QskMA_default", "HotSpotFonts", "wbcrqAdlc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate2", "_", "t", "toResponsiveImage", "value", "convertFromString", "activeLocale", "t6WMWyPu2a1koqvZmb", "convertFromString1", "value", "activeLocale", "t6WMWyPu2kFkdVRbUD", "convertFromString2", "value", "activeLocale", "t6WMWyPu2j8FHH6NIJ", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "t6WMWyPu2OEti_efS1", "idoAB_SQemv", "t6WMWyPu2oAB_SQemv", "t6WMWyPu2umyycwjM5", "idHBdyoydot", "t6WMWyPu2HBdyoydot", "t6WMWyPu2TtxW4QVYW", "idgjPkIeZBa", "t6WMWyPu2gjPkIeZBa", "Qo6ZJjWTQa1koqvZmb", "RVGOQMGaHa1koqvZmb", "t6WMWyPu2a1koqvZmb", "ida1koqvZmb", "Qo6ZJjWTQkFkdVRbUD", "RVGOQMGaHkFkdVRbUD", "t6WMWyPu2kFkdVRbUD", "idkFkdVRbUD", "Qo6ZJjWTQj8FHH6NIJ", "RVGOQMGaHj8FHH6NIJ", "t6WMWyPu2j8FHH6NIJ", "idj8FHH6NIJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "addPropertyOverrides", "transformTemplate1", "ChildrenCanSuspend", "QueryData", "QFAbwgCUh_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "ComponentViewportProvider", "fP54QskMA_default", "collection4", "paginationInfo4", "loadMore4", "ResolveLinks", "convertFromString", "resolvedLinks", "transformTemplate2", "wbcrqAdlc_default", "toResponsiveImage", "collection5", "paginationInfo5", "loadMore5", "convertFromString1", "resolvedLinks1", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "collection8", "paginationInfo8", "loadMore8", "convertFromString2", "resolvedLinks2", "css", "FramerAEuM87m3U", "withCSS", "AEuM87m3U_default", "addPropertyControls", "ControlType", "addFonts", "CollectionButtonFonts", "HotSpotFonts", "HotSpotFonts", "getFonts", "wbcrqAdlc_default", "CollectionButtonFonts", "fP54QskMA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "convertFromString", "activeLocale", "t6WMWyPu2RxLGxudLb", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromString1", "value", "activeLocale", "t6WMWyPu2QQ6hSkbv6", "convertFromString2", "value", "activeLocale", "t6WMWyPu2lIBDgz5Ot", "convertFromString3", "value", "activeLocale", "t6WMWyPu2J7CpkTbEh", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Qo6ZJjWTQRxLGxudLb", "RVGOQMGaHRxLGxudLb", "t6WMWyPu2RxLGxudLb", "idRxLGxudLb", "Qo6ZJjWTQQQ6hSkbv6", "RVGOQMGaHQQ6hSkbv6", "t6WMWyPu2QQ6hSkbv6", "idQQ6hSkbv6", "Qo6ZJjWTQlIBDgz5Ot", "RVGOQMGaHlIBDgz5Ot", "t6WMWyPu2lIBDgz5Ot", "idlIBDgz5Ot", "Qo6ZJjWTQJ7CpkTbEh", "RVGOQMGaHJ7CpkTbEh", "t6WMWyPu2J7CpkTbEh", "idJ7CpkTbEh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "addPropertyOverrides", "transformTemplate1", "ChildrenCanSuspend", "QueryData", "QFAbwgCUh_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "convertFromString", "resolvedLinks", "ComponentViewportProvider", "transformTemplate2", "wbcrqAdlc_default", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "convertFromString1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "convertFromString2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "convertFromString3", "resolvedLinks3", "fP54QskMA_default", "css", "FramerC8PGUHnIY", "withCSS", "C8PGUHnIY_default", "addPropertyControls", "ControlType", "addFonts", "HotSpotFonts", "CollectionButtonFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1elgb1c", "args", "onTap9otqsp", "onTap1eisdi7", "onTap1iufkfu", "onTap1vnokqt", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "SVG", "css", "FramerDdXgiTpPW", "withCSS", "DdXgiTpPW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HotSpotFonts", "getFonts", "wbcrqAdlc_default", "CollectionButtonFonts", "fP54QskMA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "convertFromString", "activeLocale", "t6WMWyPu2a981aRGns", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromString1", "value", "activeLocale", "t6WMWyPu2AdbqACoIk", "convertFromString2", "value", "activeLocale", "t6WMWyPu2kTuv0aTby", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Qo6ZJjWTQa981aRGns", "RVGOQMGaHa981aRGns", "t6WMWyPu2a981aRGns", "ida981aRGns", "Qo6ZJjWTQAdbqACoIk", "RVGOQMGaHAdbqACoIk", "t6WMWyPu2AdbqACoIk", "idAdbqACoIk", "Qo6ZJjWTQkTuv0aTby", "RVGOQMGaHkTuv0aTby", "t6WMWyPu2kTuv0aTby", "idkTuv0aTby", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "addPropertyOverrides", "transformTemplate1", "ChildrenCanSuspend", "QueryData", "QFAbwgCUh_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "convertFromString", "resolvedLinks", "ComponentViewportProvider", "transformTemplate2", "wbcrqAdlc_default", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "convertFromString1", "resolvedLinks1", "fP54QskMA_default", "collection2", "paginationInfo2", "loadMore2", "convertFromString2", "resolvedLinks2", "css", "FramerGiAjBDAAP", "withCSS", "GiAjBDAAP_default", "addPropertyControls", "ControlType", "addFonts", "HotSpotFonts", "CollectionButtonFonts", "HotSpotFonts", "getFonts", "wbcrqAdlc_default", "CollectionButtonFonts", "fP54QskMA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "toResponsiveImage", "value", "isSet", "convertFromBoolean", "activeLocale", "t6WMWyPu2OEti_efS1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromBoolean1", "value", "activeLocale", "t6WMWyPu2umyycwjM5", "convertFromBoolean2", "value", "activeLocale", "t6WMWyPu2TtxW4QVYW", "convertFromBoolean3", "value", "activeLocale", "t6WMWyPu2mWmnqr4w4", "convertFromString", "value", "activeLocale", "t6WMWyPu2xjUEoQfY_", "convertFromBoolean4", "value", "activeLocale", "t6WMWyPu2T5o9wYTPe", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Qo6ZJjWTQOEti_efS1", "RVGOQMGaHOEti_efS1", "t6WMWyPu2OEti_efS1", "idOEti_efS1", "Qo6ZJjWTQumyycwjM5", "EAKPVk4RDumyycwjM5", "RVGOQMGaHumyycwjM5", "t6WMWyPu2umyycwjM5", "idumyycwjM5", "Qo6ZJjWTQTtxW4QVYW", "RVGOQMGaHTtxW4QVYW", "t6WMWyPu2TtxW4QVYW", "idTtxW4QVYW", "Qo6ZJjWTQmWmnqr4w4", "RVGOQMGaHmWmnqr4w4", "t6WMWyPu2mWmnqr4w4", "idmWmnqr4w4", "Qo6ZJjWTQxjUEoQfY_", "RVGOQMGaHxjUEoQfY_", "t6WMWyPu2xjUEoQfY_", "idxjUEoQfY_", "Qo6ZJjWTQT5o9wYTPe", "EAKPVk4RDT5o9wYTPe", "RVGOQMGaHT5o9wYTPe", "t6WMWyPu2T5o9wYTPe", "idT5o9wYTPe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "addPropertyOverrides", "transformTemplate1", "ChildrenCanSuspend", "QueryData", "QFAbwgCUh_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "convertFromBoolean", "isSet", "resolvedLinks", "ComponentViewportProvider", "transformTemplate2", "wbcrqAdlc_default", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "i1", "convertFromBoolean1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "i2", "convertFromBoolean2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "i3", "convertFromBoolean3", "resolvedLinks3", "collection4", "paginationInfo4", "loadMore4", "i4", "convertFromString", "resolvedLinks4", "fP54QskMA_default", "collection5", "paginationInfo5", "loadMore5", "i5", "convertFromBoolean4", "resolvedLinks5", "css", "Framerh9ibFOK6E", "withCSS", "h9ibFOK6E_default", "addPropertyControls", "ControlType", "addFonts", "HotSpotFonts", "CollectionButtonFonts", "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", "description", "height", "id", "image", "jobTitle", "name1", "profilePic", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xy_ISoZHY", "y_p2nPssC", "tsmAQVLDT", "my33Kxu_7", "bG_cC2Hp2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerjKC9JwSgF", "withCSS", "jKC9JwSgF_default", "addPropertyControls", "ControlType", "addFonts", "TopbarFonts", "getFonts", "WGi3ryVa2_default", "CartFonts", "b3yfl49K2_default", "Shopiframe_ConfigFonts", "mBRcL5xHa_default", "PlaybeeFonts", "Playbee", "PopUpFonts", "DdXgiTpPW_default", "PopUpWithVariantAppearEffect", "withVariantAppearEffect", "CollectionOfficeFonts", "h9ibFOK6E_default", "CollectionPlantShopFonts", "AEuM87m3U_default", "CollectionSneakerShopFonts", "GiAjBDAAP_default", "CollectionWorkshopFonts", "C8PGUHnIY_default", "SlideshowFonts", "Slideshow", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ProductCardMinimalFonts", "kHTJ96taC_default", "TickerFonts", "Ticker", "ButtonUNITOFonts", "D_jKn9VlI_default", "ReviewFonts", "jKC9JwSgF_default", "CarouselFonts", "Carousel", "FooterFonts", "lsrprVEJZ_default", "TopbarMobile3Fonts", "sUVZewJkL_default", "Cart1Fonts", "TopbarTabletFonts", "ctpizD626_default", "MotionDivWithFX", "withFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation3", "animation4", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "transition3", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "animation10", "animation11", "transition5", "animation12", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "RVGOQMGaHjh_VljcLg", "Qo6ZJjWTQjh_VljcLg", "t6WMWyPu2jh_VljcLg", "idjh_VljcLg", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "SX4NEb3Ps3bnx0g", "overlay", "loadMore", "args", "Yx8jG4s9E1wnntms", "vEJsLoiYG3bnx0g", "HgYZdVjLq3bnx0g", "onTap1wnntms", "Bv6Ij70q33bnx0g", "ref1", "pe", "isDisplayed", "ref2", "elementId", "useRouteElementId", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "l", "ComponentViewportProvider", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "RichText2", "ChildrenCanSuspend", "QFAbwgCUh_default", "collection", "paginationInfo", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "overlay2", "overlay1", "Link", "overlay3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
