{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/0dfzTKPSzK8b138I1Gsl/PH4CFyFMG7CUSDQ9vm89/Input_Waitlist.js", "ssg:https://framerusercontent.com/modules/pLKMJuO5lDiDuhcQVJvT/RiL6s52OCKpGXGCWPFHR/MYqZ5whcr.js", "ssg:https://framerusercontent.com/modules/Wz4qIaIZDvjqPPpr8KBc/i64Ns5sQi37cBTI6e3vh/tqmzmzVWq.js", "ssg:https://framerusercontent.com/modules/ih0ryvgPoMQqKaVYVPSW/qxvxixcIiemTh6gLmfc4/Share.js", "ssg:https://framerusercontent.com/modules/th8JqR5IEKPer8DJD0bJ/9pOY8c0YPdU1OcJ8snoG/HdaivlN8o.js", "ssg:https://framerusercontent.com/modules/2hBp6KHstQ6JGyFbIAdA/Q6qSCpqALvhVUKkkY5XA/xLShI_ive.js", "ssg:https://framerusercontent.com/modules/khXrjAd4y96ip1Y0jQCD/27wO7OZZA2Y6hfGnZ2GZ/Crozie1vg.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.12.0\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - WAITLIST\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function Waitlist(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"getwaitlist\"});}addPropertyControls(Waitlist,{getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Waitlist\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_Waitlist.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,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/hEQsqbUi81zaW5ybVVmp/UdyR8FZrrZXYMHAK3uSE/YXAkWXgX7.js\";const cycleOrder=[\"aLNsysjxt\",\"vzjqbZNyb\",\"HhoeiU2aD\"];const serializationHash=\"framer-3dRsT\";const variantClassNames={aLNsysjxt:\"framer-v-nqek8a\",HhoeiU2aD:\"framer-v-6so9ae\",vzjqbZNyb:\"framer-v-ygpvfz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Share Article Link - Hover\":\"vzjqbZNyb\",\"Share Article Link - Tablet/Mobile\":\"HhoeiU2aD\",\"Share Article Link\":\"aLNsysjxt\"};const getProps=({height,id,title,width,...props})=>{return{...props,GxIUxi0ht:title??props.GxIUxi0ht??\"Share Article\",variant:humanReadableVariantMap[props.variant]??props.variant??\"aLNsysjxt\"};};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,GxIUxi0ht,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aLNsysjxt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1t01b9n=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"vzjqbZNyb\");});const onMouseLeave3xq0te=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"aLNsysjxt\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nqek8a\",className,classNames),\"data-framer-name\":\"Share Article Link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aLNsysjxt\",onMouseEnter:onMouseEnter1t01b9n,ref:ref??ref1,style:{...style},...addPropertyOverrides({HhoeiU2aD:{\"data-framer-name\":\"Share Article Link - Tablet/Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},vzjqbZNyb:{\"data-framer-name\":\"Share Article Link - Hover\",onMouseLeave:onMouseLeave3xq0te}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jkzb12\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"q0mFR_gZG\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},variants:{vzjqbZNyb:{opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1i8dzc6\",\"data-styles-preset\":\"YXAkWXgX7\",children:\"About Me\"})}),className:\"framer-1hs2u1e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sFTYWG7K2\",text:GxIUxi0ht,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3dRsT.framer-1p7p4gi, .framer-3dRsT .framer-1p7p4gi { display: block; }\",\".framer-3dRsT.framer-nqek8a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3dRsT .framer-1jkzb12 { flex: none; height: 7px; overflow: hidden; position: relative; width: 1px; }\",\".framer-3dRsT .framer-1hs2u1e { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3dRsT.framer-nqek8a { gap: 0px; } .framer-3dRsT.framer-nqek8a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3dRsT.framer-nqek8a > :first-child { margin-left: 0px; } .framer-3dRsT.framer-nqek8a > :last-child { margin-right: 0px; } }\",\".framer-3dRsT.framer-v-ygpvfz.framer-nqek8a { gap: 4px; }\",\".framer-3dRsT.framer-v-ygpvfz .framer-1jkzb12 { width: 7px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3dRsT.framer-v-ygpvfz.framer-nqek8a { gap: 0px; } .framer-3dRsT.framer-v-ygpvfz.framer-nqek8a > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-3dRsT.framer-v-ygpvfz.framer-nqek8a > :first-child { margin-left: 0px; } .framer-3dRsT.framer-v-ygpvfz.framer-nqek8a > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17.5\n * @framerIntrinsicWidth 79\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vzjqbZNyb\":{\"layout\":[\"auto\",\"auto\"]},\"HhoeiU2aD\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GxIUxi0ht\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMYqZ5whcr=withCSS(Component,css,\"framer-3dRsT\");export default FramerMYqZ5whcr;FramerMYqZ5whcr.displayName=\"Journal / Share Article Link\";FramerMYqZ5whcr.defaultProps={height:17.5,width:79};addPropertyControls(FramerMYqZ5whcr,{variant:{options:[\"aLNsysjxt\",\"vzjqbZNyb\",\"HhoeiU2aD\"],optionTitles:[\"Share Article Link\",\"Share Article Link - Hover\",\"Share Article Link - Tablet/Mobile\"],title:\"Variant\",type:ControlType.Enum},GxIUxi0ht:{defaultValue:\"Share Article\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerMYqZ5whcr,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMYqZ5whcr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"79\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"17.5\",\"framerVariables\":\"{\\\"GxIUxi0ht\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vzjqbZNyb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HhoeiU2aD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-vChcY\";const variantClassNames={VWbAwxV2d:\"framer-v-1cw6wk9\"};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 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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"VWbAwxV2d\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1232,intrinsicWidth:928,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1232,pixelWidth:928,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/EuNzLA0HFvDQqrzSD3mbv0CSCs.png\",srcSet:\"https://framerusercontent.com/images/EuNzLA0HFvDQqrzSD3mbv0CSCs.png?scale-down-to=1024 771w,https://framerusercontent.com/images/EuNzLA0HFvDQqrzSD3mbv0CSCs.png 928w\"},className:cx(scopingClassNames,\"framer-1cw6wk9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VWbAwxV2d\",ref:ref??ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vChcY.framer-6s6xwz, .framer-vChcY .framer-6s6xwz { display: block; }\",\".framer-vChcY.framer-1cw6wk9 { height: 87px; overflow: visible; position: relative; width: 168px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 87\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertqmzmzVWq=withCSS(Component,css,\"framer-vChcY\");export default FramertqmzmzVWq;FramertqmzmzVWq.displayName=\"3\";FramertqmzmzVWq.defaultProps={height:87,width:168};addFonts(FramertqmzmzVWq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertqmzmzVWq\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"87\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"168\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tqmzmzVWq.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function Twitter_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// Set the page title after component mounts\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out this insightful blog post: ${pageTitle}. Read it here:`)}&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}`);}});};}export function LinkedIn_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}&source=framer.com`);},style:{...props.style,cursor:\"pointer\"}});};}export function Facebook_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&quote=${encodeURIComponent(`Check out this awesome site \"${pageTitle}\".`)}`);}});};}export function Email_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;const subject=encodeURIComponent(`Check out this link: ${pageTitle}`);const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`);window.open(`mailto:?subject=${subject}&body=${body}`);}});};}export function Clipboard_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{const textField=document.createElement(\"textarea\");textField.innerText=window.location.href;document.body.appendChild(textField);textField.select();document.execCommand(\"copy\");textField.remove();alert(\"URL copied to clipboard!\");}});};}export function Whatsapp_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(`Check out this link: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`)}`);}});};}export function Tumblr_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.tumblr.com/widgets/share/tool?canonicalUrl=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}`);}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Tumblr_Share\":{\"type\":\"reactHoc\",\"name\":\"Tumblr_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Share.map", "// Generated by Framer (100f99d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FK Grotesk Neue Trial Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Trial Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/HX4ZxTkfsJB0zCyekXEfkyryHM.woff2\"}]}];export const css=['.framer-46je4 .framer-styles-preset-14dz8dj:not(.rich-text-wrapper), .framer-46je4 .framer-styles-preset-14dz8dj.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 80%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-46je4 .framer-styles-preset-14dz8dj:not(.rich-text-wrapper), .framer-46je4 .framer-styles-preset-14dz8dj.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 80%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-46je4 .framer-styles-preset-14dz8dj:not(.rich-text-wrapper), .framer-46je4 .framer-styles-preset-14dz8dj.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Bold\", \"FK Grotesk Neue Trial Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 80%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-46je4\";\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 (9f55354)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FK Grotesk Neue Trial Black\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Trial Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/8p7eo8m2kpqmH5gVPyQDsJo2c.woff2\"}]}];export const css=['.framer-4Y7PD .framer-styles-preset-38dg8b:not(.rich-text-wrapper), .framer-4Y7PD .framer-styles-preset-38dg8b.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Black\", \"FK Grotesk Neue Trial Black Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-4Y7PD .framer-styles-preset-38dg8b:not(.rich-text-wrapper), .framer-4Y7PD .framer-styles-preset-38dg8b.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Black\", \"FK Grotesk Neue Trial Black Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-4Y7PD .framer-styles-preset-38dg8b:not(.rich-text-wrapper), .framer-4Y7PD .framer-styles-preset-38dg8b.rich-text-wrapper p { --framer-font-family: \"FK Grotesk Neue Trial Black\", \"FK Grotesk Neue Trial Black Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 100%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #001d0b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-4Y7PD\";\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 (662ecd5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Waitlist from\"https://framerusercontent.com/modules/0dfzTKPSzK8b138I1Gsl/PH4CFyFMG7CUSDQ9vm89/Input_Waitlist.js\";import NavigationMobileOpenNavigation from\"#framer/local/canvasComponent/BGiZQuPOO/BGiZQuPOO.js\";import FooterEnaLogo from\"#framer/local/canvasComponent/c9_KSBFxw/c9_KSBFxw.js\";import FooterFooter from\"#framer/local/canvasComponent/J0LNWxmCZ/J0LNWxmCZ.js\";import JournalShareArticleLink from\"#framer/local/canvasComponent/MYqZ5whcr/MYqZ5whcr.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/QaFoemE2c/QaFoemE2c.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/Se7Sa8kPD/Se7Sa8kPD.js\";import UserComponent from\"#framer/local/canvasComponent/tqmzmzVWq/tqmzmzVWq.js\";import JournalArticleCard from\"#framer/local/canvasComponent/vDFiPcfnz/vDFiPcfnz.js\";import NavigationNavigation from\"#framer/local/canvasComponent/ZhbW5Y__b/ZhbW5Y__b.js\";import{Clipboard_Share}from\"#framer/local/codeFile/rRPD4Nm/Share.js\";import Journal from\"#framer/local/collection/MpGbquskz/MpGbquskz.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle15 from\"#framer/local/css/DL1_DmJtY/DL1_DmJtY.js\";import*as sharedStyle from\"#framer/local/css/HdaivlN8o/HdaivlN8o.js\";import*as sharedStyle7 from\"#framer/local/css/iXbk3iV8g/iXbk3iV8g.js\";import*as sharedStyle1 from\"#framer/local/css/J4z2Gav4e/J4z2Gav4e.js\";import*as sharedStyle11 from\"#framer/local/css/m3_IJQOPi/m3_IJQOPi.js\";import*as sharedStyle4 from\"#framer/local/css/nLmGg1ArJ/nLmGg1ArJ.js\";import*as sharedStyle8 from\"#framer/local/css/rl8VpEi6J/rl8VpEi6J.js\";import*as sharedStyle9 from\"#framer/local/css/RmlrgdPS5/RmlrgdPS5.js\";import*as sharedStyle12 from\"#framer/local/css/RxAgf50GR/RxAgf50GR.js\";import*as sharedStyle6 from\"#framer/local/css/UImLi2_Hr/UImLi2_Hr.js\";import*as sharedStyle3 from\"#framer/local/css/ws35hVPiM/ws35hVPiM.js\";import*as sharedStyle5 from\"#framer/local/css/xHQdaN6El/xHQdaN6El.js\";import*as sharedStyle14 from\"#framer/local/css/Xitz9SmTf/Xitz9SmTf.js\";import*as sharedStyle10 from\"#framer/local/css/xLShI_ive/xLShI_ive.js\";import*as sharedStyle2 from\"#framer/local/css/xSWhRhyfF/xSWhRhyfF.js\";import*as sharedStyle13 from\"#framer/local/css/yOUFK9cmK/yOUFK9cmK.js\";import metadataProvider from\"#framer/local/webPageMetadata/Crozie1vg/Crozie1vg.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationNavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationMobile);const NavigationMobileOpenNavigationFonts=getFonts(NavigationMobileOpenNavigation);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const GlobalLineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(GlobalLineAnimationGlobal);const RichTextWithFX=withFX(RichText);const JournalShareArticleLinkFonts=getFonts(JournalShareArticleLink);const MotionDivClipboard_Sharemsnk=withCodeBoundaryForOverrides(motion.div,{nodeId:\"C4uN0MfNj\",override:Clipboard_Share,scopeId:\"Crozie1vg\"});const WaitlistFonts=getFonts(Waitlist);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const JournalArticleCardFonts=getFonts(JournalArticleCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const FooterFooterFonts=getFonts(FooterFooter);const UserComponentFonts=getFonts(UserComponent);const FooterEnaLogoFonts=getFonts(FooterEnaLogo);const breakpoints={a7aws4TNw:\"(min-width: 810px) and (max-width: 1199px)\",bF6sEsudC:\"(max-width: 809px)\",WCSb7mcIH:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ojqp4\";const variantClassNames={a7aws4TNw:\"framer-v-x1bd6o\",bF6sEsudC:\"framer-v-wukj2v\",WCSb7mcIH:\"framer-v-1bba1vq\"};const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:.6,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};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:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={delay:1.5,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition4={delay:.7,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition5={delay:1.6,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition6={delay:.8,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition7={delay:1.7,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition8={delay:.9,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:45};const transition9={delay:1.8,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition10={delay:1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition11={delay:1.9,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition12={delay:1.1,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition13={delay:2,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const transition14={delay:1.2,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition15={delay:.04,duration:1,ease:[.25,1,.5,1],type:\"tween\"};const textEffect={effect:animation7,repeat:false,startDelay:1.8,tokenization:\"line\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation7,repeat:false,startDelay:.8,tokenization:\"line\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation7,repeat:false,startDelay:.4,tokenization:\"line\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect3={effect:animation7,repeat:false,startDelay:2,tokenization:\"element\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect4={effect:animation7,repeat:false,startDelay:1,tokenization:\"element\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect5={effect:animation7,repeat:false,startDelay:.5,tokenization:\"element\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect6={effect:animation7,repeat:false,startDelay:.6,tokenization:\"element\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const textEffect7={effect:animation7,repeat:false,startDelay:.7,tokenization:\"element\",transition:transition15,trigger:\"onMount\",type:\"appear\"};const transition16={bounce:.2,delay:1,duration:1.1,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition17={delay:.04,duration:.8,ease:[.25,1,.5,1],type:\"tween\"};const textEffect8={effect:animation7,repeat:false,startDelay:1,tokenization:\"character\",transition:transition17,trigger:\"onMount\",type:\"appear\"};const transition18={delay:1.1,duration:1,ease:[.23,.98,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition18,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"Y_cr9Gw2G\":return\"nnPFGU7O6\";case\"dX8OafK7B\":return\"VE3saY9b3\";case\"kAOLQKMLO\":return\"CDHNwSyIo\";default:return\"VE3saY9b3\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition19={delay:1.15,duration:1,ease:[.23,.98,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition19,x:0,y:0};const transition20={delay:1.2,duration:1,ease:[.23,.98,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition20,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WCSb7mcIH\",Phone:\"bF6sEsudC\",Tablet:\"a7aws4TNw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WCSb7mcIH\"};};const transition21={damping:38,delay:0,mass:1,stiffness:100,type:\"spring\"};const cursor={alignment:\"start\",component:UserComponent,offset:{x:-100,y:-60},placement:\"bottom\",transition:transition21,variant:\"VWbAwxV2d\"};const cursor1={alignment:\"start\",component:FooterEnaLogo,offset:{x:15,y:-15},placement:\"top\",variant:\"stxP7bzad\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Crozie1vg\",data:Journal,type:\"Collection\"},select:[{collection:\"Crozie1vg\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"NkKthTo0A\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"K5FRXB2Lz\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"cFaFnQZN7\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"Asf5nIbu1\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"syU_O72ao\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"eEQHUS6O1\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"BKrMY2wTn\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"dGxHNMwWs\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"QmMvLtD_b\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"TmovvXKQG\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"djiynvEca\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"o0I3_f7VS\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"daAfLteTw\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"xwEbHZKmG\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"jL0_D6Apf\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"YGFLOF8Ot\",type:\"Identifier\"},{collection:\"Crozie1vg\",name:\"MAaWIybUB\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Crozie1vg\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Asf5nIbu1=getFromCurrentRouteData(\"Asf5nIbu1\"),cFaFnQZN7=getFromCurrentRouteData(\"cFaFnQZN7\")??\"\",K5FRXB2Lz=getFromCurrentRouteData(\"K5FRXB2Lz\")??\"\",NkKthTo0A=getFromCurrentRouteData(\"NkKthTo0A\")??\"\",lgfzwQHya=getFromCurrentRouteData(\"lgfzwQHya\")??\"\",syU_O72ao=getFromCurrentRouteData(\"syU_O72ao\")??\"\",eEQHUS6O1=getFromCurrentRouteData(\"eEQHUS6O1\")??\"\",BKrMY2wTn=getFromCurrentRouteData(\"BKrMY2wTn\")??\"\",dGxHNMwWs=getFromCurrentRouteData(\"dGxHNMwWs\"),QmMvLtD_b=getFromCurrentRouteData(\"QmMvLtD_b\")??\"\",TmovvXKQG=getFromCurrentRouteData(\"TmovvXKQG\")??\"\",djiynvEca=getFromCurrentRouteData(\"djiynvEca\"),o0I3_f7VS=getFromCurrentRouteData(\"o0I3_f7VS\")??\"\",daAfLteTw=getFromCurrentRouteData(\"daAfLteTw\")??\"\",W37L3rfU1DNE1j3XsB,XX0B0E_ZoDNE1j3XsB,eZGlxy1OSDNE1j3XsB,lgfzwQHyaDNE1j3XsB,kDVEREqNFDNE1j3XsB,idDNE1j3XsB,xwEbHZKmG=getFromCurrentRouteData(\"xwEbHZKmG\")??0,W37L3rfU1wp7Zkj1TP,XX0B0E_Zowp7Zkj1TP,eZGlxy1OSwp7Zkj1TP,lgfzwQHyawp7Zkj1TP,kDVEREqNFwp7Zkj1TP,idwp7Zkj1TP,jL0_D6Apf=getFromCurrentRouteData(\"jL0_D6Apf\")??0,W37L3rfU1G7GnNqU0E,XX0B0E_ZoG7GnNqU0E,eZGlxy1OSG7GnNqU0E,lgfzwQHyaG7GnNqU0E,kDVEREqNFG7GnNqU0E,idG7GnNqU0E,YGFLOF8Ot=getFromCurrentRouteData(\"YGFLOF8Ot\")??0,W37L3rfU1K8Ix_7Sj4,XX0B0E_ZoK8Ix_7Sj4,eZGlxy1OSK8Ix_7Sj4,lgfzwQHyaK8Ix_7Sj4,kDVEREqNFK8Ix_7Sj4,idK8Ix_7Sj4,MAaWIybUB=getFromCurrentRouteData(\"MAaWIybUB\")??0,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"a7aws4TNw\",\"bF6sEsudC\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"a7aws4TNw\",\"bF6sEsudC\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"RxlJQUJWK\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"bF6sEsudC\")return false;return true;};const elementId1=useRouteElementId(\"g18zAkJ2q\");const ref2=React.useRef(null);const visible=isSet(K5FRXB2Lz);const visible1=isSet(syU_O72ao);const visible2=isSet(eEQHUS6O1);const visible3=isSet(BKrMY2wTn);const visible4=isSet(TmovvXKQG);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"a7aws4TNw\")return false;return true;};useCustomCursors({\"16158ew\":cursor1,\"1lrhs7k\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WCSb7mcIH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bba1vq\",className),\"data-framer-cursor\":\"1lrhs7k\",ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-daor1x-container hidden-x1bd6o hidden-wukj2v\",layoutScroll:true,nodeId:\"qn1Na9jW7\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"qn1Na9jW7\",layoutId:\"qn1Na9jW7\",style:{width:\"100%\"},variant:\"RHuwicozo\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{height:48,width:componentViewport?.width||\"100vw\",y:0},bF6sEsudC:{height:48,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-t31xkw-container hidden-1bba1vq\",\"data-framer-name\":\"Navigation Mobile\",id:\"t31xkw\",layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"fxAYBln0q\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bF6sEsudC:{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:overlay.visible?\"PPFOyo3m8\":undefined}},children:/*#__PURE__*/_jsx(NavigationNavigationMobileWithVariantAppearEffect,{EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"fxAYBln0q\",layoutId:\"fxAYBln0q\",name:\"Navigation Mobile\",style:{width:\"100%\"},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:cx(scopingClassNames,\"framer-l6tn33\"),\"data-framer-portal-id\":\"t31xkw\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"GljNwv7fV\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-m5rkdd-container\"),\"data-framer-portal-id\":\"t31xkw\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"LqjwHhB4P\",rendersWithMotion:true,scopeId:\"Crozie1vg\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileOpenNavigation,{height:\"100%\",id:\"LqjwHhB4P\",layoutId:\"LqjwHhB4P\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9rmrh\",\"data-framer-name\":\"Buy Template\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qf7w6o\",\"data-framer-name\":\"Button Wrapper\"})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-jliay8\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-hbommz\",\"data-framer-name\":\"Section Hero Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dy86r9\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{animate:animation3,initial:animation4,optimized:true},bF6sEsudC:{animate:animation3,initial:animation4,optimized:true}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Asf5nIbu1)},className:\"framer-1dyae9u\",\"data-framer-appear-id\":\"1dyae9u\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1p14c6a\",\"data-framer-name\":\"Section Article\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wird1m\",\"data-framer-name\":\"Part 1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhcbi1\",\"data-framer-name\":\"Container\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqo7d hidden-wukj2v\",\"data-framer-name\":\"Left Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0yccs\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14o6e3d\",\"data-framer-name\":\"Words\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px) * 0.7)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max((${componentViewport?.width||\"100vw\"} - 40px) * 0.5833, 1px) / 2, 360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-of1vkg-container\",nodeId:\"g5bQ6VkMb\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animateOnce:false,__framer__obscuredVariantId:\"rbYAIUfKv\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"m7s6ZN4H8\",variant:\"rbYAIUfKv\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{height:\"100%\",id:\"g5bQ6VkMb\",layoutId:\"g5bQ6VkMb\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"ePkNVgBBQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhkvm5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition4}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14dz8dj\",\"data-styles-preset\":\"HdaivlN8o\",children:\"Words\"})}),className:\"framer-3532p5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition6}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__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(\"p\",{className:\"framer-styles-preset-1nng2l4\",\"data-styles-preset\":\"J4z2Gav4e\",children:\"Asan Ahmed\"})}),className:\"framer-no3gsu\",fonts:[\"Inter\"],text:cFaFnQZN7,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wq7pln\",\"data-framer-name\":\"Photos\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px) * 0.7)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max((${componentViewport?.width||\"100vw\"} - 40px) * 0.5833, 1px) / 2, 360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-czktz6-container\",nodeId:\"rghLN7Szc\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animateOnce:false,__framer__obscuredVariantId:\"kDeSMeIS3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"XO1sy5Tjg\",variant:\"kDeSMeIS3\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{height:\"100%\",id:\"rghLN7Szc\",layoutId:\"rghLN7Szc\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"m5UnXZ1Y8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-746pci\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11d4vzp\",\"data-framer-name\":\"Text Wrapper\",children:visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition8}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14dz8dj\",\"data-styles-preset\":\"HdaivlN8o\",children:\"Photos\"})}),className:\"framer-19hc183\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ku2d1s\",\"data-framer-name\":\"Text Wrapper\",children:visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition10}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation6,__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(\"p\",{className:\"framer-styles-preset-1nng2l4\",\"data-styles-preset\":\"J4z2Gav4e\",children:\"Courtesy of BlueGreen\"})}),className:\"framer-7wuqvr\",fonts:[\"Inter\"],text:K5FRXB2Lz,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wty6so\",\"data-framer-name\":\"Date\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px) * 0.7)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max((${componentViewport?.width||\"100vw\"} - 40px) * 0.5833, 1px) / 2, 360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jo5fbh-container\",nodeId:\"Hzr5HvatY\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animateOnce:false,__framer__obscuredVariantId:\"Mg_kfxvs2\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Xh9UUb7CD\",variant:\"Mg_kfxvs2\"}},children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{height:\"100%\",id:\"Hzr5HvatY\",layoutId:\"Hzr5HvatY\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"Yb0WEu_6C\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kp69ep\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition12}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14dz8dj\",\"data-styles-preset\":\"HdaivlN8o\",children:\"Date\"})}),className:\"framer-1ubg7is\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{__framer__animate:{transition:transition14}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation5,__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(\"p\",{className:\"framer-styles-preset-8ztuw2\",\"data-styles-preset\":\"xSWhRhyfF\",children:\"February, 2025\"})}),className:\"framer-8ixx5\",fonts:[\"Inter\"],text:NkKthTo0A,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vo629c\",\"data-framer-name\":\"Right Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7smow4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect1},bF6sEsudC:{effect:textEffect2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1d4z5wo\",\"data-styles-preset\":\"ws35hVPiM\",children:\"Studio 34 got 2 awards\"})}),className:\"framer-9lv8xw\",effect:textEffect,fonts:[\"Inter\"],text:lgfzwQHya,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"ajNFtifzT\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect4},bF6sEsudC:{effect:textEffect5}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:syU_O72ao,className:\"framer-we65ve\",effect:textEffect3,fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-v4dzkq\",h4:\"framer-styles-preset-1ash6x0\",h5:\"framer-styles-preset-rz4tyg\",h6:\"framer-styles-preset-xar8ub\",img:\"framer-styles-preset-dp5ei3\",p:\"framer-styles-preset-1kzug0s\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3jrae\",\"data-framer-name\":\"Spacer\"}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect4},bF6sEsudC:{effect:textEffect6}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-38dg8b\",\"data-styles-preset\":\"xLShI_ive\",children:\"\u201CI feel more in control of the narrative these days\u201D\"})}),className:\"framer-1u4q1vn\",effect:textEffect3,fonts:[\"Inter\"],text:eEQHUS6O1,verticalAlignment:\"top\",withExternalLayout:true})}),visible3&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"ajNFtifzT\"]},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect4},bF6sEsudC:{effect:textEffect7}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BKrMY2wTn,className:\"framer-mwztep\",effect:textEffect3,fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-v4dzkq\",h4:\"framer-styles-preset-1ash6x0\",h5:\"framer-styles-preset-rz4tyg\",h6:\"framer-styles-preset-xar8ub\",img:\"framer-styles-preset-dp5ei3\",p:\"framer-styles-preset-1kzug0s\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(dGxHNMwWs)},className:\"framer-gfay8g\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ilbccr\",\"data-framer-name\":\"Part 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsuhjd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wojvva\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fs8l0v\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vitkmv\",\"data-framer-name\":\"Content Wrapper\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect4},bF6sEsudC:{effect:textEffect6}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-38dg8b\",\"data-styles-preset\":\"xLShI_ive\",children:\"\u201CI feel more in control of the narrative these days\u201D\"})}),className:\"framer-wrdf34\",effect:textEffect3,fonts:[\"Inter\"],text:QmMvLtD_b,verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"ajNFtifzT\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:TmovvXKQG,className:\"framer-tv8vbe\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-v4dzkq\",h4:\"framer-styles-preset-1ash6x0\",h5:\"framer-styles-preset-rz4tyg\",h6:\"framer-styles-preset-xar8ub\",img:\"framer-styles-preset-dp5ei3\",p:\"framer-styles-preset-1kzug0s\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(djiynvEca)},className:\"framer-14vqs7m\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pxl90r\",\"data-framer-name\":\"Part 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2gd0cp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wq72ah\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mukkcm\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkqq9\",\"data-framer-name\":\"Content Wrapper\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{effect:textEffect4},bF6sEsudC:{effect:textEffect6}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-38dg8b\",\"data-styles-preset\":\"xLShI_ive\",children:\"\u201CI feel more in control of the narrative these days\u201D\"})}),className:\"framer-wmknb0\",effect:textEffect3,fonts:[\"Inter\"],text:o0I3_f7VS,verticalAlignment:\"top\",withExternalLayout:true})}),visible4&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"ajNFtifzT\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:daAfLteTw,className:\"framer-qdfq2c\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-v4dzkq\",h1:\"framer-styles-preset-1d4z5wo\",h2:\"framer-styles-preset-8ya3s5\",h3:\"framer-styles-preset-1nmb3f\",h4:\"framer-styles-preset-1ash6x0\",h5:\"framer-styles-preset-rz4tyg\",h6:\"framer-styles-preset-xar8ub\",img:\"framer-styles-preset-dp5ei3\",p:\"framer-styles-preset-1kzug0s\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udp3mt\",\"data-framer-name\":\"Share Article\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`min(max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px), 520px)`},bF6sEsudC:{width:`min(${componentViewport?.width||\"100vw\"} - 30px, 520px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`min(max((${componentViewport?.width||\"100vw\"} - 40px) / 2.4, 1px) * 0.9, 520px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qohcub-container\",nodeId:\"etOnh8jow\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"mAV7el3aO\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bKq9rIYfi\",height:\"100%\",id:\"etOnh8jow\",layoutId:\"etOnh8jow\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivClipboard_Sharemsnk,{className:\"framer-msnk\",\"data-framer-name\":\"Code Overwrite\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ixwpx8-container\",nodeId:\"ywaJB6KhV\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{variant:\"HhoeiU2aD\"},bF6sEsudC:{variant:\"HhoeiU2aD\"}},children:/*#__PURE__*/_jsx(JournalShareArticleLink,{GxIUxi0ht:\"Share Article\",height:\"100%\",id:\"ywaJB6KhV\",layoutId:\"ywaJB6KhV\",variant:\"aLNsysjxt\",width:\"100%\"})})})})})]})]})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1sp7hsy\",\"data-framer-appear-id\":\"1sp7hsy\",\"data-framer-name\":\"Newsletter\",initial:animation9,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t0djet\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-23h7a8\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ry48jy-container\",nodeId:\"yfAW6kxMG\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobal,{height:\"100%\",id:\"yfAW6kxMG\",layoutId:\"yfAW6kxMG\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y5ots1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m4iw6s\",children:/*#__PURE__*/_jsx(\"label\",{className:\"framer-cvp7et\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBUcmlhbCBCbGFjaw==\",\"--framer-font-family\":'\"FK Grotesk Neue Trial Black\", \"FK Grotesk Neue Trial Black Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Grow with our monthly letters on  creativity and growth.\"})}),className:\"framer-1hq9vs9\",effect:textEffect8,fonts:[\"CUSTOM;FK Grotesk Neue Trial Black\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-3pkp2t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-187leit\",\"data-styles-preset\":\"yOUFK9cmK\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Email\"})}),className:\"framer-1fxlbdb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ku3nyf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kJsTMoZ8k\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(Waitlist,{button:{buttonFont:{fontFamily:'\"FK Grotesk Neue Trial Medium\", \"FK Grotesk Neue Trial Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"-0.03em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(3, 28, 12)\",fill:\"rgb(234, 228, 226)\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{fontFamily:'\"FK Grotesk Neue Trial Regular\", \"FK Grotesk Neue Trial Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,getwaitlistAPI:\"25378\",height:\"100%\",id:\"kJsTMoZ8k\",input:{borderRadius:15,color:\"rgb(255, 255, 255)\",fill:\"rgb(31, 53, 38)\",fixedHeight:50,focusObject:{focusColor:\"rgb(0, 153, 255)\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(255, 255, 255, 0.5)\"},layout:\"vertical\",layoutId:\"kJsTMoZ8k\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1is1g55\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j58bt\",\"data-styles-preset\":\"Xitz9SmTf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We will never share your information. Ever.\"})}),className:\"framer-xedjyk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1gpapvx\",\"data-framer-name\":\"Section Next Articles\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p4hnyu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tpex6m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`},bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldbu3z-container\",nodeId:\"Li8wL5nG6\",rendersWithMotion:true,scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"mAV7el3aO\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bKq9rIYfi\",height:\"100%\",id:\"Li8wL5nG6\",layoutId:\"Li8wL5nG6\",sjMku05M0:\"rgba(0, 29, 11, 0.2)\",style:{height:\"100%\",width:\"100%\"},variant:\"bKq9rIYfi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hf1pgs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13e7pcd\",\"data-styles-preset\":\"DL1_DmJtY\",children:\"More to read\"})}),className:\"framer-30afyo\",\"data-framer-name\":\"Selected Clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufrm0q\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1v3i92b\",\"data-framer-appear-id\":\"1v3i92b\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DNE1j3XsB\",data:Journal,type:\"Collection\"},select:[{collection:\"DNE1j3XsB\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"DNE1j3XsB\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"DNE1j3XsB\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"DNE1j3XsB\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"DNE1j3XsB\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"DNE1j3XsB\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"DNE1j3XsB\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:xwEbHZKmG},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({eZGlxy1OS:eZGlxy1OSDNE1j3XsB,id:idDNE1j3XsB,kDVEREqNF:kDVEREqNFDNE1j3XsB,lgfzwQHya:lgfzwQHyaDNE1j3XsB,W37L3rfU1:W37L3rfU1DNE1j3XsB,XX0B0E_Zo:XX0B0E_ZoDNE1j3XsB},index)=>{W37L3rfU1DNE1j3XsB??=\"\";lgfzwQHyaDNE1j3XsB??=\"\";kDVEREqNFDNE1j3XsB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DNE1j3XsB-${idDNE1j3XsB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1DNE1j3XsB},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1DNE1j3XsB},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"fJRvZsCVG\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-keibw3 framer-9i75lw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 50px)`},bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xh10kl-container\",nodeId:\"nSUepwEgM\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaDNE1j3XsB,id:\"nSUepwEgM\",layoutId:\"nSUepwEgM\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoDNE1j3XsB,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSDNE1j3XsB),width:\"100%\",YE5ookC0X:kDVEREqNFDNE1j3XsB})})})})})})})},idDNE1j3XsB);})})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-n0grc\",\"data-framer-appear-id\":\"n0grc\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wp7Zkj1TP\",data:Journal,type:\"Collection\"},select:[{collection:\"wp7Zkj1TP\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"wp7Zkj1TP\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"wp7Zkj1TP\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"wp7Zkj1TP\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"wp7Zkj1TP\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"wp7Zkj1TP\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"wp7Zkj1TP\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:jL0_D6Apf},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({eZGlxy1OS:eZGlxy1OSwp7Zkj1TP,id:idwp7Zkj1TP,kDVEREqNF:kDVEREqNFwp7Zkj1TP,lgfzwQHya:lgfzwQHyawp7Zkj1TP,W37L3rfU1:W37L3rfU1wp7Zkj1TP,XX0B0E_Zo:XX0B0E_Zowp7Zkj1TP},index1)=>{W37L3rfU1wp7Zkj1TP??=\"\";lgfzwQHyawp7Zkj1TP??=\"\";kDVEREqNFwp7Zkj1TP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wp7Zkj1TP-${idwp7Zkj1TP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1wp7Zkj1TP},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1wp7Zkj1TP},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"o6MJZS8j8\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ggcc3p framer-9i75lw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{width:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 50px)`},bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lv3gaf-container\",nodeId:\"lqGa3HhtZ\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyawp7Zkj1TP,id:\"lqGa3HhtZ\",layoutId:\"lqGa3HhtZ\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_Zowp7Zkj1TP,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSwp7Zkj1TP),width:\"100%\",YE5ookC0X:kDVEREqNFwp7Zkj1TP})})})})})})})},idwp7Zkj1TP);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-n69vdu hidden-x1bd6o\",\"data-framer-appear-id\":\"n69vdu\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"G7GnNqU0E\",data:Journal,type:\"Collection\"},select:[{collection:\"G7GnNqU0E\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"G7GnNqU0E\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"G7GnNqU0E\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"G7GnNqU0E\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"G7GnNqU0E\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"G7GnNqU0E\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"G7GnNqU0E\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:YGFLOF8Ot},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({eZGlxy1OS:eZGlxy1OSG7GnNqU0E,id:idG7GnNqU0E,kDVEREqNF:kDVEREqNFG7GnNqU0E,lgfzwQHya:lgfzwQHyaG7GnNqU0E,W37L3rfU1:W37L3rfU1G7GnNqU0E,XX0B0E_Zo:XX0B0E_ZoG7GnNqU0E},index2)=>{W37L3rfU1G7GnNqU0E??=\"\";lgfzwQHyaG7GnNqU0E??=\"\";kDVEREqNFG7GnNqU0E??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`G7GnNqU0E-${idG7GnNqU0E}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1G7GnNqU0E},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1G7GnNqU0E},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"BFpjxfajg\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fopsce framer-9i75lw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ru0f6c-container\",nodeId:\"ffu7rWYgK\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaG7GnNqU0E,id:\"ffu7rWYgK\",layoutId:\"ffu7rWYgK\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoG7GnNqU0E,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSG7GnNqU0E),width:\"100%\",YE5ookC0X:kDVEREqNFG7GnNqU0E})})})})})})})},idG7GnNqU0E);})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-mkeygn hidden-x1bd6o\",\"data-framer-appear-id\":\"mkeygn\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"K8Ix_7Sj4\",data:Journal,type:\"Collection\"},select:[{collection:\"K8Ix_7Sj4\",name:\"W37L3rfU1\",type:\"Identifier\"},{collection:\"K8Ix_7Sj4\",name:\"XX0B0E_Zo\",type:\"Identifier\"},{collection:\"K8Ix_7Sj4\",name:\"eZGlxy1OS\",type:\"Identifier\"},{collection:\"K8Ix_7Sj4\",name:\"lgfzwQHya\",type:\"Identifier\"},{collection:\"K8Ix_7Sj4\",name:\"kDVEREqNF\",type:\"Identifier\"},{collection:\"K8Ix_7Sj4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"K8Ix_7Sj4\",name:\"hOkf4gUco\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:MAaWIybUB},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({eZGlxy1OS:eZGlxy1OSK8Ix_7Sj4,id:idK8Ix_7Sj4,kDVEREqNF:kDVEREqNFK8Ix_7Sj4,lgfzwQHya:lgfzwQHyaK8Ix_7Sj4,W37L3rfU1:W37L3rfU1K8Ix_7Sj4,XX0B0E_Zo:XX0B0E_ZoK8Ix_7Sj4},index3)=>{W37L3rfU1K8Ix_7Sj4??=\"\";lgfzwQHyaK8Ix_7Sj4??=\"\";kDVEREqNFK8Ix_7Sj4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`K8Ix_7Sj4-${idK8Ix_7Sj4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W37L3rfU1:W37L3rfU1K8Ix_7Sj4},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W37L3rfU1:W37L3rfU1K8Ix_7Sj4},webPageId:\"Crozie1vg\"},motionChild:true,nodeId:\"UtL9C0wRS\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-k24dvy framer-9i75lw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bF6sEsudC:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max((${componentViewport?.width||\"100vw\"} - 100px) / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tywihe-container\",nodeId:\"HcxeferEf\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(JournalArticleCard,{height:\"100%\",hVGS4vAc8:lgfzwQHyaK8Ix_7Sj4,id:\"HcxeferEf\",layoutId:\"HcxeferEf\",style:{width:\"100%\"},variant:convertFromEnum(XX0B0E_ZoK8Ix_7Sj4,activeLocale),vXS0OQu48:toResponsiveImage(eZGlxy1OSK8Ix_7Sj4),width:\"100%\",YE5ookC0X:kDVEREqNFK8Ix_7Sj4})})})})})})})},idK8Ix_7Sj4);})})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:537,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wuxxje-container\",nodeId:\"WXIJwysEq\",scopeId:\"Crozie1vg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7aws4TNw:{variant:\"ld8eol0x7\"},bF6sEsudC:{variant:\"LKuPWSgM0\"}},children:/*#__PURE__*/_jsx(FooterFooter,{g8ExVt6Ui:\"16158ew\",height:\"100%\",id:\"WXIJwysEq\",layoutId:\"WXIJwysEq\",style:{width:\"100%\"},variant:\"XcHzD8GMj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ojqp4.framer-9i75lw, .framer-ojqp4 .framer-9i75lw { display: block; }\",\".framer-ojqp4.framer-1bba1vq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ojqp4 .framer-daor1x-container { flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-ojqp4 .framer-t31xkw-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-ojqp4.framer-l6tn33 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-ojqp4.framer-m5rkdd-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-ojqp4 .framer-1p9rmrh { 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-ojqp4 .framer-1qf7w6o { 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; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\",\".framer-ojqp4 .framer-jliay8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-hbommz, .framer-ojqp4 .framer-14o6e3d, .framer-ojqp4 .framer-1wq7pln, .framer-ojqp4 .framer-1wty6so { 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-ojqp4 .framer-dy86r9 { background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 70%); flex: none; gap: 5px; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.3; overflow: visible; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-ojqp4 .framer-1dyae9u { flex: none; gap: 10px; height: 650px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-1p14c6a { 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-ojqp4 .framer-1wird1m { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 50px 20px; position: relative; width: 100%; z-index: 9; }\",\".framer-ojqp4 .framer-hhcbi1, .framer-ojqp4 .framer-1hsuhjd, .framer-ojqp4 .framer-2gd0cp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-1tqo7d { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.7 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ojqp4 .framer-d0yccs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 360px; overflow: hidden; padding: 0px; position: sticky; top: 80px; width: 50%; z-index: 1; }\",\".framer-ojqp4 .framer-of1vkg-container, .framer-ojqp4 .framer-czktz6-container, .framer-ojqp4 .framer-1jo5fbh-container, .framer-ojqp4 .framer-qohcub-container, .framer-ojqp4 .framer-ry48jy-container, .framer-ojqp4 .framer-ldbu3z-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-xhkvm5, .framer-ojqp4 .framer-kp69ep { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-3532p5, .framer-ojqp4 .framer-19hc183, .framer-ojqp4 .framer-1ubg7is { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-no3gsu, .framer-ojqp4 .framer-7wuqvr, .framer-ojqp4 .framer-8ixx5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-746pci { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-11d4vzp { 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-ojqp4 .framer-ku2d1s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 43px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ojqp4 .framer-vo629c, .framer-ojqp4 .framer-1fs8l0v, .framer-ojqp4 .framer-mukkcm { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ojqp4 .framer-7smow4, .framer-ojqp4 .framer-vitkmv, .framer-ojqp4 .framer-lkqq9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 520px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-ojqp4 .framer-9lv8xw, .framer-ojqp4 .framer-we65ve, .framer-ojqp4 .framer-mwztep, .framer-ojqp4 .framer-tv8vbe, .framer-ojqp4 .framer-qdfq2c { --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-ojqp4 .framer-1w3jrae { flex: none; gap: 10px; height: 73px; overflow: visible; position: relative; width: 70%; }\",\".framer-ojqp4 .framer-1u4q1vn, .framer-ojqp4 .framer-wrdf34, .framer-ojqp4 .framer-wmknb0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-gfay8g, .framer-ojqp4 .framer-14vqs7m { aspect-ratio: 2.3076923076923075 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); overflow: hidden; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-1ilbccr { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 52px 20px; position: relative; width: 100%; z-index: 9; }\",\".framer-ojqp4 .framer-wojvva, .framer-ojqp4 .framer-wq72ah { align-self: stretch; flex: 0.7 0 0px; gap: 10px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-ojqp4 .framer-pxl90r { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 54px 20px; position: relative; width: 100%; z-index: 9; }\",\".framer-ojqp4 .framer-1udp3mt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-msnk { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ojqp4 .framer-ixwpx8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ojqp4 .framer-1sp7hsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 150px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ojqp4 .framer-t0djet, .framer-ojqp4 .framer-p4hnyu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-23h7a8, .framer-ojqp4 .framer-1tpex6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-y5ots1 { align-content: center; align-items: center; background-color: #001d0b; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 293px; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 682px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ojqp4 .framer-m4iw6s { 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: 630px; }\",\".framer-ojqp4 .framer-cvp7et { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-ojqp4 .framer-1hq9vs9 { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 79%; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-3pkp2t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 630px; }\",\".framer-ojqp4 .framer-1fxlbdb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ojqp4 .framer-1ku3nyf-container, .framer-ojqp4 .framer-wuxxje-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-1is1g55 { 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; padding: 0px; position: relative; width: 630px; }\",\".framer-ojqp4 .framer-xedjyk { flex: none; height: auto; max-width: 329px; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-1gpapvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 150px 20px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-hf1pgs { 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-ojqp4 .framer-30afyo { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ojqp4 .framer-ufrm0q { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ojqp4 .framer-1v3i92b, .framer-ojqp4 .framer-n0grc, .framer-ojqp4 .framer-n69vdu, .framer-ojqp4 .framer-mkeygn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ojqp4 .framer-keibw3, .framer-ojqp4 .framer-ggcc3p, .framer-ojqp4 .framer-fopsce, .framer-ojqp4 .framer-k24dvy { 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; text-decoration: none; width: 100%; }\",\".framer-ojqp4 .framer-1xh10kl-container, .framer-ojqp4 .framer-lv3gaf-container, .framer-ojqp4 .framer-1ru0f6c-container, .framer-ojqp4 .framer-1tywihe-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ojqp4.framer-1bba1vq { width: 810px; } .framer-ojqp4 .framer-t31xkw-container { mix-blend-mode: difference; } .framer-ojqp4 .framer-1dyae9u { will-change: var(--framer-will-change-effect-override, transform); } .framer-ojqp4 .framer-1wird1m { padding: 50px 15px 50px 15px; } .framer-ojqp4 .framer-1tqo7d, .framer-ojqp4 .framer-wojvva { flex: 0.5 0 0px; } .framer-ojqp4 .framer-d0yccs { max-width: unset; width: 70%; } .framer-ojqp4 .framer-ku2d1s { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-ojqp4 .framer-7wuqvr { flex: none; width: 100%; } .framer-ojqp4 .framer-7smow4, .framer-ojqp4 .framer-vitkmv, .framer-ojqp4 .framer-lkqq9 { width: 100%; } .framer-ojqp4 .framer-1w3jrae { width: 50%; } .framer-ojqp4 .framer-1ilbccr { padding: 50px 15px 52px 15px; } .framer-ojqp4 .framer-pxl90r { padding: 50px 15px 54px 15px; } .framer-ojqp4 .framer-wq72ah { flex: 0.5 0 0px; order: 0; } .framer-ojqp4 .framer-mukkcm { order: 1; } .framer-ojqp4 .framer-1sp7hsy { padding: 0px 15px 150px 15px; will-change: unset; } .framer-ojqp4 .framer-1gpapvx { padding: 0px 15px 150px 15px; } .framer-ojqp4 .framer-ufrm0q { align-content: unset; align-items: unset; display: grid; gap: 15px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; } .framer-ojqp4 .framer-1v3i92b, .framer-ojqp4 .framer-n0grc { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; }}\",\"@media (max-width: 809px) { .framer-ojqp4.framer-1bba1vq { width: 390px; } .framer-ojqp4 .framer-t31xkw-container { mix-blend-mode: difference; } .framer-ojqp4.framer-l6tn33 { background-color: unset; } .framer-ojqp4 .framer-1p9rmrh { flex-direction: column; } .framer-ojqp4 .framer-1qf7w6o { bottom: 62px; } .framer-ojqp4 .framer-hbommz { order: 0; } .framer-ojqp4 .framer-1dyae9u { aspect-ratio: 0.7959183673469388 / 1; height: var(--framer-aspect-ratio-supported, 251px); will-change: var(--framer-will-change-effect-override, transform); } .framer-ojqp4 .framer-1p14c6a { order: 1; } .framer-ojqp4 .framer-1wird1m { padding: 38px 15px 50px 15px; z-index: 7; } .framer-ojqp4 .framer-hhcbi1, .framer-ojqp4 .framer-1hsuhjd, .framer-ojqp4 .framer-2gd0cp { flex-direction: column; gap: 80px; } .framer-ojqp4 .framer-vo629c, .framer-ojqp4 .framer-1fs8l0v, .framer-ojqp4 .framer-mukkcm { flex: none; order: 0; width: 100%; } .framer-ojqp4 .framer-7smow4 { gap: 37px; width: 100%; } .framer-ojqp4 .framer-1w3jrae { height: auto; } .framer-ojqp4 .framer-gfay8g, .framer-ojqp4 .framer-14vqs7m { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 133px); } .framer-ojqp4 .framer-1ilbccr { gap: 0px; padding: 50px 15px 40px 15px; z-index: 7; } .framer-ojqp4 .framer-wojvva, .framer-ojqp4 .framer-wq72ah { align-self: unset; flex: none; order: 1; width: 70%; } .framer-ojqp4 .framer-vitkmv, .framer-ojqp4 .framer-lkqq9 { width: 100%; } .framer-ojqp4 .framer-pxl90r { gap: 0px; padding: 50px 15px 14px 15px; z-index: 7; } .framer-ojqp4 .framer-1sp7hsy { order: 2; padding: 0px 15px 94px 15px; } .framer-ojqp4 .framer-1gpapvx { order: 3; padding: 0px 15px 150px 15px; } .framer-ojqp4 .framer-ufrm0q { flex-direction: column; gap: 40px; } .framer-ojqp4 .framer-1v3i92b, .framer-ojqp4 .framer-n0grc, .framer-ojqp4 .framer-n69vdu, .framer-ojqp4 .framer-mkeygn { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6513\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a7aws4TNw\":{\"layout\":[\"fixed\",\"auto\"]},\"bF6sEsudC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"RxlJQUJWK\":{\"pattern\":\":RxlJQUJWK\",\"name\":\"article\"},\"g18zAkJ2q\":{\"pattern\":\":g18zAkJ2q\",\"name\":\"info\"}}\n * @framerResponsiveScreen\n */const FramerCrozie1vg=withCSS(Component,css,\"framer-ojqp4\");export default FramerCrozie1vg;FramerCrozie1vg.displayName=\"Journal\";FramerCrozie1vg.defaultProps={height:6513,width:1200};addFonts(FramerCrozie1vg,[{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:\"FK Grotesk Neue Trial Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/8p7eo8m2kpqmH5gVPyQDsJo2c.woff2\"},{family:\"FK Grotesk Neue Trial Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/EVGEdPFsLjxfRiOisp9jBCPl8So.woff2\"},{family:\"FK Grotesk Neue Trial Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/M3wZ2HWgLqfemLiUu5MDP4Upw.woff2\"}]},...NavigationNavigationFonts,...NavigationNavigationMobileFonts,...NavigationMobileOpenNavigationFonts,...GlobalLineAnimationGlobalFonts,...JournalShareArticleLinkFonts,...WaitlistFonts,...JournalArticleCardFonts,...FooterFooterFonts,...UserComponentFonts,...FooterEnaLogoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...componentPresets.fonts?.[\"ajNFtifzT\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"ajNFtifzT\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCrozie1vg\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"RxlJQUJWK\\\":{\\\"pattern\\\":\\\":RxlJQUJWK\\\",\\\"name\\\":\\\"article\\\"},\\\"g18zAkJ2q\\\":{\\\"pattern\\\":\\\":g18zAkJ2q\\\",\\\"name\\\":\\\"info\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6513\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a7aws4TNw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bF6sEsudC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "Waitlist", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "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", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GxIUxi0ht", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1t01b9n", "args", "onMouseLeave3xq0te", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "FramerMYqZ5whcr", "withCSS", "MYqZ5whcr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramertqmzmzVWq", "withCSS", "tqmzmzVWq_default", "addFonts", "Clipboard_Share", "Component", "props", "p", "textField", "window", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationNavigationFonts", "getFonts", "ZhbW5Y_b_default", "NavigationNavigationMobileFonts", "Se7Sa8kPD_default", "NavigationNavigationMobileWithVariantAppearEffect", "withVariantAppearEffect", "NavigationMobileOpenNavigationFonts", "BGiZQuPOO_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "GlobalLineAnimationGlobalFonts", "QaFoemE2c_default", "GlobalLineAnimationGlobalWithVariantAppearEffect", "RichTextWithFX", "withFX", "RichText", "JournalShareArticleLinkFonts", "MYqZ5whcr_default", "MotionDivClipboard_Sharemsnk", "withCodeBoundaryForOverrides", "motion", "Clipboard_Share", "WaitlistFonts", "Waitlist", "MotionSectionWithOptimizedAppearEffect", "JournalArticleCardFonts", "vDFiPcfnz_default", "MotionDivWithOptimizedAppearEffect", "FooterFooterFonts", "J0LNWxmCZ_default", "UserComponentFonts", "tqmzmzVWq_default", "FooterEnaLogoFonts", "c9_KSBFxw_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "toResponsiveImage", "value", "transition2", "animation3", "animation4", "animation5", "transition3", "transition4", "transition5", "transition6", "isSet", "transition7", "transition8", "animation6", "transition9", "transition10", "transition11", "transition12", "transition13", "transition14", "animation7", "transition15", "textEffect", "textEffect1", "textEffect2", "textEffect3", "textEffect4", "textEffect5", "textEffect6", "textEffect7", "transition16", "animation8", "animation9", "transition17", "textEffect8", "transition18", "animation10", "animation11", "convertFromEnum", "activeLocale", "QueryData", "query", "pageSize", "data", "useQueryData", "transition19", "animation12", "transition20", "animation13", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition21", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "MpGbquskz_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Asf5nIbu1", "cFaFnQZN7", "K5FRXB2Lz", "NkKthTo0A", "lgfzwQHya", "syU_O72ao", "eEQHUS6O1", "BKrMY2wTn", "dGxHNMwWs", "QmMvLtD_b", "TmovvXKQG", "djiynvEca", "o0I3_f7VS", "daAfLteTw", "W37L3rfU1DNE1j3XsB", "XX0B0E_ZoDNE1j3XsB", "eZGlxy1OSDNE1j3XsB", "lgfzwQHyaDNE1j3XsB", "kDVEREqNFDNE1j3XsB", "idDNE1j3XsB", "xwEbHZKmG", "W37L3rfU1wp7Zkj1TP", "XX0B0E_Zowp7Zkj1TP", "eZGlxy1OSwp7Zkj1TP", "lgfzwQHyawp7Zkj1TP", "kDVEREqNFwp7Zkj1TP", "idwp7Zkj1TP", "jL0_D6Apf", "W37L3rfU1G7GnNqU0E", "XX0B0E_ZoG7GnNqU0E", "eZGlxy1OSG7GnNqU0E", "lgfzwQHyaG7GnNqU0E", "kDVEREqNFG7GnNqU0E", "idG7GnNqU0E", "YGFLOF8Ot", "W37L3rfU1K8Ix_7Sj4", "XX0B0E_ZoK8Ix_7Sj4", "eZGlxy1OSK8Ix_7Sj4", "lgfzwQHyaK8Ix_7Sj4", "kDVEREqNFK8Ix_7Sj4", "idK8Ix_7Sj4", "MAaWIybUB", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "isDisplayed2", "elementId1", "ref2", "visible1", "visible2", "visible3", "visible4", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "css", "FramerCrozie1vg", "withCSS", "Crozie1vg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
