{"version":3,"file":"cAfUuyCcU1B6RB7sUJKvJdDLc7CoNgt_Nkm57QEGxcQ.Chm4Jw9h.mjs","names":["props","useState","useRef","_Fragment","comment","name","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","css","Image","CaseStudies_DesktopCard","CommentsSection","FormPlainTextInput","Button2","Button2Info","props","useRef","GameCentral","metadata","metadataProvider","className","_Fragment","PropertyOverrides","componentPresets.props[\"O2Hjfa9JZ\"]","componentPresets.props[\"tcsp01ffJ\"]","idNsP_YdQIS","MjnPYBMxkNsP_YdQIS","qMyzVG4ZJNsP_YdQIS","componentPresets.fonts?.[\"O2Hjfa9JZ\"]","componentPresets.fonts?.[\"tcsp01ffJ\"]"],"sources":["https:/framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js","https:/framerusercontent.com/modules/3rfzbRVbAjd7lFaJKnUr/SWdnlvdTlSLJhQbcGU2W/l9o6Rn1gx.js","https:/framerusercontent.com/modules/od9plZ3sd2aqv87ezRBX/G8eoNylrIuXZQMOYTsVY/n5Nc4Gd3l.js","https:/framerusercontent.com/modules/NlBlG6LSnRjueT54kkyz/l5bJCNqvNNPi5QsENQG9/P3fpEhXgP.js","https:/framerusercontent.com/modules/8jhqLxwWLyVRWNtMUdOZ/WaFVHzaKCkE84Wahj4Ej/rgvnrb6bs.js","https:/framerusercontent.com/modules/d49E9KQGonjkxWiTSFqz/spIIbCacGrSvCcarwFU4/S7MrA68e8.js","https:/framerusercontent.com/modules/o35ljIDLR7zyTJdqVwS3/5DnDBHYNHM2biwCqedzH/xOxtmQ03S.js","https:/framerusercontent.com/modules/0b53Hqn3MCFxRmDeVJlb/3K9i3d4mJWvJBfe51Fjp/yu3g13rq2.js","https:/framerusercontent.com/modules/oEEn9W0kd25kA5CRFVbq/Uzp3Jwm9YfDaeGiWn8yj/ySo2Y7vQ0.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget,motion}from\"framer\";// const AVATAR_URL = \"https://source.boringavatars.com/\"\nconst AVATAR_URL=\"https://framer-university.boringavatars.dev/api/avatar\";const API=\"https://pxwnjmlzfycfhxaecgns.supabase.co/functions/v1/comment\";const LIMIT=2;// Do not change these sentences below without letting me know.\nconst BAD_WORDS=\"Comment contains inappropriate language\";const SPAM=\"Too many comments for today\";const BOT=\"Comment flagged as potential spam or bot activity\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight auto\n */export default function Comment(props){const{commentId,title,input,publishButton,commentProps,divider,gaps,emptyState}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[name,setName]=useState(\"\");const[comment,setComment]=useState(\"\");const[isLoading,setIsLoading]=useState(false);const[comments,setComments]=useState([]);const[hasError,setHasError]=useState(false);const[errorMessage,setErrorMessage]=useState(`You can't send more than ${LIMIT} comments per day under this comments section.`);const[isSmallScreen,setIsSmallScreen]=useState(false);const[currentPage,setCurrentPage]=useState(1);const[totalPages,setTotalPages]=useState(1);const[commentsLoaded,setCommentsLoaded]=useState(false);useEffect(()=>{const handleResize=()=>{setIsSmallScreen(typeof window!==\"undefined\"?window.innerWidth<810:false);};handleResize();window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[]);useEffect(()=>{const getData=async()=>{try{const{pathname,host}=window.location;const response=await fetch(`${API}?slug=${pathname}&comment_id=${commentId}&domain=${host}&page=${currentPage}`);if(!response.ok){throw`An error has occured: ${response.status}`;}const{data,pagination}=await response.json();setTotalPages(pagination.totalPages);setComments(prev=>[...prev,...data]);setCommentsLoaded(true);}catch(error){console.error(error);}};if(typeof window!==\"undefined\"&&totalPages>=currentPage){getData();}},[currentPage]);const onSubmit=async e=>{try{e.preventDefault();setHasError(false);setIsLoading(true);const{pathname,host}=window.location;const Botpoison=await import(\"@botpoison/browser\");const botpoison=new Botpoison.default({publicKey:\"pk_76fefdd6-9d97-42e8-af8d-ad0f44708404\"});const{solution}=await botpoison.challenge();const response=await fetch(`${API}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({slug:pathname,commentId,domain:host,name,comment,_botpoison:solution})});if(!response.ok){const{error}=await response.json();if(error===BAD_WORDS){setErrorMessage(BAD_WORDS+\".\");}else if(error===SPAM){setErrorMessage(`You can't send more than ${LIMIT} comments per day under this comments section.`);}else if(error===BOT){setErrorMessage(BOT+\".\");}else{setErrorMessage(\"An error has occured.\");throw`An error has occured: ${response.status}`;}setHasError(true);}else{const newComment=await response.json();setComments(prevComments=>[newComment[0],...prevComments]);}}catch(error){console.error(error);}finally{setIsLoading(false);setName(\"\");setComment(\"\");}};const handleCommentChange=event=>setComment(event.target.value);const handleNameChange=event=>setName(event.target.value);const styleRef=useRef(null);useEffect(()=>{const styleString=`#comment_component input::placeholder {\n      color: ${input.placeHolderColor} !important;\n    }`;const styleElement=document.createElement(\"style\");styleElement.innerHTML=styleString;document.head.appendChild(styleElement);styleRef.current=styleElement;return()=>{if(styleRef.current){document.head.removeChild(styleRef.current);}};},[props,input.placeHolderColor]);return /*#__PURE__*/_jsx(\"div\",{id:\"comment_component\",style:{display:\"flex\",flexDirection:\"column\",alignItems:\"start\",gap:\"20px\",...props.style},children:/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:`${gaps.commentSection}px`,width:\"100%\"},children:[title.show&&/*#__PURE__*/_jsx(Title,{color:title.color,font:title.font,text:title.text}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:onSubmit,style:{display:\"flex\",flexDirection:isSmallScreen?\"column\":\"row\",gap:\"8px\",alignItems:\"center\",width:\"100%\"},children:[/*#__PURE__*/_jsx(Input,{id:\"name\",value:name,onChange:handleNameChange,placeholder:input.placeHolderName,property:input,isSmallScreen:isSmallScreen}),/*#__PURE__*/_jsx(Input,{id:\"comment\",value:comment,onChange:handleCommentChange,placeholder:input.placeHolderComment,property:input,isSmallScreen:isSmallScreen}),/*#__PURE__*/_jsx(PublishButton,{isActive:name.length>0&&comment.length>0,property:publishButton,isSmallScreen:isSmallScreen,isCanvas:isCanvas})]}),/*#__PURE__*/_jsx(BreakingLine,{backgroundColor:divider}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"20px\",alignItems:\"center\",width:\"100%\"},children:[(hasError||isCanvas)&&/*#__PURE__*/_jsx(Error,{comment:commentProps,errorMessage:errorMessage}),(isLoading||isCanvas)&&/*#__PURE__*/_jsx(Loader,{commentProps:commentProps,gaps:gaps,input:input,loaderContent:{name,comment}}),commentsLoaded&&(comments.length===0||isCanvas)&&/*#__PURE__*/_jsx(NoComment,{comment:commentProps,emptyState:emptyState}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:`${gaps.commentItems}px`,alignItems:\"center\",width:\"100%\"},children:[isCanvas&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:\"This is a placeholder comment. It serves as a temporary ipso facto for representation purposes. It's designed to illustrate what the real content might look like once it's placed. Please remember that the actual content may differ from this placeholder. Thank you for understanding the functional purpose of this placeholder text.\",name:\"Nandi\",date:\"12 minutes ago\",gaps:gaps}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:\"This is a placeholder comment. It serves as a temporary ipso facto for representation purposes. It's designed to illustrate what the real content might look like once it's placed. Please remember that the actual content may differ from this placeholder. Thank you for understanding the functional purpose of this placeholder text.\",name:\"Cl\\xe9ment\",date:\"22 minutes ago\",gaps:gaps})]}),comments&&comments.map(({comment,name,created_at},index)=>{const date=timeSinceMessageSent(created_at);// Check if this is the position to insert the infiniteScrollRef\nconst isInfiniteScrollPosition=comments.length-index===10;return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\"},children:[isInfiniteScrollPosition&&/*#__PURE__*/_jsx(motion.div,{onViewportEnter:()=>setCurrentPage(prev=>prev+1)}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:comment,name:name,date:date,gaps:gaps},index+created_at)]});})]})]})]})});}const Input=({id,value,onChange,placeholder,property,isSmallScreen})=>{const maxWidth=id===\"name\"&&!isSmallScreen?\"200px\":\"100%\";const borderRadius=property.radiusIsMixed?`${property.radiusTopLeft}px ${property.radiusTopRight}px ${property.radiusBottomRight}px ${property.radiusBottomLeft}px`:`${property.radius}px`;const padding=property.paddingIsMixed?`${property.paddingTopLeft}px ${property.paddingTopRight}px ${property.paddingBottomRight}px ${property.paddingBottomLeft}px`:`${property.padding}px`;const boxShadow=`${property.shadow.x}px ${property.shadow.y}px ${property.shadow.blur}px ${property.shadow.color}`;const handlePaste=e=>e.preventDefault();return /*#__PURE__*/_jsx(\"label\",{htmlFor:id,style:{cursor:\"text\",userSelect:\"none\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"6px\",width:\"100%\",maxWidth,backgroundColor:property.fill,border:`${property.border.width}px solid ${property.border.color}`,borderRadius,padding,boxShadow,height:property.height===\"auto\"?property.height:`${property.heightNumber}px`},children:/*#__PURE__*/_jsx(\"input\",{id:id,name:id,type:\"text\",placeholder:placeholder,style:{fontSize:\"16px\",fontFamily:\"Inter\",color:property.textColor,backgroundColor:property.fill,outline:\"none\",width:\"100%\",borderWidth:\"0px\",padding:0,...property.font},value:value,onChange:onChange,required:true,onPaste:handlePaste})});};const Title=({color,font,text})=>{return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"21px\",fontFamily:\"Inter\",color,...font,margin:0},children:text})});};const Content=({commentProps,comment,name,date,gaps})=>{const colors=commentProps.image.colors.map(color=>rgbToHex(extractRGBColorFromString(color))).join(\",\");// const image = `${AVATAR_URL}/${\n//     commentProps.image.type\n// }?square&name=${encodeURIComponent(name)}&colors=${colors}`\nconst image=`${AVATAR_URL}?variant=${commentProps.image.type}&square&name=${encodeURIComponent(name)}&colors=${colors}`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"8px\",width:\"100%\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:`${gaps.profilePictureAndName}px`,width:\"100%\"},children:[/*#__PURE__*/_jsx(\"img\",{src:image,alt:\"\",style:{width:`${commentProps.image.size}px`,height:`${commentProps.image.size}px`,borderRadius:`${commentProps.image.radius}px`,objectFit:\"cover\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:`${gaps.nameAndTime}px`,alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:commentProps.name.textColor,...commentProps.name.font,margin:0},children:name}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"12px\",fontFamily:\"Inter\",color:commentProps.date.textColor,...commentProps.date.font,margin:0},children:date})]})]}),/*#__PURE__*/_jsx(\"div\",{style:{paddingLeft:`${gaps.profilePictureAndName+commentProps.image.size}px`,display:\"flex\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",lineHeight:\"1.6em\",color:commentProps.body.textColor,...commentProps.body.font,margin:0},children:comment})})]});};const NoComment=({comment,emptyState})=>{return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:\"8px\",padding:\"44px 0\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:comment.body.textColor,textAlign:\"center\",...comment.body.font,margin:0},children:emptyState})});};const Error=({comment,errorMessage})=>{return /*#__PURE__*/_jsx(\"div\",{style:{backgroundColor:\"#e63030\",display:\"flex\",justifyContent:\"center\",position:\"relative\",width:\"100%\",padding:\"7px 12px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:comment.body.textColor,textAlign:\"center\",...comment.body.font},children:errorMessage})});};const BreakingLine=({backgroundColor})=>{return /*#__PURE__*/_jsx(\"div\",{style:{backgroundColor,height:\"1px\",width:\"100%\"}});};const PublishButton=({isActive,property,isSmallScreen,isCanvas})=>{const borderRadius=property.radiusIsMixed?`${property.radiusTopLeft}px ${property.radiusTopRight}px ${property.radiusBottomRight}px ${property.radiusBottomLeft}px`:`${property.radius}px`;const padding=property.paddingIsMixed?`${property.paddingTopLeft}px ${property.paddingTopRight}px ${property.paddingBottomRight}px ${property.paddingBottomLeft}px`:`${property.padding}px`;const boxShadow=`${property.shadow.x}px ${property.shadow.y}px ${property.shadow.blur}px ${property.shadow.color}`;return /*#__PURE__*/_jsx(\"div\",{style:{width:isSmallScreen?\"100%\":\"auto\"},children:/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{width:isSmallScreen?\"100%\":\"auto\",userSelect:\"none\",backgroundColor:property.fill,border:`${property.border.width}px solid ${property.border.color}`,borderRadius,padding,boxShadow,height:property.height===\"auto\"?\"auto\":`${property.heightNumber}px`,opacity:isActive||isCanvas?1:.6,cursor:isActive?\"pointer\":\"not-allowed\",display:\"flex\",alignItems:\"center\",gap:\"10px\",justifyContent:\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{fontSize:\"14px\",fontFamily:\"Inter\",color:property.textColor,...property.font,margin:0},children:property.label})})});};const Loader=({commentProps,gaps,input,loaderContent})=>{const moveFromLeftToRight={animate:{x:[\"-550%\",\"550%\"],transition:{duration:.05,repeat:Infinity,repeatDelay:1,type:\"spring\",stiffness:300,damping:60,mass:1}}};const borderRadius=input.radiusIsMixed?`${input.radiusTopLeft}px ${input.radiusTopRight}px ${input.radiusBottomRight}px ${input.radiusBottomLeft}px`:`${input.radius}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",overflow:\"hidden\",borderRadius},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",width:\"100%\",height:\"100%\",backgroundColor:input.fill}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",width:\"30%\",height:\"300%\",backgroundColor:input.placeHolderColor,opacity:.05,filter:\"blur(15px)\",zIndex:1,rotate:30,top:\"-100%\"},animate:\"animate\",variants:moveFromLeftToRight}),/*#__PURE__*/_jsx(Content,{commentProps:commentProps,comment:loaderContent.comment,name:loaderContent.name,date:\"12 minutes ago\",gaps:gaps})]});};const timeSinceMessageSent=sentDate=>{const currentDate=new Date;const sentDateTime=new Date(sentDate);const timeDifference=currentDate.getTime()-sentDateTime.getTime();const seconds=Math.floor(timeDifference/1e3);const minutes=Math.floor(seconds/60);const hours=Math.floor(minutes/60);const days=Math.floor(hours/24);if(days>=1){const formattedDate=sentDateTime.toLocaleDateString(\"en-US\");return formattedDate;}else if(hours>=1){return hours===1?\"1 hour ago\":`${hours} hours ago`;}else if(minutes>=1){return minutes===1?\"1 minute ago\":`${minutes} minutes ago`;}else{return\"now\";}};const extractRGBColorFromString=str=>{const rgbRegex=/(rgba|rgb)\\(.*?\\)/g;const match=str.match(rgbRegex);return match?match[0]:\"#ffffff\";};const rgbToHex=rgb=>{const regex=/rgb\\((\\d+),\\s*(\\d+),\\s*(\\d+)\\)/;const match=rgb.match(regex);if(!match){console.error(\"Invalid RGB format\");}const r=parseInt(match[1]);const g=parseInt(match[2]);const b=parseInt(match[3]);const componentToHex=c=>{const hex=c.toString(16);return hex.length===1?\"0\"+hex:hex;};const hexR=componentToHex(r);const hexG=componentToHex(g);const hexB=componentToHex(b);return hexR+hexG+hexB;};const fontProperty={type:ControlType.Font,title:\"Font\",controls:\"extended\"};const colorProperty=(title=\"Color\",defaultValue=\"#fff\")=>{return{title,type:ControlType.Color,defaultValue};};const stringProperty=(title=\"Text\",defaultValue=undefined,description=undefined)=>{return{title,type:ControlType.String,defaultValue,description};};const numberProperty=(title=\"Number\",defaultValue=0,description=undefined)=>{return{title,type:ControlType.Number,defaultValue,description};};const shadowProperty={type:ControlType.Object,controls:{color:colorProperty(\"Color\",\"#000000\"),x:numberProperty(\"X\",0),y:numberProperty(\"Y\",0),blur:numberProperty(\"Blur\",0)}};const borderProperty={type:ControlType.Object,controls:{width:numberProperty(\"Width\",0),color:colorProperty(\"Color\",\"#fff\")}};const paddingProperty=(defaultValue=0)=>{return{type:ControlType.FusedNumber,defaultValue,title:\"Padding\",toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0};};const radiusProperty=(defaultValue=0)=>{return{type:ControlType.FusedNumber,defaultValue,title:\"Radius\",toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"NW\",\"NE\",\"SE\",\"SW\"],min:0};};const heightProperty={height:{type:ControlType.Enum,defaultValue:\"fixed\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:44,hidden(props){return props.height===\"auto\";}}};addPropertyControls(Comment,{title:{title:\"Title\",type:ControlType.Object,controls:{show:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},text:stringProperty(\"Text\",\"Comments\"),font:fontProperty,color:colorProperty()}},input:{title:\"Input\",type:ControlType.Object,controls:{placeHolderName:stringProperty(\"Input 1\",\"Your name\",\"Placeholder text for the name input.\"),placeHolderComment:stringProperty(\"Input 2\",\"Write your comment here...\",\"Placeholder text for the comment input.\"),font:fontProperty,fill:colorProperty(\"Fill\",\"#161819\"),textColor:colorProperty(\"Text\"),placeHolderColor:colorProperty(\"Placeholder\",\"#9BA1A5\"),padding:paddingProperty(14),radius:radiusProperty(),border:borderProperty,shadow:shadowProperty,...heightProperty}},publishButton:{title:\"Publish\",type:ControlType.Object,controls:{label:stringProperty(\"Label\",\"Publish\"),font:fontProperty,fill:colorProperty(\"Fill\",\"#fff\"),textColor:colorProperty(\"Text\",\"#000000\"),padding:paddingProperty(16),radius:radiusProperty(),border:borderProperty,shadow:shadowProperty,...heightProperty}},commentProps:{title:\"Comments\",type:ControlType.Object,description:\"Delete inappropriate comments [here](https://spamcomments.learnframer.site/).\",controls:{image:{title:\"Avatars\",type:ControlType.Object,controls:{type:{type:ControlType.Enum,defaultValue:\"marble\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"marble\",\"beam\",\"pixel\",\"sunset\",\"ring\",\"bauhaus\"],optionTitles:[\"Marble\",\"Beam\",\"Pixel\",\"Sunset\",\"Ring\",\"Bauhaus\"]},colors:{type:ControlType.Array,control:colorProperty(\"Color\",\"#fff\"),maxCount:5},radius:radiusProperty(14),size:numberProperty(\"Size\",28)}},name:{title:\"Name\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"#fff\")}},date:{title:\"Date\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"rgb(155, 161, 165)\")}},body:{title:\"Body\",type:ControlType.Object,controls:{font:fontProperty,textColor:colorProperty(\"Text\",\"#fff\")}}}},divider:colorProperty(\"Divider\",\"#1E2021\"),gaps:{title:\"Gaps\",type:ControlType.Object,controls:{commentSection:numberProperty(\"Gap 1\",24,\"Gap between title, input, divider, and comments.\"),commentItems:numberProperty(\"Gap 2\",20,\"Gap between comments.\"),profilePictureAndName:numberProperty(\"Gap 3\",12,\"Gap between profile picture and name.\"),nameAndTime:numberProperty(\"Gap 4\",8,\" Gap between name and elapsed time.\")}},emptyState:stringProperty(\"Empty state\",\"No comments yet.\",\"Text displayed under the comment section when no comments have been posted.\"),commentId:stringProperty(\"ID\",undefined,\"If you need help setting the component up [watch this video](https://youtu.be/47VCZ_q0ydI).\")});Comment.displayName=\"Comments Section\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Comment\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Comment.map","// Generated by Framer (f8e3bf6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-bold\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-black italic\",\"FS;Fira Sans-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6CQCTCZ3WGUJP4TETCX22TCP67NXMDP4/JFARYPAKQEONSBMPIGHRQI7LPGJ45V2L/P4GJS2SUZRRND522M2X7ZXM6GSZPS4EH.woff2\",weight:\"900\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IHQZTVLGX4EJO6PENW3PK264LUDE3QSE/27XNZOGXTGJIRB6XFHMD5MYDHJBUKLP2/CI3E7APIVG7MBYP7I4AVULBOKJQ2QC7R.woff2\",weight:\"700\"}]}];export const css=['.framer-E8P0d .framer-styles-preset-127tez0:not(.rich-text-wrapper), .framer-E8P0d .framer-styles-preset-127tez0.rich-text-wrapper h4 { --framer-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Fira Sans\", sans-serif; --framer-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-E8P0d\";\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 (f6758ab)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-regular\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-bold italic\",\"FS;Fira Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PXZ43LXUMISRBKI3JAZRXIT3KCAQT5LX/6PGI734U44FDBEH63LXBIZUQX34PL45P/MITUNP2IVULQXBXY4CV6OFWPPCE2UU26.woff2\",weight:\"400\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IHQZTVLGX4EJO6PENW3PK264LUDE3QSE/27XNZOGXTGJIRB6XFHMD5MYDHJBUKLP2/CI3E7APIVG7MBYP7I4AVULBOKJQ2QC7R.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZSLXVR2L2HJPLX3QB57ZW6T2ZAWG2R23/Y7NGTJ7OJZZVC5223GMBAUMWS22BR4HP/L22KE76YK6JHRKJQKEVNP36M46MOKUHP.woff2\",weight:\"400\"}]}];export const css=['.framer-PnyJx .framer-styles-preset-quxmd9:not(.rich-text-wrapper), .framer-PnyJx .framer-styles-preset-quxmd9.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-blockquote-font-size: 18px; --framer-blockquote-font-style: normal; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 2em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, #111111); --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; background-color: #e8dff6; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 32px; }','.framer-PnyJx .framer-styles-preset-quxmd9:not(.rich-text-wrapper)::before, .framer-PnyJx .framer-styles-preset-quxmd9.rich-text-wrapper blockquote::before { background-color: var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, #ab1bce) /* {\"name\":\"Lysto_Purple\"} */; border-radius: 1px; content: \" \"; display: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 4px; }'];export const className=\"framer-PnyJx\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (cbb0119)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-66mBg .framer-styles-preset-n4cxx1 { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-bottom-width: 1px; border-color: var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, #dcdcdc); border-left-width: 1px; border-right-width: 1px; border-style: solid; border-top-left-radius: 2px; border-top-right-radius: 2px; border-top-width: 1px; }\"];export const className=\"framer-66mBg\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f8e3bf6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-regular\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-bold italic\",\"FS;Fira Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PXZ43LXUMISRBKI3JAZRXIT3KCAQT5LX/6PGI734U44FDBEH63LXBIZUQX34PL45P/MITUNP2IVULQXBXY4CV6OFWPPCE2UU26.woff2\",weight:\"400\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IHQZTVLGX4EJO6PENW3PK264LUDE3QSE/27XNZOGXTGJIRB6XFHMD5MYDHJBUKLP2/CI3E7APIVG7MBYP7I4AVULBOKJQ2QC7R.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZSLXVR2L2HJPLX3QB57ZW6T2ZAWG2R23/Y7NGTJ7OJZZVC5223GMBAUMWS22BR4HP/L22KE76YK6JHRKJQKEVNP36M46MOKUHP.woff2\",weight:\"400\"}]}];export const css=['.framer-vba1i .framer-styles-preset-1kuruo8:not(.rich-text-wrapper), .framer-vba1i .framer-styles-preset-1kuruo8.rich-text-wrapper p { --framer-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 160%; --framer-paragraph-spacing: 24px; --framer-text-alignment: start; --framer-text-color: #4d4d4d; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vba1i\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a4aa1f7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-semibold\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-black italic\",\"FS;Fira Sans-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/52IIN6R3JEJSB45IG7RFUBVJWDYA3I55/BRMRSLAZOTLGR6QBPJIOQIDMAUPTJ2UA/UCTPHJ5G3WFLZTQWAKOCKPRFKL4IR3MG.woff2\",weight:\"600\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6CQCTCZ3WGUJP4TETCX22TCP67NXMDP4/JFARYPAKQEONSBMPIGHRQI7LPGJ45V2L/P4GJS2SUZRRND522M2X7ZXM6GSZPS4EH.woff2\",weight:\"900\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L3FI3ZOGZQHELOLGCTCTCAPJB6EB2JS2/BZOUCHTEKYXB7LZFYVPP5TTLJK6MIN5I/7YYJIL3EF4FSTUASHTYS666SZ3I4PCRC.woff2\",weight:\"600\"}]}];export const css=['.framer-vMCLu .framer-styles-preset-159rv94:not(.rich-text-wrapper), .framer-vMCLu .framer-styles-preset-159rv94.rich-text-wrapper h2 { --framer-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Fira Sans\", sans-serif; --framer-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-vMCLu\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (629c622)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-medium\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-bold italic\",\"FS;Fira Sans-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HEW5N77AVU7ITXXZXZ7K3WQS3QNPMUYG/HDNHM5F6K2VZGBPCRH5BLOCSEGUBTLOW/D22S3MA4GK4GHKF5XKUQFHGMFXTHXNFE.woff2\",weight:\"500\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IHQZTVLGX4EJO6PENW3PK264LUDE3QSE/27XNZOGXTGJIRB6XFHMD5MYDHJBUKLP2/CI3E7APIVG7MBYP7I4AVULBOKJQ2QC7R.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2SQQGC4FDVTR2RNGLAQDZA7QFNO67SGJ/QTR5E5JHBGYCVW2L4RKUKG5XBNN4M24M/OA74R7H4QEX4WSJXAJY7O6EZIZGDOIXT.woff2\",weight:\"500\"}]}];export const css=['.framer-hZbMe .framer-styles-preset-1k19yki:not(.rich-text-wrapper), .framer-hZbMe .framer-styles-preset-1k19yki.rich-text-wrapper h5 { --framer-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hZbMe\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a4aa1f7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Fira Sans-medium\",\"FS;Fira Sans-bold\",\"FS;Fira Sans-bold italic\",\"FS;Fira Sans-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HEW5N77AVU7ITXXZXZ7K3WQS3QNPMUYG/HDNHM5F6K2VZGBPCRH5BLOCSEGUBTLOW/D22S3MA4GK4GHKF5XKUQFHGMFXTHXNFE.woff2\",weight:\"500\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IHQZTVLGX4EJO6PENW3PK264LUDE3QSE/27XNZOGXTGJIRB6XFHMD5MYDHJBUKLP2/CI3E7APIVG7MBYP7I4AVULBOKJQ2QC7R.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2SQQGC4FDVTR2RNGLAQDZA7QFNO67SGJ/QTR5E5JHBGYCVW2L4RKUKG5XBNN4M24M/OA74R7H4QEX4WSJXAJY7O6EZIZGDOIXT.woff2\",weight:\"500\"}]}];export const css=['.framer-CQm7V .framer-styles-preset-1lizwi8:not(.rich-text-wrapper), .framer-CQm7V .framer-styles-preset-1lizwi8.rich-text-wrapper h3 { --framer-font-family: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Fira Sans\", \"Fira Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-CQm7V\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f6758ab)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,Floating,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CommentsSection from\"https://framerusercontent.com/modules/ycRBkUtTGPq2JzTXCzzZ/RnY1QZyrXLPalRBNI0Vr/Comment.js\";import Button2,*as Button2Info from\"#framer/local/canvasComponent/LvLwDcAW7/LvLwDcAW7.js\";import CaseStudies_DesktopCard from\"#framer/local/canvasComponent/TYgqj15Wp/TYgqj15Wp.js\";import{onClickFormSubmit}from\"#framer/local/codeFile/Gxt4BS0/BlogsComponent.js\";import{onClick}from\"#framer/local/codeFile/D925XpU/FooterItem.js\";import GameCentral from\"#framer/local/collection/xX4KdOAvo/xX4KdOAvo.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/D2U3wQFRs/D2U3wQFRs.js\";import*as sharedStyle7 from\"#framer/local/css/DuBEE9GTW/DuBEE9GTW.js\";import*as sharedStyle12 from\"#framer/local/css/E4UCGxtYW/E4UCGxtYW.js\";import*as sharedStyle5 from\"#framer/local/css/l9o6Rn1gx/l9o6Rn1gx.js\";import*as sharedStyle2 from\"#framer/local/css/mdBhcaZgj/mdBhcaZgj.js\";import*as sharedStyle10 from\"#framer/local/css/n5Nc4Gd3l/n5Nc4Gd3l.js\";import*as sharedStyle from\"#framer/local/css/oKD7CC2nK/oKD7CC2nK.js\";import*as sharedStyle13 from\"#framer/local/css/P3fpEhXgP/P3fpEhXgP.js\";import*as sharedStyle8 from\"#framer/local/css/rgvnrb6bs/rgvnrb6bs.js\";import*as sharedStyle3 from\"#framer/local/css/S7MrA68e8/S7MrA68e8.js\";import*as sharedStyle11 from\"#framer/local/css/Td8mYykFd/Td8mYykFd.js\";import*as sharedStyle1 from\"#framer/local/css/uV9PV8QzG/uV9PV8QzG.js\";import*as sharedStyle6 from\"#framer/local/css/xOxtmQ03S/xOxtmQ03S.js\";import*as sharedStyle4 from\"#framer/local/css/yu3g13rq2/yu3g13rq2.js\";import metadataProvider from\"#framer/local/webPageMetadata/ySo2Y7vQ0/ySo2Y7vQ0.js\";const ImageWithFX=withFX(Image);const CaseStudies_DesktopCardFonts=getFonts(CaseStudies_DesktopCard);const CommentsSectionFonts=getFonts(CommentsSection);const FormPlainTextInputOnClick1cwgmvm=withCodeBoundaryForOverrides(FormPlainTextInput,{nodeId:\"YLzJle3CQ\",override:onClick,scopeId:\"ySo2Y7vQ0\"});const Button2Fonts=getFonts(Button2);const Button2OnClickFormSubmit11s32q6WithMappedReactPropsk9ef4a=withMappedReactProps(withCodeBoundaryForOverrides(Button2,{nodeId:\"A7XD5fB13\",override:onClickFormSubmit,scopeId:\"ySo2Y7vQ0\"}),Button2Info);const MotionLabelOnClickk3j0c8=withCodeBoundaryForOverrides(motion.label,{nodeId:\"fyXPlBfl9\",override:onClick,scopeId:\"ySo2Y7vQ0\"});const Button2OnClickFormSubmitcyafxbWithMappedReactPropsk9ef4a=withMappedReactProps(withCodeBoundaryForOverrides(Button2,{nodeId:\"ad1zulolr\",override:onClickFormSubmit,scopeId:\"ySo2Y7vQ0\"}),Button2Info);const breakpoints={AoT464O0g:\"(max-width: 809px)\",bJDPZNV_U:\"(min-width: 1200px)\",z5EGF_4_R:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BZY1l\";const variantClassNames={AoT464O0g:\"framer-v-1d86waq\",bJDPZNV_U:\"framer-v-1n2lx6o\",z5EGF_4_R:\"framer-v-oq3fhr\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"Case Studies\";}else{return\"Blogs\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"long\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const dateOptions1={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString1=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions1,activeLocale);};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"aHmkVDsHn\":return\"Related Articles\";case\"PomSvGV6B\":return\"Related Videos\";case\"mNG34AwRS\":return\"Related Case Studies\";case\"Fjz8rozZo\":return\"Related Newsletters\";default:return\"\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"bJDPZNV_U\",Phone:\"AoT464O0g\",Tablet:\"z5EGF_4_R\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bJDPZNV_U\"};};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:\"ySo2Y7vQ0\",data:GameCentral,type:\"Collection\"},select:[{collection:\"ySo2Y7vQ0\",name:\"MRxnm6nmS\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"zVHjfiRG4\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"aHRRMWdSS\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"gKd4uJMtj\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"qMyzVG4ZJ\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"la9ocNPoj\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"NcbyEFeDL\",type:\"Identifier\"},{collection:\"ySo2Y7vQ0\",name:\"QuElXFGM1\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ySo2Y7vQ0\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,gKd4uJMtj=getFromCurrentRouteData(\"gKd4uJMtj\"),MRxnm6nmS=getFromCurrentRouteData(\"MRxnm6nmS\")??\"\",qMyzVG4ZJ=getFromCurrentRouteData(\"qMyzVG4ZJ\"),la9ocNPoj=getFromCurrentRouteData(\"la9ocNPoj\"),NcbyEFeDL=getFromCurrentRouteData(\"NcbyEFeDL\")??\"\",QuElXFGM1=getFromCurrentRouteData(\"QuElXFGM1\")??\"\",MjnPYBMxkNsP_YdQIS,MjnPYBMxkzVXWmg9Ks,qMyzVG4ZJNsP_YdQIS,idNsP_YdQIS,aHRRMWdSS=getFromCurrentRouteData(\"aHRRMWdSS\"),...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 onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AoT464O0g\")return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AoT464O0g\")return false;return true;};const textContent=toString(convertFromBoolean(equals(gKd4uJMtj,\"mNG34AwRS\"),activeLocale));const elementId=useRouteElementId(\"aGSfy5XD6\");const ref3=React.useRef(null);const visible=isSet(qMyzVG4ZJ);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(la9ocNPoj,activeLocaleCode);const textContent2=toDateString1(la9ocNPoj,activeLocaleCode);const visible1=isSet(NcbyEFeDL);const textContent3=toString(convertFromEnum(gKd4uJMtj,activeLocale));const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"z5EGF_4_R\")return false;return true;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bJDPZNV_U\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(250, 250, 250); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1n2lx6o\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-erpre6\",\"data-border\":true,\"data-framer-name\":\"Frame 2\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17j2yhz hidden-1n2lx6o hidden-oq3fhr\",\"data-framer-name\":\"Container\",id:\"17j2yhz\",onTap:onTaptxyyif({overlay}),ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mfpc72\",\"data-framer-name\":\"Horizontal Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozelfq\",\"data-framer-name\":\"image fill\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-s49gsj\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ok9mog\",\"data-framer-name\":\"Horizontal Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqsczf\",\"data-framer-name\":\"image fill\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6mtsbj\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v4lvb5\",\"data-framer-name\":\"Horizontal Divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulashl\",\"data-framer-name\":\"image fill\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ik6bqa\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{offsetX:69.0000046310015,offsetY:9.000001322012395,safeArea:false}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"17j2yhz\",offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{\"data-border\":true,animate:animation4,exit:animation3}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-tinup8\",exit:animation,initial:animation2,ref:ref2,role:\"dialog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-44x24o\",\"data-framer-name\":\"Frame 1000009719\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(144, 96, 255)\",\"--framer-text-decoration\":\"underline\"},children:\"Home\"})}),className:\"framer-14ts5zt hidden-1d86waq\",\"data-framer-name\":\"Home\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RbSy80zqo\"},motionChild:true,nodeId:\"VT8MLl4Sa\",openInNewTab:false,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16vcg1n framer-1x9q43l\",\"data-framer-name\":\"Frame 1000009728\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Case Studies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Case Studies\"})}),className:\"framer-g5el1h\",\"data-framer-name\":\"Case Studies\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{href:{webPageId:\"fBA01n4tz\"}}},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RbSy80zqo\"},motionChild:true,nodeId:\"Kfm3Ys3fy\",openInNewTab:false,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-j7u06s hidden-1n2lx6o framer-1x9q43l\",\"data-framer-name\":\"Frame 1000009728\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Home\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Case Studies\"})}),className:\"framer-mmdvnr\",\"data-framer-name\":\"Case Studies\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7txv7\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DhPrkfwoE\"},motionChild:true,nodeId:\"fbw5H8CEW\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qir4xq\",\"data-styles-preset\":\"uV9PV8QzG\",children:\"Blogs\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DhPrkfwoE\"},motionChild:true,nodeId:\"fbw5H8CEW\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Blogs\"})})})}),className:\"framer-1qxwnfj\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1es211o hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009729\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bFQoTruq9\"},motionChild:true,nodeId:\"zkJBikL8l\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Gamers\"})})})}),className:\"framer-1cy2rhc\",\"data-framer-name\":\"Gamers\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u0psb2 hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009730\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oX70jy0TW\"},motionChild:true,nodeId:\"AfnmdLjar\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Web3\"})})})}),className:\"framer-1pfm8h\",\"data-framer-name\":\"Web3\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Videos\"})}),className:\"framer-1z80y8 hidden-1d86waq\",\"data-framer-name\":\"Videos\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"News Letters\"})}),className:\"framer-1jdggm4 hidden-1d86waq\",\"data-framer-name\":\"News Letters\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcnay8\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:\"https://lysto.gg/\",motionChild:true,nodeId:\"QRyTNLb8q\",openInNewTab:false,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2p4sgx hidden-1d86waq framer-1x9q43l\",\"data-framer-name\":\"Bounding box\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1krw5r0\",\"data-framer-name\":\"arrow_back_ios_new\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"20\" viewBox=\"0 0 12 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.29766 18.9366L0.978431 10.6328C0.884831 10.5392 0.818806 10.4405 0.780356 10.3366C0.741889 10.2328 0.722656 10.1206 0.722656 10.0001C0.722656 9.87957 0.741889 9.76739 0.780356 9.66356C0.818806 9.55971 0.884831 9.46099 0.978431 9.36741L9.30726 1.03856C9.49572 0.850092 9.72649 0.755859 9.99956 0.755859C10.2726 0.755859 10.5117 0.858426 10.7169 1.06356C10.9156 1.26228 11.0149 1.49624 11.0149 1.76546C11.0149 2.03469 10.9156 2.26867 10.7169 2.46738L3.18416 10.0001L10.7265 17.5424C10.9149 17.7309 11.0092 17.9591 11.0092 18.227C11.0092 18.495 10.9066 18.7315 10.7015 18.9366C10.5028 19.1353 10.2688 19.2347 9.99956 19.2347C9.73032 19.2347 9.49636 19.1353 9.29766 18.9366Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g8jfvt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.316 17.425 C 3.67 16.591 3.213 15.627 2.977 14.6 C 2.056 10.64 4.522 6.68 8.484 5.759 C 12.449 4.837 16.408 7.303 17.328 11.266 C 17.59 12.392 17.585 13.565 17.309 14.689 C 17.032 15.813 16.496 16.855 15.74 17.731 C 18.777 15.563 20.374 11.706 19.477 7.85 C 18.29 2.738 13.188 -0.438 8.08 0.749 C 2.972 1.936 -0.208 7.039 0.979 12.147 C 1.461 14.235 2.638 16.096 4.316 17.425 Z\" fill=\"rgb(101,17,168)\"></path><path d=\"M 15.17 5.748 C 16.077 9.658 12.999 13.902 9.089 14.815 C 5.299 15.697 1.816 13.09 0.757 9.387 C 0.696 10.314 0.773 11.244 0.984 12.15 C 2.171 17.262 7.274 20.439 12.382 19.251 C 17.489 18.064 20.669 12.961 19.482 7.853 C 18.455 3.426 14.487 0.449 10.123 0.507 C 12.403 1.299 14.582 3.222 15.17 5.748 Z\" fill=\"rgb(171,27,206)\"></path><path d=\"M 10.117 0.507 C 10.117 0.507 12.625 2.88 12.242 5.87 C 12.242 5.87 13.775 6.276 15.306 7.669 C 15.306 7.669 16.141 2.902 10.117 0.507 Z\" fill=\"rgb(73,13,112)\"></path><path d=\"M 12.375 19.25 C 13.726 18.937 14.992 18.331 16.084 17.477 C 17.177 16.622 18.067 15.536 18.693 14.298 C 17.952 14.697 17.161 14.998 16.339 15.188 C 11.232 16.375 6.126 13.199 4.939 8.092 C 4.43 5.916 4.71 3.631 5.727 1.642 C 2.044 3.623 -0.013 7.885 0.979 12.15 C 2.167 17.262 7.269 20.439 12.375 19.25 Z\" fill=\"rgb(243,49,144)\"></path></svg>',svgContentId:10369036864},z5EGF_4_R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 5.071 20.988 C 4.289 19.978 3.736 18.811 3.45 17.568 C 2.335 12.775 5.32 7.982 10.117 6.866 C 14.916 5.75 19.709 8.735 20.822 13.533 C 21.139 14.895 21.133 16.316 20.799 17.676 C 20.464 19.037 19.815 20.298 18.899 21.358 C 22.576 18.735 24.51 14.065 23.424 9.398 C 21.987 3.21 15.81 -0.636 9.627 0.801 C 3.444 2.239 -0.406 8.416 1.032 14.599 C 1.615 17.127 3.039 19.38 5.071 20.988 Z\" fill=\"rgb(101,17,168)\"></path><path d=\"M 18.209 6.852 C 19.308 11.586 15.582 16.724 10.849 17.829 C 6.26 18.896 2.045 15.74 0.763 11.258 C 0.688 12.38 0.782 13.506 1.038 14.603 C 2.475 20.791 8.651 24.636 14.835 23.199 C 21.018 21.762 24.867 15.585 23.43 9.401 C 22.186 4.042 17.383 0.439 12.101 0.509 C 14.86 1.467 17.498 3.795 18.209 6.852 Z\" fill=\"rgb(171,27,206)\"></path><path d=\"M 12.093 0.508 C 12.093 0.508 15.129 3.38 14.665 7 C 14.665 7 16.522 7.492 18.374 9.179 C 18.374 9.179 19.385 3.408 12.093 0.508 Z\" fill=\"rgb(73,13,112)\"></path><path d=\"M 14.826 23.197 C 16.462 22.818 17.995 22.085 19.317 21.051 C 20.639 20.016 21.716 18.702 22.474 17.203 C 21.578 17.686 20.62 18.05 19.626 18.28 C 13.442 19.718 7.262 15.872 5.824 9.691 C 5.209 7.057 5.548 4.291 6.778 1.882 C 2.32 4.28 -0.169 9.439 1.032 14.603 C 2.469 20.791 8.646 24.636 14.826 23.197 Z\" fill=\"rgb(243,49,144)\"></path></svg>',svgContentId:10000406670}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lhistv\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 6.336 26.165 C 5.366 24.911 4.678 23.461 4.323 21.916 C 2.937 15.962 6.646 10.008 12.605 8.622 C 18.566 7.236 24.52 10.944 25.903 16.904 C 26.297 18.597 26.289 20.361 25.874 22.051 C 25.459 23.742 24.652 25.308 23.515 26.625 C 28.083 23.366 30.484 17.565 29.135 11.767 C 27.35 4.08 19.677 -0.697 11.996 1.089 C 4.316 2.874 -0.466 10.548 1.319 18.229 C 2.044 21.369 3.813 24.167 6.336 26.165 Z\" fill=\"rgb(101,17,168)\"></path><path d=\"M 22.657 8.605 C 24.022 14.485 19.394 20.868 13.514 22.241 C 7.814 23.566 2.577 19.646 0.985 14.078 C 0.893 15.472 1.009 16.871 1.326 18.234 C 3.112 25.92 10.784 30.697 18.465 28.912 C 26.146 27.126 30.928 19.453 29.143 11.771 C 27.598 5.114 21.631 0.638 15.069 0.725 C 18.497 1.916 21.774 4.807 22.657 8.605 Z\" fill=\"rgb(171,27,206)\"></path><path d=\"M 15.06 0.724 C 15.06 0.724 18.831 4.292 18.255 8.789 C 18.255 8.789 20.561 9.4 22.862 11.495 C 22.862 11.495 24.118 4.327 15.06 0.724 Z\" fill=\"rgb(73,13,112)\"></path><path d=\"M 18.455 28.909 C 20.486 28.438 22.391 27.528 24.033 26.243 C 25.676 24.957 27.014 23.325 27.956 21.463 C 26.842 22.064 25.652 22.516 24.417 22.802 C 16.736 24.587 9.058 19.81 7.273 12.131 C 6.508 8.859 6.929 5.423 8.458 2.431 C 2.919 5.41 -0.173 11.819 1.319 18.233 C 3.104 25.92 10.777 30.697 18.455 28.909 Z\" fill=\"rgb(243,49,144)\"></path></svg>',svgContentId:11091597239,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBA01n4tz\"},motionChild:true,nodeId:\"wPiiVSBe_\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Game Central\"})})})})},z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"22px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBA01n4tz\"},motionChild:true,nodeId:\"wPiiVSBe_\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Game Central\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"80%\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBA01n4tz\"},motionChild:true,nodeId:\"wPiiVSBe_\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Game Central\"})})})}),className:\"framer-tv3hun\",fonts:[\"FS;Clash Display-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwprnz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"a\"})})},z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"a\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"a\"})}),className:\"framer-wsgjg8\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://lysto.gg/\",motionChild:true,nodeId:\"F4TuARN2T\",scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ewgj9o framer-1x9q43l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"lysto\"})})},z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"lysto\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"lysto\"})}),className:\"framer-1tnylyt\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"resource hub\"})})},z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"resource hub\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",\"--framer-text-transform\":\"uppercase\"},children:\"resource hub\"})}),className:\"framer-kjtb2x\",fonts:[\"FS;Fira Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbdmmz\",\"data-framer-name\":\"Frame 1000009719\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBA01n4tz\"},motionChild:true,nodeId:\"sTJ2vVZvk\",openInNewTab:false,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sv6l8j hidden-1d86waq framer-1x9q43l\",\"data-framer-name\":\"Frame 1000009728\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sbbHIkL0c\"},motionChild:true,nodeId:\"VnRAIxIJp\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Home\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Home\"})}),className:\"framer-1ejb743\",\"data-framer-name\":\"Case Studies\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RbSy80zqo\"},motionChild:true,nodeId:\"f38fNbWeG\",openInNewTab:false,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mymqq9 hidden-1d86waq framer-1x9q43l\",\"data-framer-name\":\"Frame 1000009728\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sbbHIkL0c\"},motionChild:true,nodeId:\"yshZhPUpM\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Case Studies\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Case Studies\"})}),className:\"framer-rgdcqs\",\"data-framer-name\":\"Case Studies\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sv3pz6 hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"R60013HmH\"},motionChild:true,nodeId:\"gOo1EN2Sd\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-w0o5dn\",\"data-styles-preset\":\"oKD7CC2nK\",children:\"Blogs\"})})})}),className:\"framer-114pfk4\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxdanu\",\"data-framer-name\":\"Seperator Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i2b8rt\",\"data-framer-name\":\"Primary Nav\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywcvww\",\"data-framer-name\":\"Vertical Seperator\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h5m4t2\",\"data-framer-name\":\"Vertical Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-etyt6i\",\"data-framer-name\":\"Horizontal Seperator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8nfo18\",\"data-framer-name\":\"Heading Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1wml9\",\"data-framer-name\":\"Primary Nav\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggkf8g\",\"data-framer-name\":\"Frame 1000009719\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-13a26ea1-5a36-4307-a208-8eca133b0ff5, rgb(255, 255, 255))\"},children:\"Case Studies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-13a26ea1-5a36-4307-a208-8eca133b0ff5, rgb(255, 255, 255))\"},children:\"Case Studies\"})}),className:\"framer-1dzxmlt hidden-1d86waq\",\"data-framer-name\":\"Home\",fonts:[\"GF;Fira Sans-500\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oine2 hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\">\"})}),className:\"framer-vjs8e1\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9a5kr hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})}),className:\"framer-ekxgh3\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],text:MRxnm6nmS,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xl5jz hidden-1n2lx6o hidden-oq3fhr\",\"data-framer-name\":\"Frame 1000009719\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-13a26ea1-5a36-4307-a208-8eca133b0ff5, rgb(255, 255, 255))\"},children:\"Case Studies\"})}),className:\"framer-1wx7h37\",\"data-framer-name\":\"Home\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pqxnvp\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\">\"})}),className:\"framer-1d4fcia\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tgpglk\",\"data-framer-name\":\"Frame 1000009727\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\"},children:\"Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})}),className:\"framer-1ukl38l\",\"data-framer-name\":\"Blogs\",fonts:[\"GF;Fira Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdh145\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"X19TeXN0ZW1EZWZhdWx0LTcwMC1ub3JtYWxfXw==\",\"--framer-font-family\":'\"system-ui\", \"-apple-system\", \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif, \"System Default\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"},children:\"Case Study: Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})}),fonts:[\"__SystemDefault-700-normal__\"]},z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"X19TeXN0ZW1EZWZhdWx0LTcwMC1ub3JtYWxfXw==\",\"--framer-font-family\":'\"system-ui\", \"-apple-system\", \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif, \"System Default\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"},children:\"Case Study: Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})}),fonts:[\"__SystemDefault-700-normal__\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"},children:\"Case Study: Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\"})}),className:\"framer-8ivhp4\",fonts:[\"FS;Fira Sans-semibold\"],text:MRxnm6nmS,verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hc7mxf\",\"data-framer-name\":\"Banner Image Container\",id:elementId,ref:ref3,children:visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6fsdhx\",\"data-framer-name\":\"Primary Nav\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-166mg5o\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+137.4+0+0+0+-25),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 36px, 1360px) - 16px, 1px), 1200px)`,...toResponsiveImage(qMyzVG4ZJ)}},z5EGF_4_R:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+139.6+0+0+0+-30),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 64px, 1360px) - 64px, 1px), 1200px)`,...toResponsiveImage(qMyzVG4ZJ)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+203.8+0+0+0+-60),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 64px, 1360px) - 64px, 1px), 1200px)`,...toResponsiveImage(qMyzVG4ZJ)},className:\"framer-2txjsd\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fkrdk7 hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oite3a\",\"data-framer-name\":\"Article Details Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f3de9y\",\"data-framer-name\":\"Primary Nav\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wvpkc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xsq1\",\"data-framer-name\":\"Author Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+455.4+0+0+0+16+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/jk4HRkc4bJRe4AuQBay19gCYwas.svg\"}},z5EGF_4_R:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+576.6+0+0+0+17.6+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/jk4HRkc4bJRe4AuQBay19gCYwas.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+870.8+0+0+0+17.6+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/jk4HRkc4bJRe4AuQBay19gCYwas.svg\"},className:\"framer-yk11fd\",\"data-framer-name\":\"Author Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\",\"--framer-text-transform\":\"uppercase\"},children:\"Team Lysto\"})}),className:\"framer-61g8tf\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4origs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{text:textContent2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\",\"--framer-text-transform\":\"uppercase\"},children:\"October 17, 2024\"})}),className:\"framer-uamoxo\",fonts:[\"FS;Fira Sans-semibold\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o02n2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"X19TeXN0ZW1EZWZhdWx0LTYwMC1ub3JtYWxfXw==\",\"--framer-font-family\":'\"system-ui\", \"-apple-system\", \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif, \"System Default\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgba(17, 17, 17, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"Content\"})}),fonts:[\"__SystemDefault-600-normal__\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgba(17, 17, 17, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"3 mins\"})}),className:\"framer-1cis0ev\",fonts:[\"FS;Fira Sans-semibold\"],text:NcbyEFeDL,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgba(17, 17, 17, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"min read\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgba(17, 17, 17, 0.5)\",\"--framer-text-transform\":\"uppercase\"},children:\"min read\"})}),className:\"framer-jvwiu4\",fonts:[\"FS;Fira Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3xcdoi hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ittqi7\",\"data-framer-name\":\"Content Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnww61\",\"data-framer-name\":\"Primary Nav\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4rt9p2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15fjto7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"O2Hjfa9JZ\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"tcsp01ffJ\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:QuElXFGM1,className:\"framer-1ajrwf5\",fonts:[\"__SystemDefault-600-normal__\"],stylesPresetsClassNames:{a:\"framer-styles-preset-mwkk34\",blockquote:\"framer-styles-preset-quxmd9\",code:\"framer-styles-preset-ma1qih\",h1:\"framer-styles-preset-ztexqp\",h2:\"framer-styles-preset-159rv94\",h3:\"framer-styles-preset-1lizwi8\",h4:\"framer-styles-preset-127tez0\",h5:\"framer-styles-preset-1k19yki\",h6:\"framer-styles-preset-2fggyr\",img:\"framer-styles-preset-n4cxx1\",p:\"framer-styles-preset-1kuruo8\",table:\"framer-styles-preset-14vqrwl\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7v63it\",\"data-framer-name\":\"Content Divider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b7kzab\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-icg9s1\",\"data-framer-name\":\"Horizontal Seperator\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g5e8uc\",style:{rotate:45}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-646zx1\",\"data-framer-name\":\"Horizontal Seperator\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17sp5ei\",\"data-framer-name\":\"Content Divider\"})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n08xf5\",\"data-framer-name\":\"Seperator Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47py0o\",\"data-framer-name\":\"Primary Nav\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4wf68\",\"data-framer-name\":\"Vertical Seperator\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mugpap\",\"data-framer-name\":\"Vertical Seperator\"})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hyp0uy hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8haj0\",\"data-framer-name\":\"Article Details Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ixjdy\",\"data-framer-name\":\"Primary Nav\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ukr1xr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q7rali\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Related Articles\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7RmlyYSBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"Related Articles\"})}),className:\"framer-n8ug9p\",fonts:[\"FS;Fira Sans-medium\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t6vqn2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NsP_YdQIS\",data:GameCentral,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"NsP_YdQIS\",name:\"MjnPYBMxk\",type:\"Identifier\"},{collection:\"NsP_YdQIS\",name:\"qMyzVG4ZJ\",type:\"Identifier\"},{collection:\"NsP_YdQIS\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"NsP_YdQIS\",name:\"MRxnm6nmS\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:MRxnm6nmS},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"NsP_YdQIS\",name:\"aHRRMWdSS\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:aHRRMWdSS},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"NsP_YdQIS\",name:\"gKd4uJMtj\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:gKd4uJMtj},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idNsP_YdQIS,MjnPYBMxk:MjnPYBMxkNsP_YdQIS,qMyzVG4ZJ:qMyzVG4ZJNsP_YdQIS},index)=>{MjnPYBMxkNsP_YdQIS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NsP_YdQIS-${idNsP_YdQIS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MjnPYBMxk:MjnPYBMxkNsP_YdQIS},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MjnPYBMxk:MjnPYBMxkNsP_YdQIS},webPageId:\"ySo2Y7vQ0\"},motionChild:true,nodeId:\"hw6StVP3x\",scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xbdv8r framer-1x9q43l\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{MjnPYBMxk:MjnPYBMxkzVXWmg9Ks},webPageId:\"ySo2Y7vQ0\"},implicitPathVariables:undefined},{href:{pathVariables:{MjnPYBMxk:MjnPYBMxkzVXWmg9Ks},webPageId:\"ySo2Y7vQ0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{width:`max(min(${componentViewport?.width||\"100vw\"} - 36px, 1360px) - 16px, 1px)`,y:(componentViewport?.y||0)+40+845.4+0+0+0+0+76.8+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1360px) - 128px, 1px) - 32px) / 2, 50px), 1px)`,y:(componentViewport?.y||0)+60+1238+0+0+0+32+54.4+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7f6tqy-container hidden-oq3fhr\",nodeId:\"gCGPh5plD\",scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{Fj2t_lfju:resolvedLinks[1],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CaseStudies_DesktopCard,{FAQh99n51:\"Case Study: Testing Market Fit Through Player Sentiment – A Longitudinal Playtest for a Fast-Paced PvP Mobile Game\",Fj2t_lfju:resolvedLinks[0],height:\"100%\",id:\"gCGPh5plD\",KUWox5Cm_:toResponsiveImage(qMyzVG4ZJNsP_YdQIS),layoutId:\"gCGPh5plD\",style:{height:\"100%\",width:\"100%\"},variant:\"UE5yexIUN\",width:\"100%\",ZaTFs7Aoq:\"2025-06-02T00:00:00.000Z\"})})})})})})})})})},idNsP_YdQIS);})})})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ggh0m hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gm4mvz\",\"data-framer-name\":\"Content Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u1sjeh\",\"data-framer-name\":\"Primary Nav\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-azr5pv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jslzpg\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cil4wz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HYK_LoNXx\",scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(CommentsSection,{commentId:\"\",commentProps:{body:{font:{},textColor:\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"},date:{font:{fontFamily:'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},textColor:\"rgba(17, 17, 17, 0.5)\"},image:{colors:[],radius:14,radiusBottomLeft:14,radiusBottomRight:14,radiusIsMixed:false,radiusTopLeft:14,radiusTopRight:14,size:28,type:\"pixel\"},name:{font:{fontFamily:'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},textColor:\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"}},divider:\"var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, rgb(220, 220, 220))\",emptyState:\"No comments yet.\",gaps:{commentItems:20,commentSection:24,nameAndTime:8,profilePictureAndName:12},height:\"100%\",id:\"HYK_LoNXx\",input:{border:{color:\"var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, rgb(220, 220, 220))\",width:1},fill:\"var(--token-e46778aa-581c-4ec7-b051-1e47ad9ab3a7, rgb(246, 246, 244))\",font:{fontFamily:'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"fixed\",heightNumber:44,padding:14,paddingBottomLeft:14,paddingBottomRight:14,paddingIsMixed:false,paddingTopLeft:14,paddingTopRight:14,placeHolderColor:\"rgb(155, 161, 165)\",placeHolderComment:\"Write your comment here...\",placeHolderName:\"Your name\",radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shadow:{blur:0,color:\"rgb(0, 0, 0)\",x:0,y:0},textColor:\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\"},layoutId:\"HYK_LoNXx\",publishButton:{border:{color:\"rgb(255, 255, 255)\",width:0},fill:\"var(--token-b6dbc642-a3e1-4ce6-84af-93ef849b5d86, rgb(171, 27, 206))\",font:{fontFamily:'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"fixed\",heightNumber:44,label:\"Publish\",padding:16,paddingBottomLeft:16,paddingBottomRight:16,paddingIsMixed:false,paddingTopLeft:16,paddingTopRight:16,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusIsMixed:false,radiusTopLeft:0,radiusTopRight:0,shadow:{blur:0,color:\"rgb(0, 0, 0)\",x:0,y:0},textColor:\"var(--token-e46778aa-581c-4ec7-b051-1e47ad9ab3a7, rgb(246, 246, 244))\"},style:{width:\"100%\"},title:{color:\"var(--token-84b62d04-cdf1-43c7-afa0-70a3c195fe36, rgb(17, 17, 17))\",font:{fontFamily:'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},show:true,text:\"Comments\"},width:\"100%\"})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pw6c0z hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uv3h1d hidden-1d86waq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e33kjd\",\"data-framer-name\":\"Frame 1000009746\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-114phhi\",\"data-framer-name\":\"Frame 1000009743\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-djjwzl\",\"data-framer-name\":\"Frame 1000009742\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+34+1512.2+0+0+0+0+0),pixelHeight:444,pixelWidth:1024,sizes:`max((${componentViewport?.width||\"100vw\"} - 76px) / 2, 1px)`,src:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png\",srcSet:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+2049.4+0+0+0+0+0),pixelHeight:444,pixelWidth:1024,sizes:\"498px\",src:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png\",srcSet:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png 1024w\"},className:\"framer-s7zhf8\",\"data-framer-name\":\"image\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhvba1\",\"data-framer-name\":\"Frame 1000010946\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(78, 28, 161)\"},children:\"Subscribe to our newsletter\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(78, 28, 161)\"},children:\"Subscribe to our newsletter\"})}),className:\"framer-1oe04j6\",\"data-framer-name\":\"Subscribe to our newsletter\",fonts:[\"GF;Fira Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(90, 90, 90)\"},children:[\"I agree to all the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k7o5A7ve4\"},motionChild:true,nodeId:\"FoMuwZ2jS\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mwkk34\",\"data-styles-preset\":\"D2U3wQFRs\",children:\"privacy policy\"})}),\" by submitting the form\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(90, 90, 90)\"},children:[\"I agree to all the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k7o5A7ve4\"},motionChild:true,nodeId:\"FoMuwZ2jS\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mwkk34\",\"data-styles-preset\":\"D2U3wQFRs\",children:\"privacy policy\"})}),\" by submitting the form\"]})}),className:\"framer-7x4ru0\",\"data-framer-name\":\"I agree to all the privacy policy by submitting the form\",fonts:[\"GF;Fira Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1nqjzqc\",nodeId:\"zvjYpHcce\",children:formState=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionLabelOnClickk3j0c8,{className:\"framer-k3j0c8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(FormPlainTextInputOnClick1cwgmvm,{className:\"framer-1cwgmvm\",inputName:\"Name\",placeholder:\"Enter your mail ID\",type:\"text\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{z5EGF_4_R:{width:`max((max((${componentViewport?.width||\"100vw\"} - 76px) / 2, 1px) - 44px) * 0.2308, 1px)`,y:(componentViewport?.y||0)+34+1512.2+17.5+0+176+0+0+12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"104.7692px\",y:(componentViewport?.y||0)+60+2049.4+57.5+0+96+0+0+12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11s32q6-container\",nodeId:\"A7XD5fB13\",rendersWithMotion:true,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(Button2OnClickFormSubmit11s32q6WithMappedReactPropsk9ef4a,{height:\"100%\",id:\"A7XD5fB13\",layoutId:\"A7XD5fB13\",style:{height:\"100%\",width:\"100%\"},variant:\"gi1C_KdYH\",width:\"100%\"})})})})]})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cmhzqi hidden-1d86waq\",\"data-framer-name\":\"Frame 1000009758\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpl8gt hidden-1n2lx6o hidden-oq3fhr\",\"data-framer-name\":\"Frame 1000009764\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3evw5c\",\"data-framer-name\":\"Frame 1000009746\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fqtbkz\",\"data-framer-name\":\"Frame 1000009743\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hrc18x\",\"data-framer-name\":\"Frame 1000009742\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+1545.2+18+-99+0+0+0+0),pixelHeight:444,pixelWidth:1024,sizes:`max(${componentViewport?.width||\"100vw\"} - 72px, 1px)`,src:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png\",srcSet:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:444,pixelWidth:1024,src:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png\",srcSet:\"https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JOxiDeMbNeO6UihdlLrtCXV8.png 1024w\"},className:\"framer-2zfr53\",\"data-framer-name\":\"image\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cshhfb\",\"data-framer-name\":\"Frame 1000010946\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(78, 28, 161)\"},children:\"Subscribe to our newsletter\"})}),className:\"framer-1hb9vg5\",\"data-framer-name\":\"Subscribe to our newsletter\",fonts:[\"GF;Fira Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-rsm2zz\",\"data-border\":true,nodeId:\"j_YkeA2Fo\",children:formState=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-14fvcq0\",children:[/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-hdr5ex\",inputName:\"Email\",placeholder:\"Enter your mail ID\",required:true,type:\"email\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AoT464O0g:{y:(componentViewport?.y||0)+40+1545.2+18+63+0+158+12+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"113px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cyafxb-container\",nodeId:\"ad1zulolr\",rendersWithMotion:true,scopeId:\"ySo2Y7vQ0\",children:/*#__PURE__*/_jsx(Button2OnClickFormSubmitcyafxbWithMappedReactPropsk9ef4a,{height:\"100%\",id:\"ad1zulolr\",layoutId:\"ad1zulolr\",style:{height:\"100%\",width:\"100%\"},variant:\"gi1C_KdYH\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlyYSBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Fira Sans\", \"Fira Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(90, 90, 90)\"},children:[\"I agree to all the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k7o5A7ve4\"},motionChild:true,nodeId:\"MfopjvBVo\",openInNewTab:false,relValues:[],scopeId:\"ySo2Y7vQ0\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mwkk34\",\"data-styles-preset\":\"D2U3wQFRs\",children:\"privacy policy\"})}),\" by submitting the form\"]})}),className:\"framer-15iu5tu\",\"data-framer-name\":\"I agree to all the privacy policy by submitting the form\",fonts:[\"GF;Fira Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BZY1l.framer-1x9q43l, .framer-BZY1l .framer-1x9q43l { display: block; }\",\".framer-BZY1l.framer-1n2lx6o { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 32px 32px 32px; position: relative; width: 1200px; }\",\".framer-BZY1l .framer-erpre6 { --border-bottom-width: 1px; --border-color: #c1b1ff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 72px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 16px 74px 16px 74px; position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-BZY1l .framer-17j2yhz { cursor: pointer; flex: none; gap: 0px; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-BZY1l .framer-mfpc72 { background-color: #1b1b1b; flex: none; gap: 0px; height: 2px; left: 0px; overflow: visible; position: absolute; top: 14px; width: 18px; }\",\".framer-BZY1l .framer-1ozelfq, .framer-BZY1l .framer-s49gsj, .framer-BZY1l .framer-1rqsczf, .framer-BZY1l .framer-6mtsbj, .framer-BZY1l .framer-1ulashl, .framer-BZY1l .framer-1ik6bqa { flex: none; gap: 0px; height: 2px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 18px; }\",\".framer-BZY1l .framer-ok9mog { background-color: #1b1b1b; flex: none; gap: 0px; height: 2px; left: 0px; overflow: visible; position: absolute; top: 8px; width: 18px; }\",\".framer-BZY1l .framer-v4lvb5 { background-color: #1b1b1b; flex: none; gap: 0px; height: 2px; left: 0px; overflow: visible; position: absolute; top: 2px; width: 18px; }\",\".framer-BZY1l .framer-tinup8 { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BZY1l .framer-44x24o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; }\",\".framer-BZY1l .framer-14ts5zt, .framer-BZY1l .framer-g5el1h, .framer-BZY1l .framer-mmdvnr, .framer-BZY1l .framer-1qxwnfj, .framer-BZY1l .framer-1cy2rhc, .framer-BZY1l .framer-1pfm8h, .framer-BZY1l .framer-1z80y8, .framer-BZY1l .framer-1jdggm4, .framer-BZY1l .framer-1ejb743, .framer-BZY1l .framer-rgdcqs, .framer-BZY1l .framer-114pfk4, .framer-BZY1l .framer-1dzxmlt, .framer-BZY1l .framer-vjs8e1, .framer-BZY1l .framer-ekxgh3, .framer-BZY1l .framer-1wx7h37, .framer-BZY1l .framer-1d4fcia, .framer-BZY1l .framer-1ukl38l, .framer-BZY1l .framer-1oe04j6, .framer-BZY1l .framer-7x4ru0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BZY1l .framer-16vcg1n, .framer-BZY1l .framer-j7u06s, .framer-BZY1l .framer-sv6l8j, .framer-BZY1l .framer-mymqq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-BZY1l .framer-1j7txv7, .framer-BZY1l .framer-1es211o, .framer-BZY1l .framer-1u0psb2, .framer-BZY1l .framer-sv3pz6, .framer-BZY1l .framer-1oine2, .framer-BZY1l .framer-1u9a5kr, .framer-BZY1l .framer-1pqxnvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-fcnay8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-2p4sgx { flex: none; height: 24px; overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-BZY1l .framer-1krw5r0 { bottom: 4px; flex: none; left: 6px; position: absolute; right: 8px; top: 2px; }\",\".framer-BZY1l .framer-g8jfvt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-1lhistv { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-BZY1l .framer-tv3hun { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BZY1l .framer-1cwprnz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-wsgjg8, .framer-BZY1l .framer-1tnylyt, .framer-BZY1l .framer-kjtb2x, .framer-BZY1l .framer-61g8tf, .framer-BZY1l .framer-uamoxo, .framer-BZY1l .framer-1cis0ev, .framer-BZY1l .framer-jvwiu4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BZY1l .framer-1ewgj9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-BZY1l .framer-1sbdmmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-1fxdanu, .framer-BZY1l .framer-8nfo18, .framer-BZY1l .framer-1oite3a, .framer-BZY1l .framer-ittqi7, .framer-BZY1l .framer-n08xf5, .framer-BZY1l .framer-r8haj0, .framer-BZY1l .framer-1gm4mvz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-i2b8rt, .framer-BZY1l .framer-1f3de9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1360px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1ywcvww, .framer-BZY1l .framer-1h5m4t2, .framer-BZY1l .framer-k4wf68, .framer-BZY1l .framer-1mugpap { align-self: stretch; background-color: var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, #dcdcdc); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-BZY1l .framer-etyt6i { background-color: var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, #dcdcdc); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1n1wml9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1360px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-ggkf8g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-4xl5jz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-tgpglk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 178px; }\",\".framer-BZY1l .framer-gdh145 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-8ivhp4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZY1l .framer-1hc7mxf { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZY1l .framer-6fsdhx { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZY1l .framer-166mg5o { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 630px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZY1l .framer-2txjsd { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: 750px; max-width: 1200px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZY1l .framer-1fkrdk7, .framer-BZY1l .framer-3xcdoi, .framer-BZY1l .framer-1hyp0uy, .framer-BZY1l .framer-19ggh0m, .framer-BZY1l .framer-1pw6c0z, .framer-BZY1l .framer-1cmhzqi { align-content: center; align-items: center; background-color: #c1b1ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 58px 0px 4px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-15wvpkc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-11xsq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-yk11fd { flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-BZY1l .framer-4origs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZY1l .framer-18o02n2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-BZY1l .framer-pnww61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-4rt9p2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-15fjto7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1ajrwf5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZY1l .framer-7v63it { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-b7kzab { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-icg9s1, .framer-BZY1l .framer-646zx1 { background-color: var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, #dcdcdc); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-BZY1l .framer-g5e8uc { aspect-ratio: 1 / 1; background-color: var(--token-7d29ec08-4850-409c-b8c1-153919e5dc39, #dcdcdc); flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: hidden; position: relative; width: 12px; }\",\".framer-BZY1l .framer-17sp5ei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 1px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-47py0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-15ixjdy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1360px; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-ukr1xr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-1q7rali { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-n8ug9p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZY1l .framer-1t6vqn2 { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-xbdv8r { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-BZY1l .framer-7f6tqy-container { flex: 1 0 0px; height: 275px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-u1sjeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-azr5pv { 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 0px 32px 0px; position: relative; width: 1200px; }\",\".framer-BZY1l .framer-jslzpg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 40px 32px 40px 32px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-cil4wz-container { flex: none; height: auto; position: relative; width: 90%; }\",\".framer-BZY1l .framer-uv3h1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 0px 64px; position: relative; width: 1136px; }\",\".framer-BZY1l .framer-e33kjd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-114phhi { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 275px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-djjwzl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 7.277227401733398px; height: 275px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-s7zhf8 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 275px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1vhvba1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-1nqjzqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-k3j0c8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #19142b; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; opacity: 0.72; overflow: hidden; padding: 12px 12px 12px 22px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-BZY1l .framer-1cwgmvm { --framer-input-border-radius-bottom-left: 12px; --framer-input-border-radius-bottom-right: 12px; --framer-input-border-radius-top-left: 12px; --framer-input-border-radius-top-right: 12px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"Fira Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 0px; --framer-input-placeholder-color: #999999; flex: 1 0 0px; height: 64px; opacity: 0.72; position: relative; width: 1px; }',\".framer-BZY1l .framer-11s32q6-container { flex: 0.3 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-BZY1l .framer-dpl8gt { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 340px; justify-content: center; overflow: visible; padding: 18px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-3evw5c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1fqtbkz { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-1hrc18x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 7.277227401733398px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZY1l .framer-2zfr53 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 154px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-cshhfb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BZY1l .framer-1hb9vg5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 359px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZY1l .framer-rsm2zz { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #19142b; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.72; overflow: hidden; padding: 12px 12px 12px 22px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZY1l .framer-14fvcq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-BZY1l .framer-hdr5ex { --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Fira Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 600; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: 1 0 0px; height: 40px; position: relative; width: 1px; }',\".framer-BZY1l .framer-cyafxb-container { flex: none; height: 40px; position: relative; width: 113px; }\",\".framer-BZY1l .framer-15iu5tu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...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,'.framer-BZY1l[data-border=\"true\"]::after, .framer-BZY1l [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-BZY1l.framer-1n2lx6o { padding: 34px 32px 32px 32px; width: 810px; } .framer-BZY1l .framer-erpre6 { height: 54px; left: unset; padding: 16px 32px 16px 32px; right: 0px; } .framer-BZY1l .framer-fcnay8, .framer-BZY1l .framer-mymqq9, .framer-BZY1l .framer-rgdcqs { order: 1; } .framer-BZY1l .framer-1lhistv { height: 24px; width: 24px; } .framer-BZY1l .framer-1sbdmmz { gap: 18px; order: 2; } .framer-BZY1l .framer-sv6l8j { order: 0; } .framer-BZY1l .framer-sv3pz6 { order: 2; } .framer-BZY1l .framer-1n1wml9 { padding: 0px 18px 0px 18px; } .framer-BZY1l .framer-ggkf8g { padding: 4px 0px 4px 0px; } .framer-BZY1l .framer-1u9a5kr { flex: 1 0 0px; overflow: hidden; width: 1px; } .framer-BZY1l .framer-gdh145 { padding: 9px 18px 8px 18px; } .framer-BZY1l .framer-166mg5o { height: 400px; } .framer-BZY1l .framer-2txjsd { height: 460px; } .framer-BZY1l .framer-ukr1xr { align-content: center; align-items: center; gap: 32px; justify-content: flex-start; } .framer-BZY1l .framer-xbdv8r { min-height: 200px; } .framer-BZY1l .framer-cil4wz-container { width: 100%; } .framer-BZY1l .framer-uv3h1d { padding: 0px; width: 100%; } .framer-BZY1l .framer-s7zhf8 { flex: 1 0 0px; height: 1px; } .framer-BZY1l .framer-7x4ru0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }}\",\"@media (max-width: 809px) { .framer-BZY1l.framer-1n2lx6o { padding: 40px 18px 32px 18px; width: 390px; } .framer-BZY1l .framer-erpre6 { height: 54px; left: calc(50.00000000000002% - 1fr / 2); padding: 16px 18px 16px 18px; } .framer-BZY1l .framer-tinup8 { --border-bottom-width: 1px; --border-color: var(--token-9a5cb4d4-3b38-45d3-bd27-a8d833f03db4, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #262626; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 18px; width: 160px; } .framer-BZY1l .framer-44x24o { gap: 8px; left: unset; position: relative; top: unset; } .framer-BZY1l .framer-16vcg1n { order: 2; } .framer-BZY1l .framer-j7u06s { order: 0; } .framer-BZY1l .framer-1j7txv7 { order: 3; } .framer-BZY1l .framer-fcnay8 { flex-direction: column; gap: 0px; } .framer-BZY1l .framer-1lhistv { height: 20px; width: 20px; } .framer-BZY1l .framer-1sbdmmz { min-height: 18px; min-width: 18px; } .framer-BZY1l .framer-i2b8rt, .framer-BZY1l .framer-1n1wml9, .framer-BZY1l .framer-6fsdhx, .framer-BZY1l .framer-1f3de9y, .framer-BZY1l .framer-47py0o, .framer-BZY1l .framer-15ixjdy { padding: 0px 8px 0px 8px; } .framer-BZY1l .framer-ggkf8g { padding: 18px 0px 0px 0px; } .framer-BZY1l .framer-4xl5jz { order: 6; } .framer-BZY1l .framer-gdh145 { padding: 8px; } .framer-BZY1l .framer-166mg5o { height: 300px; } .framer-BZY1l .framer-2txjsd { height: 350px; } .framer-BZY1l .framer-15wvpkc { flex-direction: column; gap: 16px; justify-content: flex-start; } .framer-BZY1l .framer-11xsq1 { flex-direction: column; } .framer-BZY1l .framer-4origs { flex-direction: row; gap: unset; justify-content: space-between; width: 100%; } .framer-BZY1l .framer-18o02n2 { align-self: unset; width: min-content; } .framer-BZY1l .framer-4rt9p2 { flex: none; width: 372px; } .framer-BZY1l .framer-1ajrwf5 { width: 90%; } .framer-BZY1l .framer-ukr1xr { align-content: center; align-items: center; gap: 32px; justify-content: flex-start; padding: 0px; } .framer-BZY1l .framer-1t6vqn2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-BZY1l .framer-xbdv8r { align-self: unset; } .framer-BZY1l .framer-7f6tqy-container { height: auto; } .framer-BZY1l .framer-azr5pv { width: 372px; } .framer-BZY1l .framer-cil4wz-container { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7774\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z5EGF_4_R\":{\"layout\":[\"fixed\",\"auto\"]},\"AoT464O0g\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"aGSfy5XD6\":{\"pattern\":\":aGSfy5XD6\",\"name\":\"banner-image\"}}\n * @framerResponsiveScreen\n */const FramerySo2Y7vQ0=withCSS(Component,css,\"framer-BZY1l\");export default FramerySo2Y7vQ0;FramerySo2Y7vQ0.displayName=\"Game Center\";FramerySo2Y7vQ0.defaultProps={height:7774,width:1200};addFonts(FramerySo2Y7vQ0,[{explicitInter:true,fonts:[{family:\"Fira Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnZKvuRB37fF3Wlg.woff2\",weight:\"500\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2\",weight:\"600\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L73LLX4MXUIQK452PKOTWP5BWGOH5ZLA/ZY6RUXWZXZFOSODPQHXSWGSDAMXUPWVD/TGKQVOYGQXPA6FMFNCM7EDKIEKBQKBH5.woff2\",weight:\"700\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/52IIN6R3JEJSB45IG7RFUBVJWDYA3I55/BRMRSLAZOTLGR6QBPJIOQIDMAUPTJ2UA/UCTPHJ5G3WFLZTQWAKOCKPRFKL4IR3MG.woff2\",weight:\"600\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HEW5N77AVU7ITXXZXZ7K3WQS3QNPMUYG/HDNHM5F6K2VZGBPCRH5BLOCSEGUBTLOW/D22S3MA4GK4GHKF5XKUQFHGMFXTHXNFE.woff2\",weight:\"500\"},{family:\"Fira Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PXZ43LXUMISRBKI3JAZRXIT3KCAQT5LX/6PGI734U44FDBEH63LXBIZUQX34PL45P/MITUNP2IVULQXBXY4CV6OFWPPCE2UU26.woff2\",weight:\"400\"},{family:\"Fira Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/firasans/v17/va9B4kDNxMZdWfMOD5VnSKzuRB37fF3Wlg.woff2\",weight:\"600\"}]},...CaseStudies_DesktopCardFonts,...CommentsSectionFonts,...Button2Fonts,...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),...componentPresets.fonts?.[\"O2Hjfa9JZ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"O2Hjfa9JZ\"]):[],...componentPresets.fonts?.[\"tcsp01ffJ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"tcsp01ffJ\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySo2Y7vQ0\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z5EGF_4_R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AoT464O0g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7774\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"aGSfy5XD6\\\":{\\\"pattern\\\":\\\":aGSfy5XD6\\\",\\\"name\\\":\\\"banner-image\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}