{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Sgny8a1hxufC0CW4sw7y/z2VGZVz4kHFVV9z1aL6u/Masonry_Layout.js", "ssg:https://framerusercontent.com/modules/HNXo4TefJrlWuE5lGS8a/Eu3m8cos2kYFgH0pajYl/VRaPocIMS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import React from\"react\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";/////////////////////////////\n// Code from Nikolay Goncharuk on GitHub:\n// https://github.com/GoncharukBro/react-smart-masonry/blob/master/src/Masonry.tsx\n// https://github.com/GoncharukBro/react-smart-masonry/blob/master/src/useResize.ts\n//\n// Modified by Isaac Roberts (twitter.com/madebyisaacr)\n// Modified for CMS support by Fehmi \u00D6z\u00FCseven (twitter.com/fhmi)\n//\n// Copyright (c) 2021 Nikolay Goncharuk\n// MIT License\nimport{useState,useLayoutEffect,useEffect,useRef,forwardRef}from\"react\";function getCurrentBreakpoints(breakpoints,width){const normalizedBreakpoints=breakpoints&&Object.entries(breakpoints).sort((a,b)=>b[1]-a[1]);return normalizedBreakpoints===null||normalizedBreakpoints===void 0?void 0:normalizedBreakpoints.filter(item=>item[1]<=width).map(item=>item[0]);}function getState(breakpoints,width){return{width,currentBreakpoints:getCurrentBreakpoints(breakpoints,width)};}function useResize(breakpoints){const[state,setState]=useState(()=>getState(breakpoints,0)//global.innerWidthh)\n);useEffect(()=>{const handleResize=()=>{setState(getState(breakpoints,window.innerWidth));};window.addEventListener(\"resize\",handleResize);return()=>{window.removeEventListener(\"resize\",handleResize);};},[breakpoints]);return state;}function getCurrentParam(breakpoints,param,defaultValue){if(typeof param===\"object\"){const breakpoint=breakpoints===null||breakpoints===void 0?void 0:breakpoints.find(item=>param[item]!==undefined);var _breakpoint;return breakpoint!==undefined?(_breakpoint=param[breakpoint])!==null&&_breakpoint!==void 0?_breakpoint:defaultValue:defaultValue;}return param;}const DEFAULT_COLUMNS=1;const DEFAULT_GAP=0;function MasonryComponent({breakpoints,columns=DEFAULT_COLUMNS,gap=DEFAULT_GAP,reverse=false,autoArrange=false,children,style,...otherProps},forwardedRef){const{currentBreakpoints}=useResize(breakpoints);const elements=useRef([]);const[arrange,setArrange]=useState(false);const[currentColumns,setCurrentColumns]=useState(()=>{return getCurrentParam(currentBreakpoints,columns,DEFAULT_COLUMNS);});const[currentGap,setCurrentGap]=useState(()=>{return getCurrentParam(currentBreakpoints,gap,DEFAULT_GAP);});// eslint-disable-next-line react-hooks/exhaustive-deps\nuseLayoutEffect(()=>{if(autoArrange&&!arrange)setArrange(true);return()=>{if(autoArrange&&arrange)setArrange(false);};});useEffect(()=>{const param=getCurrentParam(currentBreakpoints,columns,DEFAULT_COLUMNS);setCurrentColumns(param);},[columns,currentBreakpoints]);useEffect(()=>{const param=getCurrentParam(currentBreakpoints,gap,DEFAULT_GAP);setCurrentGap(param);},[gap,currentBreakpoints]);const newLayout=Array.from({length:currentColumns},()=>{return[];});const columnHeights=newLayout.map(()=>0);function generateLayout({arrange,autoArrange,children,currentColumns,reverse,elements}){if(currentColumns<1)return[];const arrayOfChildren=React.Children.toArray(children);if(reverse)arrayOfChildren.reverse();const getcolumnIndex=index=>{if(autoArrange&&arrange&&elements.current.length>0){const columnIndex=columnHeights.findIndex(item=>{return item===Math.min(...columnHeights);});const element=elements.current.find(item=>item.index===index);const elementHeight=element===null||element===void 0?void 0:element.element.getBoundingClientRect().height;columnHeights[columnIndex]+=elementHeight||0;return columnIndex;}return index%currentColumns;};arrayOfChildren.forEach((child,index)=>{if(child&&/*#__PURE__*/React.isValidElement(child)){newLayout[getcolumnIndex(index)].push({element:child,index});}});return newLayout;}console.log(\"children\",children);try{children=children.props.children.type({query:children.props.children.props.query,children:children.props.children.props.children});children=children.props.children;}catch(e){try{children=children.type({query:children.props.query,children:children.props.children});children=children.props.children;//console.log(\"resssooooo\", children)\n}catch(e){//console.log(\"catch\")\ntry{children=children[0].props.children[0].props.children;}catch(e){try{children=children.props.children;}catch(e){children=children;}}}}// Usage\nconst layout=generateLayout({arrange,autoArrange,children,currentColumns,reverse,elements});let minValue=Math.min(...columnHeights);let maxValue=Math.max(...columnHeights);//\n//\n// fix for masonry rearrangement\n//\n//\nif(typeof document!==\"undefined\"&&typeof window!==\"undefined\"){// this works on first load and every cms page change\nif(elements.current.length==0){// console.log(\"first things firsr\")\nwindow.firstRearrange=false;window.lastRearrange=false;window.imagesLoaded=false;}if(document.querySelector(\"head title\")&&!window.imagesLoaded&&document.images.length>1){window.imagesLoaded=\"loading\";// console.log(document.images.length)\nPromise.all(Array.from(document.images).map(img=>{if(img.complete)return Promise.resolve(true);return new Promise(resolve=>{img.addEventListener(\"load\",()=>resolve(true));img.addEventListener(\"error\",()=>resolve(false));});})).then(results=>{setTimeout(function(){window.imagesLoaded=\"loaded\";setArrange(false);// console.log(\"images are loaded and fixed\")\n},222);});}else if(document.querySelector(\"head title\")&&!window.firstRearrange&&document.images.length>1){window.firstRearrange=true;// console.log(\"first rearrange before load images\")\nif(window.lastPhoto&&document.querySelector(\"[href$='\"+window.lastPhoto.lastPhotoSrc+\"']\")){let elPos=document.querySelector(\"[href$='\"+window.lastPhoto.lastPhotoSrc+\"']\").getBoundingClientRect().top;window.scrollTo(0,elPos-80);}setArrange(false);}else if(document.querySelector(\"head title\")&&!window.lastRearrange&&window.imagesLoaded==\"loaded\"){window.lastRearrange=true;// console.log(\"for browser/preview, after images loaded\")\nsetTimeout(function(){setArrange(false);setTimeout(function(){setArrange(true);},350);},750);}//\n// fix for editor\n//\nif(!document.querySelector(\"head title\")&&layout.length>1&&layout[layout.length-1].length==0){setTimeout(function(){setArrange(false);setTimeout(function(){setArrange(true);},500);},500);}}const temporaryElements=[];const addElement=index=>element=>{if(element!==null){temporaryElements.push({element,index});elements.current=temporaryElements;}};function EmptyState({title,description}){return /*#__PURE__*/_jsxs(\"div\",{style:{...emptyStateStyle,width:\"100%\",height:\"100%\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{...stateTitleStyle},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{...stateParagraphStyle},children:description})]});}return /*#__PURE__*/_jsx(\"div\",{ref:forwardedRef,style:{display:\"flex\",gap:currentGap,// opacity: opacity,\n...style},...otherProps,children:layout.map((column,columnIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{flex:1,display:\"flex\",flexDirection:\"column\",gap:currentGap},children:column.map((item,itemIndex)=>/*#__PURE__*/_jsx(\"div\",{ref:addElement(item.index),children:item.element},itemIndex))},columnIndex))});}const Masonry=/*#__PURE__*/forwardRef(MasonryComponent);///////////////////////////\n/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function MasonryLayout(props,a){var _props_layers;function EmptyState({title,description}){return /*#__PURE__*/_jsxs(\"div\",{style:{...emptyStateStyle,width:\"100%\",height:\"300px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{...stateTitleStyle},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{...stateParagraphStyle},children:description})]});}if(props.layers.length==0){console.log(\"no layer\");return EmptyState({title:\"Masonry Layout\",description:\"Connect a collection list to present it in a masonry layout.\"});}// const ref = React.createRef<HTMLDivElement>()\nlet layers=[];const[arrange,setArrange]=useState(false);useEffect(()=>{//console.log(\"hee 2\")\nsetTimeout(function(){setArrange(true);},1e3);});//console.log(\"render\")\nif(props.columnWidth==\"fill\"){try{var resolved=props.layers[0].props.children.type({query:props.layers[0].props.children.props.query,children:props.layers[0].props.children.props.children});// console.log(\"resssooooo\", resolved)\nlayers=resolved;}catch(e){try{if(props.layers.length==0){return;}//console.log(\"props layers: \", props.layers)\n//console.log(\n//    props.layers[0].type,\n//    props.layers[0].props.query,\n//    props.layers[0].props.children\n//)\ntry{var resolved=props.layers[0].type({query:props.layers[0].props.query,children:props.layers[0].props.children});//console.log(props.layers[0])\n//console.log(\"resolved\", resolved)\nfor(let i=0;i<resolved.props.children.length;i++){let layer=resolved.props.children[i];if(!layer.props.style){layer.props.style={};}layer.props.style.width=\"100%\";layers.push(layer);}}catch(e){if(props.layers[0].props.__node.cache.htmlElement){//console.log(\n//    props.layers[0].props.__node.cache.htmlElement\n//)\nlet key=Object.keys(props.layers[0].props.__node.cache.htmlElement)[0];let children=props.layers[0].props.__node.cache.htmlElement[key].memoizedProps.children[0].props.children.props.children[1].props.children;for(let i=0;i<children.length;i++){let layer=children[i];if(!layer.props.style){layer.props.style={};}layer.props.style.width=\"100%\";layers.push(layer);}}}}catch(e){}}}/*\n     else {\n        console.log(\"haydar\")\n        layers = props.layers\n    }\n    */if(((_props_layers=props.layers)===null||_props_layers===void 0?void 0:_props_layers.length)==0){return /*#__PURE__*/_jsx(\"div\",{style:{minWidth:\"100px\",minHeight:\"100px\"}});}else if(props.columns==1){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gap},children:layers});}else{return /*#__PURE__*/_jsx(Masonry,{columns:props.columns,gap:props.gap,autoArrange:props.autoArrange,reverse:false,children:layers});}}MasonryLayout.displayName=\"Masonry Layout\";MasonryLayout.defaultProps={layers:[],columns:3,columnWidth:\"fill\",autoArrange:true,gap:10};addPropertyControls(MasonryLayout,{layers:{type:ControlType.ComponentInstance,title:\"Collection\"},columns:{type:ControlType.Number,defaultValue:MasonryLayout.defaultProps.columns,min:1,step:1,displayStepper:true,hidden(props){return props.direction==\"h\";}},columnWidth:{type:ControlType.Enum,defaultValue:MasonryLayout.defaultProps.columnWidth,options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true,hidden(props){return props.columnWidth==\"fill\";}},autoArrange:{type:ControlType.Boolean,defaultValue:true,description:\"Arranges each layer into the shortest column.\"},gap:{type:ControlType.Number,defaultValue:MasonryLayout.defaultProps.gap,min:0}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MasonryLayout\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\"}},\"MasonryProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Masonry_Layout.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Image from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import MasonryLayout from\"https://framerusercontent.com/modules/Sgny8a1hxufC0CW4sw7y/z2VGZVz4kHFVV9z1aL6u/Masonry_Layout.js\";import Footer from\"#framer/local/canvasComponent/CsjP1hozs/CsjP1hozs.js\";import NavBar from\"#framer/local/canvasComponent/mcGGzQuUs/mcGGzQuUs.js\";import People from\"#framer/local/collection/P7oyF9gc4/P7oyF9gc4.js\";import*as sharedStyle from\"#framer/local/css/PXd55UiVe/PXd55UiVe.js\";import metadataProvider from\"#framer/local/webPageMetadata/VRaPocIMS/VRaPocIMS.js\";const NavBarFonts=getFonts(NavBar);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const ImageFonts=getFonts(Image);const MasonryLayoutFonts=getFonts(MasonryLayout);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FooterFonts=getFonts(Footer);const breakpoints={Al8kNrgSW:\"(min-width: 810px) and (max-width: 1199px)\",ouKzIT5Zu:\"(max-width: 809px)\",xbtm1Zxsf:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qdKmp\";const variantClassNames={Al8kNrgSW:\"framer-v-1p9ab3\",ouKzIT5Zu:\"framer-v-1yntwwn\",xbtm1Zxsf:\"framer-v-1j27nm5\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-64};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={delay:0,duration:.6,ease:[.4,0,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};const transition3={damping:100,delay:1.3,mass:1.2,stiffness:149,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,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,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"xbtm1Zxsf\",Phone:\"ouKzIT5Zu\",Tablet:\"Al8kNrgSW\"};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:\"xbtm1Zxsf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Rb1B4O2vTypbXDYPha,equgi8OYTypbXDYPha,xDHmdqDTEypbXDYPha,idypbXDYPha,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-qdKmp`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-qdKmp`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ouKzIT5Zu\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ouKzIT5Zu\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"xbtm1Zxsf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1j27nm5\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tkxdkq-container hidden-1yntwwn\",\"data-framer-name\":\"Nav Bar\",layoutScroll:true,name:\"Nav Bar\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"k3z5FK5m_\",layoutId:\"k3z5FK5m_\",name:\"Nav Bar\",style:{width:\"100%\"},variant:\"xTM4aAW1G\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lbf3h\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nk2tas\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t4ucra\",\"data-framer-name\":\"Top Left Area\",name:\"Top Left Area\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-16j9386\",\"data-styles-preset\":\"PXd55UiVe\",children:\"> CREATIVE BOARD\"})}),className:\"framer-73pywe\",\"data-framer-name\":\"Breadcrumb\",fonts:[\"Inter\"],name:\"Breadcrumb\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-162blaw-container\",\"data-framer-appear-id\":\"162blaw\",\"data-framer-name\":\"Photos\",initial:animation4,name:\"Photos\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ouKzIT5Zu:{columns:2}},children:/*#__PURE__*/_jsx(MasonryLayout,{autoArrange:true,columns:3,columnWidth:\"fill\",gap:30,height:\"100%\",id:\"FSjyjjnEB\",layers:[/*#__PURE__*/_jsx(motion.main,{className:\"framer-x4bdiv\",\"data-framer-name\":\"People\",name:\"People\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ypbXDYPha\",data:People,type:\"Collection\"},select:[{collection:\"ypbXDYPha\",name:\"Rb1B4O2vT\",type:\"Identifier\"},{collection:\"ypbXDYPha\",name:\"equgi8OYT\",type:\"Identifier\"},{collection:\"ypbXDYPha\",name:\"xDHmdqDTE\",type:\"Identifier\"},{collection:\"ypbXDYPha\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"Rb1B4O2vT\":Rb1B4O2vTypbXDYPha,\"equgi8OYT\":equgi8OYTypbXDYPha,\"xDHmdqDTE\":xDHmdqDTEypbXDYPha,\"id\":idypbXDYPha},i)=>{Rb1B4O2vTypbXDYPha!==null&&Rb1B4O2vTypbXDYPha!==void 0?Rb1B4O2vTypbXDYPha:Rb1B4O2vTypbXDYPha=\"\";xDHmdqDTEypbXDYPha!==null&&xDHmdqDTEypbXDYPha!==void 0?xDHmdqDTEypbXDYPha:xDHmdqDTEypbXDYPha=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ypbXDYPha-${idypbXDYPha}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Rb1B4O2vT:Rb1B4O2vTypbXDYPha},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Rb1B4O2vT:Rb1B4O2vTypbXDYPha},webPageId:\"WCMU5R2CW\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-pbw7nh framer-mkcqtw\",\"data-framer-name\":\"Image Wrap\",name:\"Image Wrap\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nfmg6i-container\",children:/*#__PURE__*/_jsx(Image,{alt:xDHmdqDTEypbXDYPha,height:\"100%\",id:\"Y1CBJ5w7V\",image:toResponsiveImage(equgi8OYTypbXDYPha),layoutId:\"Y1CBJ5w7V\",newTab:true,padding:0,radius:0,style:{width:\"100%\"},width:\"100%\"})})})})})})},idypbXDYPha);})})})})})],layoutId:\"FSjyjjnEB\",name:\"Photos\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14c89ut\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ui7p6h\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"100vw\",y:400,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ujya4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Al8kNrgSW:{variant:\"AV46uwoSR\"},ouKzIT5Zu:{variant:\"AV46uwoSR\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Pbqfln9o1\",layoutId:\"Pbqfln9o1\",style:{width:\"100%\"},variant:\"O4IV8inmb\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ouKzIT5Zu:{height:60,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lw5sod-container hidden-1j27nm5 hidden-1p9ab3\",\"data-framer-name\":\"Nav Bar\",layoutScroll:true,name:\"Nav Bar\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"HKZRcVfLY\",layoutId:\"HKZRcVfLY\",name:\"Nav Bar\",style:{width:\"100%\"},variant:\"nBCmD0ZtP\",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-qdKmp { background: var(--token-c03e1cd9-d230-4ffe-97fb-e78997e04de0, rgb(255, 255, 250)) /* {\"name\":\"Off White\"} */; }`,\".framer-qdKmp.framer-mkcqtw, .framer-qdKmp .framer-mkcqtw { display: block; }\",\".framer-qdKmp.framer-1j27nm5 { align-content: center; align-items: center; background-color: var(--token-c03e1cd9-d230-4ffe-97fb-e78997e04de0, #fffffa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-qdKmp .framer-tkxdkq-container, .framer-qdKmp .framer-lw5sod-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-qdKmp .framer-lbf3h, .framer-qdKmp .framer-14c89ut { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 100px; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px 40px 100px 40px; position: relative; width: 67%; }\",\".framer-qdKmp .framer-nk2tas, .framer-qdKmp .framer-ui7p6h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-qdKmp .framer-t4ucra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; left: 25px; overflow: visible; padding: 0px; position: absolute; top: 70px; width: min-content; z-index: 5; }\",\".framer-qdKmp .framer-73pywe { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-qdKmp .framer-162blaw-container { flex: none; height: auto; position: relative; width: 96%; }\",\".framer-qdKmp .framer-x4bdiv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 398px; }\",\".framer-qdKmp .framer-pbw7nh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-qdKmp .framer-nfmg6i-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-qdKmp .framer-13ujya4-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qdKmp.framer-1j27nm5, .framer-qdKmp .framer-lbf3h, .framer-qdKmp .framer-nk2tas, .framer-qdKmp .framer-t4ucra, .framer-qdKmp .framer-x4bdiv, .framer-qdKmp .framer-pbw7nh, .framer-qdKmp .framer-14c89ut, .framer-qdKmp .framer-ui7p6h { gap: 0px; } .framer-qdKmp.framer-1j27nm5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qdKmp.framer-1j27nm5 > :first-child, .framer-qdKmp .framer-nk2tas > :first-child, .framer-qdKmp .framer-x4bdiv > :first-child, .framer-qdKmp .framer-ui7p6h > :first-child { margin-top: 0px; } .framer-qdKmp.framer-1j27nm5 > :last-child, .framer-qdKmp .framer-nk2tas > :last-child, .framer-qdKmp .framer-x4bdiv > :last-child, .framer-qdKmp .framer-ui7p6h > :last-child { margin-bottom: 0px; } .framer-qdKmp .framer-lbf3h > *, .framer-qdKmp .framer-14c89ut > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-qdKmp .framer-lbf3h > :first-child, .framer-qdKmp .framer-t4ucra > :first-child, .framer-qdKmp .framer-pbw7nh > :first-child, .framer-qdKmp .framer-14c89ut > :first-child { margin-left: 0px; } .framer-qdKmp .framer-lbf3h > :last-child, .framer-qdKmp .framer-t4ucra > :last-child, .framer-qdKmp .framer-pbw7nh > :last-child, .framer-qdKmp .framer-14c89ut > :last-child { margin-right: 0px; } .framer-qdKmp .framer-nk2tas > *, .framer-qdKmp .framer-x4bdiv > *, .framer-qdKmp .framer-ui7p6h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qdKmp .framer-t4ucra > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-qdKmp .framer-pbw7nh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-qdKmp { background: var(--token-c03e1cd9-d230-4ffe-97fb-e78997e04de0, rgb(255, 255, 250)) /* {\"name\":\"Off White\"} */; } .framer-qdKmp.framer-1j27nm5 { width: 810px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-qdKmp { background: var(--token-c03e1cd9-d230-4ffe-97fb-e78997e04de0, rgb(255, 255, 250)) /* {\"name\":\"Off White\"} */; } .framer-qdKmp.framer-1j27nm5 { width: 390px; } .framer-qdKmp .framer-lbf3h { flex-direction: column; order: 2; } .framer-qdKmp .framer-nk2tas, .framer-qdKmp .framer-ui7p6h { flex: none; width: 100%; } .framer-qdKmp .framer-t4ucra { order: 6; } .framer-qdKmp .framer-162blaw-container { order: 3; } .framer-qdKmp .framer-14c89ut { flex-direction: column; order: 4; } .framer-qdKmp .framer-13ujya4-container { order: 5; } .framer-qdKmp .framer-lw5sod-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-qdKmp .framer-lbf3h, .framer-qdKmp .framer-14c89ut { gap: 0px; } .framer-qdKmp .framer-lbf3h > *, .framer-qdKmp .framer-14c89ut > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-qdKmp .framer-lbf3h > :first-child, .framer-qdKmp .framer-14c89ut > :first-child { margin-top: 0px; } .framer-qdKmp .framer-lbf3h > :last-child, .framer-qdKmp .framer-14c89ut > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3573\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Al8kNrgSW\":{\"layout\":[\"fixed\",\"auto\"]},\"ouKzIT5Zu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerVRaPocIMS=withCSS(Component,css,\"framer-qdKmp\");export default FramerVRaPocIMS;FramerVRaPocIMS.displayName=\"people\";FramerVRaPocIMS.defaultProps={height:3573,width:1200};addFonts(FramerVRaPocIMS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavBarFonts,...ImageFonts,...MasonryLayoutFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVRaPocIMS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Al8kNrgSW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ouKzIT5Zu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3573\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["getCurrentBreakpoints", "breakpoints", "width", "normalizedBreakpoints", "a", "b", "item", "getState", "useResize", "state", "setState", "ye", "ue", "handleResize", "window", "getCurrentParam", "param", "defaultValue", "breakpoint", "_breakpoint", "DEFAULT_COLUMNS", "DEFAULT_GAP", "MasonryComponent", "columns", "gap", "reverse", "autoArrange", "children", "style", "otherProps", "forwardedRef", "currentBreakpoints", "elements", "pe", "arrange", "setArrange", "currentColumns", "setCurrentColumns", "currentGap", "setCurrentGap", "fe", "newLayout", "columnHeights", "generateLayout", "arrayOfChildren", "e", "getcolumnIndex", "index", "columnIndex", "element", "elementHeight", "child", "layout", "minValue", "maxValue", "img", "resolve", "results", "elPos", "temporaryElements", "addElement", "EmptyState", "title", "description", "u", "emptyStateStyle", "p", "stateTitleStyle", "stateParagraphStyle", "column", "itemIndex", "Masonry", "Y", "MasonryLayout", "props", "_props_layers", "layers", "resolved", "i", "layer", "key", "addPropertyControls", "ControlType", "NavBarFonts", "getFonts", "mcGGzQuUs_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "ImageFonts", "Image", "MasonryLayoutFonts", "MasonryLayout", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "FooterFonts", "CsjP1hozs_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Rb1B4O2vTypbXDYPha", "equgi8OYTypbXDYPha", "xDHmdqDTEypbXDYPha", "idypbXDYPha", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "RichText2", "x", "PropertyOverrides2", "ChildrenCanSuspend", "P7oyF9gc4_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "css", "FramerVRaPocIMS", "withCSS", "VRaPocIMS_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
