{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/qygFJaEaYrp6P4N4JzgK/rF4VvXf11H2F9j6jsqrw/VWOW0DGN_.js", "ssg:https://framerusercontent.com/modules/ztlyyqfNW2QxwC08ZDTo/bXNsCRj7mLKiwOAFqHax/nSjFa8P2e.js", "ssg:https://framerusercontent.com/modules/tQ8jrn0ATh8s9HFmeGZB/LtNV5lFDv6G3fgwb6fOq/MZvPtKYVY.js"],
  "sourcesContent": ["/*\n\nScroll Progress for Framer\nMIT License\n\n// The MIT License\n\nCopyright (c) 2023 Yann Bellot, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n*/ import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{motion,useScroll}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export default function Scroll_Progress(props){const{scrollYProgress}=useScroll();let progressOrigin;if(props.Origin==\"l\"){progressOrigin=\"0%\";}if(props.Origin==\"c\"){progressOrigin=\"50%\";}if(props.Origin==\"r\"){progressOrigin=\"100%\";}if(props.progressPosition==true){return /*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ _jsx(motion.div,{style:{position:\"fixed\",top:props.progressMargin,left:\"0\",right:\"0\",height:props.progressHeight+\"px\",width:\"100%\",background:props.backgroundColor,scaleX:scrollYProgress,transformOrigin:progressOrigin}})});}if(props.progressPosition==false){return /*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ _jsx(motion.div,{style:{position:\"fixed\",bottom:props.progressMargin,left:\"0\",right:\"0\",height:props.progressHeight+\"px\",width:\"100%\",background:props.backgroundColor,scaleX:scrollYProgress,transformOrigin:progressOrigin}})});}};addPropertyControls(Scroll_Progress,{backgroundColor:{type:ControlType.Color,defaultValue:\"#00F\"},progressHeight:{type:ControlType.Number,title:\"Height\",defaultValue:10,min:0,step:1,displayStepper:true},progressPosition:{type:ControlType.Boolean,title:\"Recycle\",defaultValue:true,enabledTitle:\"Top\",disabledTitle:\"Bottom\"},progressMargin:{type:ControlType.Number,title:\"Margin\",defaultValue:0,min:0,step:1,displayStepper:true},Origin:{type:ControlType.Enum,defaultValue:\"l\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"l\",\"c\",\"r\"],optionTitles:[\"Left\",\"Center\",\"Right\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Scroll_Progress\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scroll_Progress.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useConstant,useIsOnFramerCanvas,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";const ClipboardFonts=getFonts(Clipboard);const enabledGestures={TWcWxD7Ii:{hover:true}};const cycleOrder=[\"TWcWxD7Ii\",\"YKqcL13jU\"];const serializationHash=\"framer-QYvWi\";const variantClassNames={TWcWxD7Ii:\"framer-v-1h18hyz\",YKqcL13jU:\"framer-v-6auc5f\"};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 transitions={default:{delay:0,duration:0,ease:[0,0,1,1],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 humanReadableVariantMap={\"Email - Desktop\":\"TWcWxD7Ii\",\"Email Clicked - Desktop\":\"YKqcL13jU\"};const getProps=({content,height,id,title,title2,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,qTvB33_3U:(_ref=title!==null&&title!==void 0?title:props.qTvB33_3U)!==null&&_ref!==void 0?_ref:\"Title\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"TWcWxD7Ii\",WrSDeoVLr:(_ref2=title2!==null&&title2!==void 0?title2:props.WrSDeoVLr)!==null&&_ref2!==void 0?_ref2:\"copied!\",XLA8dU_7F:content!==null&&content!==void 0?content:props.XLA8dU_7F};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qTvB33_3U,WrSDeoVLr,XLA8dU_7F,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"TWcWxD7Ii\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1634nw4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YKqcL13jU\");});const onAppear19wvr8c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TWcWxD7Ii\"),2e3);});useOnVariantChange(baseVariant,{YKqcL13jU:onAppear19wvr8c});const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"YKqcL13jU\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"YKqcL13jU\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1h18hyz\",className,classNames),\"data-framer-name\":\"Email - Desktop\",\"data-highlight\":true,initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"TWcWxD7Ii\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1634nw4,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"TWcWxD7Ii-hover\":{\"data-framer-name\":undefined},YKqcL13jU:{\"data-framer-name\":\"Email Clicked - Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xn8dcx\",layoutDependency:layoutDependency,layoutId:\"jehUVVg5G\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yg5w5n-container\",layoutDependency:layoutDependency,layoutId:\"ZKbyUj1cE-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:XLA8dU_7F,fill:\"rgb(0, 102, 255)\",font:{},height:\"100%\",id:\"ZKbyUj1cE\",isMixedBorderRadius:false,label:\"\",layoutId:\"ZKbyUj1cE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"98%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Title\"})}),className:\"framer-1q5dtnq\",\"data-framer-name\":\"Label\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"LxHoCf6Qb\",style:{\"--extracted-r6o4lv\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},text:qTvB33_3U,variants:{\"TWcWxD7Ii-hover\":{\"--extracted-r6o4lv\":\"rgb(99, 99, 99)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TWcWxD7Ii-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"98%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 99, 99))\",\"--framer-text-transform\":\"uppercase\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-letter-spacing\":\"-0.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)))\",\"--framer-text-transform\":\"uppercase\"},children:\"copied!\"})}),className:\"framer-uwkyzp\",\"data-framer-name\":\"Label\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"I16_b87Nk\",style:{\"--extracted-r6o4lv\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},text:WrSDeoVLr,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-QYvWi[data-border=\"true\"]::after, .framer-QYvWi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QYvWi.framer-1np7k4c, .framer-QYvWi .framer-1np7k4c { display: block; }\",\".framer-QYvWi.framer-1h18hyz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-QYvWi .framer-xn8dcx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-QYvWi .framer-1yg5w5n-container { flex: none; height: 48px; left: calc(50.00000000000002% - 400px / 2); position: absolute; top: calc(48.97959183673471% - 48px / 2); width: 400px; z-index: 4; }\",\".framer-QYvWi .framer-1q5dtnq, .framer-QYvWi .framer-uwkyzp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QYvWi.framer-1h18hyz, .framer-QYvWi .framer-xn8dcx { gap: 0px; } .framer-QYvWi.framer-1h18hyz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QYvWi.framer-1h18hyz > :first-child { margin-left: 0px; } .framer-QYvWi.framer-1h18hyz > :last-child { margin-right: 0px; } .framer-QYvWi .framer-xn8dcx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QYvWi .framer-xn8dcx > :first-child { margin-top: 0px; } .framer-QYvWi .framer-xn8dcx > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 51\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"YKqcL13jU\":{\"layout\":[\"auto\",\"auto\"]},\"biB8TrTf8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"qTvB33_3U\":\"title\",\"WrSDeoVLr\":\"title2\",\"XLA8dU_7F\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerVWOW0DGN_=withCSS(Component,css,\"framer-QYvWi\");export default FramerVWOW0DGN_;FramerVWOW0DGN_.displayName=\"Clipboard\";FramerVWOW0DGN_.defaultProps={height:16,width:51};addPropertyControls(FramerVWOW0DGN_,{variant:{options:[\"TWcWxD7Ii\",\"YKqcL13jU\"],optionTitles:[\"Email - Desktop\",\"Email Clicked - Desktop\"],title:\"Variant\",type:ControlType.Enum},qTvB33_3U:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},WrSDeoVLr:{defaultValue:\"copied!\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},XLA8dU_7F:{defaultValue:\"\",displayTextArea:true,title:\"Content\",type:ControlType.String}});addFonts(FramerVWOW0DGN_,[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},...ClipboardFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVWOW0DGN_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"51\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YKqcL13jU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"biB8TrTf8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"16\",\"framerVariables\":\"{\\\"qTvB33_3U\\\":\\\"title\\\",\\\"WrSDeoVLr\\\":\\\"title2\\\",\\\"XLA8dU_7F\\\":\\\"content\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VWOW0DGN_.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Azeret Mono-regular\",\"GF;Azeret Mono-700\",\"GF;Azeret Mono-700italic\",\"GF;Azeret Mono-italic\"]);export const fonts=[{family:\"Azeret Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},{family:\"Azeret Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh17aa-5s3AA.woff2\",weight:\"700\"},{family:\"Azeret Mono\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulryb2Z4nAN7J.woff2\",weight:\"700\"},{family:\"Azeret Mono\",style:\"italic\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbyb2Z4nAN7J.woff2\",weight:\"400\"}];export const css=['.framer-y5QI7 .framer-styles-preset-1knnqwe:not(.rich-text-wrapper), .framer-y5QI7 .framer-styles-preset-1knnqwe.rich-text-wrapper p { --framer-font-family: \"Azeret Mono\", monospace; --framer-font-family-bold: \"Azeret Mono\", monospace; --framer-font-family-bold-italic: \"Azeret Mono\", monospace; --framer-font-family-italic: \"Azeret Mono\", monospace; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.75em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-y5QI7\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import EnaBuyTemplateButton from\"https://framerusercontent.com/modules/R4RE2CyGf3kVARGE4CK2/vfOl86dYvbLfvIPZNxBL/T3USDJ0Ln.js\";import Scroll_Progress from\"https://framerusercontent.com/modules/tZ4BBLxqep75fqWPDP07/n9RyB3ifxeSooe94Lkru/Scroll_Progress.js\";import LineAnimation from\"#framer/local/canvasComponent/CKAXHxDqW/CKAXHxDqW.js\";import TextLink from\"#framer/local/canvasComponent/dVTZgYLeH/dVTZgYLeH.js\";import ArticleTile from\"#framer/local/canvasComponent/PAvplMLSj/PAvplMLSj.js\";import MenuOpenOverlay from\"#framer/local/canvasComponent/SmkNoZhed/SmkNoZhed.js\";import Clipboard from\"#framer/local/canvasComponent/VWOW0DGN_/VWOW0DGN_.js\";import Footer from\"#framer/local/canvasComponent/xxIb0BkhJ/xxIb0BkhJ.js\";import Navigation from\"#framer/local/canvasComponent/yGfvD64UY/yGfvD64UY.js\";import ScrollMore from\"#framer/local/canvasComponent/ZezrseH_j/ZezrseH_j.js\";import Journal from\"#framer/local/collection/SyZTxPxeY/SyZTxPxeY.js\";import*as sharedStyle from\"#framer/local/css/cxLS4itsr/cxLS4itsr.js\";import*as sharedStyle4 from\"#framer/local/css/Cydjmd0CR/Cydjmd0CR.js\";import*as sharedStyle6 from\"#framer/local/css/CyZvEVnxW/CyZvEVnxW.js\";import*as sharedStyle7 from\"#framer/local/css/fPxpbyP1C/fPxpbyP1C.js\";import*as sharedStyle1 from\"#framer/local/css/kY8pK_YAy/kY8pK_YAy.js\";import*as sharedStyle2 from\"#framer/local/css/ngPzaVWSI/ngPzaVWSI.js\";import*as sharedStyle5 from\"#framer/local/css/nSjFa8P2e/nSjFa8P2e.js\";import*as sharedStyle3 from\"#framer/local/css/VEITImmeG/VEITImmeG.js\";import metadataProvider from\"#framer/local/webPageMetadata/MZvPtKYVY/MZvPtKYVY.js\";const Scroll_ProgressFonts=getFonts(Scroll_Progress);const NavigationFonts=getFonts(Navigation);const MenuOpenOverlayFonts=getFonts(MenuOpenOverlay);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ScrollMoreFonts=getFonts(ScrollMore);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFX=withFX(Image);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const ClipboardFonts=getFonts(Clipboard);const LineAnimationFonts=getFonts(LineAnimation);const LineAnimationWithVariantAppearEffect=withVariantAppearEffect(LineAnimation);const RichTextWithFX=withFX(RichText);const ArticleTileFonts=getFonts(ArticleTile);const TextLinkFonts=getFonts(TextLink);const EnaBuyTemplateButtonFonts=getFonts(EnaBuyTemplateButton);const FooterFonts=getFonts(Footer);const breakpoints={EgXiN6XE3:\"(max-width: 809px)\",HNsbEjUNJ:\"(min-width: 1200px)\",UcNpnLaI0:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ewCup\";const variantClassNames={EgXiN6XE3:\"framer-v-yfulfu\",HNsbEjUNJ:\"framer-v-192mvd4\",UcNpnLaI0:\"framer-v-1q5vu8g\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-64};const transition2={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,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 transition3={delay:.2,duration:1.3,ease:[0,0,1,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.3,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.9,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,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 animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition6={delay:.3,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const transition7={delay:.4,duration:1.5,ease:[.16,1,.3,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition8={delay:.5,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:1.7,duration:.7,ease:[.12,.23,.13,.96],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"HNsbEjUNJ\",Phone:\"EgXiN6XE3\",Tablet:\"UcNpnLaI0\"};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:\"HNsbEjUNJ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"MZvPtKYVY\",data:Journal,type:\"Collection\"},select:[{collection:\"MZvPtKYVY\",name:\"BzYDwzkjN\",type:\"Identifier\"},{collection:\"MZvPtKYVY\",name:\"Xv2aYseLC\",type:\"Identifier\"},{collection:\"MZvPtKYVY\",name:\"iqajtgZhd\",type:\"Identifier\"},{collection:\"MZvPtKYVY\",name:\"gyEd_f0ig\",type:\"Identifier\"},{collection:\"MZvPtKYVY\",name:\"C42zC5Hgx\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"MZvPtKYVY\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3;const{style,className,layoutId,variant,BzYDwzkjN=(_getFromCurrentRouteData=getFromCurrentRouteData(\"BzYDwzkjN\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",iqajtgZhd=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"iqajtgZhd\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",Xv2aYseLC=getFromCurrentRouteData(\"Xv2aYseLC\"),gyEd_f0ig=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"gyEd_f0ig\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",C42zC5Hgx=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"C42zC5Hgx\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",IhN9HSAY7ipxOVPosL,Xv2aYseLCipxOVPosL,iqajtgZhdipxOVPosL,BzYDwzkjNipxOVPosL,idipxOVPosL,SltMEuGrAJzArQFInq,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-ewCup`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-ewCup`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpTwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ZnO4gEEiP1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const elementId=useRouteElementId(\"pYEpvh9IS\");const ref2=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HNsbEjUNJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-192mvd4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqkdtf-container\",children:/*#__PURE__*/_jsx(Scroll_Progress,{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",height:\"100%\",id:\"S9tDTxDry\",layoutId:\"S9tDTxDry\",Origin:\"l\",progressHeight:2,progressMargin:0,progressPosition:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-156o6v5-container\",id:\"156o6v5\",layoutScroll:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EgXiN6XE3:{variant:overlay.visible?\"IZofKJ4e0\":\"IZofKJ4e0\"}},children:/*#__PURE__*/_jsx(Navigation,{EHMhKGDpT:EHMhKGDpTwelu7j({overlay}),height:\"100%\",id:\"WZ5sJ5JQo\",layoutId:\"WZ5sJ5JQo\",style:{width:\"100%\"},variant:overlay.visible?\"xFNqp1zcf\":\"FeKwNXxsb\",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:0,ease:[0,0,1,1],type:\"tween\"}},className:\"framer-z3iuao\",\"data-framer-portal-id\":\"156o6v5\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"oFGyJPlkg\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{animate:animation2,className:\"framer-132wnsc-container\",\"data-framer-portal-id\":\"156o6v5\",exit:animation1,initial:animation3,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EgXiN6XE3:{variant:\"JjVk8IP6t\"}},children:/*#__PURE__*/_jsx(MenuOpenOverlay,{height:\"100%\",id:\"TislU54dD\",layoutId:\"TislU54dD\",style:{height:\"100%\",width:\"100%\"},variant:\"I2DiMKo8W\",width:\"100%\",ZnO4gEEiP:ZnO4gEEiP1wvko5h({overlay})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1fw2nxy\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1mtcq0d\",\"data-framer-name\":\"Section Header\",name:\"Section Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cswm63\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zw7hg5\",\"data-styles-preset\":\"cxLS4itsr\",children:\"How Aesop has changed the Industry\"})}),className:\"framer-m0s9bb\",\"data-framer-appear-id\":\"m0s9bb\",\"data-framer-name\":\"WORK\",fonts:[\"Inter\"],initial:animation5,name:\"WORK\",optimized:true,style:{transformPerspective:1200},text:BzYDwzkjN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5561bb3f-a718-41fb-9058-813f188fd34f, rgb(55, 43, 41))\",\"--framer-text-transform\":\"uppercase\"},children:\"(aug, 2022)\"})}),className:\"framer-ep1r0l\",\"data-framer-appear-id\":\"ep1r0l\",\"data-framer-name\":\"24.05.2024\",fonts:[\"GF;Azeret Mono-regular\"],initial:animation5,name:\"24.05.2024\",optimized:true,style:{transformPerspective:1200},text:iqajtgZhd,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l4xh91\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a5ov0z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1emuiki-container\",\"data-framer-appear-id\":\"1emuiki\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ScrollMore,{height:\"100%\",I9khHZNLi:\"rgb(0, 0, 0)\",id:\"qRTM8QGAE\",layoutId:\"qRTM8QGAE\",TWVH1Vrqk:\"Read Article\",variant:\"zip39tIJv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1mwile3\",\"data-framer-appear-id\":\"1mwile3\",\"data-framer-name\":\"Image Wrapper\",initial:animation5,name:\"Image Wrapper\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",...toResponsiveImage(Xv2aYseLC)},className:\"framer-uhse24\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1x677if\",\"data-framer-name\":\"Section Article\",name:\"Section Article\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ngxgql\",\"data-framer-name\":\"Left Column\",name:\"Left Column\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ayru10\",\"data-framer-name\":\"Sticky Wrapper\",name:\"Sticky Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(1, 1, 3)\"},children:\"Inside look at designing outside the box\"})}),className:\"framer-1rpwy6h\",\"data-framer-name\":\"SELECTED\",fonts:[\"FS;Switzer-regular\"],name:\"SELECTED\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r1psac\",\"data-framer-name\":\"Right Column\",name:\"Right Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:gyEd_f0ig,className:\"framer-84a4p5\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-eeskf2\",h2:\"framer-styles-preset-8qbwek\",h3:\"framer-styles-preset-rhmsro\",h4:\"framer-styles-preset-m7uahk\",h6:\"framer-styles-preset-tz3or9\",p:\"framer-styles-preset-1knnqwe\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rieve5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7j30mx-container\",children:/*#__PURE__*/_jsx(Clipboard,{height:\"100%\",id:\"wG3A_pLaq\",layoutId:\"wG3A_pLaq\",qTvB33_3U:\"SHARE ARTICLE\",variant:\"TWcWxD7Ii\",width:\"100%\",WrSDeoVLr:\"Copied to clipboard\",XLA8dU_7F:C42zC5Hgx})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iumbi2\",\"data-framer-name\":\"Section Journal\",name:\"Section Journal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-git3yd\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11uh0y5-container\",children:/*#__PURE__*/_jsx(LineAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"zh0P0ZNrl\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"a8dXW8rKN\",height:\"100%\",id:\"hCYnrVctM\",layoutId:\"hCYnrVctM\",nhvtjR0LA:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",style:{height:\"100%\",width:\"100%\"},variant:\"zh0P0ZNrl\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6et5r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfn7d8\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hh1wpb\",\"data-styles-preset\":\"fPxpbyP1C\",children:\"MORE\"})}),className:\"framer-1xnq8zr\",\"data-framer-name\":\"SELECTED\",fonts:[\"Inter\"],name:\"SELECTED\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e69xu6\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hh1wpb\",\"data-styles-preset\":\"fPxpbyP1C\",children:\"ARTICLES\"})}),className:\"framer-1xwevbw\",\"data-framer-name\":\"WORK\",fonts:[\"Inter\"],name:\"WORK\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6lz9g\",\"data-framer-name\":\"Articles\",name:\"Articles\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omm9os\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ipxOVPosL\",data:Journal,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"ipxOVPosL\",name:\"IhN9HSAY7\",type:\"Identifier\"},{collection:\"ipxOVPosL\",name:\"Xv2aYseLC\",type:\"Identifier\"},{collection:\"ipxOVPosL\",name:\"iqajtgZhd\",type:\"Identifier\"},{collection:\"ipxOVPosL\",name:\"BzYDwzkjN\",type:\"Identifier\"},{collection:\"ipxOVPosL\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"IhN9HSAY7\":IhN9HSAY7ipxOVPosL,\"Xv2aYseLC\":Xv2aYseLCipxOVPosL,\"iqajtgZhd\":iqajtgZhdipxOVPosL,\"BzYDwzkjN\":BzYDwzkjNipxOVPosL,\"id\":idipxOVPosL},i)=>{IhN9HSAY7ipxOVPosL!==null&&IhN9HSAY7ipxOVPosL!==void 0?IhN9HSAY7ipxOVPosL:IhN9HSAY7ipxOVPosL=\"\";iqajtgZhdipxOVPosL!==null&&iqajtgZhdipxOVPosL!==void 0?iqajtgZhdipxOVPosL:iqajtgZhdipxOVPosL=\"\";BzYDwzkjNipxOVPosL!==null&&BzYDwzkjNipxOVPosL!==void 0?BzYDwzkjNipxOVPosL:BzYDwzkjNipxOVPosL=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ipxOVPosL-${idipxOVPosL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{IhN9HSAY7:IhN9HSAY7ipxOVPosL},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{IhN9HSAY7:IhN9HSAY7ipxOVPosL},webPageId:\"MZvPtKYVY\"},nodeId:\"KZGfFfr7d\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-vyz86y framer-1232rnf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jsm2y1-container\",children:/*#__PURE__*/_jsx(ArticleTile,{height:\"100%\",id:\"LWgMZQgck\",L5Z2mCv0c:iqajtgZhdipxOVPosL,layoutId:\"LWgMZQgck\",RGEHQzfsP:BzYDwzkjNipxOVPosL,style:{width:\"100%\"},variant:\"fMRaxG4Si\",width:\"100%\",xopkxDG_A:toResponsiveImage(Xv2aYseLCipxOVPosL)})})})})})})},idipxOVPosL);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12gbngn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ey1pf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined},{href:{webPageId:\"vUko_ced0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-31k7s4-container\",\"data-framer-appear-id\":\"31k7s4\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EgXiN6XE3:{bwVWMSt6G:resolvedLinks[2]},UcNpnLaI0:{bwVWMSt6G:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(TextLink,{bwVWMSt6G:resolvedLinks[0],height:\"100%\",id:\"yYt0CKNE2\",Kpveh2Q8O:\"READ ALL\",layoutId:\"yYt0CKNE2\",MOYsDPIsL:SltMEuGrAJzArQFInq,variant:\"eyytyxpGy\",width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19t1vto\",\"data-framer-name\":\"Buy Template Module\",name:\"Buy Template Module\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4gnhr6\",\"data-framer-name\":\"Button Wrapper\",name:\"Button Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1bczvlr-container\",\"data-framer-appear-id\":\"1bczvlr\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(EnaBuyTemplateButton,{height:\"100%\",id:\"eAjvWTICu\",layoutId:\"eAjvWTICu\",link:\"https://ena.lemonsqueezy.com/checkout/buy/7d0e4d24-b31a-482f-bde3-7dab7d04926b\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wj9oyi\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-98o6hz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EgXiN6XE3:{variant:\"zlgyEsAYd\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tXCxKk_D3\",layoutId:\"tXCxKk_D3\",style:{width:\"100%\"},variant:\"hwslIwW6k\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-ewCup { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)) /* {\"name\":\"JT Beige\"} */; }`,\".framer-ewCup.framer-1232rnf, .framer-ewCup .framer-1232rnf { display: block; }\",\".framer-ewCup.framer-192mvd4 { align-content: center; align-items: center; background-color: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, #f6f3ec); 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-ewCup .framer-qqkdtf-container { flex: none; height: auto; position: relative; width: auto; z-index: 9; }\",\".framer-ewCup .framer-156o6v5-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-ewCup .framer-z3iuao { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-ewCup .framer-132wnsc-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-ewCup .framer-1fw2nxy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1mtcq0d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 70vh; justify-content: flex-end; overflow: hidden; padding: 0px 20px 120px 20px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1cswm63 { 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: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-m0s9bb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ewCup .framer-ep1r0l, .framer-ewCup .framer-1xnq8zr, .framer-ewCup .framer-1xwevbw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ewCup .framer-1l4xh91 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 20px 20px 20px; position: absolute; right: 0px; z-index: 8; }\",\".framer-ewCup .framer-a5ov0z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ewCup .framer-1emuiki-container, .framer-ewCup .framer-7j30mx-container, .framer-ewCup .framer-31k7s4-container, .framer-ewCup .framer-1bczvlr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ewCup .framer-1mwile3 { align-content: center; align-items: center; aspect-ratio: 1.9666666666666666 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 102px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-uhse24 { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-ewCup .framer-1x677if { 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: flex-start; overflow: visible; padding: 80px 20px 160px 20px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1ngxgql { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-ewCup .framer-ayru10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 0px; position: sticky; top: 60px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-ewCup .framer-1rpwy6h { flex: 1 0 0px; height: auto; max-width: 380px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ewCup .framer-r1psac { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ewCup .framer-84a4p5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ewCup .framer-rieve5 { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ewCup .framer-1iumbi2 { align-content: center; align-items: center; background-color: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, #f6f3ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 120px 20px; position: relative; width: 100%; z-index: 3; }\",\".framer-ewCup .framer-git3yd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-11uh0y5-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1f6et5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1lfn7d8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ewCup .framer-e69xu6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ewCup .framer-s6lz9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-1omm9os { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-ewCup .framer-vyz86y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-ewCup .framer-1jsm2y1-container, .framer-ewCup .framer-98o6hz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ewCup .framer-12gbngn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ewCup .framer-12ey1pf { 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: min-content; }\",\".framer-ewCup .framer-19t1vto { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-ewCup .framer-4gnhr6 { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-ewCup .framer-wj9oyi { 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 20px 0px; position: relative; width: 100%; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ewCup.framer-192mvd4, .framer-ewCup .framer-1fw2nxy, .framer-ewCup .framer-1mtcq0d, .framer-ewCup .framer-1cswm63, .framer-ewCup .framer-1l4xh91, .framer-ewCup .framer-a5ov0z, .framer-ewCup .framer-1mwile3, .framer-ewCup .framer-1x677if, .framer-ewCup .framer-1ngxgql, .framer-ewCup .framer-ayru10, .framer-ewCup .framer-r1psac, .framer-ewCup .framer-rieve5, .framer-ewCup .framer-1iumbi2, .framer-ewCup .framer-git3yd, .framer-ewCup .framer-1f6et5r, .framer-ewCup .framer-1lfn7d8, .framer-ewCup .framer-e69xu6, .framer-ewCup .framer-s6lz9g, .framer-ewCup .framer-1omm9os, .framer-ewCup .framer-vyz86y, .framer-ewCup .framer-12gbngn, .framer-ewCup .framer-12ey1pf, .framer-ewCup .framer-19t1vto, .framer-ewCup .framer-4gnhr6, .framer-ewCup .framer-wj9oyi { gap: 0px; } .framer-ewCup.framer-192mvd4 > *, .framer-ewCup .framer-1fw2nxy > *, .framer-ewCup .framer-1mtcq0d > *, .framer-ewCup .framer-git3yd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ewCup.framer-192mvd4 > :first-child, .framer-ewCup .framer-1fw2nxy > :first-child, .framer-ewCup .framer-1mtcq0d > :first-child, .framer-ewCup .framer-1cswm63 > :first-child, .framer-ewCup .framer-1ngxgql > :first-child, .framer-ewCup .framer-r1psac > :first-child, .framer-ewCup .framer-rieve5 > :first-child, .framer-ewCup .framer-1iumbi2 > :first-child, .framer-ewCup .framer-git3yd > :first-child { margin-top: 0px; } .framer-ewCup.framer-192mvd4 > :last-child, .framer-ewCup .framer-1fw2nxy > :last-child, .framer-ewCup .framer-1mtcq0d > :last-child, .framer-ewCup .framer-1cswm63 > :last-child, .framer-ewCup .framer-1ngxgql > :last-child, .framer-ewCup .framer-r1psac > :last-child, .framer-ewCup .framer-rieve5 > :last-child, .framer-ewCup .framer-1iumbi2 > :last-child, .framer-ewCup .framer-git3yd > :last-child { margin-bottom: 0px; } .framer-ewCup .framer-1cswm63 > *, .framer-ewCup .framer-1ngxgql > *, .framer-ewCup .framer-rieve5 > *, .framer-ewCup .framer-1iumbi2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ewCup .framer-1l4xh91 > *, .framer-ewCup .framer-1x677if > *, .framer-ewCup .framer-1f6et5r > *, .framer-ewCup .framer-s6lz9g > *, .framer-ewCup .framer-1omm9os > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ewCup .framer-1l4xh91 > :first-child, .framer-ewCup .framer-a5ov0z > :first-child, .framer-ewCup .framer-1mwile3 > :first-child, .framer-ewCup .framer-1x677if > :first-child, .framer-ewCup .framer-ayru10 > :first-child, .framer-ewCup .framer-1f6et5r > :first-child, .framer-ewCup .framer-1lfn7d8 > :first-child, .framer-ewCup .framer-e69xu6 > :first-child, .framer-ewCup .framer-s6lz9g > :first-child, .framer-ewCup .framer-1omm9os > :first-child, .framer-ewCup .framer-vyz86y > :first-child, .framer-ewCup .framer-12gbngn > :first-child, .framer-ewCup .framer-12ey1pf > :first-child, .framer-ewCup .framer-19t1vto > :first-child, .framer-ewCup .framer-4gnhr6 > :first-child, .framer-ewCup .framer-wj9oyi > :first-child { margin-left: 0px; } .framer-ewCup .framer-1l4xh91 > :last-child, .framer-ewCup .framer-a5ov0z > :last-child, .framer-ewCup .framer-1mwile3 > :last-child, .framer-ewCup .framer-1x677if > :last-child, .framer-ewCup .framer-ayru10 > :last-child, .framer-ewCup .framer-1f6et5r > :last-child, .framer-ewCup .framer-1lfn7d8 > :last-child, .framer-ewCup .framer-e69xu6 > :last-child, .framer-ewCup .framer-s6lz9g > :last-child, .framer-ewCup .framer-1omm9os > :last-child, .framer-ewCup .framer-vyz86y > :last-child, .framer-ewCup .framer-12gbngn > :last-child, .framer-ewCup .framer-12ey1pf > :last-child, .framer-ewCup .framer-19t1vto > :last-child, .framer-ewCup .framer-4gnhr6 > :last-child, .framer-ewCup .framer-wj9oyi > :last-child { margin-right: 0px; } .framer-ewCup .framer-a5ov0z > *, .framer-ewCup .framer-1mwile3 > *, .framer-ewCup .framer-ayru10 > *, .framer-ewCup .framer-1lfn7d8 > *, .framer-ewCup .framer-e69xu6 > *, .framer-ewCup .framer-12gbngn > *, .framer-ewCup .framer-12ey1pf > *, .framer-ewCup .framer-19t1vto > *, .framer-ewCup .framer-4gnhr6 > *, .framer-ewCup .framer-wj9oyi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ewCup .framer-r1psac > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ewCup .framer-vyz86y > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-ewCup { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)) /* {\"name\":\"JT Beige\"} */; } .framer-ewCup.framer-192mvd4 { width: 810px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-ewCup { background: var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)) /* {\"name\":\"JT Beige\"} */; } .framer-ewCup.framer-192mvd4 { width: 390px; } .framer-ewCup .framer-1mtcq0d, .framer-ewCup .framer-1iumbi2 { padding: 0px 15px 120px 15px; } .framer-ewCup .framer-1mwile3 { aspect-ratio: 1.56 / 1; height: var(--framer-aspect-ratio-supported, 128px); } .framer-ewCup .framer-1x677if { flex-direction: column; padding: 80px 15px 160px 15px; } .framer-ewCup .framer-1ngxgql { align-self: unset; flex: none; height: min-content; padding: 0px 0px 20px 0px; width: 100%; } .framer-ewCup .framer-ayru10 { position: relative; top: unset; } .framer-ewCup .framer-r1psac, .framer-ewCup .framer-e69xu6, .framer-ewCup .framer-vyz86y { flex: none; width: 100%; } .framer-ewCup .framer-git3yd { padding: 0px 0px 20px 0px; } .framer-ewCup .framer-1f6et5r { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; } .framer-ewCup .framer-1omm9os, .framer-ewCup .framer-19t1vto { flex-direction: column; } .framer-ewCup .framer-4gnhr6 { bottom: 62px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ewCup .framer-1x677if, .framer-ewCup .framer-1f6et5r, .framer-ewCup .framer-1omm9os, .framer-ewCup .framer-19t1vto { gap: 0px; } .framer-ewCup .framer-1x677if > *, .framer-ewCup .framer-1omm9os > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ewCup .framer-1x677if > :first-child, .framer-ewCup .framer-1f6et5r > :first-child, .framer-ewCup .framer-1omm9os > :first-child, .framer-ewCup .framer-19t1vto > :first-child { margin-top: 0px; } .framer-ewCup .framer-1x677if > :last-child, .framer-ewCup .framer-1f6et5r > :last-child, .framer-ewCup .framer-1omm9os > :last-child, .framer-ewCup .framer-19t1vto > :last-child { margin-bottom: 0px; } .framer-ewCup .framer-1f6et5r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ewCup .framer-19t1vto > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4152\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UcNpnLaI0\":{\"layout\":[\"fixed\",\"auto\"]},\"EgXiN6XE3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMZvPtKYVY=withCSS(Component,css,\"framer-ewCup\");export default FramerMZvPtKYVY;FramerMZvPtKYVY.displayName=\"Page\";FramerMZvPtKYVY.defaultProps={height:4152,width:1200};addFonts(FramerMZvPtKYVY,[{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:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"}]},...Scroll_ProgressFonts,...NavigationFonts,...MenuOpenOverlayFonts,...ScrollMoreFonts,...ClipboardFonts,...LineAnimationFonts,...ArticleTileFonts,...TextLinkFonts,...EnaBuyTemplateButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMZvPtKYVY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4152\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UcNpnLaI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EgXiN6XE3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Scroll_Progress", "props", "scrollYProgress", "useScroll", "progressOrigin", "p", "l", "motion", "addPropertyControls", "ControlType", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "ClipboardFonts", "getFonts", "Clipboard", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "content", "height", "id", "title", "title2", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qTvB33_3U", "WrSDeoVLr", "XLA8dU_7F", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1634nw4", "args", "onAppear19wvr8c", "useOnVariantChange", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerVWOW0DGN_", "withCSS", "VWOW0DGN_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "Scroll_ProgressFonts", "getFonts", "Scroll_Progress", "NavigationFonts", "yGfvD64UY_default", "MenuOpenOverlayFonts", "SmkNoZhed_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ScrollMoreFonts", "ZezrseH_j_default", "ContainerWithOptimizedAppearEffect", "ImageWithFX", "Image2", "MotionSectionWithOptimizedAppearEffect", "motion", "ClipboardFonts", "VWOW0DGN_default", "LineAnimationFonts", "CKAXHxDqW_default", "LineAnimationWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithFX", "ArticleTileFonts", "PAvplMLSj_default", "TextLinkFonts", "dVTZgYLeH_default", "EnaBuyTemplateButtonFonts", "T3USDJ0Ln_default", "FooterFonts", "xxIb0BkhJ_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "toResponsiveImage", "value", "animation8", "transition6", "transition7", "QueryData", "query", "pageSize", "data", "useQueryData", "transition8", "animation9", "transition9", "animation10", "animation11", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "SyZTxPxeY_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "style", "className", "layoutId", "variant", "BzYDwzkjN", "iqajtgZhd", "Xv2aYseLC", "gyEd_f0ig", "C42zC5Hgx", "IhN9HSAY7ipxOVPosL", "Xv2aYseLCipxOVPosL", "iqajtgZhdipxOVPosL", "BzYDwzkjNipxOVPosL", "idipxOVPosL", "SltMEuGrAJzArQFInq", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpTwelu7j", "overlay", "paginationInfo", "args", "ZnO4gEEiP1wvko5h", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "Scroll_Progress", "l", "ContainerWithFX", "PropertyOverrides2", "yGfvD64UY_default", "AnimatePresence", "Ga", "x", "SmkNoZhed_default", "RichTextWithOptimizedAppearEffect", "ContainerWithOptimizedAppearEffect", "ZezrseH_j_default", "MotionSectionWithOptimizedAppearEffect", "ImageWithFX", "RichText2", "VWOW0DGN_default", "LineAnimationWithVariantAppearEffect", "RichTextWithFX", "ChildrenCanSuspend", "collection", "loadMore", "i", "PathVariablesContext", "Link", "PAvplMLSj_default", "ResolveLinks", "resolvedLinks", "dVTZgYLeH_default", "T3USDJ0Ln_default", "xxIb0BkhJ_default", "css", "FramerMZvPtKYVY", "withCSS", "MZvPtKYVY_default", "addFonts", "Scroll_ProgressFonts", "NavigationFonts", "MenuOpenOverlayFonts", "ScrollMoreFonts", "ClipboardFonts", "LineAnimationFonts", "ArticleTileFonts", "TextLinkFonts", "EnaBuyTemplateButtonFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
