{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js", "ssg:https://framerusercontent.com/modules/gCP3xpnc3Rr7GlACUyWg/ziuyOyhI8r8W8ByftZTV/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import*as React from\"react\";/**\n * @framerRecordIdKey id\n * @framerSlug ZRYGHD43I\n * @framerEnumToDisplayNameUtils 1\n * @framerData\n */ const data=[{BadPYQpze:true,ClpXv_kAo:{src:new URL(\"assets/xXFuCvxkhz5WEzbYfvlgSkSlSo.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/xXFuCvxkhz5WEzbYfvlgSkSlSo.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/xXFuCvxkhz5WEzbYfvlgSkSlSo.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/xXFuCvxkhz5WEzbYfvlgSkSlSo.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/xXFuCvxkhz5WEzbYfvlgSkSlSo.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:2,hpmyG6YHx:\"CXDP1AhQK\",id:\"lArCWbV7A\",qDqb7BIdA:\"Within the design realm, innovation acts as our guiding star, illuminating the intricate pathways of boundless creativity and limitless possibilities.\",rWmqyPKkk:\"2023-02-28T00:00:00.000Z\",sb3daLmIQ:\"Shigeru Uchida: Pioneering 20th-Century Design Thinking on a new level\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"Design thinking\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Step into the realm of design brilliance as we venture into the captivating world of Shigeru Uchida, an artistic visionary who left an indelible mark on 20th-century design landscapes. Each brushstroke of his creative genius infused functionality with artistry, a delicate dance that defined his ethos. Embark with us on this journey as we unravel the story behind a design luminary. Shigeru Uchida\u2019s legacy shines brightly, inspiring us to rethink and reimagine the boundaries of design thinking. Form Studio proudly presents a deep dive into Uchida\u2019s influence on the ever-evolving design narrative. Uchida\u2019s creations were more than just objects; they were conversations between human interaction and design innovation. From boundary-pushing furniture concepts to architecturally profound structures, Uchida\u2019s portfolio stands as a testament to the marriage of form and function. His legacy, a symphony of minimalism and meticulous craftsmanship, echoes through generations. Join us as we dissect the essence of his designs, exploring the stories hidden within curves and angles. Each piece speaks a language of its own, conveying Uchida\u2019s devotion to elevating everyday experiences through design.\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"As we navigate through the chapters of design history, we draw inspiration from Uchida\u2019s commitment to pushing boundaries. Explore the intricacies of his work, from the intricate joints to the artful fusion of materials. These elements not only showcase Uchida\u2019s technical prowess but also his profound understanding of how design shapes human interaction and emotions. Together, let\u2019s celebrate the brilliance of Shigeru Uchida and his lasting impact on the world of design. Through our explorations, we seek to ignite conversations, foster creativity, and pay homage to those who shape our design universe. Stay tuned for more captivating insights as we continue to unveil the stories of design legends, providing you with a front-row seat to the evolution of design thinking.\"})]}),ZRYGHD43I:\"shigeru-uchida\"},{BadPYQpze:false,ClpXv_kAo:{src:new URL(\"assets/bOKZoFwOnx5cyB6CIaHn3zE3gAU.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/bOKZoFwOnx5cyB6CIaHn3zE3gAU.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/bOKZoFwOnx5cyB6CIaHn3zE3gAU.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/bOKZoFwOnx5cyB6CIaHn3zE3gAU.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/bOKZoFwOnx5cyB6CIaHn3zE3gAU.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:3,hpmyG6YHx:\"h6VOjpznJ\",id:\"LJBpSjpua\",qDqb7BIdA:\"In the pages of design, every stroke of inspiration, every curated piece, crafts a narrative that transcends time and resonates with the depths of creativity.\",rWmqyPKkk:\"2023-02-28T00:00:00.000Z\",sb3daLmIQ:\"Design Chronicles Unleashed: Studio Form\u2019s Curated Magazine\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"Form magazine\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Form Studio proudly presents a treasury of inspiration, storytelling, and design mastery that transcends boundaries. This isn\u2019t just a magazine; it\u2019s an ode to the spirit of design, a celebration of form and function. In the heart of our studio, where ideas intertwine with innovation, the concept of our curated magazine was born. A collection of curated gems, this magazine is a testament to our commitment to sharing the essence of design, from studios to studios, and every creative soul in between. Within the pages of this magazine, you\u2019ll discover a tapestry of design stories \u2013 a symphony of inspiration that spans continents and styles. Fundst\\xfccke, carefully unearthed by our dedicated team, take center stage, inviting you to explore the nuanced world of design that often lies beneath the surface. But this magazine is more than a mere collection; it\u2019s a journey through the creative cosmos. Immerse yourself in our works, from captivating projects to innovative solutions. Witness the transformation of ideas into reality, the design process laid bare for your exploration. As you traverse these pages, you\u2019ll uncover more than just design; you\u2019ll find a story that resonates with your creative soul. Each piece curated with intention, each story woven with care - this magazine is an invitation to join us in celebrating the power of design, a universal language that unites us all. From the evolution of design trends to the depth of human interaction, our magazine opens doors to thought-provoking insights. It\u2019s a meeting ground for designers, a gathering of minds that push boundaries and redefine norms. This magazine is for you \u2013 the visionary, the dreamer, the creative soul hungry for inspiration. Form Studio\u2019s curated magazine is a tribute to the belief that design is more than aesthetics; it\u2019s a way of life. It\u2019s a celebration of the design narrative that weaves through time, connecting past, present, and future. Join us on this journey as we unearth hidden gems, celebrate the power of design, and ignite conversations that shape our creative universe.\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Stay tuned for the unveiling of this design chronicle. In its pages, you\u2019ll find a universe of inspiration, a symposium of ideas, and an exploration of design\u2019s boundless possibilities. Welcome to the world of Form Studio\u2019s curated magazine, where design is a story waiting to be told. Discover the stories that shape our creative universe. Experience the symphony of design, the curation of inspiration, and the celebration of artistic endeavor. Join us as we embark on this voyage through design\u2019s kaleidoscope, a journey that invites you to explore, engage, and immerse yourself in the artistry that defines our existence. Stay tuned as we prepare to unleash the next chapter of Form Studio\u2019s curated magazine - a tribute to design\u2019s infinite possibilities.\"})]}),ZRYGHD43I:\"design-chronicles-unleashed\"},{BadPYQpze:true,ClpXv_kAo:{src:new URL(\"assets/pO4KCsGIbaSjQBd9sLDYp3CLlzg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/pO4KCsGIbaSjQBd9sLDYp3CLlzg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/pO4KCsGIbaSjQBd9sLDYp3CLlzg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/pO4KCsGIbaSjQBd9sLDYp3CLlzg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/pO4KCsGIbaSjQBd9sLDYp3CLlzg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:4,hpmyG6YHx:\"qNMqKWnOD\",id:\"wWc08nzs8\",qDqb7BIdA:\"In the symphony of architecture, every line, every curve, every detail is a note that composes a harmonious masterpiece of design and architecture.\",rWmqyPKkk:\"2023-02-06T00:00:00.000Z\",sb3daLmIQ:\"Minimalist Elegance: Studio Form\u2019s new architecture  in Melbourne\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"New studio\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Step into a realm where architectural poetry meets modern ingenuity as we journey through the creation of a minimalist haven in the heart of Melbourne. Studio Form, in collaboration with the visionary architect soon to be revealed, is orchestrating a symphony of space and structure that redefines the boundaries of contemporary design. Join us on this architectural odyssey as we unravel the tale of a space that embodies the very essence of minimalism, inspiring novel interpretations and fresh creativity. Form Studio proudly presents an exclusive preview of this upcoming architectural wonder. In the heart of Melbourne, where the urban pulse meets artistic pulse, Studio Form is crafting a studio that echoes the minimalist ethos. Functionality dances in perfect synchrony with aesthetics, inviting a seamless flow of ideas and inspirations. This collaboration with an esteemed architect, whose name will soon grace our narrative, is a testament to the synergy of minds dedicated to elevating design. As we delve into the intricacies of this project, we explore how minimalism breathes life into every corner. The spaces are more than just walls; they are canvases waiting for innovation. Studio Form\u2019s dedication to creating an environment that whispers \u201Edesign\u201C in every crevice is inspiring. The minimalist palette, carefully curated to embrace muted tones and clean lines, speaks of sophistication and refined taste.\"}),/*#__PURE__*/ _jsx(\"h2\",{children:\"Form & Function\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Step into a realm where architectural poetry meets modern ingenuity as we journey through the creation of a minimalist haven in the heart of Melbourne. Studio Form, in collaboration with the visionary architect soon to be revealed, is orchestrating a symphony of space and structure that redefines the boundaries of contemporary design. Join us on this architectural odyssey as we unravel the tale of a space that embodies the very essence of minimalism, inspiring novel interpretations and fresh creativity.  Form Studio proudly presents an exclusive preview of this upcoming architectural wonder. In the heart of Melbourne, where the urban pulse meets artistic pulse, Studio Form is crafting a studio that echoes the minimalist ethos. Functionality dances in perfect synchrony with aesthetics, inviting a seamless flow of ideas and inspirations. This collaboration with an esteemed architect, whose name will soon grace our narrative, is a testament to the synergy of minds dedicated to elevating design. As we delve into the intricacies of this project, we explore how minimalism breathes life into every corner. The spaces are more than just walls; they are canvases waiting for innovation. Studio Form\u2019s dedication to creating an environment that whispers \u201Edesign\u201C in every crevice is inspiring. The minimalist palette, carefully curated to embrace muted tones and clean lines, speaks of sophistication and refined taste.\"})]}),ZRYGHD43I:\"minimalist-elegance\"},{BadPYQpze:false,ClpXv_kAo:{src:new URL(\"assets/kQbYRDV0JB95UUSzhIdfJMHFOSA.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/kQbYRDV0JB95UUSzhIdfJMHFOSA.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/kQbYRDV0JB95UUSzhIdfJMHFOSA.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/kQbYRDV0JB95UUSzhIdfJMHFOSA.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/kQbYRDV0JB95UUSzhIdfJMHFOSA.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:5,hpmyG6YHx:\"qNMqKWnOD\",id:\"NfI0b15g6\",qDqb7BIdA:\"In the digital realm, design is the language that bridges creativity and connectivity, shaping experiences with every click.\",rWmqyPKkk:\"2023-01-12T00:00:00.000Z\",sb3daLmIQ:\"Elevating Digital Presence: Unveiling Form Studio\u2019s New Website\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"We are live\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Welcome to a new chapter in our design journey as we proudly unveil the culmination of months of creativity, innovation, and collaboration - Form Studio\u2019s brand-new website. This digital canvas is not just a platform; it\u2019s a testament to our commitment to functional aesthetics and design excellence. With a harmonious blend of clean lines, typography mastery, and the distinct identity of our corporate font, FF Grotesk, our website stands as a reflection of our design ethos. The Form Studio is thrilled to present this digital symphony that intertwines simplicity with sophistication, animation with functionality. As the world embraces the digital landscape, we embarked on a quest to create a virtual extension of our studio\u2019s essence. The website\u2019s design marries the principles of minimalism with the power of typographic expression. Every element, every pixel, is a brushstroke that paints the narrative of our design philosophy. The use of FF Grotesk as our corporate font resonates deeply with our belief in the seamless harmony between form and function. It serves as a bridge that connects visual aesthetics with content clarity, facilitating an immersive browsing experience. This font is more than typography; it\u2019s the voice of our digital presence. Animations dance across the screen, adding a touch of dynamism to the browsing experience. These carefully orchestrated movements guide your journey, enhancing engagement and interaction. The grid, a simple yet profound design element, organizes our content with precision, allowing for effortless exploration. Beyond aesthetics, our new website is a testament to functionality. Each section is thoughtfully curated to serve as a design inspiration hub, a platform for storytelling, and a resource for those seeking to delve into our creative universe. From case studies to design insights, our website is a living embodiment of our passion for sharing design knowledge.\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"As the curtain rises on this digital masterpiece, we extend our gratitude to the collaborative effort that brought it to life. Our design team, developers, and creative minds worked hand in hand, ensuring that every pixel embodies the essence of Form Studio. Explore our new website, immerse yourself in the fusion of design and technology, and experience the harmonious dance of aesthetics and functionality. We invite you to navigate through the pages, discover our projects, and learn more about the stories that shape our design narrative. With the click of a button, you\u2019re invited to explore a digital realm that mirrors the heart and soul of Form Studio.\"})]}),ZRYGHD43I:\"elevating-digital-presence\"},{BadPYQpze:true,ClpXv_kAo:{src:new URL(\"assets/nhCKc8Ry3WsWrAZ5Dx1cjtqT2vg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/nhCKc8Ry3WsWrAZ5Dx1cjtqT2vg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/nhCKc8Ry3WsWrAZ5Dx1cjtqT2vg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/nhCKc8Ry3WsWrAZ5Dx1cjtqT2vg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/nhCKc8Ry3WsWrAZ5Dx1cjtqT2vg.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:2,hpmyG6YHx:\"CXDP1AhQK\",id:\"y5bmMQupN\",qDqb7BIdA:\"In the world of design, every piece tells a story. A narrative woven with craftsmanship, innovation, and the indomitable spirit of the creator.\",rWmqyPKkk:\"2023-03-15T00:00:00.000Z\",sb3daLmIQ:\"Sculpted Elegance: Exploring Massimo Vignelli\u2019s Masterpiece Dining Table\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"Massimo Vignelli\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Three marble columns stand as pillars of creativity, each one distinct in diameter, yet unified by a shared narrative. Their facades bear the marks of a process that defies convention - systematically chipped to reveal a surface texture that is simultaneously rough and invitingly tactile. Upon closer inspection, the stone\u2019s innate structure, pattern, and color are unveiled in all their natural splendor. This dining table is more than furniture; it\u2019s a testament to the craftsmanship that transforms raw materials into poetry. The intricate manufacturing technique used to create this masterpiece is a testament to Vignelli\u2019s commitment to pushing boundaries. It\u2019s a celebration of the refinement that emerges from playful forms, a design philosophy that whispers elegance through every angle. As we explore this table\u2019s contours, we uncover a dance of form and function. The marriage of marble and glass creates an interplay of textures - the cool, solid foundation of marble against the transparent allure of glass. The juxtaposition embodies Vignelli\u2019s design ethos, where every element serves a purpose, every detail contributes to the narrative. Though it carries the marks of time, this table wears its vintage condition with grace. A few light scratches on the top and a minor chip on one of the legs speak of a life well-lived, a history embedded in the very fabric of the piece. These imperfections become part of its story, a testament to its journey through time. Massimo Vignelli\u2019s design philosophy is embodied in every facet of this dining table. The meticulous craftsmanship, the interplay of materials, the celebration of form - these are the hallmarks of a true masterpiece. It stands not just as an object, but as a reminder that design is a journey, a fusion of creativity and ingenuity that leaves an indelible mark on the world. Join us as we celebrate the legacy of Massimo Vignelli and the enchanting tale of this dining table. Through our explorations, we seek to unearth the stories behind the designs that shape our world, inviting you to immerse yourself in the artistry, innovation, and inspiration that define the heart of design. Stay tuned for more captivating insights as we continue to unveil the narratives of design legends.\"})]}),ZRYGHD43I:\"sculpted-elegance\"},{BadPYQpze:true,ClpXv_kAo:{src:new URL(\"assets/U8l2RE8SCvaBv1Z6nTzUMQ8JFc.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href,srcSet:`${new URL(\"assets/512/U8l2RE8SCvaBv1Z6nTzUMQ8JFc.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 512w, ${new URL(\"assets/1024/U8l2RE8SCvaBv1Z6nTzUMQ8JFc.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 1024w, ${new URL(\"assets/2048/U8l2RE8SCvaBv1Z6nTzUMQ8JFc.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2048w, ${new URL(\"assets/U8l2RE8SCvaBv1Z6nTzUMQ8JFc.jpg\",\"https://framerusercontent.com/modules/1GXjSsYLuswWmEZxW1LJ/GDuKyaRm66xDoPlycpbO/Z3w5LqrRn.js\").href} 2500w`},fPkk3FWQI:2,hpmyG6YHx:\"h6VOjpznJ\",id:\"oMybpU_B_\",qDqb7BIdA:\"In the arena of AI and design, innovation dances to the rhythm of NBA prowess, creating a symphony of visual wonder that defies gravity and reason\",rWmqyPKkk:\"2023-04-08T00:00:00.000Z\",sb3daLmIQ:\"AI-Powered Hoops: An Ode to NBA Greatness with Mind-Bending NFTs\",UIGvtVCph:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"h2\",{children:\"New NFT drop\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"Ladies and gentlemen, sports fanatics, and design aficionados, gather \u2019round for a tale that fuses the electric energy of the NBA with the wild imagination of AI-generated animations. Studio Form proudly unveils a journey that transforms basketball into an interactive dance, choreographed by the magic of algorithms and inspired by none other than the untamed spirit of the Denver Nuggets. Imagine a basketball that\u2019s not just a ball; it\u2019s a digital maestro, swaying to the rhythms of the Denver Nuggets\u2019 finest performances. With every slam dunk, alley-oop, and three-pointer, this AI-infused sphere takes center stage, mirroring the tempo and tenacity of the team that captures the essence of the game. But wait, there\u2019s more! As the Denver Nuggets conquer the court, this AI-powered wonder shifts into overdrive, its movements accelerating to match the heart-racing pace of the game. It\u2019s not just a basketball; it\u2019s a living, breathing tribute to the team that plays with unparalleled passion. Think of it as a basketball that\u2019s more like a teammate, responding to the game\u2019s every nuance with a flair that defies reality. When the Denver Nuggets deliver a slam dunk that ignites the crowd, this basketball echoes the thrill, twisting, turning, and spinning like a digital acrobat to capture the electrifying spirit.\"}),/*#__PURE__*/ _jsx(\"p\",{children:\"And if you think this is just a dance, think again. When the Nuggets nail a three-pointer, this AI wonder takes its own shot at the virtual hoop, mirroring their precision with its own astounding accuracy. It\u2019s a digital slam dunk that leaves you questioning the boundaries of technology and design. This isn\u2019t just an NFT; it\u2019s an ode to the pulse-pounding drama of the NBA, a fusion of athleticism and algorithmic artistry. It\u2019s an invitation to join the ranks of the Denver Nuggets, embracing their journey as your own while watching a basketball weave its digital tapestry in real-time response.So, dear readers, brace yourselves for a visual spectacle that blurs the lines between reality and the surreal, the tangible and the digital. Stay tuned for the unveiling of these exclusive AI-generated NFTs, a testament to the synergy between AI, design, and the heart-pounding drama of NBA greatness. Witness the convergence of technology and sport, art and innovation, in a dance that\u2019s as mesmerizing as a game-winning shot at the buzzer. Stay tuned for more such drops.\"})]}),ZRYGHD43I:\"ai-powered-hoops\"}];data.forEach(item=>Object.freeze(item));addPropertyControls(data,{sb3daLmIQ:{defaultValue:\"\",title:\"Title\",type:ControlType.String},ZRYGHD43I:{title:\"Slug\",type:ControlType.String},rWmqyPKkk:{defaultValue:\"\",title:\"Date\",type:ControlType.Date},ClpXv_kAo:{title:\"Image\",type:ControlType.ResponsiveImage},hpmyG6YHx:{defaultValue:\"CXDP1AhQK\",options:[\"CXDP1AhQK\",\"h6VOjpznJ\",\"qNMqKWnOD\"],optionTitles:[\"Objects\",\"Design\",\"Studio\"],title:\"Category\",type:ControlType.Enum},fPkk3FWQI:{defaultValue:0,displayStepper:true,title:\"Reading Time\",type:ControlType.Number},qDqb7BIdA:{defaultValue:\"\",displayTextArea:true,title:\"Lead\",type:ControlType.String},UIGvtVCph:{defaultValue:\"\",title:\"Content\",type:ControlType.RichText},BadPYQpze:{defaultValue:false,title:\"CTA Inverted\",type:ControlType.Boolean}});data[\"displayName\"]=\"Blog\";export default data;export const hpmyG6YHxToDisplayName=(value,locale)=>{const fallbackLocale=locale===null||locale===void 0?void 0:locale.fallback;switch(value){case\"CXDP1AhQK\":return\"Objects\";case\"h6VOjpznJ\":return\"Design\";case\"qNMqKWnOD\":return\"Studio\";default:return\"\";}};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerData\":\"\",\"framerSlug\":\"ZRYGHD43I\",\"framerEnumToDisplayNameUtils\":\"1\",\"framerRecordIdKey\":\"id\",\"framerContractVersion\":\"1\"}},\"hpmyG6YHxToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{withTransformOnload}from\"https://framerusercontent.com/modules/2TvjpVXqzTs5TKmlaNKh/sEkNBJBZNgMQ7mD851Kr/Overrides.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import ColaStickyNav from\"#framer/local/canvasComponent/gy4pUFmLk/gy4pUFmLk.js\";import ColaFooter from\"#framer/local/canvasComponent/laWDNHcqo/laWDNHcqo.js\";import ProjectTile from\"#framer/local/canvasComponent/P60YtaP7K/P60YtaP7K.js\";import{withAnimateChar as withAnimateChar2}from\"#framer/local/codeFile/Cwn4lXi/DesktopLGwithAnimatedText.js\";import{withAnimateChar as withAnimateChar1}from\"#framer/local/codeFile/Dg7kMH5/Mobile_Character_Override.js\";import{withAnimateChar}from\"#framer/local/codeFile/eafo9Sc/Tablet_Character_Override_1.js\";import{withAnimateChar as withAnimateChar3}from\"#framer/local/codeFile/bBgMeR4/withAnimatedText.js\";import{withFollowMouse}from\"#framer/local/codeFile/ojgYGQP/withCursor.js\";import Projects,{enumToDisplayNameFunctions}from\"#framer/local/collection/pWeF0Nvyb/pWeF0Nvyb.js\";import Blog from\"#framer/local/collection/Z3w5LqrRn/Z3w5LqrRn.js\";import*as sharedStyle2 from\"#framer/local/css/eU7VI2S7e/eU7VI2S7e.js\";import*as sharedStyle8 from\"#framer/local/css/fDL5AeLJS/fDL5AeLJS.js\";import*as sharedStyle3 from\"#framer/local/css/LcJv6lAA2/LcJv6lAA2.js\";import*as sharedStyle6 from\"#framer/local/css/MD7XDUpes/MD7XDUpes.js\";import*as sharedStyle4 from\"#framer/local/css/PFNsAh0oq/PFNsAh0oq.js\";import*as sharedStyle5 from\"#framer/local/css/QiDr8NhVa/QiDr8NhVa.js\";import*as sharedStyle1 from\"#framer/local/css/S10cASEsh/S10cASEsh.js\";import*as sharedStyle7 from\"#framer/local/css/sWkcbvgpM/sWkcbvgpM.js\";import*as sharedStyle from\"#framer/local/css/Y9hHgAOKv/Y9hHgAOKv.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionDivWithFollowMouse=withFollowMouse(motion.div);const RichTextWithAnimateChar=withAnimateChar(RichText);const RichTextWithAnimateChar1=withAnimateChar1(RichText);const MotionDivWithAnimateChar1=withAnimateChar1(motion.div);const ColaStickyNavFonts=getFonts(ColaStickyNav);const RichTextWithTransformOnload=withTransformOnload(RichText);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const RichTextWithAnimateChar2=withAnimateChar2(RichText);const RichTextWithAnimateChar3=withAnimateChar3(RichText);const RichTextWithAnimateChar1WithFX=withFX(withAnimateChar1(RichText));const ProjectTileFonts=getFonts(ProjectTile);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const ColaFooterFonts=getFonts(ColaFooter);const cycleOrder=[\"WQLkyLRf1\",\"vytnxZV_t\",\"Gdhz7E2uO\"];const breakpoints={Gdhz7E2uO:\"(max-width: 809px)\",vytnxZV_t:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KTDll\";const variantClassNames={Gdhz7E2uO:\"framer-v-2py4ww\",vytnxZV_t:\"framer-v-y8m92x\",WQLkyLRf1:\"framer-v-72rtr7\"};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 transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const animation={opacity:0,rotate:0,scale:1,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:80,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const transition2={damping:55,delay:.3,mass:10,stiffness:74,type:\"spring\"};const animation2={opacity:0,rotate:0,scale:1,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:.6,rotate:0,scale:1,transition:transition3};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Gdhz7E2uO\",Tablet:\"vytnxZV_t\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZRYGHD43INKUvqzf1V,O2CsJYpHpNKUvqzf1V,RwRQS2g1DNKUvqzf1V,YpOlZz3tqNKUvqzf1V,YsHTDWziDNKUvqzf1V,s2nlB5IkINKUvqzf1V,XO1oyEwppNKUvqzf1V,idNKUvqzf1V,ZRYGHD43IXSmEWjE8K,idXSmEWjE8K,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-KTDll`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-KTDll`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const m8nsziuJO42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1g52gvb=overlay=>activeVariantCallback(async(...args)=>{await delay(()=>overlay.hide(),200);});const ref1=React.useRef(null);const id=useRouteElementId(\"SC6KaHTx0\");const ref2=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Gdhz7E2uO\")return!isBrowser();return true;};const isDisplayed1=()=>{if(baseVariant===\"Gdhz7E2uO\")return true;return!isBrowser();};const id1=useRouteElementId(\"OJFc7eXma\");const ref3=React.useRef(null);const id2=useRouteElementId(\"NgB_tPfxl\");const ref4=React.useRef(null);const id3=useRouteElementId(\"XCc3BvWIk\");const ref5=React.useRef(null);const isDisplayed2=()=>{if([\"vytnxZV_t\",\"Gdhz7E2uO\"].includes(baseVariant))return!isBrowser();return true;};const isDisplayed3=()=>{if(baseVariant===\"vytnxZV_t\")return true;return!isBrowser();};const id4=useRouteElementId(\"ozgXYY6mY\");const dynamicRef=useDynamicRefs();const router=useRouter();const id5=useRouteElementId(\"N2PCSESo0\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithFollowMouse,{className:\"framer-jm04zz\",\"data-framer-name\":\"Cursor\",name:\"Cursor\"}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-inhjkw\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2667,pixelHeight:4e3,pixelWidth:2667,sizes:\"100vw\",src:\"https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg\",srcSet:\"https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg 2667w\"}},vytnxZV_t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2667,pixelHeight:4e3,pixelWidth:2667,sizes:\"100vw\",src:\"https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg\",srcSet:\"https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/YedVCUebiBRc5HWGmFmaM23qsI.jpg 2667w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2088,intrinsicWidth:3154,pixelHeight:2088,pixelWidth:3154,sizes:\"100vw\",src:\"https://framerusercontent.com/images/pbxJItjw4Yyq9L0jtPXeuGw71g.jpg\",srcSet:\"https://framerusercontent.com/images/pbxJItjw4Yyq9L0jtPXeuGw71g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pbxJItjw4Yyq9L0jtPXeuGw71g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pbxJItjw4Yyq9L0jtPXeuGw71g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pbxJItjw4Yyq9L0jtPXeuGw71g.jpg 3154w\"},className:\"framer-1ilfkv\",\"data-framer-name\":\"Section\",id:id,name:\"Section\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x0fn1h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djgwj4\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nnspgk hidden-2py4ww\",\"data-framer-name\":\"Desktop\",name:\"Desktop\",children:[/*#__PURE__*/_jsx(RichTextWithAnimateChar,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"COLA\"})}),className:\"framer-u3ica4\",fonts:[\"CUSTOM;Archivo Expanded Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithAnimateChar,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"STUDIOS\"})}),className:\"framer-1luqb7c\",fonts:[\"CUSTOM;Archivo Expanded Black\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithAnimateChar1,{className:\"framer-g5skgo hidden-72rtr7 hidden-y8m92x\",\"data-framer-name\":\"Mobile\",name:\"Mobile\",children:[/*#__PURE__*/_jsx(RichTextWithAnimateChar1,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"COLA\"})}),className:\"framer-kkxsvy\",fonts:[\"CUSTOM;Archivo Expanded Black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithAnimateChar1,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"STUDIOS\"})}),className:\"framer-1f4h5ay\",fonts:[\"CUSTOM;Archivo Expanded Black\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6rkpd\",\"data-framer-name\":\"Scroll Container\",name:\"Scroll Container\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1jghawn-container\",id:\"1jghawn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{variant:overlay.visible?\"Z7z4vHD5l\":\"B96i96W7m\"},vytnxZV_t:{variant:\"IkRWcKyO9\"}},children:/*#__PURE__*/_jsx(ColaStickyNav,{height:\"100%\",id:\"Fz6C4AmXC\",layoutId:\"Fz6C4AmXC\",m8nsziuJO:m8nsziuJO42m929(overlay),style:{height:\"100%\",width:\"100%\"},variant:\"XMpEZ16AV\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-864r07\",\"data-framer-portal-id\":\"1jghawn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"xhv2X0XRE\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14x7i0o\",\"data-framer-name\":\"Menu Items\",\"data-framer-portal-id\":\"1jghawn\",name:\"Menu Items\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15hiylb\",children:/*#__PURE__*/_jsx(RichTextWithTransformOnload,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Home\"})})})}),className:\"framer-50yus4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rx1vf hidden-72rtr7 hidden-y8m92x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"i1u26HxDt\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"SERVICES\"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithTransformOnload,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Home\"})})})}),className:\"framer-urzvqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-180scpr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nPasMvzZQ\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Projects\"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithTransformOnload,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dvOWJ5bSe\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Projects\"})})})}),className:\"framer-1g6x04d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i71vlc\",children:/*#__PURE__*/_jsx(RichTextWithTransformOnload,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l4IZkCvgg\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Contact\"})})})}),className:\"framer-175gru1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-epzsv7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WL0ATVtHF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"ABOUT\"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithTransformOnload,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-17w2tf1\",\"data-styles-preset\":\"Y9hHgAOKv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WL0ATVtHF\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pdbkry\",\"data-styles-preset\":\"S10cASEsh\",children:\"Studio\"})})})}),className:\"framer-m2v6bc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xb5re0\",\"data-framer-name\":\"Close\",\"data-framer-portal-id\":\"1jghawn\",name:\"Close\",onTap:onTap1g52gvb(overlay),children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kof369\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pkh94a\",\"data-styles-preset\":\"eU7VI2S7e\",style:{\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(40, 40, 40))\"},children:\"(\"})}),className:\"framer-284kqb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nizbf8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pkh94a\",\"data-styles-preset\":\"eU7VI2S7e\",style:{\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(40, 40, 40))\"},children:\"Close\"})}),className:\"framer-104egql\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kg5kcw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pkh94a\",\"data-styles-preset\":\"eU7VI2S7e\",style:{\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(40, 40, 40))\"},children:\")\"})}),className:\"framer-5br1hn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ahg1ng\",\"data-framer-name\":\"Section\",id:id1,name:\"Section\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x2c9b0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RJTiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"DIN Pro Bold\", \"DIN Pro Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"5px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:[\"WELCOME TO\",/*#__PURE__*/_jsx(\"br\",{}),\"COLA STUDIOS\"]})}),fonts:[\"CUSTOM;DIN Pro Bold\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:647,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1m18iwe\",\"data-styles-preset\":\"LcJv6lAA2\",children:\"WELCOME TO COLA STUDIOS\"})}),className:\"framer-q08zd5\",fonts:[\"Inter\"],id:id2,ref:ref4,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s5ju08\",\"data-styles-preset\":\"PFNsAh0oq\",children:\"We believe in the transformative power of comfort, craftsmanship, and individuality. Our design philosophy centers on the recognition of one-of-a-kind pieces that infuse character and personality into a home. Our approach seamlessly blends vintage and contemporary pieces, ensuring each project will stand the test of time.\"})}),className:\"framer-1knxffy\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-whkquo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17rrw9k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kk8y6oW_T\",isMixedBorderRadius:false,layoutId:\"kk8y6oW_T\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/9rlp3zyI93zLiH3RbvVylh17NDo.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/f8LWWcjK0DTDTSwWG8Pl3OP98Y.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1dfcas1\",\"data-framer-name\":\"Section\",name:\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19151gu\",id:id3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ep4uko\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichTextWithAnimateChar2,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projects\"})}),className:\"framer-18mgxy8 hidden-y8m92x hidden-2py4ww\",\"data-framer-name\":\"Desktop\",fonts:[\"CUSTOM;Archivo Expanded Black\"],name:\"Desktop\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithAnimateChar3,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projects\"})}),className:\"framer-1fapk3y hidden-72rtr7 hidden-2py4ww\",\"data-framer-name\":\"Tablet\",fonts:[\"CUSTOM;Archivo Expanded Black\"],name:\"Tablet\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichTextWithAnimateChar1WithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad9b4115-c8bf-4757-af13-005f7e571fb7, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Projects\"})}),className:\"framer-13scad8 hidden-72rtr7 hidden-y8m92x\",\"data-framer-name\":\"Mobile\",fonts:[\"CUSTOM;Archivo Expanded Black\"],name:\"Mobile\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3fizfg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-23vyjg\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{name:\"ZRYGHD43I\",type:\"Identifier\"},{name:\"O2CsJYpHp\",type:\"Identifier\"},{name:\"RwRQS2g1D\",type:\"Identifier\"},{name:\"YpOlZz3tq\",type:\"Identifier\"},{name:\"YsHTDWziD\",type:\"Identifier\"},{name:\"s2nlB5IkI\",type:\"Identifier\"},{name:\"XO1oyEwpp\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection=>collection.map(({ZRYGHD43I:ZRYGHD43INKUvqzf1V,O2CsJYpHp:O2CsJYpHpNKUvqzf1V,RwRQS2g1D:RwRQS2g1DNKUvqzf1V,YpOlZz3tq:YpOlZz3tqNKUvqzf1V,YsHTDWziD:YsHTDWziDNKUvqzf1V,s2nlB5IkI:s2nlB5IkINKUvqzf1V,XO1oyEwpp:XO1oyEwppNKUvqzf1V,id:idNKUvqzf1V},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`NKUvqzf1V-${idNKUvqzf1V}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s2nlB5IkI:s2nlB5IkINKUvqzf1V},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ir28vi\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{s2nlB5IkI:s2nlB5IkINKUvqzf1V},webPageId:\"pSjIbl0ap\"},implicitPathVariables:undefined},{href:{pathVariables:{s2nlB5IkI:s2nlB5IkINKUvqzf1V},webPageId:\"pSjIbl0ap\"},implicitPathVariables:undefined},{href:{pathVariables:{s2nlB5IkI:s2nlB5IkINKUvqzf1V},webPageId:\"pSjIbl0ap\"},implicitPathVariables:undefined}],children:resolvedLinks=>{var _enumToDisplayNameFunctions_YsHTDWziD;return /*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{ref:dynamicRef(`${ZRYGHD43INKUvqzf1V}-${id4}`),target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.2,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{ref:dynamicRef(`${ZRYGHD43INKUvqzf1V}-${id4}`),target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jfijyc-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{G6300ScRf:resolvedLinks[2]},vytnxZV_t:{G6300ScRf:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ProjectTile,{ddQMkdkdo:toResponsiveImage(O2CsJYpHpNKUvqzf1V),G5KBM_7bd:false,G6300ScRf:resolvedLinks[0],H2POhTSwb:false,height:\"100%\",id:\"FyRJMBw3w\",IWWT0RpbH:YpOlZz3tqNKUvqzf1V,layoutId:\"FyRJMBw3w\",or8yE_DlV:(_enumToDisplayNameFunctions_YsHTDWziD=enumToDisplayNameFunctions[\"YsHTDWziD\"])===null||_enumToDisplayNameFunctions_YsHTDWziD===void 0?void 0:_enumToDisplayNameFunctions_YsHTDWziD.call(enumToDisplayNameFunctions,YsHTDWziDNKUvqzf1V,activeLocale),pedAo6Ikh:RwRQS2g1DNKUvqzf1V,qd10VzCH_:XO1oyEwppNKUvqzf1V,style:{width:\"100%\"},TEW6XRezz:\"View\",width:\"100%\"})})})})});}})})})},idNKUvqzf1V);})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1feit0h\",\"data-framer-name\":\"Scroll Triggers\",name:\"Scroll Triggers\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"ZRYGHD43I\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection1=>collection1.map(({ZRYGHD43I:ZRYGHD43IXSmEWjE8K,id:idXSmEWjE8K},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`XSmEWjE8K-${idXSmEWjE8K}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZRYGHD43I:ZRYGHD43IXSmEWjE8K},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-drintr\",id:`${ZRYGHD43IXSmEWjE8K}-${id4}`,ref:dynamicRef(`${ZRYGHD43IXSmEWjE8K}-${id4}`)})})},idXSmEWjE8K);})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wx7tw7\",\"data-framer-name\":\"Section\",id:id5,name:\"Section\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxyarw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RJTiBQcm8gQm9sZA==\",\"--framer-font-family\":'\"DIN Pro Bold\", \"DIN Pro Bold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"30px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"OU\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0px\"},children:\"R\"})]})}),fonts:[\"CUSTOM;DIN Pro Bold\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RJTiBQcm8gTWVkaXVt\",\"--framer-font-family\":'\"DIN Pro Medium\", \"DIN Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"30px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"OU\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0px\"},children:\"R\"})]})}),className:\"framer-3e8jw3\",fonts:[\"CUSTOM;DIN Pro Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__animateOnce:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"1.4em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Service\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\"s\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO0FyY2hpdm8gRXhwYW5kZWQgQmxhY2s=\",\"--framer-font-family\":'\"Archivo Expanded Black\", \"Archivo Expanded Black Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"1.4em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Service\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\"s\"})]})}),className:\"framer-ph16hw\",fonts:[\"CUSTOM;Archivo Expanded Black\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6m31w\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvp4la\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aa7tjt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fkeyju\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mcv18p\",\"data-styles-preset\":\"QiDr8NhVa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"01\"})}),className:\"framer-tyl1nl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-njci2z\",\"data-styles-preset\":\"MD7XDUpes\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"Full Service Interior Design\"})}),className:\"framer-vaq6au\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-500,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vw9gwf\",\"data-border\":true,\"data-framer-name\":\"Div Line\",name:\"Div Line\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-78lks2\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"We\u2019re known for our Full Service Interior Design. We welcome the opportunity to work with you on your entire home or selected remodel to deliver a personal interpretation of your vision that is uniquely yours.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"With this turn-key service, we create custom designs tailored to you, manage the procurement/ordering process, and oversee installation to bring your dream home to life. Experience the ease and personalized touch of our comprehensive service.\"})]}),className:\"framer-1vxmqrh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{href:{webPageId:\"i1u26HxDt\"}}},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":OIMzYynHw\",webPageId:\"i1u26HxDt\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lim1rt framer-lux5qc\",whileHover:animation3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-qeaifk\",\"data-styles-preset\":\"fDL5AeLJS\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-1210qgn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ole0xm\",\"data-framer-name\":\"Arrow\",fill:\"black\",intrinsicHeight:11,intrinsicWidth:16,name:\"Arrow\",svg:'<svg width=\"16\" height=\"11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.808 8.369V10l6.264-4.11V4.78h-1.044l-5.22 3.59Z\" fill=\"#FAFAFA\"/><path d=\"M.196 4.78h13.832m0 0h1.044v1.11L8.808 10V8.369l5.22-3.589Z\" stroke=\"#fff\" stroke-width=\".13\"/><path d=\"M8.808 2.106V.474l6.264 4.11v1.11h-1.044l-5.22-3.588Z\" fill=\"#FAFAFA\"/><path d=\"M.065 5.694h13.963m0 0h1.044v-1.11L8.808.475v1.632l5.22 3.588Z\" stroke=\"#fff\" stroke-width=\".13\"/><path fill=\"#FAFAFA\" d=\"M0 5.955V4.52h15.006v1.435z\"/></svg>',withExternalLayout:true})]})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ntex54\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wdkqh6\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mcv18p\",\"data-styles-preset\":\"QiDr8NhVa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"02\"})}),className:\"framer-110ngkw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-njci2z\",\"data-styles-preset\":\"MD7XDUpes\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"VIRTUAL Interior Design\"})}),className:\"framer-18kqsg2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-500,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q9u7cl\",\"data-border\":true,\"data-framer-name\":\"Div Line\",name:\"Div Line\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oznx7o\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"An accessible and affordable alternative to our traditional Full Service interior design.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"It allows our clients to see their creative vision come to life without paying for the turn key white-glove service / project management, that they can handle on their own.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"Reimagine your space with design plans and shopping lists to effortlessly bring your dream home to life.\\xa0\"})]}),className:\"framer-1c9tjri\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":BKEvV6rgj\",webPageId:\"i1u26HxDt\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-nu2y05 framer-lux5qc\",whileHover:animation3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-qeaifk\",\"data-styles-preset\":\"fDL5AeLJS\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-1nkn5wn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17nhetb\",\"data-framer-name\":\"Arrow\",fill:\"black\",intrinsicHeight:11,intrinsicWidth:16,name:\"Arrow\",svg:'<svg width=\"16\" height=\"11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M8.808 8.369V10l6.264-4.11V4.78h-1.044l-5.22 3.59Z\" fill=\"#FAFAFA\"/><path d=\"M.196 4.78h13.832m0 0h1.044v1.11L8.808 10V8.369l5.22-3.589Z\" stroke=\"#fff\" stroke-width=\".13\"/><path d=\"M8.808 2.106V.474l6.264 4.11v1.11h-1.044l-5.22-3.588Z\" fill=\"#FAFAFA\"/><path d=\"M.065 5.694h13.963m0 0h1.044v-1.11L8.808.475v1.632l5.22 3.588Z\" stroke=\"#fff\" stroke-width=\".13\"/><path fill=\"#FAFAFA\" d=\"M0 5.955V4.52h15.006v1.435z\"/></svg>',withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1sla0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p06jno\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mcv18p\",\"data-styles-preset\":\"QiDr8NhVa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"03\"})}),className:\"framer-1gy3fr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-njci2z\",\"data-styles-preset\":\"MD7XDUpes\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"ONE-ON-ONE WORKSHOP\"})}),className:\"framer-1nqq7nn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:-500,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7h3v96\",\"data-border\":true,\"data-framer-name\":\"Div Line\",name:\"Div Line\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{__framer__styleTransformEffectEnabled:undefined,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:400,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gefbtb\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1opdln4\",\"data-styles-preset\":\"sWkcbvgpM\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"A virtual consultation call is perfect for those who are looking for advice, a second opinion to guide their design process, or need help with a specific design challenge.\"})}),className:\"framer-1kuenba\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vQDSHZCyw\",webPageId:\"i1u26HxDt\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-vfe2xa framer-lux5qc\",whileHover:animation3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-qeaifk\",\"data-styles-preset\":\"fDL5AeLJS\",style:{\"--framer-text-color\":\"var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-55xe2y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o3tgiv\",\"data-framer-name\":\"Arrow\",layout:\"position\",name:\"Arrow\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 11\"><path d=\"M 8.808 8.369 L 8.808 10 L 15.072 5.89 L 15.072 4.78 L 14.028 4.78 L 8.808 8.37 Z\" fill=\"rgb(250,250,250)\"></path><path d=\"M 0.196 4.78 L 14.028 4.78 M 14.028 4.78 L 15.072 4.78 L 15.072 5.89 L 8.808 10 L 8.808 8.369 Z\" fill=\"transparent\" stroke-width=\"0.13\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8.808 2.106 L 8.808 0.474 L 15.072 4.584 L 15.072 5.694 L 14.028 5.694 Z\" fill=\"rgb(250,250,250)\"></path><path d=\"M 0.065 5.694 L 14.028 5.694 M 14.028 5.694 L 15.072 5.694 L 15.072 4.584 L 8.808 0.475 L 8.808 2.107 L 14.028 5.695 Z\" fill=\"transparent\" stroke-width=\"0.13\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 0 5.955 L 0 4.52 L 15.006 4.52 L 15.006 5.955 Z\" fill=\"rgb(250,250,250)\"></path></svg>',svgContentId:3387874039,withExternalLayout:true})]})})]})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ej5t8z hidden-72rtr7 hidden-y8m92x\",\"data-border\":true,\"data-framer-name\":\"Div Line\",name:\"Div Line\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1m16y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gdhz7E2uO:{variant:\"aq4QhXqvK\"}},children:/*#__PURE__*/_jsx(ColaFooter,{height:\"100%\",id:\"Y17e714OW\",layoutId:\"Y17e714OW\",style:{width:\"100%\"},variant:\"ITfomV_Qz\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-KTDll { background: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255)) /* {\"name\":\"Background\"} */; }`,\".framer-KTDll.framer-lux5qc, .framer-KTDll .framer-lux5qc { display: block; }\",\".framer-KTDll.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-KTDll .framer-jm04zz { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; mix-blend-mode: difference; opacity: 0; overflow: hidden; position: fixed; top: 0px; width: 28px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-KTDll .framer-inhjkw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 5865px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-1ilfkv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-KTDll .framer-1x0fn1h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-djgwj4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-KTDll .framer-1nnspgk, .framer-KTDll .framer-g5skgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-u3ica4, .framer-KTDll .framer-1luqb7c, .framer-KTDll .framer-3e8jw3, .framer-KTDll .framer-1210qgn, .framer-KTDll .framer-1nkn5wn, .framer-KTDll .framer-55xe2y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KTDll .framer-kkxsvy, .framer-KTDll .framer-1f4h5ay, .framer-KTDll .framer-1vxmqrh, .framer-KTDll .framer-110ngkw, .framer-KTDll .framer-18kqsg2, .framer-KTDll .framer-1c9tjri, .framer-KTDll .framer-1gy3fr7, .framer-KTDll .framer-1nqq7nn, .framer-KTDll .framer-1kuenba { --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-KTDll .framer-1l6rkpd, .framer-KTDll .framer-3fizfg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-1jghawn-container { flex: none; height: 120px; mix-blend-mode: difference; position: sticky; top: 0px; transform: perspective(1365px); width: 100%; will-change: transform; z-index: 10; }\",'.framer-KTDll .framer-864r07 { background-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa) /* {\"name\":\"Background\"} */; inset: 0px; position: fixed; user-select: none; z-index: -1; }',\".framer-KTDll .framer-14x7i0o { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: fixed; right: 0px; top: 80px; z-index: -1; }\",\".framer-KTDll .framer-15hiylb, .framer-KTDll .framer-17rx1vf, .framer-KTDll .framer-180scpr, .framer-KTDll .framer-i71vlc, .framer-KTDll .framer-epzsv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-KTDll .framer-50yus4, .framer-KTDll .framer-urzvqd, .framer-KTDll .framer-1g6x04d, .framer-KTDll .framer-175gru1, .framer-KTDll .framer-m2v6bc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KTDll .framer-1xb5re0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: center; overflow: visible; padding: 0px 20px 0px 0px; pointer-events: none; position: fixed; right: 0px; top: 0px; width: min-content; z-index: -1; }\",\".framer-KTDll .framer-1kof369 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 9px; }\",\".framer-KTDll .framer-284kqb, .framer-KTDll .framer-5br1hn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; mix-blend-mode: difference; position: relative; white-space: pre; width: auto; }\",\".framer-KTDll .framer-1nizbf8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-KTDll .framer-104egql { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: difference; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-KTDll .framer-kg5kcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 9px; }\",\".framer-KTDll .framer-ahg1ng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 90vh; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-KTDll .framer-x2c9b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 45%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-KTDll .framer-q08zd5, .framer-KTDll .framer-ph16hw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\",\".framer-KTDll .framer-1knxffy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 464px; word-break: break-word; word-wrap: break-word; }\",\".framer-KTDll .framer-whkquo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-17rrw9k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KTDll .framer-1dfcas1 { align-content: center; align-items: center; background-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KTDll .framer-19151gu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 90vh; overflow: hidden; padding: 0px 0px 0px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-KTDll .framer-1ep4uko { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-KTDll .framer-18mgxy8, .framer-KTDll .framer-1fapk3y, .framer-KTDll .framer-13scad8 { --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; z-index: 1; }\",\".framer-KTDll .framer-23vyjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; max-width: 50%; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-KTDll .framer-1ir28vi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: auto; justify-content: center; min-height: 100vh; min-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; pointer-events: none; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-KTDll .framer-jfijyc-container { flex: none; height: auto; pointer-events: auto; position: relative; transform: perspective(1200px); width: 100%; z-index: 1; }\",\".framer-KTDll .framer-1feit0h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; left: 0px; opacity: 0; padding: 0px 0px 0px 0px; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-KTDll .framer-drintr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: auto; justify-content: flex-start; min-height: 100vh; overflow: visible; padding: 0px 0px 0px 0px; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-KTDll .framer-1wx7tw7 { align-content: center; align-items: center; background-color: var(--token-9c514db8-a70a-43ee-b1d4-384f66727373, #282828); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-KTDll .framer-1oxyarw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: min-content; }\",'.framer-KTDll .framer-1b6m31w { --border-bottom-width: 0px; --border-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa) /* {\"name\":\"Background\"} */; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 66px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }',\".framer-KTDll .framer-yvp4la { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 85%; }\",\".framer-KTDll .framer-aa7tjt, .framer-KTDll .framer-ntex54, .framer-KTDll .framer-b1sla0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 269px; }\",\".framer-KTDll .framer-fkeyju, .framer-KTDll .framer-78lks2, .framer-KTDll .framer-wdkqh6, .framer-KTDll .framer-1oznx7o, .framer-KTDll .framer-p06jno, .framer-KTDll .framer-1gefbtb { 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 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-KTDll .framer-tyl1nl, .framer-KTDll .framer-vaq6au { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 234px; word-break: break-word; word-wrap: break-word; }\",'.framer-KTDll .framer-1vw9gwf, .framer-KTDll .framer-1q9u7cl, .framer-KTDll .framer-7h3v96 { --border-bottom-width: 1px; --border-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa) /* {\"name\":\"Background\"} */; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; flex: none; height: 1px; overflow: hidden; position: relative; transform: perspective(1200px); width: 269px; }',\".framer-KTDll .framer-1lim1rt { 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: 16px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KTDll .framer-1ole0xm, .framer-KTDll .framer-17nhetb { aspect-ratio: 1.4545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 11px); position: relative; width: 16px; }\",\".framer-KTDll .framer-nu2y05 { 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: 58px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KTDll .framer-vfe2xa { 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: 43px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-KTDll .framer-o3tgiv { flex: none; height: 11px; position: relative; width: 16px; }\",'.framer-KTDll .framer-ej5t8z { --border-bottom-width: 1px; --border-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa) /* {\"name\":\"Background\"} */; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 75px; justify-content: center; opacity: 0.5; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 90%; }',\".framer-KTDll .framer-w1m16y-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KTDll.framer-72rtr7, .framer-KTDll .framer-inhjkw, .framer-KTDll .framer-1ilfkv, .framer-KTDll .framer-1x0fn1h, .framer-KTDll .framer-djgwj4, .framer-KTDll .framer-1nnspgk, .framer-KTDll .framer-g5skgo, .framer-KTDll .framer-1l6rkpd, .framer-KTDll .framer-14x7i0o, .framer-KTDll .framer-15hiylb, .framer-KTDll .framer-17rx1vf, .framer-KTDll .framer-180scpr, .framer-KTDll .framer-i71vlc, .framer-KTDll .framer-epzsv7, .framer-KTDll .framer-1xb5re0, .framer-KTDll .framer-1kof369, .framer-KTDll .framer-1nizbf8, .framer-KTDll .framer-kg5kcw, .framer-KTDll .framer-ahg1ng, .framer-KTDll .framer-x2c9b0, .framer-KTDll .framer-whkquo, .framer-KTDll .framer-1dfcas1, .framer-KTDll .framer-19151gu, .framer-KTDll .framer-1ep4uko, .framer-KTDll .framer-3fizfg, .framer-KTDll .framer-23vyjg, .framer-KTDll .framer-1ir28vi, .framer-KTDll .framer-1feit0h, .framer-KTDll .framer-drintr, .framer-KTDll .framer-1wx7tw7, .framer-KTDll .framer-1oxyarw, .framer-KTDll .framer-1b6m31w, .framer-KTDll .framer-aa7tjt, .framer-KTDll .framer-fkeyju, .framer-KTDll .framer-78lks2, .framer-KTDll .framer-1lim1rt, .framer-KTDll .framer-ntex54, .framer-KTDll .framer-wdkqh6, .framer-KTDll .framer-1oznx7o, .framer-KTDll .framer-nu2y05, .framer-KTDll .framer-b1sla0, .framer-KTDll .framer-p06jno, .framer-KTDll .framer-1gefbtb, .framer-KTDll .framer-vfe2xa, .framer-KTDll .framer-ej5t8z { gap: 0px; } .framer-KTDll.framer-72rtr7 > *, .framer-KTDll .framer-inhjkw > *, .framer-KTDll .framer-1ilfkv > *, .framer-KTDll .framer-1l6rkpd > *, .framer-KTDll .framer-14x7i0o > *, .framer-KTDll .framer-1dfcas1 > *, .framer-KTDll .framer-1ep4uko > *, .framer-KTDll .framer-3fizfg > *, .framer-KTDll .framer-23vyjg > *, .framer-KTDll .framer-1ir28vi > *, .framer-KTDll .framer-1feit0h > *, .framer-KTDll .framer-drintr > *, .framer-KTDll .framer-1wx7tw7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KTDll.framer-72rtr7 > :first-child, .framer-KTDll .framer-inhjkw > :first-child, .framer-KTDll .framer-1ilfkv > :first-child, .framer-KTDll .framer-djgwj4 > :first-child, .framer-KTDll .framer-1nnspgk > :first-child, .framer-KTDll .framer-g5skgo > :first-child, .framer-KTDll .framer-1l6rkpd > :first-child, .framer-KTDll .framer-14x7i0o > :first-child, .framer-KTDll .framer-ahg1ng > :first-child, .framer-KTDll .framer-x2c9b0 > :first-child, .framer-KTDll .framer-whkquo > :first-child, .framer-KTDll .framer-1dfcas1 > :first-child, .framer-KTDll .framer-1ep4uko > :first-child, .framer-KTDll .framer-3fizfg > :first-child, .framer-KTDll .framer-23vyjg > :first-child, .framer-KTDll .framer-1ir28vi > :first-child, .framer-KTDll .framer-1feit0h > :first-child, .framer-KTDll .framer-drintr > :first-child, .framer-KTDll .framer-1wx7tw7 > :first-child, .framer-KTDll .framer-1oxyarw > :first-child, .framer-KTDll .framer-1b6m31w > :first-child, .framer-KTDll .framer-aa7tjt > :first-child, .framer-KTDll .framer-fkeyju > :first-child, .framer-KTDll .framer-78lks2 > :first-child, .framer-KTDll .framer-ntex54 > :first-child, .framer-KTDll .framer-wdkqh6 > :first-child, .framer-KTDll .framer-1oznx7o > :first-child, .framer-KTDll .framer-b1sla0 > :first-child, .framer-KTDll .framer-p06jno > :first-child, .framer-KTDll .framer-1gefbtb > :first-child { margin-top: 0px; } .framer-KTDll.framer-72rtr7 > :last-child, .framer-KTDll .framer-inhjkw > :last-child, .framer-KTDll .framer-1ilfkv > :last-child, .framer-KTDll .framer-djgwj4 > :last-child, .framer-KTDll .framer-1nnspgk > :last-child, .framer-KTDll .framer-g5skgo > :last-child, .framer-KTDll .framer-1l6rkpd > :last-child, .framer-KTDll .framer-14x7i0o > :last-child, .framer-KTDll .framer-ahg1ng > :last-child, .framer-KTDll .framer-x2c9b0 > :last-child, .framer-KTDll .framer-whkquo > :last-child, .framer-KTDll .framer-1dfcas1 > :last-child, .framer-KTDll .framer-1ep4uko > :last-child, .framer-KTDll .framer-3fizfg > :last-child, .framer-KTDll .framer-23vyjg > :last-child, .framer-KTDll .framer-1ir28vi > :last-child, .framer-KTDll .framer-1feit0h > :last-child, .framer-KTDll .framer-drintr > :last-child, .framer-KTDll .framer-1wx7tw7 > :last-child, .framer-KTDll .framer-1oxyarw > :last-child, .framer-KTDll .framer-1b6m31w > :last-child, .framer-KTDll .framer-aa7tjt > :last-child, .framer-KTDll .framer-fkeyju > :last-child, .framer-KTDll .framer-78lks2 > :last-child, .framer-KTDll .framer-ntex54 > :last-child, .framer-KTDll .framer-wdkqh6 > :last-child, .framer-KTDll .framer-1oznx7o > :last-child, .framer-KTDll .framer-b1sla0 > :last-child, .framer-KTDll .framer-p06jno > :last-child, .framer-KTDll .framer-1gefbtb > :last-child { margin-bottom: 0px; } .framer-KTDll .framer-1x0fn1h > *, .framer-KTDll .framer-1xb5re0 > *, .framer-KTDll .framer-1nizbf8 > *, .framer-KTDll .framer-kg5kcw > *, .framer-KTDll .framer-19151gu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KTDll .framer-1x0fn1h > :first-child, .framer-KTDll .framer-15hiylb > :first-child, .framer-KTDll .framer-17rx1vf > :first-child, .framer-KTDll .framer-180scpr > :first-child, .framer-KTDll .framer-i71vlc > :first-child, .framer-KTDll .framer-epzsv7 > :first-child, .framer-KTDll .framer-1xb5re0 > :first-child, .framer-KTDll .framer-1kof369 > :first-child, .framer-KTDll .framer-1nizbf8 > :first-child, .framer-KTDll .framer-kg5kcw > :first-child, .framer-KTDll .framer-19151gu > :first-child, .framer-KTDll .framer-1lim1rt > :first-child, .framer-KTDll .framer-nu2y05 > :first-child, .framer-KTDll .framer-vfe2xa > :first-child, .framer-KTDll .framer-ej5t8z > :first-child { margin-left: 0px; } .framer-KTDll .framer-1x0fn1h > :last-child, .framer-KTDll .framer-15hiylb > :last-child, .framer-KTDll .framer-17rx1vf > :last-child, .framer-KTDll .framer-180scpr > :last-child, .framer-KTDll .framer-i71vlc > :last-child, .framer-KTDll .framer-epzsv7 > :last-child, .framer-KTDll .framer-1xb5re0 > :last-child, .framer-KTDll .framer-1kof369 > :last-child, .framer-KTDll .framer-1nizbf8 > :last-child, .framer-KTDll .framer-kg5kcw > :last-child, .framer-KTDll .framer-19151gu > :last-child, .framer-KTDll .framer-1lim1rt > :last-child, .framer-KTDll .framer-nu2y05 > :last-child, .framer-KTDll .framer-vfe2xa > :last-child, .framer-KTDll .framer-ej5t8z > :last-child { margin-right: 0px; } .framer-KTDll .framer-djgwj4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-KTDll .framer-1nnspgk > *, .framer-KTDll .framer-g5skgo > *, .framer-KTDll .framer-1oxyarw > *, .framer-KTDll .framer-aa7tjt > *, .framer-KTDll .framer-ntex54 > *, .framer-KTDll .framer-b1sla0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KTDll .framer-15hiylb > *, .framer-KTDll .framer-17rx1vf > *, .framer-KTDll .framer-180scpr > *, .framer-KTDll .framer-i71vlc > *, .framer-KTDll .framer-epzsv7 > *, .framer-KTDll .framer-1kof369 > *, .framer-KTDll .framer-1lim1rt > *, .framer-KTDll .framer-nu2y05 > *, .framer-KTDll .framer-vfe2xa > *, .framer-KTDll .framer-ej5t8z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KTDll .framer-ahg1ng > *, .framer-KTDll .framer-whkquo > *, .framer-KTDll .framer-1b6m31w > *, .framer-KTDll .framer-fkeyju > *, .framer-KTDll .framer-78lks2 > *, .framer-KTDll .framer-wdkqh6 > *, .framer-KTDll .framer-1oznx7o > *, .framer-KTDll .framer-p06jno > *, .framer-KTDll .framer-1gefbtb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-KTDll .framer-x2c9b0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\"@media (min-width: 1200px) { .framer-KTDll .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-KTDll .hidden-y8m92x { display: none !important; } .${metadata.bodyClassName}-framer-KTDll { background: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255)) /* {\"name\":\"Background\"} */; } .framer-KTDll.framer-72rtr7 { width: 810px; } .framer-KTDll .framer-x2c9b0 { max-width: unset; } .framer-KTDll .framer-19151gu { min-height: 87vh; } .framer-KTDll .framer-1wx7tw7 { padding: 100px 30px 100px 30px; } .framer-KTDll .framer-yvp4la { align-content: center; align-items: center; flex-direction: column; width: 80%; } .framer-KTDll .framer-aa7tjt, .framer-KTDll .framer-ntex54 { padding: 0px 0px 75px 0px; width: 100%; } .framer-KTDll .framer-tyl1nl { width: 100%; } .framer-KTDll .framer-vaq6au { white-space: pre; width: auto; } .framer-KTDll .framer-1vw9gwf, .framer-KTDll .framer-1q9u7cl, .framer-KTDll .framer-7h3v96 { width: 190px; } .framer-KTDll .framer-wdkqh6 { width: min-content; } .framer-KTDll .framer-110ngkw, .framer-KTDll .framer-18kqsg2 { width: 269px; } .framer-KTDll .framer-nu2y05 { padding: 37px 0px 0px 0px; } .framer-KTDll .framer-b1sla0 { width: auto; } .framer-KTDll .framer-1gefbtb { align-self: stretch; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KTDll .framer-yvp4la { gap: 0px; } .framer-KTDll .framer-yvp4la > *, .framer-KTDll .framer-yvp4la > :first-child, .framer-KTDll .framer-yvp4la > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .framer-KTDll .hidden-2py4ww { display: none !important; } .${metadata.bodyClassName}-framer-KTDll { background: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, rgb(255, 255, 255)) /* {\"name\":\"Background\"} */; } .framer-KTDll.framer-72rtr7 { width: 390px; } .framer-KTDll .framer-djgwj4 { gap: 40px; height: 98vh; } .framer-KTDll .framer-864r07, .framer-KTDll .framer-14x7i0o { z-index: 10; } .framer-KTDll .framer-15hiylb, .framer-KTDll .framer-1vxmqrh, .framer-KTDll .framer-1c9tjri { order: 0; } .framer-KTDll .framer-17rx1vf { order: 2; } .framer-KTDll .framer-180scpr { order: 1; } .framer-KTDll .framer-i71vlc { order: 4; } .framer-KTDll .framer-epzsv7 { order: 3; } .framer-KTDll .framer-1xb5re0 { height: 120px; z-index: 10; } .framer-KTDll .framer-1nizbf8 { padding: 0px 8px 0px 8px; } .framer-KTDll .framer-ahg1ng { padding: 0px 10px 0px 10px; } .framer-KTDll .framer-x2c9b0 { max-width: unset; width: 90%; } .framer-KTDll .framer-1knxffy, .framer-KTDll .framer-aa7tjt, .framer-KTDll .framer-tyl1nl, .framer-KTDll .framer-vaq6au, .framer-KTDll .framer-ntex54, .framer-KTDll .framer-b1sla0 { width: 100%; } .framer-KTDll .framer-17rrw9k-container { height: 500px; } .framer-KTDll .framer-19151gu { min-height: 80vh; } .framer-KTDll .framer-1ep4uko { padding: 0px 0px 0px 0px; } .framer-KTDll .framer-13scad8, .framer-KTDll .framer-3e8jw3 { transform: perspective(1200px); } .framer-KTDll .framer-23vyjg { max-width: unset; } .framer-KTDll .framer-drintr { background-color: var(--token-99b13e40-5413-47d9-996c-2fa7047e46d6, #fafafa); } .framer-KTDll .framer-1wx7tw7 { padding: 90px 0px 40px 0px; } .framer-KTDll .framer-1oxyarw { gap: 15px; } .framer-KTDll .framer-yvp4la { align-content: center; align-items: center; flex-direction: column; gap: 80px; justify-content: flex-start; width: 90%; } .framer-KTDll .framer-fkeyju, .framer-KTDll .framer-1vw9gwf, .framer-KTDll .framer-78lks2, .framer-KTDll .framer-wdkqh6, .framer-KTDll .framer-1q9u7cl, .framer-KTDll .framer-1oznx7o, .framer-KTDll .framer-p06jno, .framer-KTDll .framer-7h3v96, .framer-KTDll .framer-1gefbtb { transform: unset; } .framer-KTDll .framer-1lim1rt, .framer-KTDll .framer-nu2y05 { order: 1; padding: 20px 0px 0px 0px; } .framer-KTDll .framer-vfe2xa { padding: 20px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KTDll .framer-djgwj4, .framer-KTDll .framer-1oxyarw, .framer-KTDll .framer-yvp4la { gap: 0px; } .framer-KTDll .framer-djgwj4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-KTDll .framer-djgwj4 > :first-child, .framer-KTDll .framer-1oxyarw > :first-child, .framer-KTDll .framer-yvp4la > :first-child { margin-top: 0px; } .framer-KTDll .framer-djgwj4 > :last-child, .framer-KTDll .framer-1oxyarw > :last-child, .framer-KTDll .framer-yvp4la > :last-child { margin-bottom: 0px; } .framer-KTDll .framer-1oxyarw > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-KTDll .framer-yvp4la > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-KTDll[data-border=\"true\"]::after, .framer-KTDll [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5865\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vytnxZV_t\":{\"layout\":[\"fixed\",\"auto\"]},\"Gdhz7E2uO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-KTDll\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5865,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Archivo Expanded Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/CGj4sC7EsTVuMm4a9nUuil1pM.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"DIN Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/XiuTyRrfpZDgTAn5hOdFRWUJnbk.woff2\"},{family:\"DIN Pro Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/42PaAsBbkP5uhnXYw2ilDWc.woff2\"}]},...ColaStickyNavFonts,...VideoFonts,...ProjectTileFonts,...ColaFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5865\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vytnxZV_t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gdhz7E2uO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "data", "u", "x", "p", "item", "addPropertyControls", "ControlType", "Z3w5LqrRn_default", "MotionDivWithFollowMouse", "withFollowMouse", "motion", "RichTextWithAnimateChar", "withAnimateChar", "RichText2", "RichTextWithAnimateChar1", "MotionDivWithAnimateChar1", "ColaStickyNavFonts", "getFonts", "gy4pUFmLk_default", "RichTextWithTransformOnload", "withTransformOnload", "RichTextWithFX", "withFX", "VideoFonts", "Video", "RichTextWithAnimateChar2", "RichTextWithAnimateChar3", "RichTextWithAnimateChar1WithFX", "ProjectTileFonts", "P60YtaP7K_default", "ContainerWithFX", "Container", "MotionDivWithFX", "ColaFooterFonts", "laWDNHcqo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "toResponsiveImage", "value", "QueryData", "query", "data", "useQueryData", "transition2", "animation2", "transition3", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ZRYGHD43INKUvqzf1V", "O2CsJYpHpNKUvqzf1V", "RwRQS2g1DNKUvqzf1V", "YpOlZz3tqNKUvqzf1V", "YsHTDWziDNKUvqzf1V", "s2nlB5IkINKUvqzf1V", "XO1oyEwppNKUvqzf1V", "idNKUvqzf1V", "ZRYGHD43IXSmEWjE8K", "idXSmEWjE8K", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "m8nsziuJO42m929", "overlay", "args", "onTap1g52gvb", "ref1", "pe", "useRouteElementId", "ref2", "isDisplayed", "isDisplayed1", "id1", "ref3", "id2", "ref4", "id3", "ref5", "isDisplayed2", "isDisplayed3", "id4", "dynamicRef", "useDynamicRefs", "router", "useRouter", "id5", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "MotionDivWithFollowMouse", "PropertyOverrides2", "Image2", "RichTextWithAnimateChar", "x", "MotionDivWithAnimateChar1", "RichTextWithAnimateChar1", "l", "ComponentViewportProvider", "Container", "gy4pUFmLk_default", "AnimatePresence", "Ga", "RichTextWithTransformOnload", "Link", "RichText2", "RichTextWithFX", "Video", "RichTextWithAnimateChar2", "RichTextWithAnimateChar3", "RichTextWithAnimateChar1WithFX", "pWeF0Nvyb_default", "collection", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "_enumToDisplayNameFunctions_YsHTDWziD", "ContainerWithFX", "P60YtaP7K_default", "enumToDisplayNameFunctions", "Z3w5LqrRn_default", "collection1", "MotionDivWithFX", "SVG", "laWDNHcqo_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "ColaStickyNavFonts", "VideoFonts", "ProjectTileFonts", "ColaFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
