{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js", "ssg:https://framerusercontent.com/modules/dbtq07iEXoM3mamzr1kM/Ec9ZYHtGD4qgMTdcBVJD/Hd0CZiEmL.js", "ssg:https://framerusercontent.com/modules/kAKy2UUVTJddTz64snCA/WUTHDuszdZ5bZGcTJKk2/F2Q8J8j71.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Circe Regular\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Circe Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/eL6vqAOShrvroLlx9f1d21IBRMg.otf\"}];export const css=['.framer-WxXPf .framer-styles-preset-b3hyw8:not(.rich-text-wrapper), .framer-WxXPf .framer-styles-preset-b3hyw8.rich-text-wrapper h6 { --framer-font-family: \"Circe Regular\", \"Circe Regular Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, #1c1f24); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-WxXPf\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import TopNavigation from\"#framer/local/canvasComponent/fHC9qwIaP/fHC9qwIaP.js\";import Footer from\"#framer/local/canvasComponent/zO7BOLh2X/zO7BOLh2X.js\";import*as sharedStyle6 from\"#framer/local/css/A4YtaAPsk/A4YtaAPsk.js\";import*as sharedStyle4 from\"#framer/local/css/af4p1_gIN/af4p1_gIN.js\";import*as sharedStyle2 from\"#framer/local/css/GboDCzCfV/GboDCzCfV.js\";import*as sharedStyle7 from\"#framer/local/css/Hd0CZiEmL/Hd0CZiEmL.js\";import*as sharedStyle3 from\"#framer/local/css/Iv90JSTrU/Iv90JSTrU.js\";import*as sharedStyle1 from\"#framer/local/css/oLndgVqDB/oLndgVqDB.js\";import*as sharedStyle5 from\"#framer/local/css/ufNP6U49W/ufNP6U49W.js\";import*as sharedStyle from\"#framer/local/css/zVOGUjFSC/zVOGUjFSC.js\";import metadataProvider from\"#framer/local/webPageMetadata/F2Q8J8j71/F2Q8J8j71.js\";const TopNavigationFonts=getFonts(TopNavigation);const VimeoFonts=getFonts(Vimeo);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const cycleOrder=[\"zA7INInRs\",\"E2cLss87H\",\"FPNSbgaLk\"];const breakpoints={E2cLss87H:\"(min-width: 810px) and (max-width: 1199px)\",FPNSbgaLk:\"(max-width: 809px)\",zA7INInRs:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HL2Vs\";const variantClassNames={E2cLss87H:\"framer-v-jn0kvr\",FPNSbgaLk:\"framer-v-mygqri\",zA7INInRs:\"framer-v-htp3p5\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,scale:2,transition:transition1};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"zA7INInRs\",Phone:\"FPNSbgaLk\",Tablet:\"E2cLss87H\"};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:\"zA7INInRs\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...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-HL2Vs`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-HL2Vs`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"AFyk40WoU\");const ref2=React.useRef(null);const id1=useRouteElementId(\"Y4RXNO1Jm\");const ref3=React.useRef(null);const id2=useRouteElementId(\"IqWcAfZTA\");const ref4=React.useRef(null);const id3=useRouteElementId(\"XjXxv8Xaq\");const ref5=React.useRef(null);const id4=useRouteElementId(\"Ky4hAoDZO\");const ref6=React.useRef(null);const id5=useRouteElementId(\"rjIK05kS1\");const ref7=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];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"zA7INInRs\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-htp3p5\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zbk7je-container\",children:/*#__PURE__*/_jsx(TopNavigation,{height:\"100%\",id:\"mmgXc40OD\",layoutId:\"mmgXc40OD\",style:{width:\"100%\"},variant:\"K5Fca94Ft\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18w500f\",\"data-framer-name\":\"Banner Image\",name:\"Banner Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FPNSbgaLk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:596,intrinsicWidth:1920,pixelHeight:596,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png\",srcSet:\"https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png?scale-down-to=512 512w,https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:596,intrinsicWidth:1920,pixelHeight:596,pixelWidth:1920,sizes:\"100vw\",src:\"https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png\",srcSet:\"https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png?scale-down-to=512 512w,https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tsicgHLJxuIRwJ5tomt7i3F7U.png 1920w\"},className:\"framer-ukkjr2\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhmfpy\",\"data-framer-name\":\"Title\",id:id,name:\"Title\",ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mvwqmy\",\"data-styles-preset\":\"zVOGUjFSC\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Exposed\"})}),className:\"framer-1l4sd2w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x797j2\",\"data-styles-preset\":\"oLndgVqDB\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"A Discord based game for fostering connection\"})}),className:\"framer-1tiiwcf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11kyhpj\",\"data-border\":true,\"data-framer-name\":\"Overview & Sections\",name:\"Overview & Sections\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4uv1rj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Overview\"})}),className:\"framer-156jjbz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8zvif\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"Exposed is a discord based game that allows players to get to know each other and make genuine connections through embarrassing, personal and exposing questions.\"})}),className:\"framer-1h9sptj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50fne0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Sections\"})}),className:\"framer-1tzs3t9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmtlev\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-7eu0nm\",\"data-styles-preset\":\"af4p1_gIN\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":E6jFnJEbF\",webPageId:\"QlNZiPeK6\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1abmp5z\",\"data-styles-preset\":\"ufNP6U49W\",children:\"Demo Video\"})})})}),className:\"framer-m0mgbp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-7eu0nm\",\"data-styles-preset\":\"af4p1_gIN\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":IqWcAfZTA\",webPageId:\"F2Q8J8j71\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1abmp5z\",\"data-styles-preset\":\"ufNP6U49W\",children:\"Initial Concept + Design\"})})})}),className:\"framer-wuk1so\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-7eu0nm\",\"data-styles-preset\":\"af4p1_gIN\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XjXxv8Xaq\",webPageId:\"F2Q8J8j71\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1abmp5z\",\"data-styles-preset\":\"ufNP6U49W\",children:\"Research & Process\"})})})}),className:\"framer-l3bsq2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-7eu0nm\",\"data-styles-preset\":\"af4p1_gIN\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Ky4hAoDZO\",webPageId:\"F2Q8J8j71\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1abmp5z\",\"data-styles-preset\":\"ufNP6U49W\",children:\"Final Concept\"})})})}),className:\"framer-7wfo6j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-7eu0nm\",\"data-styles-preset\":\"af4p1_gIN\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rjIK05kS1\",webPageId:\"F2Q8J8j71\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1abmp5z\",\"data-styles-preset\":\"ufNP6U49W\",children:\"Conclusion + Reflection\"})})})}),className:\"framer-e2iqeq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31495q\",\"data-border\":true,\"data-framer-name\":\"Demo Video\",id:id1,name:\"Demo Video\",ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Demo Video\"})}),className:\"framer-garly7\",\"data-framer-name\":\"Demo Video\",fonts:[\"Inter\"],name:\"Demo Video\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g2eyo9-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"GuCqj8XDk\",isMixedBorderRadius:false,layoutId:\"GuCqj8XDk\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/776868852?share=copy\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n96r6\",\"data-border\":true,\"data-framer-name\":\"Project Objectives\",id:id2,name:\"Project Objectives\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qpbxax\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Initial Concept + Design\"})}),className:\"framer-ykgsk1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11xerm5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"Starting off with a concept to disrupt and intervene in the digital space, this game was initially designed to make people feel uncomfortable. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:'The aim of the design was to act as a facilitator for people to get to know each other by \"forcing\" people to get uncomfortable and vulnerable with each other through exposing personal preferences and experiences with each other.'})]}),className:\"framer-13uplpa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FPNSbgaLk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:504,intrinsicWidth:960,loading:\"lazy\",pixelHeight:504,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg\",srcSet:\"https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:504,intrinsicWidth:960,loading:\"lazy\",pixelHeight:504,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"max(100vw - 150px, 0px)\",src:\"https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg\",srcSet:\"https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tTqNpSFrNgEEZ3aFpcFEyC2aUE.jpg 960w\"},className:\"framer-l78zz5\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxnq3s\",\"data-border\":true,\"data-framer-name\":\"Process\",id:id3,name:\"Process\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o985oc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Research + Process\"})}),className:\"framer-29m7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-rz2je4\",\"data-styles-preset\":\"A4YtaAPsk\",children:\"First Iteration: Rewards & Punishment\"})}),className:\"framer-zuqfbh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jf467e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1un4r95\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E2cLss87H:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"max(100vw - 150px, 0px)\",src:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg\",srcSet:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg 960w\"}},FPNSbgaLk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg\",srcSet:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"max((max(100vw - 150px, 0px) - 32px) / 2, 0px)\",src:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg\",srcSet:\"https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fP7v8H0xxJsSQvms2ADqZqeAL5I.jpg 960w\"},className:\"framer-1oubgpx\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"In order to understand how the game might be played and how it might be effective in its intention, the first prototype of the game was a wizard-of-oz-ed version in which I played the part of the Discord bot, and conducted a play test with a group of players. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"Because the intention of the game was to make players feel uncomfortable and foster connection through intentionally asking vulnerable and embarrassing questions, before joining the game, each player was informed of the rules. Additionally, each player was asked to confirm their consent to playing the game.\"})]}),className:\"framer-1ea1p52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-54z7on\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e37y1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E2cLss87H:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"max(100vw - 150px, 0px)\",src:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg\",srcSet:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg 960w\"}},FPNSbgaLk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 64px)\",src:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg\",srcSet:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,loading:\"lazy\",pixelHeight:540,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"max((max(100vw - 150px, 0px) - 32px) / 2, 0px)\",src:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg\",srcSet:\"https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dgWFndM3Yq0dAgF6JAw23cL0SZ0.jpg 960w\"},className:\"framer-bk1j4t\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-atpulz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-b3hyw8\",\"data-styles-preset\":\"Hd0CZiEmL\",children:\"Key Takeaways:\"})}),className:\"framer-7fpuhs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Might be too uncomfortable for some players when playing with strangers.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Reward and punishment system was fun, but added additional pressure for players.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Discussion of answers was not explicitly encouraged, so players hoped that they could do so.\"})})]})}),className:\"framer-f1xk3a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-rz2je4\",\"data-styles-preset\":\"A4YtaAPsk\",children:\"Second Iteration: Research & Emotional Prototype\"})}),className:\"framer-vtd42s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jk2juu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5pd4k7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"Research was conducted through outreach to members of relatively high traffic discord servers, and discord users that were experienced in moderating servers as well. Due to time constraints, thorough play tests and interviews of all the people I reached out to were not possible, but I was able to create an emotional prototype that I deployed to a few testers.\"})}),className:\"framer-1qgczkr\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileTap:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13d22hu-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"n9Mdj44YB\",intervalControl:3,itemAmount:1,layoutId:\"n9Mdj44YB\",padding:0,paddingBottom:16,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:16,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/e5S5cqveGlSlcijyveL9IAPAf4.png\",srcSet:\"https://framerusercontent.com/images/e5S5cqveGlSlcijyveL9IAPAf4.png?scale-down-to=512 512w,https://framerusercontent.com/images/e5S5cqveGlSlcijyveL9IAPAf4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e5S5cqveGlSlcijyveL9IAPAf4.png 1920w\"},className:\"framer-y80saa\",\"data-framer-name\":\"Emotional_Prototype_1\",name:\"Emotional_Prototype_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/Krt1Smkvss8Nqskvp6jliZov9gw.png\",srcSet:\"https://framerusercontent.com/images/Krt1Smkvss8Nqskvp6jliZov9gw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Krt1Smkvss8Nqskvp6jliZov9gw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Krt1Smkvss8Nqskvp6jliZov9gw.png 1920w\"},className:\"framer-krddof\",\"data-framer-name\":\"Emotional_Prototype_2\",name:\"Emotional_Prototype_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/3cBtS8bM3rklgHEGRAaDmhHbyBk.png\",srcSet:\"https://framerusercontent.com/images/3cBtS8bM3rklgHEGRAaDmhHbyBk.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cBtS8bM3rklgHEGRAaDmhHbyBk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3cBtS8bM3rklgHEGRAaDmhHbyBk.png 1920w\"},className:\"framer-mh120e\",\"data-framer-name\":\"Emotional_Prototype_3\",name:\"Emotional_Prototype_3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/bW6Q8Op9MOGVcRwFYCKLwdOJsY.png\",srcSet:\"https://framerusercontent.com/images/bW6Q8Op9MOGVcRwFYCKLwdOJsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/bW6Q8Op9MOGVcRwFYCKLwdOJsY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bW6Q8Op9MOGVcRwFYCKLwdOJsY.png 1920w\"},className:\"framer-m1udkh\",\"data-framer-name\":\"Emotional_Prototype_4\",name:\"Emotional_Prototype_4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/3SroxSoEgoBlt4fIA5gIqDPzZ1o.png\",srcSet:\"https://framerusercontent.com/images/3SroxSoEgoBlt4fIA5gIqDPzZ1o.png?scale-down-to=512 512w,https://framerusercontent.com/images/3SroxSoEgoBlt4fIA5gIqDPzZ1o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3SroxSoEgoBlt4fIA5gIqDPzZ1o.png 1920w\"},className:\"framer-pxnrv9\",\"data-framer-name\":\"Emotional_Prototype_5\",name:\"Emotional_Prototype_5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/82nd3tHknHlOCg0cIE8H0P7Ld0.png\",srcSet:\"https://framerusercontent.com/images/82nd3tHknHlOCg0cIE8H0P7Ld0.png?scale-down-to=512 512w,https://framerusercontent.com/images/82nd3tHknHlOCg0cIE8H0P7Ld0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/82nd3tHknHlOCg0cIE8H0P7Ld0.png 1920w\"},className:\"framer-18n1f4o\",\"data-framer-name\":\"Emotional_Prototype_6\",name:\"Emotional_Prototype_6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/TGFnHT2twvzchivxdlQJDsE.png\",srcSet:\"https://framerusercontent.com/images/TGFnHT2twvzchivxdlQJDsE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TGFnHT2twvzchivxdlQJDsE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TGFnHT2twvzchivxdlQJDsE.png 1920w\"},className:\"framer-1ggowai\",\"data-framer-name\":\"Emotional_Prototype_7\",name:\"Emotional_Prototype_7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/bAPXsSt3jvUCSw4TiJEcwkYIZI.png\",srcSet:\"https://framerusercontent.com/images/bAPXsSt3jvUCSw4TiJEcwkYIZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bAPXsSt3jvUCSw4TiJEcwkYIZI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bAPXsSt3jvUCSw4TiJEcwkYIZI.png 1920w\"},className:\"framer-inh8s9\",\"data-framer-name\":\"Emotional_Prototype_8\",name:\"Emotional_Prototype_8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/xQlBjNg9t9B8zwf9DXOVkxLxWc.png\",srcSet:\"https://framerusercontent.com/images/xQlBjNg9t9B8zwf9DXOVkxLxWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xQlBjNg9t9B8zwf9DXOVkxLxWc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xQlBjNg9t9B8zwf9DXOVkxLxWc.png 1920w\"},className:\"framer-7tta2i\",\"data-framer-name\":\"Emotional_Prototype_9\",name:\"Emotional_Prototype_9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/Z9RsGla5VNa7Hb7ReTompjxT34.png\",srcSet:\"https://framerusercontent.com/images/Z9RsGla5VNa7Hb7ReTompjxT34.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z9RsGla5VNa7Hb7ReTompjxT34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z9RsGla5VNa7Hb7ReTompjxT34.png 1920w\"},className:\"framer-kqnfgs\",\"data-framer-name\":\"Emotional_Prototype_10\",name:\"Emotional_Prototype_10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/pPpvzx8mMCSMS8Re7NIIqDhYIE.png\",srcSet:\"https://framerusercontent.com/images/pPpvzx8mMCSMS8Re7NIIqDhYIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/pPpvzx8mMCSMS8Re7NIIqDhYIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pPpvzx8mMCSMS8Re7NIIqDhYIE.png 1920w\"},className:\"framer-eluo5y\",\"data-framer-name\":\"Emotional_Prototype_11\",name:\"Emotional_Prototype_11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/38l5VzbaU8bmJk7Px0C5T1bkhUE.png\",srcSet:\"https://framerusercontent.com/images/38l5VzbaU8bmJk7Px0C5T1bkhUE.png?scale-down-to=512 512w,https://framerusercontent.com/images/38l5VzbaU8bmJk7Px0C5T1bkhUE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/38l5VzbaU8bmJk7Px0C5T1bkhUE.png 1920w\"},className:\"framer-criijp\",\"data-framer-name\":\"Emotional_Prototype_12\",name:\"Emotional_Prototype_12\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"1920px\",src:\"https://framerusercontent.com/images/xfvdpCTlutFMDMVDbvSmo4jFMA.png\",srcSet:\"https://framerusercontent.com/images/xfvdpCTlutFMDMVDbvSmo4jFMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/xfvdpCTlutFMDMVDbvSmo4jFMA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xfvdpCTlutFMDMVDbvSmo4jFMA.png 1920w\"},className:\"framer-59e6rw\",\"data-framer-name\":\"Emotional_Prototype_13\",name:\"Emotional_Prototype_13\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b6emh3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-b3hyw8\",\"data-styles-preset\":\"Hd0CZiEmL\",children:\"Key Findings\"})}),className:\"framer-o75uij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Game might be better as an icebreaker, and also a way for people to make genuine connections with each other.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Players hope to be able to continue the connections made outside of the game into real life.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Instead of being text based, players thought voice chat would make people feel more connected.\"})})]})}),className:\"framer-nxktfd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uyknjl\",\"data-border\":true,\"data-framer-name\":\"Project Outcomes\",id:id4,name:\"Project Outcomes\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7sfcc7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Final Concept\"})}),className:\"framer-fn88c3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fkdnp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itueaj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-b3hyw8\",\"data-styles-preset\":\"Hd0CZiEmL\",children:\"Key Highlights:\"})}),className:\"framer-13axuic\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileTap:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Rewards vs. punishments system removed to alleviate pressure from players, and to encourage more sharing in a slightly more relaxed setting.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"In order to encourage discussion and foster connections, players are encouraged to positively react to other players answers, and talk about their experiences as well.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Playing the game is moderated through a discord bot in a text channel, but players are in a voice channel for the game so that they can answer questions while talking, encouraging more connection and discussions.\"})})]})}),className:\"framer-105qx6j\",fonts:[\"Inter\"],verticalAlignment:\"top\",whileTap:animation,withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lplaf5-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"wLfp1yKg2\",isMixedBorderRadius:false,layoutId:\"wLfp1yKg2\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/776863824?share=copy\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q9buon\",\"data-border\":true,\"data-framer-name\":\"Summary\",id:id5,name:\"Summary\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7bf2tr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-npb8zl\",\"data-styles-preset\":\"GboDCzCfV\",style:{\"--framer-text-color\":\"var(--token-71000e49-e997-4e14-9b6c-066fcdaef394, rgb(28, 31, 36))\"},children:\"Conclusion + Reflection\"})}),className:\"framer-1pjfcjn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aghg3o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-b3hyw8\",\"data-styles-preset\":\"Hd0CZiEmL\",children:\"Conclusion\"})}),className:\"framer-1shswhc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"With the help of a friend, I was able to successfully deploy the designed game into discord as a bot, and was able to play test the final prototype that allowed players to play the core loop of the game. Based on feedback, in the future it may be possible to turn the discord bot into a standalone application that people could use and integrate into communication services not exclusive to Discord, such as Slack. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"Additionally, if players could submit questions of their own,  it would allow the game to have a larger, more diverse selection of questions to ask players.\"})]}),className:\"framer-qoj5oj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kwmvyj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-b3hyw8\",\"data-styles-preset\":\"Hd0CZiEmL\",children:\"Reflection\"})}),className:\"framer-87nww4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:\"An important highlight of this project was the UX research that I conducted throughout the entire process. I was able to reach out to strangers on different discord servers, and gather insight on creating connections through a digital space, which also required me to step out of the comfort zone of performing UX research on my colleagues and friends.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0fopj\",\"data-styles-preset\":\"Iv90JSTrU\",children:'Another lesson learned through the project was the use of prototypes that could efficiently gather information through testing, rather than focusing on a \"completed\" prototype. During this project, both an emotional prototype and a wizard-of-oz-ed version of the game were used to conduct quick and efficient testing, rather than spending more time building a working \"completed\" prototype, so that different iterations and changes could be made throughout the process.'})]}),className:\"framer-1m3lmfu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E2cLss87H:{width:\"100vw\"},FPNSbgaLk:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpqks9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FPNSbgaLk:{variant:\"vjsWJHG0k\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zIJmGclWN\",layoutId:\"zIJmGclWN\",style:{width:\"100%\"},variant:\"IEC5FkTg3\",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-HL2Vs { background: var(--token-bc9ad76f-a5a2-4138-85e0-cbb4e0d8106e, rgb(243, 245, 245)) /* {\"name\":\"Background Copy\"} */; }`,\".framer-HL2Vs.framer-5cof15, .framer-HL2Vs .framer-5cof15 { display: block; }\",\".framer-HL2Vs.framer-htp3p5 { align-content: center; align-items: center; background-color: var(--token-bc9ad76f-a5a2-4138-85e0-cbb4e0d8106e, #f3f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-HL2Vs .framer-zbk7je-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-18w500f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 258px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-HL2Vs .framer-ukkjr2 { flex: none; height: 88%; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1bhmfpy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 32px 75px 32px 75px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1l4sd2w, .framer-HL2Vs .framer-1tiiwcf, .framer-HL2Vs .framer-156jjbz, .framer-HL2Vs .framer-1tzs3t9, .framer-HL2Vs .framer-garly7, .framer-HL2Vs .framer-ykgsk1, .framer-HL2Vs .framer-29m7e, .framer-HL2Vs .framer-fn88c3, .framer-HL2Vs .framer-1pjfcjn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HL2Vs .framer-11kyhpj { --border-bottom-width: 0px; --border-color: var(--token-3ccc0304-b885-4e91-b4d2-944ced53ba3e, #e2d9cb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: center; overflow: hidden; padding: 32px 75px 32px 75px; position: relative; width: 100%; z-index: 1; }\",\".framer-HL2Vs .framer-4uv1rj, .framer-HL2Vs .framer-50fne0, .framer-HL2Vs .framer-qpbxax { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HL2Vs .framer-w8zvif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1h9sptj, .framer-HL2Vs .framer-zuqfbh, .framer-HL2Vs .framer-7fpuhs, .framer-HL2Vs .framer-f1xk3a, .framer-HL2Vs .framer-vtd42s, .framer-HL2Vs .framer-1qgczkr, .framer-HL2Vs .framer-o75uij, .framer-HL2Vs .framer-nxktfd, .framer-HL2Vs .framer-13axuic, .framer-HL2Vs .framer-105qx6j, .framer-HL2Vs .framer-1shswhc, .framer-HL2Vs .framer-qoj5oj, .framer-HL2Vs .framer-87nww4, .framer-HL2Vs .framer-1m3lmfu { --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-HL2Vs .framer-1bmtlev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 507px; }\",\".framer-HL2Vs .framer-m0mgbp, .framer-HL2Vs .framer-wuk1so, .framer-HL2Vs .framer-l3bsq2, .framer-HL2Vs .framer-7wfo6j, .framer-HL2Vs .framer-e2iqeq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HL2Vs .framer-31495q { --border-bottom-width: 0px; --border-color: var(--token-3ccc0304-b885-4e91-b4d2-944ced53ba3e, #e2d9cb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; overflow: hidden; padding: 32px 75px 32px 75px; position: relative; width: 100%; z-index: 1; }\",\".framer-HL2Vs .framer-1g2eyo9-container { aspect-ratio: 1.8324607329842932 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 573px); position: relative; width: 100%; }\",\".framer-HL2Vs .framer-11n96r6, .framer-HL2Vs .framer-qxnq3s, .framer-HL2Vs .framer-q9buon { --border-bottom-width: 0px; --border-color: var(--token-3ccc0304-b885-4e91-b4d2-944ced53ba3e, #e2d9cb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: center; overflow: hidden; padding: 32px 75px 32px 75px; position: relative; width: 100%; z-index: 1; }\",\".framer-HL2Vs .framer-11xerm5 { 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 16px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-13uplpa, .framer-HL2Vs .framer-1ea1p52 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-HL2Vs .framer-l78zz5 { aspect-ratio: 1.958955223880597 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 536px); position: relative; width: 100%; }\",\".framer-HL2Vs .framer-o985oc, .framer-HL2Vs .framer-7bf2tr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HL2Vs .framer-1jf467e, .framer-HL2Vs .framer-54z7on, .framer-HL2Vs .framer-jk2juu { 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; width: 100%; }\",\".framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-19e37y1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1oubgpx, .framer-HL2Vs .framer-bk1j4t { aspect-ratio: 1.547112462006079 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 329px); position: relative; width: 1px; }\",\".framer-HL2Vs .framer-atpulz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HL2Vs .framer-5pd4k7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-13d22hu-container { aspect-ratio: 1.829268292682927 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 574px); position: relative; width: 100%; }\",\".framer-HL2Vs .framer-y80saa, .framer-HL2Vs .framer-krddof, .framer-HL2Vs .framer-mh120e, .framer-HL2Vs .framer-m1udkh, .framer-HL2Vs .framer-pxnrv9, .framer-HL2Vs .framer-18n1f4o, .framer-HL2Vs .framer-1ggowai, .framer-HL2Vs .framer-inh8s9, .framer-HL2Vs .framer-7tta2i, .framer-HL2Vs .framer-kqnfgs, .framer-HL2Vs .framer-eluo5y, .framer-HL2Vs .framer-criijp, .framer-HL2Vs .framer-59e6rw { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 1080px); overflow: visible; position: relative; width: 1920px; }\",\".framer-HL2Vs .framer-b6emh3, .framer-HL2Vs .framer-1itueaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1uyknjl { --border-bottom-width: 0px; --border-color: var(--token-3ccc0304-b885-4e91-b4d2-944ced53ba3e, #e2d9cb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 32px 75px 32px 75px; position: relative; width: 100%; z-index: 1; }\",\".framer-HL2Vs .framer-7sfcc7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-2fkdnp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1lplaf5-container { aspect-ratio: 1.8041237113402062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 582px); position: relative; width: 100%; }\",\".framer-HL2Vs .framer-1aghg3o, .framer-HL2Vs .framer-kwmvyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 1024px; }\",\".framer-HL2Vs .framer-1dpqks9-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HL2Vs.framer-htp3p5, .framer-HL2Vs .framer-18w500f, .framer-HL2Vs .framer-1bhmfpy, .framer-HL2Vs .framer-11kyhpj, .framer-HL2Vs .framer-4uv1rj, .framer-HL2Vs .framer-w8zvif, .framer-HL2Vs .framer-50fne0, .framer-HL2Vs .framer-1bmtlev, .framer-HL2Vs .framer-31495q, .framer-HL2Vs .framer-11n96r6, .framer-HL2Vs .framer-qpbxax, .framer-HL2Vs .framer-11xerm5, .framer-HL2Vs .framer-qxnq3s, .framer-HL2Vs .framer-o985oc, .framer-HL2Vs .framer-1jf467e, .framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-54z7on, .framer-HL2Vs .framer-19e37y1, .framer-HL2Vs .framer-atpulz, .framer-HL2Vs .framer-jk2juu, .framer-HL2Vs .framer-5pd4k7, .framer-HL2Vs .framer-b6emh3, .framer-HL2Vs .framer-1uyknjl, .framer-HL2Vs .framer-7sfcc7, .framer-HL2Vs .framer-2fkdnp, .framer-HL2Vs .framer-1itueaj, .framer-HL2Vs .framer-q9buon, .framer-HL2Vs .framer-7bf2tr, .framer-HL2Vs .framer-1aghg3o, .framer-HL2Vs .framer-kwmvyj { gap: 0px; } .framer-HL2Vs.framer-htp3p5 > *, .framer-HL2Vs .framer-4uv1rj > *, .framer-HL2Vs .framer-50fne0 > *, .framer-HL2Vs .framer-1bmtlev > *, .framer-HL2Vs .framer-qpbxax > *, .framer-HL2Vs .framer-1jf467e > *, .framer-HL2Vs .framer-54z7on > *, .framer-HL2Vs .framer-atpulz > *, .framer-HL2Vs .framer-jk2juu > *, .framer-HL2Vs .framer-7sfcc7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HL2Vs.framer-htp3p5 > :first-child, .framer-HL2Vs .framer-18w500f > :first-child, .framer-HL2Vs .framer-1bhmfpy > :first-child, .framer-HL2Vs .framer-4uv1rj > :first-child, .framer-HL2Vs .framer-w8zvif > :first-child, .framer-HL2Vs .framer-50fne0 > :first-child, .framer-HL2Vs .framer-1bmtlev > :first-child, .framer-HL2Vs .framer-31495q > :first-child, .framer-HL2Vs .framer-qpbxax > :first-child, .framer-HL2Vs .framer-o985oc > :first-child, .framer-HL2Vs .framer-1jf467e > :first-child, .framer-HL2Vs .framer-54z7on > :first-child, .framer-HL2Vs .framer-atpulz > :first-child, .framer-HL2Vs .framer-jk2juu > :first-child, .framer-HL2Vs .framer-5pd4k7 > :first-child, .framer-HL2Vs .framer-b6emh3 > :first-child, .framer-HL2Vs .framer-1uyknjl > :first-child, .framer-HL2Vs .framer-7sfcc7 > :first-child, .framer-HL2Vs .framer-2fkdnp > :first-child, .framer-HL2Vs .framer-1itueaj > :first-child, .framer-HL2Vs .framer-7bf2tr > :first-child, .framer-HL2Vs .framer-1aghg3o > :first-child, .framer-HL2Vs .framer-kwmvyj > :first-child { margin-top: 0px; } .framer-HL2Vs.framer-htp3p5 > :last-child, .framer-HL2Vs .framer-18w500f > :last-child, .framer-HL2Vs .framer-1bhmfpy > :last-child, .framer-HL2Vs .framer-4uv1rj > :last-child, .framer-HL2Vs .framer-w8zvif > :last-child, .framer-HL2Vs .framer-50fne0 > :last-child, .framer-HL2Vs .framer-1bmtlev > :last-child, .framer-HL2Vs .framer-31495q > :last-child, .framer-HL2Vs .framer-qpbxax > :last-child, .framer-HL2Vs .framer-o985oc > :last-child, .framer-HL2Vs .framer-1jf467e > :last-child, .framer-HL2Vs .framer-54z7on > :last-child, .framer-HL2Vs .framer-atpulz > :last-child, .framer-HL2Vs .framer-jk2juu > :last-child, .framer-HL2Vs .framer-5pd4k7 > :last-child, .framer-HL2Vs .framer-b6emh3 > :last-child, .framer-HL2Vs .framer-1uyknjl > :last-child, .framer-HL2Vs .framer-7sfcc7 > :last-child, .framer-HL2Vs .framer-2fkdnp > :last-child, .framer-HL2Vs .framer-1itueaj > :last-child, .framer-HL2Vs .framer-7bf2tr > :last-child, .framer-HL2Vs .framer-1aghg3o > :last-child, .framer-HL2Vs .framer-kwmvyj > :last-child { margin-bottom: 0px; } .framer-HL2Vs .framer-18w500f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HL2Vs .framer-1bhmfpy > *, .framer-HL2Vs .framer-o985oc > *, .framer-HL2Vs .framer-5pd4k7 > *, .framer-HL2Vs .framer-b6emh3 > *, .framer-HL2Vs .framer-1uyknjl > *, .framer-HL2Vs .framer-2fkdnp > *, .framer-HL2Vs .framer-1itueaj > *, .framer-HL2Vs .framer-7bf2tr > *, .framer-HL2Vs .framer-1aghg3o > *, .framer-HL2Vs .framer-kwmvyj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HL2Vs .framer-11kyhpj > *, .framer-HL2Vs .framer-11n96r6 > *, .framer-HL2Vs .framer-qxnq3s > *, .framer-HL2Vs .framer-q9buon > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-HL2Vs .framer-11kyhpj > :first-child, .framer-HL2Vs .framer-11n96r6 > :first-child, .framer-HL2Vs .framer-11xerm5 > :first-child, .framer-HL2Vs .framer-qxnq3s > :first-child, .framer-HL2Vs .framer-1un4r95 > :first-child, .framer-HL2Vs .framer-19e37y1 > :first-child, .framer-HL2Vs .framer-q9buon > :first-child { margin-left: 0px; } .framer-HL2Vs .framer-11kyhpj > :last-child, .framer-HL2Vs .framer-11n96r6 > :last-child, .framer-HL2Vs .framer-11xerm5 > :last-child, .framer-HL2Vs .framer-qxnq3s > :last-child, .framer-HL2Vs .framer-1un4r95 > :last-child, .framer-HL2Vs .framer-19e37y1 > :last-child, .framer-HL2Vs .framer-q9buon > :last-child { margin-right: 0px; } .framer-HL2Vs .framer-w8zvif > *, .framer-HL2Vs .framer-31495q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HL2Vs .framer-11xerm5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HL2Vs .framer-1un4r95 > *, .framer-HL2Vs .framer-19e37y1 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\"@media (min-width: 1200px) { .framer-HL2Vs .hidden-htp3p5 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-HL2Vs .hidden-jn0kvr { display: none !important; } .${metadata.bodyClassName}-framer-HL2Vs { background: var(--token-bc9ad76f-a5a2-4138-85e0-cbb4e0d8106e, rgb(243, 245, 245)) /* {\"name\":\"Background Copy\"} */; } .framer-HL2Vs.framer-htp3p5 { width: 810px; } .framer-HL2Vs .framer-ukkjr2 { height: 88%; } .framer-HL2Vs .framer-1g2eyo9-container, .framer-HL2Vs .framer-13d22hu-container { height: var(--framer-aspect-ratio-supported, 360px); } .framer-HL2Vs .framer-l78zz5 { height: var(--framer-aspect-ratio-supported, 337px); } .framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-19e37y1 { flex-direction: column; } .framer-HL2Vs .framer-1oubgpx { aspect-ratio: 2.0060790273556233 / 1; flex: none; width: 100%; } .framer-HL2Vs .framer-1ea1p52, .framer-HL2Vs .framer-atpulz { flex: none; width: 100%; } .framer-HL2Vs .framer-bk1j4t { flex: none; height: var(--framer-aspect-ratio-supported, 427px); width: 100%; } .framer-HL2Vs .framer-1lplaf5-container { height: var(--framer-aspect-ratio-supported, 366px); } .framer-HL2Vs .framer-kwmvyj, .framer-HL2Vs .framer-1dpqks9-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-19e37y1 { gap: 0px; } .framer-HL2Vs .framer-1un4r95 > *, .framer-HL2Vs .framer-19e37y1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HL2Vs .framer-1un4r95 > :first-child, .framer-HL2Vs .framer-19e37y1 > :first-child { margin-top: 0px; } .framer-HL2Vs .framer-1un4r95 > :last-child, .framer-HL2Vs .framer-19e37y1 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-HL2Vs .hidden-mygqri { display: none !important; } .${metadata.bodyClassName}-framer-HL2Vs { background: var(--token-bc9ad76f-a5a2-4138-85e0-cbb4e0d8106e, rgb(243, 245, 245)) /* {\"name\":\"Background Copy\"} */; } .framer-HL2Vs.framer-htp3p5 { width: 390px; } .framer-HL2Vs .framer-18w500f { height: 143px; } .framer-HL2Vs .framer-ukkjr2 { height: 161px; } .framer-HL2Vs .framer-1bhmfpy, .framer-HL2Vs .framer-31495q, .framer-HL2Vs .framer-1uyknjl { padding: 32px 32px 32px 32px; } .framer-HL2Vs .framer-1tiiwcf, .framer-HL2Vs .framer-ykgsk1, .framer-HL2Vs .framer-29m7e, .framer-HL2Vs .framer-1pjfcjn { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-HL2Vs .framer-11kyhpj, .framer-HL2Vs .framer-11n96r6, .framer-HL2Vs .framer-qxnq3s, .framer-HL2Vs .framer-q9buon { flex-direction: column; padding: 32px 32px 32px 32px; } .framer-HL2Vs .framer-4uv1rj, .framer-HL2Vs .framer-50fne0, .framer-HL2Vs .framer-qpbxax, .framer-HL2Vs .framer-o985oc, .framer-HL2Vs .framer-1ea1p52, .framer-HL2Vs .framer-atpulz, .framer-HL2Vs .framer-7bf2tr { flex: none; width: 100%; } .framer-HL2Vs .framer-1g2eyo9-container, .framer-HL2Vs .framer-13d22hu-container { height: var(--framer-aspect-ratio-supported, 178px); } .framer-HL2Vs .framer-l78zz5 { height: var(--framer-aspect-ratio-supported, 166px); } .framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-19e37y1 { flex-direction: column; } .framer-HL2Vs .framer-1oubgpx, .framer-HL2Vs .framer-bk1j4t { flex: none; height: var(--framer-aspect-ratio-supported, 211px); width: 100%; } .framer-HL2Vs .framer-1lplaf5-container { height: var(--framer-aspect-ratio-supported, 181px); } .framer-HL2Vs .framer-1aghg3o, .framer-HL2Vs .framer-kwmvyj, .framer-HL2Vs .framer-1dpqks9-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-HL2Vs .framer-11kyhpj, .framer-HL2Vs .framer-11n96r6, .framer-HL2Vs .framer-qxnq3s, .framer-HL2Vs .framer-1un4r95, .framer-HL2Vs .framer-19e37y1, .framer-HL2Vs .framer-q9buon { gap: 0px; } .framer-HL2Vs .framer-11kyhpj > *, .framer-HL2Vs .framer-11n96r6 > *, .framer-HL2Vs .framer-qxnq3s > *, .framer-HL2Vs .framer-q9buon > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-HL2Vs .framer-11kyhpj > :first-child, .framer-HL2Vs .framer-11n96r6 > :first-child, .framer-HL2Vs .framer-qxnq3s > :first-child, .framer-HL2Vs .framer-1un4r95 > :first-child, .framer-HL2Vs .framer-19e37y1 > :first-child, .framer-HL2Vs .framer-q9buon > :first-child { margin-top: 0px; } .framer-HL2Vs .framer-11kyhpj > :last-child, .framer-HL2Vs .framer-11n96r6 > :last-child, .framer-HL2Vs .framer-qxnq3s > :last-child, .framer-HL2Vs .framer-1un4r95 > :last-child, .framer-HL2Vs .framer-19e37y1 > :last-child, .framer-HL2Vs .framer-q9buon > :last-child { margin-bottom: 0px; } .framer-HL2Vs .framer-1un4r95 > *, .framer-HL2Vs .framer-19e37y1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-HL2Vs[data-border=\"true\"]::after, .framer-HL2Vs [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 6102\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E2cLss87H\":{\"layout\":[\"fixed\",\"auto\"]},\"FPNSbgaLk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerF2Q8J8j71=withCSS(Component,css,\"framer-HL2Vs\");export default FramerF2Q8J8j71;FramerF2Q8J8j71.displayName=\"Portfolio / Exposed\";FramerF2Q8J8j71.defaultProps={height:6102,width:1200};addFonts(FramerF2Q8J8j71,[{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://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\"}]},...TopNavigationFonts,...VimeoFonts,...SlideshowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF2Q8J8j71\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6102\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E2cLss87H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FPNSbgaLk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "TopNavigationFonts", "getFonts", "fHC9qwIaP_default", "VimeoFonts", "Vimeo_default", "SlideshowFonts", "Slideshow", "FooterFonts", "zO7BOLh2X_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "id3", "ref5", "id4", "ref6", "id5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "fHC9qwIaP_default", "PropertyOverrides2", "Image2", "RichText2", "x", "Link", "Vimeo_default", "Slideshow", "zO7BOLh2X_default", "css", "FramerF2Q8J8j71", "withCSS", "F2Q8J8j71_default", "addFonts", "TopNavigationFonts", "VimeoFonts", "SlideshowFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
